/* =========================
   GLOBAL RESET
========================= */

* {
  box-sizing: border-box;
}
.logo-header {
        position:sticky;
        display:flex;
        width: 80px;
        height: 80px;
        border-radius: 50%;        
        object-fit: cover;         
        border: 3px solid #fff; 
        margin-right: 1em;   
    }

body {
  margin: 0;
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  background: #ffffff;
  color: #111;
}

/* =========================
   CONTAINER
========================= */

#container {
  width: 100%;
}

/* =========================
   HEADER
========================= */

#header {
  background: white;
  border-bottom: 1px solid #eee;
  padding: 18px 40px;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-inner {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;  
}

.logo a {
  font-size: 22px !important;
  font-weight: 700 !important;
  text-decoration: none !important;
  color: #111 !important;
  letter-spacing: -0.5px !important;
}

/* CTA Button */
.btn-primary {
  display:ruby;
  background: #111 !important;
  color: white !important;
  padding: 10px 20px !important;
  border-radius: 30px !important;
  text-decoration: none !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  transition: 0.3s ease !important;
}

.btn-primary:hover {
  background: #000 !important;
}

/* =========================
   NAVIGATION
========================= */

#navigation {
  text-align: center;
  background: white;
  
}

.nav-inner {
  max-width: 1200px;
  margin: auto;
  padding: 0px 20px;  
}

ul.mainNav1 {
  display: flex;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
  align-items: center;
  text
}

ul.mainNav1 li a {
  text-decoration: none !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  color: #555 !important;
  transition: 0.2s ease !important;
  border: none !important;
}

ul.mainNav1 li a:hover {
  color: #000;
}

/* =========================
   SIDEBAR HIDDEN
========================= */

#sidebar {
  display: none;
}

/* =========================
   CONTENT
========================= */

#content {
  padding: 80px 40px;
}

.content-inner {
  max-width: 1200px;
  margin: auto;
}

/* =========================
   TYPOGRAPHY
========================= */

h1 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
}

p {
  font-size: 17px;
  line-height: 1.7;
  color: #555;
}

/* =========================
   FOOTER
========================= */

#footer {
  background: #111;
  color: #bbb;
  padding: 60px 40px;
  margin-top: 80px;
}

.footer-inner {
  max-width: 1200px;
  margin: auto;
  font-size: 14px;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 768px) {
  .header-inner {
    flex-direction: column;
    gap: 10px;
  }

  ul.mainNav1 {
    flex-direction: column;
    gap: 10px;
  }

  #content {
    padding: 50px 20px;
  }
}
@media (max-width: 1260px) {
  .btn-primary {
    display: grid;
    text-align: center;
  }
}


/* =========================
   FLEET SECTION
========================= */

.fleet-section {
  padding: 100px 40px;
  background: #fafafa;
}

.fleet-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.fleet-title {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 15px;
  letter-spacing: -0.5px;
}

.fleet-subtitle {
  font-size: 18px;
  color: #666;
  margin-bottom: 60px;
}

/* GRID */

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

@media (max-width: 768px) {
  .fleet-grid {
    grid-template-columns: 1fr;
  }
}

/* ITEM */

.fleet-item {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  aspect-ratio: 4 / 3;
}

.fleet-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Hover Zoom */
.fleet-item:hover img {
  transform: scale(1.08);
}

/* Overlay */

.fleet-overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 25px;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  color: white;
  text-align: left;
}

.fleet-overlay h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
  color: white;
}
/* =========================
   FEATURES SECTION
========================= */

.features-section {
  padding: 100px 40px;
  background: #f9f9f9;
}

.features-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.features-title {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 70px;
  letter-spacing: -0.5px;
}

/* GRID */

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}

/* CARD */

.feature-card {
  background: white;
  padding: 40px 25px;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.feature-icon {
  font-size: 38px;
  margin-bottom: 20px;
}

.feature-card h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
}

.feature-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

/* =========================
   APP DOWNLOAD SECTION
========================= */

.app-section {
  padding: 100px 40px;
  text-align: center;
  color: white;
  background: linear-gradient(135deg, #2563eb, #4f46e5);
}

.app-container {
  max-width: 900px;
  margin: auto;
}

.app-title {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 25px;
  letter-spacing: -0.5px;
}

.app-subtitle {
  font-size: 18px;
  opacity: 0.9;
  margin-bottom: 60px;
  line-height: 1.6;
}

/* BUTTONS WRAPPER */

.app-buttons {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

/* BUTTON BASE */

.store-btn {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 18px 28px;
  border-radius: 18px;
  text-decoration: none !important;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* DARK BUTTON */

.store-btn.dark {
  background: black;
  color: white;
}

.store-btn.dark:hover {
  background: #111;
  transform: translateY(-4px);
}

/* WHATSAPP BUTTON */

.store-btn.whatsapp {
  background: #22c55e;
  color: white;
}

.store-btn.whatsapp:hover {
  background: #16a34a;
  transform: translateY(-4px);
}

/* ICON */

.store-icon {
  font-size: 26px;
}

/* TEXT */

.store-text {
  text-align: left;
}

.store-text .small {
  display: block;
  font-size: 12px;
  opacity: 0.8;
}

.store-text .big {
  display: block;
  font-size: 18px;
  font-weight: 600;
}

/* RESPONSIVE */

@media (max-width: 768px) {
  .app-title {
    font-size: 30px;
  }

  .app-subtitle {
    font-size: 16px;
  }

  .store-btn {
    width: 100%;
    justify-content: center;
  }
}

.ebooking-premium {
  padding: 120px 20px !important;
  background: #ffffff !important;
  color: #111 !important;
}

.ebooking-wrapper {
  max-width: 1200px !important;
  margin: 0 auto !important;
}

.ebooking-header {
  text-align: left !important;
  max-width: 700px !important;
  margin-bottom: 80px !important;
}

.ebooking-header h2 {
  font-size: 48px !important;
  font-weight: 700 !important;
  margin-bottom: 20px !important;
  letter-spacing: -1px !important;
}

.ebooking-header p {
  font-size: 18px !important;
  line-height: 1.6 !important;
  color: #444 !important;
}

.ebooking-cards {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 60px !important;
  margin-bottom: 80px !important;
}

.ebooking-box {
  padding: 50px !important;
  border-radius: 20px !important;
  border: 1px solid #eee !important;
  transition: 0.3s ease !important;
}

.ebooking-box:hover {
  transform: translateY(-8px) !important;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08) !important;
}

.ebooking-box.featured {
  background: #111 !important;
  color: white !important;
  border: none !important;
}

.ebooking-box h3 {
  font-size: 24px !important;
  margin-bottom: 20px !important;
}

.ebooking-box p {
  font-size: 16px !important;
  line-height: 1.6 !important;
  margin-bottom: 35px !important;
  color: inherit !important;
}

.premium-btn {
  display: inline-block !important;
  padding: 14px 34px !important;
  background: #111 !important;
  color: white !important;
  text-decoration: none !important;
  border-radius: 12px !important;
  font-weight: 600 !important;
  transition: 0.3s ease !important;
}

.premium-btn:hover {
  opacity: 0.85 !important;
}

.ebooking-box.featured .premium-btn.light {
  background: white !important;
  color: #111 !important;
}

.ebooking-footer-note {
  max-width: 800px !important;
  font-size: 14px !important;
  color: #777 !important;
}

.contact-premium {
  padding: 120px 20px !important;
  background: #f8f9fb !important;
  text-align: center !important;
}

.contact-wrapper {
  max-width: 800px !important;
  margin: 0 auto !important;
}

.contact-premium h2 {
  font-size: 42px !important;
  font-weight: 700 !important;
  margin-bottom: 30px !important;
  letter-spacing: -0.5px !important;
}

.contact-text {
  font-size: 18px !important;
  line-height: 1.7 !important;
  color: #555 !important;
  margin-bottom: 60px !important;
}

.contact-details {
  display: flex !important;
  flex-direction: column !important;
  gap: 20px !important;
  align-items: center !important;
}

.contact-item {
  font-size: 20px !important;
  font-weight: 600 !important;
  text-decoration: none !important;
  color: #111 !important;
  transition: 0.3s ease !important;
}

.contact-item:hover {
  opacity: 0.6 !important;
}

.apple-icon {
  width: 28px;
  height: 28px;
  background: url("https://img.icons8.com/ios_filled/512/FFFFFF/mac-os.png") no-repeat center;
  background-size: contain;
  font-size:0;
}

.google-icon {
  width: 28px;
  height: 28px;
  background: url("https://img.icons8.com/ios_filled/512/FFFFFF/google-play.png") no-repeat center;
  background-size: contain;
  font-size:0;
}
.whatsapp-icon {
  width: 28px;
  height: 28px;
  background: url("https://img.icons8.com/ios_filled/512/FFFFFF/whatsapp--v2.png") no-repeat center;
  background-size: contain;
  font-size:0;
}