﻿:root {
      --navy: #1e1e1e;
      --navy-mid: #2d2d2d;
      --navy-light: #3d3d3d;
      --gold: #f26522;
      --gold-dark: #d44f10;
      --gold-light: #ff8c52;
      --white: #ffffff;
      --off-white: #f5f6fa;
      --muted: #555555;
      --text-dark: #0d1b3e;
    }
    * { box-sizing: border-box; }
    html { overflow-x: hidden; }
    body { font-family: 'Barlow', sans-serif; background: var(--white); color: var(--text-dark); overflow-x: hidden; font-size: 17px; }
    h1, h2, h3, .display-font { font-family: 'Playfair Display', serif; }
    .condensed { font-family: 'Barlow Condensed', sans-serif; }

    /* ── NAV ── */
    .navbar {
      background: var(--navy);
      padding: 1rem 0;
      position: sticky; top: 0; z-index: 1000;
      border-bottom: 2px solid var(--gold);
      transition: padding 0.35s ease, box-shadow 0.35s ease;
    }
    .navbar.scrolled {
      padding: 0.42rem 0;
      box-shadow: 0 4px 28px rgba(0,0,0,0.45);
    }
    .navbar-brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
    .brand-icon {
      width: 46px; height: 46px; background: var(--gold); border-radius: 10px;
      display: flex; align-items: center; justify-content: center; font-size: 22px; color: #fff;
    }
    .brand-text { line-height: 1.1; }
    .brand-text .top { font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 700; color: var(--white); }
    .brand-text .bottom { font-size: 11px; font-weight: 500; color: var(--gold); letter-spacing: 2px; text-transform: uppercase; }

    .navbar-nav .nav-link {
      color: rgba(255,255,255,0.8) !important;
      font-size: 13px; font-weight: 500;
      padding: 0.4rem 0.6rem !important;
      letter-spacing: 0.2px; transition: color 0.2s;
    }
    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link.active { color: var(--gold) !important; }

    .btn-book-nav {
      background: var(--gold); color: #fff; font-weight: 700; font-size: 13px;
      padding: 8px 20px; border-radius: 6px; border: none;
      letter-spacing: 0.5px; transition: background 0.2s, transform 0.1s; text-decoration: none;
    }
    .btn-book-nav:hover { background: var(--gold-light); transform: translateY(-1px); color: #fff; }

    /* â”€â”€ MOBILE OFFCANVAS â”€â”€ */
    .mobile-offcanvas { background: var(--navy) !important; width: 300px !important; border-left: 3px solid var(--gold) !important; }
    .mobile-offcanvas .offcanvas-header { border-bottom: 1px solid rgba(255,255,255,0.08); padding: 1.2rem 1.5rem; }
    .mobile-nav-link {
      display: flex; align-items: center; gap: 14px; padding: 14px 4px;
      font-size: 15px; font-weight: 600; color: rgba(255,255,255,0.82); text-decoration: none;
      border-bottom: 1px solid rgba(255,255,255,0.05); transition: color 0.2s, padding-left 0.2s;
    }
    .mobile-nav-link:hover, .mobile-nav-link.active { color: var(--gold); padding-left: 8px; }
    .mobile-nav-link i { color: var(--gold); width: 20px; text-align: center; font-size: 14px; }
    .mobile-nav-divider { border-color: rgba(255,255,255,0.08); margin: 1.2rem 0; }
    .mobile-call-row {
      display: flex; align-items: center; gap: 10px;
      color: rgba(255,255,255,0.7); font-size: 14px; font-weight: 600; text-decoration: none; margin-bottom: 1rem;
    }
    .mobile-call-row i { color: var(--gold); }

    /* ── NAV DROPDOWNS (desktop) ── */
    .nav-dropdown-wrap { position: relative; }
    .nav-chevron { font-size: 9px; margin-left: 4px; transition: transform 0.25s; vertical-align: middle; }
    .nav-dropdown-wrap:hover .nav-chevron { transform: rotate(-180deg); }
    .nav-dropdown-menu {
      position: absolute; top: 100%; left: 50%;
      transform: translateX(-50%) translateY(4px);
      background: var(--navy); border: 1px solid rgba(242,101,34,0.3); border-radius: 12px;
      padding: 0.4rem 0; padding-top: 0.9rem; min-width: 220px;
      opacity: 0; visibility: hidden; pointer-events: none;
      transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
      box-shadow: 0 16px 48px rgba(0,0,0,0.45);
      z-index: 2000;
      /* Invisible top padding bridges the gap — hover stays live across it */
      margin-top: 0;
    }
    .nav-dropdown-menu::before {
      content: ''; position: absolute; top: -6px; left: 50%; transform: translateX(-50%);
      border-left: 6px solid transparent; border-right: 6px solid transparent;
      border-bottom: 6px solid rgba(242,101,34,0.3);
    }
    /* Transparent bridge fills the visual gap so hover isn't broken */
    .nav-dropdown-wrap::after {
      content: ''; position: absolute; top: 100%; left: 0; right: 0; height: 12px;
    }
    .nav-dropdown-wrap:hover .nav-dropdown-menu {
      opacity: 1; visibility: visible; pointer-events: auto;
      transform: translateX(-50%) translateY(0);
    }
    .nav-dropdown-item {
      display: flex; align-items: center; gap: 10px;
      padding: 9px 18px; font-size: 13px; font-weight: 500;
      color: rgba(255,255,255,0.8); text-decoration: none;
      transition: color 0.15s, background 0.15s; white-space: nowrap;
    }
    .nav-dropdown-item:hover { color: var(--gold); background: rgba(242,101,34,0.07); }
    .nav-dropdown-item i { color: var(--gold); width: 16px; font-size: 11px; flex-shrink: 0; }
    .nav-dropdown-divider { height: 1px; background: rgba(255,255,255,0.08); margin: 0.3rem 0; }
    .nav-dropdown-viewall {
      font-weight: 700; color: var(--gold) !important; justify-content: space-between;
      padding-top: 10px;
    }
    .nav-dropdown-viewall i { width: auto; font-size: 10px; }

    /* ── MOBILE ACCORDION SUBMENU ── */
    .mobile-nav-accordion { border-bottom: 1px solid rgba(255,255,255,0.05); }
    .mobile-nav-accordion-btn {
      width: 100%; background: none; border: none; cursor: pointer; border-bottom: none !important;
      justify-content: space-between !important; text-align: left;
    }
    .mobile-nav-accordion-btn:focus { outline: none; box-shadow: none; }
    .mob-sub-chevron { font-size: 11px; flex-shrink: 0; transition: transform 0.25s; color: rgba(255,255,255,0.4); }
    .mobile-nav-accordion-btn[aria-expanded=”true”] .mob-sub-chevron { transform: rotate(-180deg); color: var(--gold); }
    .mobile-nav-submenu { padding: 0.25rem 0 0.75rem 2.8rem; }
    .mobile-nav-sublink {
      display: flex; align-items: center; gap: 12px;
      padding: 9px 4px; font-size: 14px; font-weight: 500;
      color: rgba(255,255,255,0.6); text-decoration: none;
      border-bottom: 1px solid rgba(255,255,255,0.04);
      transition: color 0.2s, padding-left 0.2s;
    }
    .mobile-nav-sublink:hover { color: var(--gold); padding-left: 6px; }
    .mobile-nav-sublink i { color: var(--gold); width: 15px; font-size: 11px; flex-shrink: 0; }
    .mobile-nav-sublink-viewall {
      font-weight: 700; color: var(--gold) !important; justify-content: space-between;
      border-top: 1px solid rgba(255,255,255,0.1) !important; margin-top: 0.2rem;
    }
    .mobile-nav-sublink-viewall i { width: auto; }

    /* â”€â”€ BUTTONS â”€â”€ */
    .btn-book-main {
      background: var(--gold); color: #fff;
      font-family: 'Barlow Condensed', sans-serif; font-size: 1.1rem; font-weight: 700;
      letter-spacing: 1px; text-transform: uppercase; padding: 14px; border: none;
      border-radius: 12px; width: 100%; transition: all 0.2s; cursor: pointer;
    }
    .btn-book-main:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(242,101,34,0.4); color: #fff; }
    .btn-cta-primary {
      background: var(--gold); color: #fff;
      font-family: 'Barlow Condensed', sans-serif; font-size: 1.1rem; font-weight: 700;
      letter-spacing: 1px; text-transform: uppercase; padding: 16px 40px;
      border: none; border-radius: 12px; text-decoration: none; display: inline-block; transition: all 0.2s;
    }
    .btn-cta-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 12px 30px rgba(242,101,34,0.4); color: #fff; }
    .btn-cta-outline {
      background: transparent; color: var(--white);
      font-family: 'Barlow Condensed', sans-serif; font-size: 1.1rem; font-weight: 700;
      letter-spacing: 1px; text-transform: uppercase; padding: 15px 40px;
      border: 2px solid rgba(255,255,255,0.3); border-radius: 12px;
      text-decoration: none; display: inline-block; transition: all 0.2s;
    }
    .btn-cta-outline:hover { border-color: var(--white); color: var(--white); }
    .btn-fleet {
      display: block; width: 100%; margin-top: 1.1rem;
      background: transparent; border: 1.5px solid var(--gold); color: var(--gold);
      font-size: 13px; font-weight: 700; letter-spacing: 0.5px;
      padding: 10px; border-radius: 10px; text-align: center; transition: all 0.2s; text-decoration: none;
    }
    .btn-fleet:hover { background: var(--gold); color: #fff; }
    .btn-price {
      display: block; margin-top: 1.5rem; padding: 12px; border-radius: 12px;
      font-weight: 700; font-size: 14px; text-align: center; text-decoration: none;
      transition: all 0.2s; border: 2px solid var(--navy); color: var(--navy); background: transparent;
    }
    .btn-price:hover { background: var(--navy); color: var(--white); }
    .price-card.popular .btn-price { background: var(--gold); color: var(--navy); border-color: var(--gold); }
    .price-card.popular .btn-price:hover { background: var(--gold-light); border-color: var(--gold-light); }

    /* â”€â”€ TRUST BAR â”€â”€ */
    .trust-bar { background: var(--gold); padding: 1rem 0; }
    .trust-item { display: flex; align-items: center; gap: 10px; color: #fff; font-weight: 600; font-size: 14px; }
    .trust-item i { font-size: 18px; }
    .trust-divider { width: 1px; height: 30px; background: rgba(255,255,255,0.25); }

    /* â”€â”€ STATS â”€â”€ */
    .stats-section { background: var(--navy); padding: 2rem 0; }
    .stat-num { font-family: 'Playfair Display', serif; font-size: 3rem; font-weight: 900; color: var(--gold); line-height: 1; }
    .stat-label { color: rgba(255,255,255,0.92); font-size: 14px; font-weight: 500; margin-top: 6px; }
    .stat-col { padding: 1.2rem 1rem; text-align: center; }
    .stat-col + .stat-col { border-left: 1px solid rgba(255,255,255,0.1); }

    /* â”€â”€ SECTION HEADERS â”€â”€ */
    .section-eyebrow {
      font-family: 'Barlow Condensed', sans-serif; font-size: 13px; font-weight: 700;
      letter-spacing: 3px; text-transform: uppercase; color: var(--gold-dark); margin-bottom: 0.5rem;
    }
    .section-title { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 900; color: var(--navy); line-height: 1.15; }
    .section-title.light { color: var(--white); }
    .section-sub { color: var(--muted); font-size: 1rem; line-height: 1.7; max-width: 560px; margin: 0 auto; }
    .divider-gold { width: 50px; height: 3px; background: var(--gold); border-radius: 2px; }
    .section-pad { padding: 6rem 0; }

    /* â”€â”€ SERVICE CARDS â”€â”€ */
    .services-section { padding: 6rem 0; background: var(--off-white); }
    .service-card {
      background: var(--white); border-radius: 18px; padding: 2rem; height: 100%;
      border: 1.5px solid transparent; transition: all 0.3s; position: relative; overflow: hidden;
    }
    .service-card::before {
      content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
      background: var(--gold); transform: scaleX(0); transition: transform 0.3s;
    }
    .service-card:hover { border-color: rgba(242,101,34,0.3); box-shadow: 0 20px 50px rgba(8,18,43,0.1); transform: translateY(-4px); }
    .service-card:hover::before { transform: scaleX(1); }
    .service-icon-wrap {
      width: 64px; height: 64px;
      background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
      border-radius: 16px; display: flex; align-items: center; justify-content: center;
      font-size: 26px; color: var(--gold); margin-bottom: 1.2rem;
    }
    .service-card h5 { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 700; color: var(--navy); margin-bottom: 0.6rem; }
    .service-card p { font-size: 14px; color: var(--muted); line-height: 1.7; margin: 0; }
    .service-tag {
      display: inline-block; background: rgba(242,101,34,0.12); color: var(--gold-dark);
      font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
      padding: 4px 10px; border-radius: 20px; margin-top: 1rem;
    }

    /* â”€â”€ WHY US â”€â”€ */
    .why-section { padding: 6rem 0; background: var(--white); }
    .why-img-placeholder {
      background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
      border-radius: 20px; padding: 3rem; position: relative; overflow: hidden; min-height: 460px;
    }
    .why-car-icon { font-size: 10rem; color: rgba(242,101,34,0.15); position: absolute; bottom: -1rem; right: -1rem; }
    .why-badge-float {
      background: var(--gold); color: #fff; border-radius: 14px;
      padding: 1.2rem 1.5rem; margin-bottom: 1rem; display: flex; align-items: center; gap: 12px;
    }
    .why-badge-float i { font-size: 24px; }
    .why-badge-float .title { font-weight: 700; font-size: 15px; }
    .why-badge-float .sub { font-size: 12px; opacity: 0.7; }
    .feature-row { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.5rem; }
    .feature-icon-sm {
      width: 46px; height: 46px; border-radius: 12px; background: rgba(242,101,34,0.12);
      display: flex; align-items: center; justify-content: center; font-size: 20px; color: var(--gold-dark); flex-shrink: 0;
    }
    .feature-row h6 { font-weight: 700; color: var(--navy); margin-bottom: 4px; font-size: 15px; }
    .feature-row p { font-size: 13px; color: var(--muted); margin: 0; line-height: 1.6; }

    /* â”€â”€ FLEET â”€â”€ */
    .fleet-section { padding: 6rem 0; background: var(--navy); }
    .fleet-card {
      background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
      border-radius: 18px; overflow: hidden; transition: all 0.3s; height: 100%;
    }
    .fleet-card:hover { background: rgba(242,101,34,0.08); border-color: rgba(242,101,34,0.3); transform: translateY(-4px); }
    .fleet-img-wrap { width: 100%; height: 280px; overflow: hidden; background: #fff; }
    .fleet-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
    .fleet-card:hover .fleet-img-wrap img { transform: scale(1.06); }
    .fleet-card-body { padding: 1.4rem; }
    .fleet-card h5 { font-family: 'Playfair Display', serif; color: var(--white); font-size: 1.15rem; margin-bottom: 0.3rem; }
    .fleet-card .capacity { font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--gold); margin-bottom: 0.7rem; }
    .fleet-feature { display: flex; align-items: center; gap: 8px; font-size: 13px; color: rgba(255,255,255,0.65); margin-bottom: 4px; }
    .fleet-feature i { color: var(--gold); font-size: 12px; }

    /* â”€â”€ HOW IT WORKS â”€â”€ */
    .how-section { padding: 6rem 0; background: var(--off-white); }
    .step-wrap { position: relative; }
    .step-connector {
      position: absolute; top: 38px; left: calc(50% + 38px); right: calc(-50% + 38px);
      height: 2px; background: linear-gradient(90deg, var(--gold) 0%, rgba(242,101,34,0.3) 100%); z-index: 0;
    }
    .step-icon-wrap {
      width: 76px; height: 76px; background: var(--navy); border: 3px solid var(--gold);
      border-radius: 50%; display: flex; align-items: center; justify-content: center;
      font-size: 28px; color: var(--gold); margin: 0 auto 1rem; position: relative; z-index: 1;
    }
    .step-num {
      position: absolute; top: -4px; right: -4px; width: 24px; height: 24px;
      background: var(--gold); color: #fff; border-radius: 50%;
      font-size: 11px; font-weight: 900; display: flex; align-items: center; justify-content: center;
    }
    .step-title { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: 0.4rem; }
    .step-desc { font-size: 13px; color: var(--muted); line-height: 1.6; }

    /* â”€â”€ TESTIMONIALS â”€â”€ */
    .testimonials-section { padding: 6rem 0; background: var(--navy); }
    .testi-card {
      background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
      border-radius: 18px; padding: 1.8rem; height: 100%; transition: all 0.3s;
    }
    .testi-card:hover { border-color: rgba(242,101,34,0.3); }
    .stars { color: var(--gold); font-size: 14px; margin-bottom: 1rem; }
    .testi-text { font-size: 14px; color: rgba(255,255,255,0.8); line-height: 1.75; font-style: italic; margin-bottom: 1.2rem; }
    .testi-author { display: flex; align-items: center; gap: 12px; }
    .testi-avatar {
      width: 44px; height: 44px; border-radius: 50%; background: var(--gold);
      display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 15px; color: #fff;
    }
    .testi-name { font-weight: 700; color: var(--white); font-size: 14px; }
    .testi-role { font-size: 12px; color: rgba(255,255,255,0.55); }

    /* â”€â”€ PRICING â”€â”€ */
    .pricing-section { padding: 6rem 0; background: var(--off-white); }
    .price-card {
      background: var(--white); border-radius: 20px; padding: 2rem; height: 100%;
      border: 2px solid transparent; transition: all 0.3s; position: relative;
    }
    .price-card.popular { background: var(--navy); border-color: var(--gold); }
    .popular-badge {
      position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
      background: var(--gold); color: #fff; font-size: 11px; font-weight: 800;
      letter-spacing: 1.5px; text-transform: uppercase; padding: 4px 20px; border-radius: 20px;
    }
    .price-card:not(.popular):hover { border-color: rgba(242,101,34,0.3); box-shadow: 0 20px 50px rgba(8,18,43,0.1); }
    .price-title { font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 700; }
    .price-card:not(.popular) .price-title { color: var(--navy); }
    .price-card.popular .price-title { color: var(--white); }
    .price-icon { font-size: 2.5rem; margin-bottom: 1rem; }
    .price-card:not(.popular) .price-icon { color: var(--gold); }
    .price-card.popular .price-icon { color: var(--gold); }
    .price-amount { font-size: 2.4rem; font-weight: 800; line-height: 1; }
    .price-card:not(.popular) .price-amount { color: var(--navy); }
    .price-card.popular .price-amount { color: var(--gold); }
    .price-from { font-size: 13px; color: var(--muted); margin-bottom: 1.2rem; }
    .price-card.popular .price-from { color: rgba(255,255,255,0.5); }
    .price-feature { display: flex; align-items: center; gap: 9px; font-size: 13px; margin-bottom: 8px; }
    .price-card:not(.popular) .price-feature { color: var(--text-dark); }
    .price-card.popular .price-feature { color: rgba(255,255,255,0.8); }
    .price-feature i { color: var(--gold); font-size: 13px; }

    /* â”€â”€ CTA SECTION â”€â”€ */
    .cta-section {
      background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
      padding: 6rem 0; position: relative; overflow: hidden;
    }
    .cta-bg-pattern {
      position: absolute; inset: 0;
      background-image: repeating-linear-gradient(45deg, rgba(242,101,34,0.03) 0, rgba(242,101,34,0.03) 1px, transparent 0, transparent 50%);
      background-size: 40px 40px;
    }
    .cta-phone { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 900; color: var(--gold); }

    /* â”€â”€ FOOTER â”€â”€ */
    .footer { background: #111111; padding: 4rem 0 0; }
    .footer-logo-text { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700; color: var(--white); }
    .footer-tagline { font-size: 13px; color: rgba(255,255,255,0.55); margin-top: 4px; line-height: 1.6; }
    .footer h6 { font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 1.2rem; }
    .footer-links { list-style: none; padding: 0; margin: 0; }
    .footer-links li { margin-bottom: 8px; }
    .footer-links a { font-size: 14px; color: rgba(255,255,255,0.55); text-decoration: none; transition: color 0.2s; }
    .footer-links a:hover { color: var(--gold); }
    .footer-contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; }
    .footer-contact-item i { color: var(--gold); font-size: 15px; margin-top: 2px; flex-shrink: 0; }
    .footer-contact-item span, .footer-contact-item a { font-size: 14px; color: rgba(255,255,255,0.65); line-height: 1.5; text-decoration: none; }
    .footer-contact-item a:hover { color: var(--gold); }
    .footer-divider { border-color: rgba(255,255,255,0.08); margin: 0; }
    .footer-bottom { font-size: 13px; color: rgba(255,255,255,0.35); }
    .social-icon {
      width: 38px; height: 38px; border-radius: 10px;
      background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.1);
      display: inline-flex; align-items: center; justify-content: center;
      color: rgba(255,255,255,0.6); font-size: 15px; text-decoration: none; transition: all 0.2s; margin-right: 8px;
    }
    .social-icon:hover { background: var(--gold); color: #fff; border-color: var(--gold); }

    /* ── MOBILE STICKY CTA ── */
    .mobile-sticky-cta {
      position: fixed; bottom: 0; left: 0; right: 0;
      z-index: 1050; display: flex;
      box-shadow: 0 -4px 28px rgba(0,0,0,0.35);
      border-top: 1px solid rgba(255,255,255,0.08);
    }
    .sticky-cta-btn {
      flex: 1; display: flex; align-items: center; justify-content: center; gap: 8px;
      padding: 16px 10px; text-decoration: none;
      font-family: 'Barlow Condensed', sans-serif; font-size: 17px; font-weight: 700;
      letter-spacing: 0.5px; text-transform: uppercase; border: none; cursor: pointer;
      transition: background 0.2s;
    }
    .sticky-cta-call { background: var(--gold); color: #fff; }
    .sticky-cta-call:hover { color: #fff; background: var(--gold-dark); }
    .sticky-cta-book { background: var(--navy-mid); color: var(--white); border-left: 2px solid rgba(242,101,34,0.5); }
    .sticky-cta-book:hover { color: var(--white); background: var(--navy-light); }

    /* â”€â”€ WHATSAPP FLOAT â”€â”€ */
    .whatsapp-float {
      position: fixed; bottom: 80px; right: 22px; z-index: 1049; display: flex; align-items: center;
    }
    .wa-bubble {
      background: #fff; color: #075e54; font-size: 13px; font-weight: 700; line-height: 1.3;
      padding: 8px 14px; border-radius: 12px 12px 0 12px;
      box-shadow: 0 4px 18px rgba(0,0,0,0.18); white-space: nowrap; margin-right: 10px;
      opacity: 0; transform: translateX(10px); transition: opacity 0.25s, transform 0.25s; pointer-events: none;
    }
    .wa-bubble small { display: block; color: #888; font-weight: 400; font-size: 11px; margin-top: 2px; }
    .whatsapp-float:hover .wa-bubble { opacity: 1; transform: translateX(0); }
    .wa-btn {
      width: 56px; height: 56px; border-radius: 50%; flex-shrink: 0;
      background: #25d366; color: #fff; text-decoration: none;
      display: flex; align-items: center; justify-content: center; font-size: 30px;
      box-shadow: 0 4px 20px rgba(37,211,102,0.5); transition: transform 0.2s, box-shadow 0.2s;
      animation: wa-pulse 2.6s infinite;
    }
    .whatsapp-float:hover .wa-btn { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,0.7); animation: none; }
    @keyframes wa-pulse {
      0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,0.5); }
      50%      { box-shadow: 0 4px 28px rgba(37,211,102,0.85), 0 0 0 8px rgba(37,211,102,0.12); }
    }

    /* â”€â”€ GO-TO-TOP â”€â”€ */
    .go-top-btn {
      position: fixed; bottom: 70px; left: 16px; z-index: 1049;
      width: 46px; height: 46px; border-radius: 50%;
      background: var(--navy); color: var(--gold); border: 2px solid var(--gold); cursor: pointer;
      display: flex; align-items: center; justify-content: center; font-size: 16px;
      box-shadow: 0 4px 18px rgba(0,0,0,0.3); opacity: 0; transform: translateY(16px);
      transition: opacity 0.3s, transform 0.3s; pointer-events: none;
    }
    .go-top-btn.show { opacity: 1; transform: translateY(0); pointer-events: auto; }
    .go-top-btn:hover { background: var(--gold); color: #fff; }

    /* â”€â”€ AREA CHIPS â”€â”€ */
    .area-chip {
      display: inline-flex; align-items: center; gap: 7px;
      background: var(--white); border: 1.5px solid #e2e8f0;
      padding: 10px 18px; border-radius: 30px; font-size: 14px; font-weight: 600; color: var(--navy);
      margin: 5px; transition: all 0.2s; text-decoration: none;
    }
    .area-chip:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }
    .area-chip i { color: var(--gold); font-size: 13px; }

    /* â”€â”€ PAGE HERO (inner pages) â”€â”€ */
    .page-hero {
      background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 60%, #0f2352 100%);
      padding: 5rem 0 4rem; position: relative; overflow: hidden;
    }
    .page-hero-bg {
      position: absolute; inset: 0;
      background-image: linear-gradient(rgba(242,101,34,0.04) 1px, transparent 1px),
                        linear-gradient(90deg, rgba(242,101,34,0.04) 1px, transparent 1px);
      background-size: 60px 60px;
    }
    .page-hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(2.2rem,5vw,3.4rem); font-weight: 900; color: var(--white); }
    .page-hero .lead { color: rgba(255,255,255,0.7); font-size: 1.1rem; max-width: 600px; }
    .breadcrumb-item { font-size: 14px; }
    .breadcrumb-item a { color: var(--gold); text-decoration: none; }
    .breadcrumb-item.active { color: rgba(255,255,255,0.7); }
    .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.3); }

    /* â”€â”€ FORMS â”€â”€ */
    .form-label { font-size: 12px; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: 0.8px; margin-bottom: 6px; }
    .form-control, .form-select {
      border: 1.5px solid #e2e8f0; border-radius: 10px; padding: 11px 14px 11px 42px;
      font-size: 14px; font-weight: 500; color: var(--text-dark); background: var(--off-white); transition: border-color 0.2s;
    }
    .form-control:focus, .form-select:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(242,101,34,0.15); outline: none; }
    .input-wrap { position: relative; }
    .input-icon { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); color: var(--gold); font-size: 15px; z-index: 1; }

    /* â”€â”€ BOOKING CARD â”€â”€ */
    .booking-card {
      background: var(--white); border-radius: 20px; padding: 2rem;
      box-shadow: 0 30px 80px rgba(0,0,0,0.4); position: relative; z-index: 2;
    }
    .booking-card-header {
      background: var(--navy); margin: -2rem -2rem 1.5rem; padding: 1.2rem 2rem;
      border-radius: 20px 20px 0 0; display: flex; align-items: center; justify-content: space-between;
    }
    .booking-card-header h5 { color: var(--white); font-family: 'Playfair Display', serif; font-size: 1.1rem; margin: 0; }
    .booking-card .form-label { font-size: 11px; margin-bottom: 3px; }
    .booking-card .form-control, .booking-card .form-select { padding: 8px 11px 8px 34px; font-size: 13px; border-radius: 8px; }
    .booking-card .input-icon { font-size: 13px; left: 11px; }
    .or-call { text-align: center; margin-top: 1rem; font-size: 13px; color: var(--muted); }
    .or-call a { color: var(--navy); font-weight: 700; text-decoration: none; }
    .or-call a:hover { color: var(--gold-dark); }

    /* â”€â”€ HERO (homepage) â”€â”€ */
    .hero-section {
      background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 60%, #0f2352 100%);
      min-height: 92vh; position: relative; overflow: hidden; display: flex; align-items: center;
    }
    .hero-bg-grid {
      position: absolute; inset: 0;
      background-image: linear-gradient(rgba(242,101,34,0.04) 1px, transparent 1px),
                        linear-gradient(90deg, rgba(242,101,34,0.04) 1px, transparent 1px);
      background-size: 60px 60px;
    }
    .hero-accent-circle { position: absolute; border-radius: 50%; background: radial-gradient(circle, rgba(242,101,34,0.12) 0%, transparent 70%); }
    .hero-accent-circle.c1 { width: 600px; height: 600px; top: -200px; right: -100px; }
    .hero-accent-circle.c2 { width: 400px; height: 400px; bottom: -150px; left: -100px; }
    .hero-badge {
      display: inline-flex; align-items: center; gap: 8px;
      background: rgba(242,101,34,0.15); border: 1px solid rgba(242,101,34,0.4);
      border-radius: 30px; padding: 6px 16px; font-size: 13px; color: var(--gold-light);
      font-weight: 600; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 1.2rem;
    }
    .hero-title { font-size: clamp(2.8rem, 6vw, 4.8rem); font-weight: 900; color: var(--white); line-height: 1.08; margin-bottom: 1.2rem; }
    .hero-title .gold { color: var(--gold); }
    .hero-subtitle { font-size: 1.15rem; color: rgba(255,255,255,0.7); max-width: 520px; line-height: 1.7; margin-bottom: 2rem; }
    .hero-pills { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 2.5rem; }
    .hero-pill {
      display: flex; align-items: center; gap: 7px;
      background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.15);
      padding: 7px 14px; border-radius: 30px; font-size: 13px; color: rgba(255,255,255,0.85); font-weight: 500;
    }
    .hero-pill i { color: var(--gold); font-size: 13px; }
    .hero-pay-row { display: flex; align-items: center; flex-wrap: wrap; gap: 7px; margin-top: 1.2rem; }
    .pay-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: rgba(255,255,255,0.4); white-space: nowrap; }
    .pay-chip {
      display: inline-flex; align-items: center; gap: 5px;
      background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
      border-radius: 8px; padding: 5px 11px; font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.85);
    }
    .pay-chip i { font-size: 16px; color: var(--white); }

    /* â”€â”€ FARE ESTIMATOR â”€â”€ */
    .fare-section { padding: 6rem 0; background: var(--white); }
    .fare-card {
      background: var(--white); border-radius: 24px; padding: 2.5rem;
      box-shadow: 0 20px 60px rgba(8,18,43,0.1); border: 1.5px solid #e2e8f0;
    }
    .fare-result-box {
      background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
      border-radius: 16px; padding: 1.8rem 2rem; margin-top: 1.8rem; border: 1px solid rgba(242,101,34,0.3);
    }
    .fare-amount { font-family: 'Playfair Display', serif; font-size: 3rem; font-weight: 900; color: var(--gold); line-height: 1; }
    .fare-amount-label { font-size: 12px; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; }
    .fare-sub-note { font-size: 11px; color: rgba(255,255,255,0.4); margin-top: 4px; }
    .fare-meta { display: flex; gap: 1.5rem; margin-top: 1rem; flex-wrap: wrap; }
    .fare-meta-item { display: flex; align-items: center; gap: 6px; font-size: 13px; color: rgba(255,255,255,0.65); }
    .fare-meta-item i { color: var(--gold); }

    /* â”€â”€ UTILS â”€â”€ */
    .fade-in { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
    .fade-in.visible { opacity: 1; transform: translateY(0); }
    .gold-dot { color: var(--gold); }

    /* â”€â”€ RESPONSIVE â”€â”€ */
    @media (max-width: 991px) { body { padding-bottom: 62px; } }
    @media (max-width: 768px) {
      .hero-section { min-height: auto; padding: 4rem 0; }
      .trust-divider { display: none; }
      .step-connector { display: none; }
      .fare-card { padding: 1.5rem; }
      .fare-amount { font-size: 2.2rem; }
    }
    @media (max-width: 480px) {
      .hero-pills { gap: 6px; }
      .hero-pill { font-size: 12px; padding: 6px 10px; }
      .pay-chip { font-size: 11px; padding: 4px 8px; }
    }
    @media (min-width: 992px) { .whatsapp-float { bottom: 32px; } .go-top-btn { bottom: 32px; left: 32px; } }
    @media (max-width: 767px) {
      .stat-col { padding: .8rem .3rem; }
      .stat-num { font-size: 1.5rem; }
      .stat-label { font-size: 10px; margin-top: 3px; }
      .stat-label i { display: none; }
    }

.nav-phone-link { color: rgba(255,255,255,0.7); font-size: 13px; font-weight: 600; text-decoration: none; white-space: nowrap; }
.nav-phone-link:hover { color: var(--gold); }
.nav-phone-icon { color: var(--gold); margin-right: 6px; }
.mobile-menu-icon { color: var(--gold); }
.mobile-brand-icon { width: 38px; height: 38px; font-size: 18px; }
.mobile-brand-title { font-family: 'Playfair Display', serif; font-size: 16px; font-weight: 700; color: var(--white); }
.mobile-brand-subtitle { font-size: 10px; color: var(--gold); letter-spacing: 2px; text-transform: uppercase; }
.mobile-call-help { display: block; font-size: 11px; color: rgba(255,255,255,0.55); }
.mobile-book-link { text-decoration: none; }
.footer-brand-icon { width: 42px; height: 42px; font-size: 20px; flex-shrink: 0; }
.footer-brand-subtitle { font-size: 10px; color: var(--gold); letter-spacing: 2px; text-transform: uppercase; }
.footer-legal-link { color: rgba(255,255,255,0.35); text-decoration: none; }
.footer-legal-link:hover { color: var(--gold); }
.gtm-noscript-frame { display: none; visibility: hidden; }

/* ── IMAGE HERO (homepage) ── */
.hero-img-bg {
  min-height: 92vh; position: relative; overflow: hidden; display: flex; align-items: center;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 60%, #0f2352 100%);
}
.hero-img-bg.has-image {
  background-size: cover; background-position: center; background-repeat: no-repeat;
}
.hero-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(8,18,43,0.92) 0%, rgba(8,18,43,0.75) 55%, rgba(8,18,43,0.4) 100%);
}
.hero-avatar {
  width: 40px; height: 40px; border-radius: 50%; border: 2px solid rgba(255,255,255,0.3);
  object-fit: cover; margin-left: -10px; background: var(--gold-dark);
  display: inline-flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 700; color: var(--navy);
}

/* ── SERVICE LISTING (our_services.php) ── */
.service-row-section { padding: 5rem 0; background: var(--white); position: relative; overflow: hidden; }
.service-row-section.has-service-bg { background: var(--navy); }
.service-row-section.has-service-bg::before {
  content: ''; position: absolute; inset: 0;
  background: var(--svc-bg) center/cover no-repeat;
  opacity: 0.18; z-index: 0;
}
.service-row-bg-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(8,18,43,0.88) 0%, rgba(8,18,43,0.72) 100%);
  z-index: 1;
}
.service-row-section .container { position: relative; z-index: 2; }
.service-icon-large {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: 20px; padding: 3rem; text-align: center; position: relative;
  min-height: 300px; display: flex; align-items: center; justify-content: center; flex-direction: column;
}
.service-icon-large i { font-size: 6rem; color: rgba(242,101,34,0.35); }
.service-icon-tag {
  position: absolute; bottom: 1.5rem; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: #fff; font-size: 11px; font-weight: 800;
  letter-spacing: 1px; text-transform: uppercase; padding: 5px 16px; border-radius: 20px; white-space: nowrap;
}
.service-img-wrap { border-radius: 18px; overflow: hidden; box-shadow: 0 20px 60px rgba(8,18,43,.15); }
.service-img-wrap img { width: 100%; height: 360px; object-fit: cover; display: block; }
.service-read-more {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--gold-dark); font-weight: 700; font-size: 14px; text-decoration: none;
  margin-top: 1.2rem; transition: gap 0.2s;
}
.service-read-more:hover { gap: 12px; color: var(--gold-dark); }

/* ── SERVICE DETAIL PAGE (service.php) ── */
.service-full-content { font-size: 15px; line-height: 1.85; color: var(--text-dark); }
.service-full-content h2, .service-full-content h3 { font-family: 'Playfair Display', serif; color: var(--navy); margin-top: 2rem; }
.service-full-content ul { padding-left: 1.4rem; }
.service-full-content li { margin-bottom: 6px; }
.service-full-content strong { color: var(--navy); }
.service-hero { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%); padding: 5rem 0 4rem; position: relative; overflow: hidden; }
.service-hero.has-bg-image::before {
  content: ''; position: absolute; inset: 0;
  background: var(--hero-bg) center/cover no-repeat;
  opacity: 0.2;
}
.service-hero .container { position: relative; z-index: 1; }
.service-bg-section { padding: 5rem 0; position: relative; overflow: hidden; }
.service-bg-section::before {
  content: ''; position: absolute; inset: 0;
  background: var(--svc-bg) center/cover no-repeat;
}
.service-bg-overlay { position: absolute; inset: 0; background: rgba(8,18,43,0.82); }
.service-bg-content { position: relative; z-index: 1; }
.service-cta-box {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: 18px; padding: 2rem; border: 1px solid rgba(242,101,34,0.2);
  color:#fff;
}

/* ── SIDEBAR CARDS (service.php / fleet-detail.php) ── */
.sidebar-card { background: var(--off-white); border-radius: 18px; padding: 1.8rem; margin-bottom: 1.5rem; }
.sidebar-service-link {
  display: flex; align-items: center; gap: 10px; padding: 10px 0;
  border-bottom: 1px solid #e2e8f0; font-size: 14px; font-weight: 600;
  color: var(--navy); text-decoration: none; transition: color 0.2s, padding-left 0.2s;
}
.sidebar-service-link:hover { color: var(--gold-dark); padding-left: 6px; }
.sidebar-service-link i { color: var(--gold); font-size: 12px; flex-shrink: 0; }
.sidebar-contact-card {
  background: var(--navy); border-radius: 18px; padding: 2rem; text-align: center;
  border: 1px solid rgba(242,101,34,0.2);
}

/* ── FLEET DETAIL (fleet-detail.php) ── */
.fleet-detail-img-wrap { border-radius: 18px; overflow: hidden; position: relative; box-shadow: 0 20px 60px rgba(8,18,43,.12); }
.fleet-detail-img-wrap img { width: 100%; height: 380px; object-fit: cover; display: block; }
.fleet-detail-popular-badge {
  position: absolute; top: 1rem; left: 1rem;
  background: var(--gold); color: #fff; font-size: 11px; font-weight: 800;
  letter-spacing: 1px; text-transform: uppercase; padding: 5px 14px; border-radius: 20px;
}
.fleet-detail-placeholder {
  width: 100%; height: 380px; border-radius: 18px;
  background: linear-gradient(135deg,var(--navy),var(--navy-light));
  display: flex; align-items: center; justify-content: center;
  font-size: 7rem; color: rgba(242,101,34,0.2);
}
.fleet-pricing-panel { display: grid; grid-template-columns: repeat(2,1fr); gap: 1rem; margin-bottom: 1.5rem; }
.fleet-price-box {
  background: var(--off-white); border-radius: 14px; padding: 1.2rem; text-align: center;
  border: 1.5px solid #e2e8f0;
}
.fleet-price-box.highlight { background: var(--navy); border-color: rgba(242,101,34,0.3); }
.fleet-price-box .label { font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--muted); margin-bottom: 4px; }
.fleet-price-box.highlight .label { color: rgba(255,255,255,0.5); }
.fleet-price-box .value { font-family: 'Playfair Display', serif; font-size: 1.6rem; font-weight: 900; color: var(--navy); }
.fleet-price-box.highlight .value { color: var(--gold); }
.fleet-specs-card { background: var(--off-white); border-radius: 18px; padding: 1.8rem; margin-bottom: 1.5rem; }
.fleet-features-card { background: var(--off-white); border-radius: 18px; padding: 1.8rem; margin-bottom: 1.5rem; }
.fleet-spec-row { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; border-bottom: 1px solid #e2e8f0; font-size: 14px; }
.fleet-spec-row:last-child { border-bottom: none; }
.fleet-spec-row .spec-label { color: var(--muted); }
.fleet-spec-row .spec-value { font-weight: 700; color: var(--navy); }

/* ── FLEET INLINE PRICING (our_fleets.php) ── */
.fleet-pricing-inline { display: flex; gap: 0.8rem; flex-wrap: wrap; margin-bottom: 1.5rem; }
.fleet-price-inline-item {
  background: var(--off-white); border: 1.5px solid #e2e8f0; border-radius: 12px;
  padding: 0.8rem 1.2rem; min-width: 90px; text-align: center;
}
.fleet-price-inline-item.highlight { background: var(--navy); border-color: rgba(242,101,34,0.3); }
.fleet-price-inline-label { font-size: 10px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--muted); display: block; margin-bottom: 3px; }
.fleet-price-inline-item.highlight .fleet-price-inline-label { color: rgba(255,255,255,0.5); }
.fleet-price-inline-value { font-size: 1.1rem; font-weight: 800; color: var(--navy); font-family: 'Playfair Display', serif; }
.fleet-price-inline-item.highlight .fleet-price-inline-value { color: var(--gold); }

/* ── MISC ── */
.capacity-tag {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(242,101,34,0.12); color: var(--gold-dark); border-radius: 20px;
  padding: 4px 12px; font-size: 12px; font-weight: 700;
}
.border-gold { border: 2px solid var(--gold) !important; }
.fleet-card-active { border-color: rgba(242,101,34,0.4) !important; }

/* ── HOME ABOUT SECTION ── */
.about-home-section { padding: 6rem 0; background: var(--white); }
.about-logo-wrap {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: 24px; padding: 2.5rem; position: relative; overflow: hidden; text-align: center;
}
.about-logo-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(242,101,34,0.05) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(242,101,34,0.05) 1px, transparent 1px);
  background-size: 40px 40px;
}
.about-logo-img {
  width: 100%; max-width: 300px; border-radius: 16px; position: relative; z-index: 1;
  box-shadow: 0 20px 60px rgba(0,0,0,0.45); object-fit: cover;
}
.about-logo-stats {
  display: flex; justify-content: center; align-items: center; gap: 1.5rem;
  margin-top: 2rem; position: relative; z-index: 1;
}
.about-stat { text-align: center; }
.about-stat-num {
  font-family: 'Playfair Display', serif; font-size: 1.8rem; font-weight: 900; color: var(--gold); line-height: 1;
}
.about-stat-label { font-size: 10px; color: rgba(255,255,255,0.5); letter-spacing: 1.5px; text-transform: uppercase; margin-top: 3px; }
.about-stat-divider { width: 1px; height: 36px; background: rgba(255,255,255,0.12); }
.about-badge-vic {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(242,101,34,0.15); border: 1px solid rgba(242,101,34,0.4);
  border-radius: 20px; padding: 6px 16px; font-size: 12px; color: var(--gold);
  font-weight: 600; margin-top: 1.5rem; position: relative; z-index: 1;
}
.about-feature-box {
  background: var(--off-white); border-radius: 14px; padding: 1rem 1.2rem;
  display: flex; align-items: center; gap: 12px; height: 100%;
}
.about-feature-box i { color: var(--gold); font-size: 1.4rem; flex-shrink: 0; }
.about-feature-box strong { display: block; font-size: 13px; font-weight: 700; color: var(--navy); }
.about-feature-box span { display: block; font-size: 11px; color: var(--muted); margin-top: 2px; }
@media (max-width: 767px) {
  .about-logo-stats { gap: 1rem; }
  .about-stat-num { font-size: 1.4rem; }
}

/* ── NAV LOGO ── */
.nav-logo-img { height: 60px; border-radius: 8px; object-fit: cover; display: block; transition: height 0.35s ease; }
.navbar.scrolled .nav-logo-img { height: 38px; }
.mobile-nav-logo { height: 44px; border-radius: 8px; object-fit: cover; }

/* ── FLEET DETAIL — PRICING CLASS ALIASES ── */
.fleet-price-box .fleet-price-label {
  font-size: 11px; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; color: var(--muted); margin-bottom: 6px; display: block;
}
.fleet-price-box.highlight .fleet-price-label { color: rgba(255,255,255,0.5); }
.fleet-price-box .fleet-price-value {
  font-family: 'Playfair Display', serif; font-size: 1.6rem;
  font-weight: 900; color: var(--navy); display: block;
}
.fleet-price-box.highlight .fleet-price-value { color: var(--gold); }

/* Fleet features card: dark text on light background */
.fleet-features-card .fleet-feature { color: var(--text-dark); }
.fleet-features-card .fleet-feature i { color: var(--gold); font-size: 13px; }

/* Spec row icon styling */
.fleet-spec-row i { color: var(--gold); width: 20px; flex-shrink: 0; font-size: 13px; }

/* Sidebar contact card text */
.sidebar-contact-title {
  font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700;
  color: var(--white); display: block; margin-bottom: 0.3rem;
}
.sidebar-contact-phone {
  font-family: 'Barlow Condensed', sans-serif; font-size: 1.9rem; font-weight: 800;
  color: var(--gold); letter-spacing: 0.5px; display: block;
  margin-bottom: 0.8rem; line-height: 1;
}
.sidebar-contact-card p { color: rgba(255,255,255,0.6); font-size: 14px; margin-bottom: 1.2rem; }

/* Page hero — dynamic image via admin */
.page-hero.has-bg-image { position: relative; }
.page-hero.has-bg-image::before {
  content: ''; position: absolute; inset: 0;
  background: var(--hero-bg) center/cover no-repeat;
  opacity: 0.15; z-index: 0;
}
.page-hero.has-bg-image .container { position: relative; z-index: 1; }
.page-hero.has-bg-image .page-hero-bg { z-index: 0; }

/* ── HERO FULL-WIDTH SLIDER (index.php) ── */
.hero-full-slider { position: relative; overflow: hidden; }
.hero-full-slider .carousel,
.hero-full-slider .carousel-inner,
.hero-full-slider .carousel-item {
  height: 100vh; min-height: 580px; max-height: 960px;
}
.hero-slide-bg {
  position: absolute; inset: 0;
  background: var(--navy) center/cover no-repeat;
}
.hero-slide-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(18,18,18,0.95) 0%, rgba(18,18,18,0.80) 55%, rgba(18,18,18,0.58) 100%);
}
.hero-grid-overlay {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(242,101,34,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(242,101,34,0.03) 1px, transparent 1px);
  background-size: 55px 55px;
}
.hero-slide-content {
  position: relative; z-index: 5;
  height: 100%; max-height: 960px;
  display: flex; align-items: center;
  padding: 6rem 0 7rem;
}
.hero-slide-text { max-width: 760px; }
.hero-btns { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2rem; }

/* Slider prev/next arrows */
.hero-full-slider .carousel-control-prev,
.hero-full-slider .carousel-control-next {
  width: 54px; height: 54px; border-radius: 50%;
  background: rgba(242,101,34,0.15); border: 1.5px solid rgba(242,101,34,0.4);
  top: 50%; transform: translateY(-50%); bottom: auto;
  opacity: 0.85; z-index: 10; transition: background 0.2s, opacity 0.2s;
}
.hero-full-slider .carousel-control-prev { left: 24px; right: auto; }
.hero-full-slider .carousel-control-next { right: 24px; left: auto; }
.hero-full-slider .carousel-control-prev:hover,
.hero-full-slider .carousel-control-next:hover { background: rgba(242,101,34,0.4); opacity: 1; }

/* Slide indicators */
.hero-indicators {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  display: flex; align-items: center; gap: 8px; z-index: 10; margin: 0; padding: 0; list-style: none;
}
.hero-indicators button {
  width: 34px; height: 5px; border-radius: 3px;
  background: rgba(255,255,255,0.3); border: none; padding: 0;
  cursor: pointer; transition: all 0.35s; text-indent: -9999px; overflow: hidden;
}
.hero-indicators button.active { background: var(--gold); width: 52px; }

/* Slide-in animation */
.carousel-item.active .hero-slide-text { animation: slideFadeIn 0.6s ease; }
@keyframes slideFadeIn {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (max-width: 991px) {
  .hero-full-slider .carousel,
  .hero-full-slider .carousel-inner,
  .hero-full-slider .carousel-item { height: 80vh; min-height: 500px; }
  .hero-full-slider .carousel-control-prev,
  .hero-full-slider .carousel-control-next { display: none; }
}
@media (max-width: 767px) {
  .hero-full-slider .carousel,
  .hero-full-slider .carousel-inner,
  .hero-full-slider .carousel-item { height: 75vh; min-height: 460px; max-height: 700px; }
  .hero-slide-content { align-items: flex-start; padding: 3.5rem 0 2.5rem; }
  .hero-title { font-size: 1.85rem; line-height: 1.15; margin-bottom: .7rem; }
  .hero-subtitle { font-size: .88rem; line-height: 1.55; margin-bottom: 1.1rem; }
  .hero-badge { font-size: 11px; padding: 5px 12px; margin-bottom: .7rem; }
  .hero-indicators { display: none; }
  .hero-btns { flex-direction: row; flex-wrap: wrap; gap: .5rem; }
  .hero-btns .btn-cta-primary,
  .hero-btns .btn-cta-outline { padding: 9px 16px; font-size: .85rem; width: auto; max-width: none; }
}
