/* -------------------------------------------------------------
       DESIGN SYSTEM & CSS VARIABLES
    -------------------------------------------------------------- */
    :root {
      --bg-primary: #07090E;
      --bg-surface: #0E121A;
      --bg-surface-elevated: #161C27;
      --bg-glass: rgba(14, 18, 26, 0.88);
      --bg-glass-card: rgba(22, 28, 39, 0.65);
      
      --brand-green: #32966E;
      --brand-blue: #50AADC;
      --brand-light: #BEE6FA;
      --brand-dark: #1F6F5A;

      --gold-primary: var(--brand-green);
      --gold-light: var(--brand-light);
      --gold-dark: var(--brand-dark);
      --gold-gradient: linear-gradient(135deg, var(--brand-blue) 0%, var(--brand-green) 100%);
      
      --text-main: #F4F5F7;
      --text-muted: #9BA3B5;
      --text-dim: #646C7E;
      
      --border-subtle: rgba(255, 255, 255, 0.08);
      --border-gold: rgba(80, 170, 220, 0.32);
      --border-gold-hover: rgba(50, 150, 110, 0.75);

      --font-display: 'Playfair Display', Georgia, serif;
      --font-sans: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

      --transition-smooth: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
      --shadow-premium: 0 20px 40px -15px rgba(0, 0, 0, 0.7);
      --shadow-card: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
      --radius-sm: 8px;
      --radius-md: 14px;
      --radius-lg: 22px;
      --radius-full: 9999px;
    }

    /* -------------------------------------------------------------
       BASE & RESET
    -------------------------------------------------------------- */
    *, *::before, *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
      -webkit-tap-highlight-color: transparent;
    }

    html, body {
      max-width: 100%;
      overflow-x: hidden;
    }

    body {
      background-color: var(--bg-primary);
      color: var(--text-main);
      font-family: var(--font-sans);
      font-size: 16px;
      line-height: 1.6;
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      position: relative;
    }

    img {
      max-width: 100%;
      height: auto;
      display: block;
    }

    a {
      color: inherit;
      text-decoration: none;
      transition: var(--transition-smooth);
    }

    button, input, select, textarea {
      font: inherit;
      color: inherit;
      background: none;
      border: none;
      outline: none;
    }

    button {
      cursor: pointer;
    }

    .container {
      width: 100%;
      max-width: 1280px;
      margin-left: auto;
      margin-right: auto;
      padding-left: 1.5rem;
      padding-right: 1.5rem;
    }

    /* Typography */
    h1, h2, h3, h4, .font-serif {
      font-family: var(--font-display);
      font-weight: 600;
      line-height: 1.25;
    }

    .gold-gradient-text {
      background: var(--gold-gradient);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      display: inline-block;
    }

    .section-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 0.8rem;
      text-transform: uppercase;
      letter-spacing: 0.2em;
      color: var(--gold-primary);
      margin-bottom: 0.75rem;
      font-weight: 600;
    }

    .section-eyebrow::before {
      content: '';
      width: 18px;
      height: 1.5px;
      background: var(--gold-primary);
    }

    .section-title {
      font-size: clamp(1.85rem, 3.5vw, 3rem);
      margin-bottom: 1rem;
      letter-spacing: -0.01em;
    }

    .section-subtitle {
      color: var(--text-muted);
      max-width: 650px;
      font-size: 1.05rem;
      margin-bottom: 3rem;
    }

    /* -------------------------------------------------------------
       BUTTONS & INTERACTIVE ELEMENTS
    -------------------------------------------------------------- */
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.65rem;
      padding: 0.85rem 1.8rem;
      font-size: 0.92rem;
      font-weight: 600;
      letter-spacing: 0.03em;
      border-radius: var(--radius-full);
      transition: var(--transition-smooth);
      position: relative;
      overflow: hidden;
      white-space: nowrap;
    }

    .btn-gold {
      background: var(--gold-gradient);
      color: #07090E;
      box-shadow: 0 4px 18px rgba(80, 170, 220, 0.25);
    }

    .btn-gold:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 24px rgba(50, 150, 110, 0.38);
    }

    .btn-outline {
      background: transparent;
      border: 1px solid var(--border-gold);
      color: var(--text-main);
    }

    .btn-outline:hover {
      background: rgba(80, 170, 220, 0.08);
      border-color: var(--gold-primary);
      transform: translateY(-2px);
    }

    .btn-glass {
      background: rgba(255, 255, 255, 0.08);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border: 1px solid var(--border-subtle);
      color: var(--text-main);
    }

    .btn-glass:hover {
      background: rgba(255, 255, 255, 0.15);
      border-color: rgba(255, 255, 255, 0.2);
    }

    .btn-sm {
      padding: 0.55rem 1.15rem;
      font-size: 0.82rem;
    }

    /* -------------------------------------------------------------
       HEADER & LOGO (MOBILE OPTIMIZED)
    -------------------------------------------------------------- */
    .header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      padding: 1.15rem 0;
      transition: var(--transition-smooth);
      border-bottom: 1px solid rgba(80, 170, 220, 0.22);
      background: linear-gradient(90deg, rgba(239, 250, 252, 0.97) 0%, rgba(226, 246, 241, 0.96) 100%);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      box-shadow: 0 12px 36px rgba(3, 10, 14, 0.12);
    }

    .header.scrolled {
      padding: 0.75rem 0;
      background: linear-gradient(90deg, rgba(239, 250, 252, 0.98) 0%, rgba(226, 246, 241, 0.97) 100%);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      border-bottom-color: rgba(50, 150, 110, 0.24);
      box-shadow: 0 10px 30px rgba(3, 10, 14, 0.16);
    }

    .nav-container {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
    }

    .logo {
      display: inline-flex;
      align-items: center;
      gap: 0.75rem;
      text-decoration: none;
      flex-shrink: 0;
      min-width: 0;
    }

    .logo-img {
      width: 112px;
      height: 112px;
      object-fit: contain;
      object-position: center;
      display: block;
    }

    .logo-badge {
      width: 40px;
      height: 40px;
      min-width: 40px;
      border-radius: var(--radius-sm);
      background: var(--gold-gradient);
      display: grid;
      place-items: center;
      color: #07090E;
      font-weight: 800;
      font-size: 1.15rem;
      box-shadow: 0 2px 10px rgba(80, 170, 220, 0.3);
      flex-shrink: 0;
    }

    .logo-text {
      display: flex;
      flex-direction: column;
      justify-content: center;
      line-height: 1.1;
      white-space: nowrap;
    }

    .logo-main {
      font-family: var(--font-sans);
      font-weight: 800;
      font-size: 1.15rem;
      letter-spacing: 0.06em;
      color: var(--text-main);
      display: block;
    }

    .logo-sub {
      font-family: var(--font-sans);
      font-size: 0.62rem;
      font-weight: 600;
      letter-spacing: 0.22em;
      color: var(--gold-light);
      margin-top: 2px;
      display: block;
      opacity: 0.9;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 1.8rem;
      list-style: none;
    }

    .nav-link {
      font-size: 0.88rem;
      font-weight: 500;
      color: #33404B;
      position: relative;
      padding: 0.3rem 0;
    }

    .nav-link:hover, .nav-link.active {
      color: #0B151B;
    }

    .nav-link::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 0;
      height: 2px;
      background: var(--gold-primary);
      transition: var(--transition-smooth);
    }

    .nav-link:hover::after, .nav-link.active::after {
      width: 100%;
    }

    .nav-actions {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      flex-shrink: 0;
    }

    .lang-switch {
      display: flex;
      align-items: center;
      font-size: 0.8rem;
      font-weight: 600;
      padding: 0.4rem 0.65rem;
      border-radius: var(--radius-sm);
      background: rgba(7, 9, 14, 0.06);
      border: 1px solid rgba(7, 9, 14, 0.1);
      color: #24313A;
      gap: 0.3rem;
      cursor: pointer;
    }

    .mobile-menu-btn {
      display: none;
      background: rgba(7, 9, 14, 0.06);
      border: 1px solid rgba(7, 9, 14, 0.1);
      border-radius: var(--radius-sm);
      color: #0B151B;
      padding: 0.45rem;
      align-items: center;
      justify-content: center;
    }

    /* Mobile Drawer */
    .mobile-drawer {
      position: fixed;
      top: 0;
      right: -100%;
      width: 85%;
      max-width: 360px;
      height: 100vh;
      background: var(--bg-surface-elevated);
      z-index: 1005;
      padding: 1.8rem 1.5rem 2rem;
      box-shadow: -15px 0 35px rgba(0, 0, 0, 0.75);
      transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      overflow-y: auto;
    }

    .mobile-drawer.open {
      right: 0;
    }

    .drawer-overlay {
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.75);
      backdrop-filter: blur(5px);
      z-index: 1004;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.3s ease;
    }

    .drawer-overlay.active {
      opacity: 1;
      pointer-events: auto;
    }

    .mobile-nav-link {
      font-size: 1rem;
      font-weight: 500;
      color: var(--text-muted);
      display: block;
      padding: 0.4rem 0;
    }

    .mobile-nav-link:hover, .mobile-nav-link.active {
      color: var(--gold-light);
    }

    /* -------------------------------------------------------------
       PAGES CONTAINER (SPA LOGIC)
    -------------------------------------------------------------- */
    #main-content {
      flex: 1;
      padding-top: 75px;
    }

    .spa-page {
      display: none;
      animation: fadeInPage 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    }

    .spa-page.active-page {
      display: block;
    }

    @keyframes fadeInPage {
      from {
        opacity: 0;
        transform: translateY(10px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* -------------------------------------------------------------
       HERO & FLOATING WIDGET
    -------------------------------------------------------------- */
    .hero {
      position: relative;
      min-height: 88vh;
      display: flex;
      align-items: center;
      padding: 4rem 0 6rem;
      background-position: center;
      background-size: cover;
      background-repeat: no-repeat;
    }

    .hero-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(7, 9, 14, 0.72) 0%, rgba(7, 9, 14, 0.94) 85%, #07090E 100%),
                  radial-gradient(ellipse at center, rgba(80, 170, 220, 0.08) 0%, rgba(0,0,0,0) 70%);
      z-index: 1;
    }

    .hero-content {
      position: relative;
      z-index: 2;
      max-width: 820px;
    }

    .hero-title {
      font-size: clamp(2.2rem, 4.8vw, 4.2rem);
      line-height: 1.15;
      margin-bottom: 1.4rem;
    }

    .hero-desc {
      font-size: clamp(1rem, 1.3vw, 1.25rem);
      color: var(--text-muted);
      margin-bottom: 2.2rem;
      line-height: 1.7;
    }

    .hero-badges {
      display: flex;
      flex-wrap: wrap;
      gap: 1.5rem;
      margin-top: 2.5rem;
      padding-top: 2rem;
      border-top: 1px solid var(--border-subtle);
    }

    .hero-badge-item {
      display: flex;
      align-items: center;
      gap: 0.6rem;
      font-size: 0.88rem;
      color: var(--text-muted);
    }

    .hero-badge-item i {
      color: var(--gold-primary);
      width: 18px;
      height: 18px;
    }

    /* Floating Booking Form Widget */
    .booking-widget-wrapper {
      position: relative;
      z-index: 10;
      margin-top: -4.5rem;
      margin-bottom: 5rem;
    }

    .booking-widget {
      background: var(--bg-surface);
      border: 1px solid var(--border-gold);
      border-radius: var(--radius-lg);
      padding: 1.75rem 2rem;
      box-shadow: var(--shadow-premium);
    }

    .widget-tabs {
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem;
      margin-bottom: 1.5rem;
      border-bottom: 1px solid var(--border-subtle);
      padding-bottom: 0.8rem;
    }

    .widget-tab {
      padding: 0.6rem 1.2rem;
      font-size: 0.84rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      border-radius: var(--radius-sm);
      color: var(--text-muted);
      transition: var(--transition-smooth);
    }

    .widget-tab.active, .widget-tab:hover {
      background: rgba(80, 170, 220, 0.12);
      color: var(--gold-light);
    }

    .widget-form-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      gap: 1.2rem;
      align-items: end;
    }

    .form-group {
      display: flex;
      flex-direction: column;
      gap: 0.4rem;
    }

    .form-label {
      font-size: 0.78rem;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      color: var(--text-muted);
      display: flex;
      align-items: center;
      gap: 0.35rem;
    }

    .form-control {
      background: var(--bg-surface-elevated);
      border: 1px solid var(--border-subtle);
      border-radius: var(--radius-sm);
      padding: 0.75rem 1rem;
      color: var(--text-main);
      font-size: 0.9rem;
      transition: var(--transition-smooth);
      width: 100%;
    }

    .form-control:focus {
      border-color: var(--gold-primary);
      box-shadow: 0 0 0 2px rgba(80, 170, 220, 0.22);
    }

    /* -------------------------------------------------------------
       STATISTICS SECTION
    -------------------------------------------------------------- */
    .stats-section {
      padding: 4rem 0;
      background: var(--bg-surface);
      border-top: 1px solid var(--border-subtle);
      border-bottom: 1px solid var(--border-subtle);
    }

    .stats-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 2rem;
      text-align: center;
    }

    .stat-number {
      font-size: 2.8rem;
      font-weight: 700;
      color: var(--gold-light);
      margin-bottom: 0.3rem;
    }

    .stat-label {
      font-size: 0.88rem;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: var(--text-muted);
    }

    /* -------------------------------------------------------------
       SERVICE CARDS & GRIDS
    -------------------------------------------------------------- */
    .section-py {
      padding: 5.5rem 0;
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
      gap: 2rem;
    }

    .service-card {
      background: var(--bg-surface);
      border: 1px solid var(--border-subtle);
      border-radius: var(--radius-md);
      overflow: hidden;
      transition: var(--transition-smooth);
      display: flex;
      flex-direction: column;
      position: relative;
    }

    .service-card:hover {
      border-color: var(--border-gold-hover);
      transform: translateY(-6px);
      box-shadow: var(--shadow-card);
    }

    .service-img-wrapper {
      position: relative;
      height: 230px;
      overflow: hidden;
    }

    .service-img-wrapper img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .service-card:hover .service-img-wrapper img {
      transform: scale(1.07);
    }

    .service-icon-badge {
      position: absolute;
      bottom: 1rem;
      right: 1rem;
      width: 44px;
      height: 44px;
      background: var(--bg-surface-elevated);
      border: 1px solid var(--border-gold);
      border-radius: 50%;
      display: grid;
      place-items: center;
      color: var(--gold-primary);
    }

    .service-content {
      padding: 1.8rem;
      display: flex;
      flex-direction: column;
      flex: 1;
    }

    .service-title {
      font-size: 1.35rem;
      margin-bottom: 0.75rem;
    }

    .service-desc {
      color: var(--text-muted);
      font-size: 0.92rem;
      margin-bottom: 1.6rem;
      flex: 1;
    }

    .service-footer {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding-top: 1.2rem;
      border-top: 1px solid var(--border-subtle);
    }

    /* -------------------------------------------------------------
       FLEET SHOWCASE
    -------------------------------------------------------------- */
    .fleet-filter-bar {
      display: flex;
      flex-wrap: wrap;
      gap: 0.75rem;
      margin-bottom: 2.5rem;
      justify-content: center;
    }

    .filter-chip {
      padding: 0.5rem 1.25rem;
      background: var(--bg-surface);
      border: 1px solid var(--border-subtle);
      border-radius: var(--radius-full);
      font-size: 0.85rem;
      color: var(--text-muted);
      transition: var(--transition-smooth);
    }

    .filter-chip.active, .filter-chip:hover {
      background: rgba(80, 170, 220, 0.14);
      border-color: var(--gold-primary);
      color: var(--gold-light);
    }

    .fleet-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(330px, 1fr));
      gap: 2rem;
    }

    .vehicle-card {
      background: var(--bg-surface);
      border: 1px solid var(--border-subtle);
      border-radius: var(--radius-md);
      overflow: hidden;
      transition: var(--transition-smooth);
    }

    .vehicle-card:hover {
      border-color: var(--border-gold-hover);
      box-shadow: var(--shadow-card);
      transform: translateY(-5px);
    }

    .vehicle-img {
      height: 220px;
      position: relative;
      background: #020305;
      overflow: hidden;
    }

    .vehicle-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }

    .vehicle-card:hover .vehicle-img img {
      transform: scale(1.05);
    }

    .vehicle-category-badge {
      position: absolute;
      top: 1rem;
      left: 1rem;
      padding: 0.35rem 0.85rem;
      background: rgba(7, 9, 14, 0.85);
      backdrop-filter: blur(8px);
      border: 1px solid var(--border-subtle);
      border-radius: var(--radius-full);
      font-size: 0.75rem;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      color: var(--gold-light);
    }

    .vehicle-info {
      padding: 1.6rem;
    }

    .vehicle-name {
      font-size: 1.28rem;
      margin-bottom: 0.4rem;
    }

    .vehicle-features {
      display: flex;
      align-items: center;
      gap: 1.2rem;
      margin: 1rem 0 1.5rem;
      padding: 0.8rem 0;
      border-top: 1px solid var(--border-subtle);
      border-bottom: 1px solid var(--border-subtle);
      font-size: 0.85rem;
      color: var(--text-muted);
    }

    .feature-item {
      display: flex;
      align-items: center;
      gap: 0.4rem;
    }

    .demo-notice {
      font-size: 0.72rem;
      color: var(--text-dim);
      font-style: italic;
      margin-bottom: 1rem;
      display: block;
    }

    /* -------------------------------------------------------------
       PROCESS & STEPS
    -------------------------------------------------------------- */
    .steps-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 2rem;
    }

    .step-card {
      background: var(--bg-surface);
      border: 1px solid var(--border-subtle);
      padding: 2.2rem 1.8rem;
      border-radius: var(--radius-md);
      position: relative;
    }

    .step-number {
      font-family: var(--font-display);
      font-size: 3rem;
      font-weight: 700;
      color: rgba(80, 170, 220, 0.2);
      line-height: 1;
      margin-bottom: 1rem;
    }

    .step-title {
      font-size: 1.2rem;
      margin-bottom: 0.7rem;
    }

    .step-desc {
      font-size: 0.9rem;
      color: var(--text-muted);
    }

    /* -------------------------------------------------------------
       TESTIMONIALS & FAQ
    -------------------------------------------------------------- */
    .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
      gap: 2rem;
    }

    .testimonial-card {
      background: var(--bg-surface);
      border: 1px solid var(--border-subtle);
      border-radius: var(--radius-md);
      padding: 2.2rem;
      position: relative;
    }

    .testimonial-stars {
      color: var(--gold-primary);
      display: flex;
      gap: 0.25rem;
      margin-bottom: 1rem;
    }

    .testimonial-text {
      font-style: italic;
      color: var(--text-muted);
      font-size: 0.96rem;
      margin-bottom: 1.5rem;
    }

    .testimonial-author {
      display: flex;
      align-items: center;
      gap: 0.9rem;
    }

    .author-avatar {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: var(--bg-surface-elevated);
      border: 1px solid var(--border-gold);
      display: grid;
      place-items: center;
      font-weight: 700;
      color: var(--gold-light);
    }

    /* Accordion FAQ */
    .faq-accordion {
      max-width: 850px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }

    .faq-item {
      background: var(--bg-surface);
      border: 1px solid var(--border-subtle);
      border-radius: var(--radius-md);
      overflow: hidden;
      transition: var(--transition-smooth);
    }

    .faq-item.active {
      border-color: var(--border-gold);
    }

    .faq-question {
      width: 100%;
      padding: 1.4rem 1.8rem;
      text-align: left;
      font-size: 1.05rem;
      font-weight: 600;
      display: flex;
      justify-content: space-between;
      align-items: center;
      color: var(--text-main);
    }

    .faq-question i {
      transition: transform 0.3s ease;
      color: var(--gold-primary);
    }

    .faq-item.active .faq-question i {
      transform: rotate(180deg);
    }

    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s ease;
      padding: 0 1.8rem;
      color: var(--text-muted);
      font-size: 0.94rem;
      line-height: 1.7;
    }

    .faq-item.active .faq-answer {
      padding-bottom: 1.4rem;
      max-height: 400px;
    }

    /* -------------------------------------------------------------
       FOOTER
    -------------------------------------------------------------- */
    .footer {
      background: linear-gradient(135deg, #EFFAFC 0%, #E2F6F1 100%);
      border-top: 1px solid rgba(80, 170, 220, 0.26);
      padding: 5rem 0 2rem;
      margin-top: auto;
      color: #0B151B;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 2fr repeat(3, 1fr) 1.5fr;
      gap: 3rem;
      margin-bottom: 4rem;
    }

    .footer-col-title {
      font-size: 0.95rem;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: var(--brand-dark);
      margin-bottom: 1.4rem;
      font-weight: 600;
    }

    .footer-links {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 0.8rem;
    }

    .footer-links a {
      color: #33404B;
      font-size: 0.9rem;
    }

    .footer-links a:hover {
      color: var(--brand-green);
      transform: translateX(4px);
    }

    .footer-bottom {
      padding-top: 2rem;
      border-top: 1px solid rgba(7, 9, 14, 0.1);
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 0.85rem;
      color: #596874;
    }

    .footer p,
    .footer div,
    .footer a {
      border-color: rgba(7, 9, 14, 0.1);
    }

    .footer [style*="color:var(--text-muted)"] {
      color: #33404B !important;
    }

    .footer [style*="color:var(--text-dim)"] {
      color: #596874 !important;
    }

    .footer [style*="color:var(--gold-light)"] {
      color: var(--brand-dark) !important;
    }

    /* -------------------------------------------------------------
       FLOATING & MOBILE UTILITIES
    -------------------------------------------------------------- */
    .floating-whatsapp {
      position: fixed;
      bottom: 5.5rem;
      right: 1.5rem;
      width: 56px;
      height: 56px;
      background: #25D366;
      border-radius: 50%;
      display: grid;
      place-items: center;
      color: white;
      box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
      z-index: 990;
      transition: var(--transition-smooth);
    }

    .floating-whatsapp:hover {
      transform: scale(1.08);
      box-shadow: 0 15px 30px rgba(37, 211, 102, 0.6);
    }

    .mobile-bottom-bar {
      display: none;
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      height: 65px;
      background: var(--bg-surface-elevated);
      border-top: 1px solid var(--border-subtle);
      z-index: 995;
      padding: 0 1rem;
      justify-content: space-around;
      align-items: center;
    }

    .bottom-bar-btn {
      display: flex;
      flex-direction: column;
      align-items: center;
      font-size: 0.68rem;
      color: var(--text-muted);
      gap: 0.2rem;
    }

    .bottom-bar-btn.active, .bottom-bar-btn:hover {
      color: var(--gold-primary);
    }

    /* Modals & Dialogs */
    .modal {
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.82);
      backdrop-filter: blur(8px);
      z-index: 2000;
      display: none;
      place-items: center;
      padding: 1.5rem;
    }

    .modal.active {
      display: grid;
    }

    .modal-content {
      background: var(--bg-surface);
      border: 1px solid var(--border-gold);
      border-radius: var(--radius-lg);
      max-width: 560px;
      width: 100%;
      padding: 2.5rem;
      position: relative;
      box-shadow: var(--shadow-premium);
      animation: modalEnter 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    }

    @keyframes modalEnter {
      from { transform: scale(0.92); opacity: 0; }
      to { transform: scale(1); opacity: 1; }
    }

    .modal-close {
      position: absolute;
      top: 1.25rem;
      right: 1.25rem;
      color: var(--text-muted);
      cursor: pointer;
    }

    /* Toast Notification (Fix applied: hidden by default with opacity & visibility) */
    .toast {
      position: fixed;
      bottom: 5.5rem;
      left: 50%;
      transform: translateX(-50%) translateY(30px);
      background: var(--bg-surface-elevated);
      border: 1px solid var(--border-gold);
      padding: 0.85rem 1.6rem;
      border-radius: var(--radius-full);
      box-shadow: 0 10px 30px rgba(0,0,0,0.5);
      z-index: 2100;
      display: flex;
      align-items: center;
      gap: 0.6rem;
      font-size: 0.88rem;
      white-space: nowrap;
      opacity: 0;
      pointer-events: none;
      visibility: hidden;
      transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.3s;
    }

    .toast.show {
      opacity: 1;
      pointer-events: auto;
      visibility: visible;
      transform: translateX(-50%) translateY(0);
    }

    /* -------------------------------------------------------------
       RESPONSIVE REFINEMENTS (TABLET & MOBILE)
    -------------------------------------------------------------- */
    @media (max-width: 1024px) {
      .footer-grid {
        grid-template-columns: 1fr 1fr;
      }
      .nav-links {
        display: none;
      }
      .mobile-menu-btn {
        display: inline-flex;
      }
    }

    @media (max-width: 768px) {
      .container {
        padding-left: 1.2rem;
        padding-right: 1.2rem;
      }
      #main-content {
        padding-top: 68px;
      }
      .header {
        padding: 0.85rem 0;
      }
      .header.scrolled {
        padding: 0.65rem 0;
      }
      .stats-grid {
        grid-template-columns: 1fr 1fr;
      }
      .services-grid, .fleet-grid {
        grid-template-columns: 1fr;
      }
      .mobile-bottom-bar {
        display: flex;
      }
      .floating-whatsapp {
        bottom: 5.2rem;
        right: 1rem;
        width: 52px;
        height: 52px;
      }
      body {
        padding-bottom: 65px;
      }
      .booking-widget {
        padding: 1.4rem;
      }
      .booking-widget-wrapper {
        margin-top: -2.5rem;
      }
      .hero {
        padding-top: 2rem;
        padding-bottom: 4.5rem;
        min-height: auto;
      }
      .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
      }
    }

    /* Phone Screen Rules (< 640px) */
    @media (max-width: 640px) {
      .nav-container {
        gap: 0.5rem;
      }
      .logo {
        gap: 0.55rem;
      }
      .logo-img {
        width: 86px;
        height: 86px;
      }
      .logo-badge {
        width: 34px;
        height: 34px;
        min-width: 34px;
        font-size: 0.98rem;
        border-radius: 6px;
      }
      .logo-main {
        font-size: 1rem;
        letter-spacing: 0.04em;
      }
      .logo-sub {
        font-size: 0.55rem;
        letter-spacing: 0.18em;
      }
      .lang-switch {
        display: none;
      }
      .nav-actions {
        gap: 0.45rem;
      }
      .nav-actions .btn-gold {
        padding: 0.48rem 0.95rem;
        font-size: 0.78rem;
      }
    }

    /* Small Phones (< 390px) */
    @media (max-width: 390px) {
      .logo-badge {
        width: 30px;
        height: 30px;
        min-width: 30px;
        font-size: 0.9rem;
      }
      .logo-img {
        width: 76px;
        height: 76px;
      }
      .logo-main {
        font-size: 0.9rem;
      }
      .logo-sub {
        font-size: 0.5rem;
        letter-spacing: 0.14em;
      }
      .nav-actions .btn-gold {
        padding: 0.42rem 0.75rem;
        font-size: 0.75rem;
      }
    }

/* WordPress helpers */
.admin-bar .header { top: 32px; }
@media (max-width: 782px) { .admin-bar .header { top: 46px; } }
