/* Sections -------------------------------------------------- */

    section {
      position: relative;
      z-index: 3;
    }

    .section {
      padding: 3.5rem 0;
    }

    .section-heading {
      text-align: center;
      margin-bottom: 2.2rem;
    }

    .section-kicker {
      font-size: 0.8rem;
      text-transform: uppercase;
      letter-spacing: 0.18em;
      color: var(--gold-soft);
      opacity: 0.9;
      margin-bottom: 0.5rem;
    }

    .section-title {
      font-size: 2rem;
      margin-bottom: 0.5rem;
    }

    .section-subtitle {
      max-width: 650px;
      margin: 0.25rem auto 0;
      font-size: 0.98rem;
      color: var(--text-muted);
    }

    /* Value props / Pillars -------------------------------------- */

    .pillars {
      display: grid;
      grid-template-columns: repeat(3, minmax(0,1fr));
      gap: 1.6rem;
    }

    .pillar-card {
      padding: 1.4rem 1.3rem;
      background: rgba(8,11,15,0.9);
      border-radius: var(--radius-card);
      border: 1px solid rgba(255,255,255,0.08);
      box-shadow: 0 12px 28px rgba(0,0,0,0.5);
      display: flex;
      flex-direction: column;
      gap: 0.4rem;
    }

    .pillar-icon {
      width: 40px;
      height: 40px;
      border-radius: 999px;
      background: radial-gradient(circle at 30% 0, #ffffff 0, var(--gold) 40%, #80651f 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 0.4rem;
    }

    .pillar-icon i {
      color: #000;
      font-size: 1rem;
    }

    .pillar-title {
      font-weight: 600;
      font-size: 1.05rem;
    }

    .pillar-body {
      font-size: 0.9rem;
      color: var(--text-muted);
    }

    /* Services grid ---------------------------------------------- */

    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 1.5rem;
    }

    .service-card {
      background: radial-gradient(circle at top, #1c252b 0, #0a0d11 55%, #050608 100%);
      border-radius: var(--radius-card);
      border: 1px solid rgba(255,255,255,0.07);
      padding: 1.4rem 1.2rem;
      box-shadow: 0 12px 30px rgba(0,0,0,0.6);
      text-decoration: none;
      color: inherit;
      display: flex;
      flex-direction: column;
      gap: 0.55rem;
      position: relative;
      overflow: hidden;
      transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
    }

    .service-card::before {
      content: "";
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at top left, rgba(201,176,55,0.15), transparent 55%);
      opacity: 0;
      transition: opacity 0.2s ease;
      pointer-events: none;
    }

    .service-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 22px 44px rgba(0,0,0,0.8);
      border-color: rgba(201,176,55,0.7);
    }

    .service-card:hover::before {
      opacity: 1;
    }

    .service-icon {
      width: 38px;
      height: 38px;
      border-radius: 12px;
      background: rgba(0,0,0,0.6);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--gold-soft);
      margin-bottom: 0.2rem;
    }

    .service-title {
      font-weight: 600;
      font-size: 1rem;
    }

    .service-body {
      font-size: 0.9rem;
      color: var(--text-muted);
      flex-grow: 1;
    }

    .service-meta {
      display: flex;
      align-items: center;
      justify-content: space-between;
      font-size: 0.8rem;
      margin-top: 0.4rem;
      color: var(--text-muted);
    }

    .service-meta span {
      display: inline-flex;
      align-items: center;
      gap: 0.25rem;
    }

    .service-meta i {
      font-size: 0.9rem;
      color: var(--gold-soft);
    }

    /* Trust strip / ratings ------------------------------------- */

    .trust-strip {
      margin-top: 2.5rem;
      padding: 1.2rem 1.4rem;
      border-radius: var(--radius-card);
      border: 1px solid rgba(255,255,255,0.08);
      background: rgba(5,6,8,0.92);
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 1.2rem;
      font-size: 0.85rem;
      color: var(--text-muted);
    }

    .trust-main {
      display: flex;
      align-items: center;
      gap: 0.65rem;
    }

    .trust-stars {
      color: #f3c96a;
      font-size: 1rem;
    }

    .trust-label {
      color: var(--text-light);
    }

    .trust-pill-row {
      display: flex;
      flex-wrap: wrap;
      gap: 0.6rem;
    }

    .trust-pill {
      border-radius: 999px;
      border: 1px solid rgba(255,255,255,0.18);
      padding: 0.25rem 0.65rem;
      display: inline-flex;
      align-items: center;
      gap: 0.35rem;
      font-size: 0.8rem;
      background: rgba(10,14,18,0.95);
    }

    .trust-pill i {
      color: var(--gold-soft);
    }

    /* CTA band -------------------------------------------------- */

    .cta-band {
      margin-top: 2.5rem;
      padding: 1.4rem 1.6rem;
      border-radius: var(--radius-card);
      background: radial-gradient(circle at top left, #1a2329 0, #080b0f 50%, #050608 100%);
      border: 1px solid rgba(255,255,255,0.09);
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
    }

    .cta-band-text {
      font-size: 0.95rem;
      color: var(--text-muted);
    }

    .cta-band-text strong {
      color: var(--text-light);
    }

    /* Fleet section --------------------------------------------- */

    .fleet-section {
      padding: 3.5rem 0;
      background: radial-gradient(circle at top right, #131b22 0, #050608 65%, #050608 100%);
    }

    .fleet-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
      gap: 2rem;
      align-items: center;
    }

    .fleet-highlights {
      display: flex;
      flex-direction: column;
      gap: 1rem;
      font-size: 0.95rem;
      color: var(--text-muted);
    }

    .fleet-highlight-row {
      display: flex;
      gap: 1rem;
    }

    .fleet-highlight-label {
      min-width: 120px;
      font-weight: 600;
      color: var(--text-light);
    }

    .fleet-cards {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 1rem;
    }

    .fleet-card {
      background: rgba(8,11,15,0.95);
      border-radius: 14px;
      border: 1px solid rgba(255,255,255,0.08);
      overflow: hidden;
      display: flex;
      flex-direction: column;
      box-shadow: 0 16px 40px rgba(0,0,0,0.7);
    }

    .fleet-card img {
      width: 110px;
      height: 36px;
      object-fit: cover;
      display: block;
    }

    .fleet-card-body {
      padding: 0.75rem 0.85rem 0.9rem;
      font-size: 0.85rem;
      display: flex;
      flex-direction: column;
      gap: 0.25rem;
      height: 100%;
    }

    .fleet-card-title {
      font-weight: 600;
      margin-bottom: 0.1rem;
    }

    .fleet-capacity {
      font-size: 0.8rem;
      color: var(--text-muted);
    }

    .fleet-desc {
      font-size: 0.8rem;
      color: var(--text-muted);
      margin-top: 0.2rem;
      min-height: 40px;
    }

    .fleet-tag {
      display: inline-flex;
      align-items: center;
      gap: 0.25rem;
      padding: 0.15rem 0.55rem;
      border-radius: 999px;
      border: 1px solid rgba(255,255,255,0.2);
      font-size: 0.72rem;
      color: var(--gold-soft);
      margin-top: auto;
      align-self: flex-start;
    }

    .fleet-tag i {
      font-size: 0.8rem;
    }

    /* Stats & App band ------------------------------------------ */

    .stats-app-band {
      padding: 3.5rem 0;
    }

    .stats-app-grid {
      display: grid;
      grid-template-columns: minmax(0,1.1fr) minmax(0,1fr);
      gap: 2.2rem;
      align-items: center;
    }

    .stats-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0,1fr));
      gap: 1rem;
    }

    .stat-card {
      text-align: center;
      padding: 1rem 0.5rem;
      border-radius: var(--radius-card);
      border: 1px solid rgba(255,255,255,0.08);
      background: rgba(8,11,15,0.9);
    }

    .stat-number {
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--gold-soft);
      margin-bottom: 0.1rem;
    }

    .stat-label {
      font-size: 0.8rem;
      color: var(--text-muted);
    }

    .app-card {
      border-radius: var(--radius-card);
      background: radial-gradient(circle at top left, #202831 0, #080b0f 50%, #050608 100%);
      border: 1px solid rgba(255,255,255,0.09);
      padding: 1.4rem 1.3rem;
      box-shadow: 0 16px 38px rgba(0,0,0,0.7);
      display: flex;
      flex-direction: column;
      gap: 0.8rem;
    }

    .app-title {
      font-size: 1rem;
      font-weight: 600;
    }

    .app-copy {
      font-size: 0.9rem;
      color: var(--text-muted);
    }

    .app-badges {
      display: flex;
      flex-wrap: wrap;
      gap: 0.6rem;
      margin-top: 0.5rem;
    }

    .app-badges img {
      height: 42px;
      width: auto;
    }
.app-badges {
  margin-top: 1.5rem;
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* BADGE IMAGE SIZING */
.app-badges img {
  height: 48px;           /* same size for both badges */
  width: auto;
  display: block;
  object-fit: contain;
  transition: transform 0.25s ease;
}

/* HOVER EFFECT */
.app-badges img:hover {
  transform: scale(1.05);
}

/* TABLET */
@media (max-width: 992px) {
  .app-badges img {
    height: 44px;
  }
}

/* MOBILE */
@media (max-width: 768px) {
  .app-badges {
    gap: 12px;
  }
  .app-badges img {
    height: 40px;
  }
}

/* SMALL MOBILE (iPhone SE etc.) */
@media (max-width: 480px) {
  .app-badges img {
    height: 36px;
  }
}

    /* Meet chauffeurs ------------------------------------------- */

    .chauffeurs-section {
      padding: 3.5rem 0;
      background: rgba(5,6,8,0.9);
    }

    .chauffeurs-grid {
      display: grid;
      grid-template-columns: minmax(0,1.1fr) minmax(0,1fr);
      gap: 2.2rem;
      align-items: center;
    }

    .chauffeurs-copy {
      font-size: 0.95rem;
      color: var(--text-muted);
      display: flex;
      flex-direction: column;
      gap: 0.6rem;
    }

    .chauffeurs-list {
      list-style: none;
      margin-top: 0.4rem;
    }

    .chauffeurs-list li {
      display: flex;
      gap: 0.4rem;
      font-size: 0.9rem;
      margin-bottom: 0.2rem;
    }

    .chauffeurs-list i {
      color: var(--gold-soft);
      margin-top: 0.2rem;
    }

    .chauffeurs-card {
      border-radius: var(--radius-card);
      background: radial-gradient(circle at top, #182027 0, #050608 60%, #050608 100%);
      border: 1px solid rgba(255,255,255,0.1);
      padding: 1.4rem 1.2rem;
      box-shadow: 0 18px 40px rgba(0,0,0,0.75);
      font-size: 0.88rem;
    }

    .chauffeurs-quote {
      font-style: italic;
      margin-bottom: 0.8rem;
      color: var(--text-light);
    }

    .chauffeurs-signoff {
      font-size: 0.82rem;
      color: var(--text-muted);
    }

    /* Testimonials slider ---------------------------------------- */

    .testimonials-section {
      padding: 3.5rem 0;
    }

    .testimonials-wrapper {
      border-radius: var(--radius-card);
      background: radial-gradient(circle at top left, #1b232a 0, #050608 60%, #050608 100%);
      border: 1px solid rgba(255,255,255,0.09);
      padding: 1.6rem 1.4rem;
      box-shadow: 0 18px 40px rgba(0,0,0,0.75);
    }

    .testimonials-slider {
      position: relative;
      overflow: hidden;
      min-height: 130px;
    }

    .testimonial {
      display: none;
      font-size: 0.95rem;
      color: var(--text-muted);
    }

    .testimonial.active {
      display: block;
      animation: fadeInUp 0.5s ease;
    }

    .testimonial-quote {
      font-style: italic;
      margin-bottom: 0.6rem;
      color: var(--text-light);
    }

    .testimonial-name {
      font-size: 0.85rem;
      color: var(--gold-soft);
    }

    .testimonial-meta {
      font-size: 0.8rem;
      color: var(--text-muted);
    }

    .testimonial-controls {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-top: 0.8rem;
      font-size: 0.8rem;
      color: var(--text-muted);
    }

    .testimonial-buttons {
      display: flex;
      gap: 0.4rem;
    }

    .testimonial-buttons button {
      width: 26px;
      height: 26px;
      border-radius: 999px;
      border: 1px solid rgba(255,255,255,0.4);
      background: transparent;
      color: var(--text-light);
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.8rem;
      transition: background 0.15s ease, color 0.15s ease;
    }

    .testimonial-buttons button:hover {
      background: var(--gold);
      color: #000;
    }

    /* FAQ section ------------------------------------------------ */

    .faq-section {
      padding: 3.5rem 0;
      background: rgba(5,6,8,0.96);
    }

    .faq-grid {
      display: grid;
      grid-template-columns: minmax(0,1.1fr) minmax(0,1.1fr);
      gap: 2.3rem;
    }

    .faq-intro-text {
      font-size: 0.95rem;
      color: var(--text-muted);
    }

    .faq-list {
      border-radius: var(--radius-card);
      background: rgba(8,11,15,0.9);
      border: 1px solid rgba(255,255,255,0.1);
      padding: 0.8rem 0.8rem;
    }

    .faq-item {
      border-bottom: 1px solid rgba(255,255,255,0.06);
    }

    .faq-item:last-child {
      border-bottom: none;
    }

    .faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 0.6rem 0.4rem;
      cursor: pointer;
      font-size: 0.9rem;
      color: var(--text-light);
    }

    .faq-question span {
      flex: 1;
      padding-right: 1rem;
    }

    .faq-question i {
      color: var(--gold-soft);
      font-size: 0.8rem;
    }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-item.active .faq-answer {
  max-height: 500px;
}

    /* Service area / Map ----------------------------------------- */

    .service-area-section {
      padding: 3.5rem 0;
    }

    .service-area-grid {
      display: grid;
      grid-template-columns: minmax(0,1.1fr) minmax(0,1.1fr);
      gap: 2.2rem;
      align-items: stretch;
    }

    .service-area-card {
      border-radius: var(--radius-card);
      background: radial-gradient(circle at top left, #1b232a 0, #050608 60%, #050608 100%);
      border: 1px solid rgba(255,255,255,0.09);
      padding: 1.2rem 1.3rem;
      font-size: 0.9rem;
      color: var(--text-muted);
    }

    .service-area-title {
      font-weight: 600;
      margin-bottom: 0.4rem;
      color: var(--text-light);
    }

    .service-area-list {
      list-style: none;
      margin-top: 0.4rem;
      columns: 2;
      column-gap: 1.5rem;
    }

    .service-area-list li {
      margin-bottom: 0.2rem;
    }

    .service-map-placeholder {
      border-radius: var(--radius-card);
      background: linear-gradient(135deg,#182228,#0b1015);
      border: 1px dashed rgba(255,255,255,0.15);
      padding: 1.2rem;
      font-size: 0.85rem;
      color: var(--text-muted);
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
    }

    /* Footer ---------------------------------------------------- */

    .footer {
      background: #050608;
      border-top: 1px solid rgba(255,255,255,0.06);
      padding: 3rem 0 2.2rem;
      margin-top: 2.5rem;
      color: var(--text-muted);
    }

    .footer-inner {
      max-width: var(--max-width);
      margin: 0 auto;
      padding: 0 1.5rem;
      display: grid;
      grid-template-columns: minmax(0,2fr) minmax(0,1.2fr);
      gap: 2.5rem;
      border-bottom: 1px solid rgba(255,255,255,0.06);
      padding-bottom: 1.8rem;
    }

    .footer-brand {
      max-width: 420px;
      font-size: 0.9rem;
    }

    .footer-brand strong {
      color: var(--text-light);
    }

    .footer-links {
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem 1.3rem;
      font-size: 0.88rem;
    }

    .footer-links a {
      text-decoration: none;
      color: var(--text-muted);
    }

    .footer-links a:hover {
      color: var(--gold-soft);
    }

    .footer-bottom {
      max-width: var(--max-width);
      margin: 0 auto;
      padding: 1.2rem 1.5rem 0;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      font-size: 0.8rem;
      gap: 0.75rem;
    }

    .footer-bottom a {
      color: var(--text-muted);
      text-decoration: none;
    }

    .footer-bottom a:hover {
      color: var(--gold-soft);
    }

    .footer-social {
      display: flex;
      align-items: center;
      gap: 0.6rem;
      font-size: 1.2rem;
    }

    .footer-social a {
      color: var(--text-muted);
      transition: color 0.2s ease, transform 0.2s ease;
    }

    .footer-social a:hover {
      color: var(--gold-soft);
      transform: translateY(-1px);
    }

    /* WhatsApp button ------------------------------------------- */

    .whatsapp-button {
      position: fixed;
      bottom: 18px;
      right: 18px;
      background-color: #25D366;
      color: white;
      border-radius: 999px;
      padding: 10px 15px;
      font-size: 0.9rem;
      font-weight: 600;
      text-decoration: none;
      display: flex;
      align-items: center;
      gap: 0.5rem;
      box-shadow: 0 8px 18px rgba(0,0,0,0.6);
      z-index: 999;
    }

    .whatsapp-button i {
      font-size: 1.3rem;
    }

    .whatsapp-button:hover {
      background-color: #1ebe5b;
    }


/* Tablet adjustments */
@media (max-width: 992px) {
  .whatsapp-button {
    bottom: 16px;
    right: 16px;
    padding: 9px 14px;
    font-size: 0.85rem;
  }
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .whatsapp-button {
    bottom: 14px;
    right: 14px;
    padding: 8px 12px;
    font-size: 0.82rem;
  }
}

/* Small mobile devices (iPhone SE, older Android) */
@media (max-width: 480px) {
  .whatsapp-button {
    bottom: 12px;
    right: 12px;
    padding: 7px 11px;
    font-size: 0.78rem;
  }
}

    /* GTranslate position --------------------------------------- */
.gtranslate_wrapper {
  position: fixed !important;
  bottom: 20px;
  left: 20px;
  z-index: 9998 !important; /* stays BELOW whatsapp */
  transform: scale(1);
}

@media (max-width: 768px) {
  .gtranslate_wrapper {
    bottom: 70px !important; /* lifts it above whatsapp */
    left: 14px;
    transform: scale(0.9);
  }
}

@media (max-width: 480px) {
  .gtranslate_wrapper {
    bottom: 68px !important;
    left: 12px;
    transform: scale(0.85);
  }
}


    /* Responsive adjustments ------------------------------------ */

    @media (max-width: 992px) {
      .hero-inner {
        grid-template-columns: minmax(0,1.2fr);
      }
      .booking-card {
        margin-left: 0;
        margin-top: 1.2rem;
      }
      .fleet-grid {
        grid-template-columns: minmax(0,1fr);
      }
      .fleet-cards {
        grid-template-columns: repeat(3, minmax(0,1fr));
      }
      .stats-grid {
        grid-template-columns: repeat(2,minmax(0,1fr));
      }
      .stats-app-grid {
        grid-template-columns: minmax(0,1fr);
      }
      .chauffeurs-grid {
        grid-template-columns: minmax(0,1fr);
      }
      .faq-grid {
        grid-template-columns: minmax(0,1fr);
      }
      .service-area-grid {
        grid-template-columns: minmax(0,1fr);
      }
    }

    @media (max-width: 768px) {
      .header-inner {
        padding: 0.7rem 1rem;
      }
      nav {
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;
        background: rgba(5,6,8,0.98);
        padding: 0.8rem 1.4rem 1rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.4rem;
        border-bottom: 1px solid rgba(255,255,255,0.06);
        display: none;
      }
      nav.active {
        display: flex;
      }
      .nav-right {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
      }
      .social-icons {
        justify-content: flex-start;
      }
      .menu-toggle {
        display: block;
      }
      .hero {
        padding-top: 80px;
        min-height: 100vh;
      }
      .hero-inner {
        padding-top: 1.5rem;
      }
      .pillars {
        grid-template-columns: minmax(0,1fr);
      }
      .services-grid {
        grid-template-columns: minmax(0,1fr);
      }
      .fleet-cards {
        grid-template-columns: minmax(0,1fr);
      }
      .footer-inner {
        grid-template-columns: minmax(0,1fr);
      }
      .gtranslate_wrapper {
        position: static;
        margin: 0.5rem auto;
      }
      /* Mobile dropdown adjustments */
      .nav-dropdown-menu {
        position: static;
        border: none;
        background: none;
        padding-left: 1rem;
      }
    }

    @media (max-width: 480px) {
      .hero-title {
        font-size: 2.2rem;
      }
      .hero-badges {
        flex-direction: column;
        align-items: flex-start;
      }
      .stats-grid {
        grid-template-columns: minmax(0,1fr);
      }
      .service-area-list {
        columns: 1;
      }
    }

    @keyframes fadeInUp {
      0% { opacity: 0; transform: translateY(30px); }
      100% { opacity: 1; transform: translateY(0); }
    }
    .cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.95);
  color: #ffffff;
  z-index: 9999;
  display: flex;
  justify-content: center;
  padding: 16px;
}

.cookie-consent.hidden {
  display: none;
}

.cookie-box {
  max-width: 900px;
  width: 100%;
  background: #0b0b0b;
  border: 1px solid #c9a24d;
  border-radius: 12px;
  padding: 20px 24px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

.cookie-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: #c9a24d;
}

.cookie-text {
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 16px;
}

.cookie-text a {
  color: #c9a24d;
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 10px 18px;
  font-size: 0.9rem;
  border-radius: 6px;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
}

.cookie-btn.accept {
  background: #c9a24d;
  color: #000;
  font-weight: 600;
}

.cookie-btn.accept:hover {
  background: #b18e3f;
}

.cookie-btn.decline {
  background: transparent;
  color: #ffffff;
  border: 1px solid #666;
}

.cookie-btn.decline:hover {
  border-color: #999;
}
