﻿/* Azeon — Unified Design System */
@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@0,400;0,500;0,600;1,400;1,500&family=Outfit:wght@300;400;500;600&display=swap');
@import url('design/tokens.css');

/* ==========================================
   SECTION DIVIDERS
   ========================================== */
section { position: relative; }
section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(196,149,106,0.22), transparent);
  z-index: 2;
  pointer-events: none;
}
.page-header::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(196,149,106,0.22), transparent);
  z-index: 2;
  pointer-events: none;
}

/* ==========================================
   ROOT — imported from design/tokens.css
   Edit design/tokens.css to change colors, fonts, spacing
   ========================================== */

/* ==========================================
   RESET
   ========================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  overscroll-behavior: none;
}
body {
  background: var(--bg);
  color: var(--t);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-y: none;
}
a { text-decoration: none; color: inherit; transition: color .3s; }
a:hover { color: var(--rose); }
img { display: block; max-width: 100%; }

/* ==========================================
   TYPOGRAPHY
   ========================================== */
h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 400;
  text-shadow: 0 0 22px rgba(255,255,255,.32), 0 0 48px rgba(196,149,106,.22), 0 0 88px rgba(196,149,106,.12);
}
h1 em, h2 em, h3 em,
h1 span[style*="color"], h2 span[style*="color"] {
  text-shadow: 0 0 16px rgba(196,149,106,.8), 0 0 38px rgba(196,149,106,.5), 0 0 72px rgba(196,149,106,.28), 0 0 110px rgba(123,42,58,.3);
}
h1[style], h2[style], h3[style] {
  text-shadow: 0 0 16px rgba(196,149,106,0.25), 0 0 40px rgba(196,149,106,0.22), 0 0 80px rgba(196,149,106,0.09) !important;
}
h4, h5, h6 { font-family: var(--serif); font-weight: 400; text-shadow: none; }

/* ==========================================
   BUTTONS — identical to index.html
   ========================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 36px;
  font-family: var(--sans);
  font-size: .86rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all .32s var(--ease);
  border: none;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  line-height: 1;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.btn:active { transform: scale(0.97); }

.btn-primary {
  background: var(--rose);
  color: var(--bg);
  box-shadow: 0 0 0 1px var(--rose);
}
.btn-primary:hover {
  background: var(--rose2);
  box-shadow: 0 0 22px rgba(196,149,106,0.22), 0 0 0 1px var(--rose2);
  transform: translateY(-2px);
  color: var(--bg);
}
.btn-outline {
  background: transparent;
  color: var(--rose);
  box-shadow: 0 0 0 1px rgba(196,149,106,.35);
}
.btn-outline:hover {
  background: rgba(196,149,106,.07);
  box-shadow: 0 0 0 1px var(--rose);
  transform: translateY(-2px);
  color: var(--rose);
}
.btn-ghost {
  background: transparent;
  color: var(--mt);
  box-shadow: 0 0 0 1px rgba(240,230,224,.14);
}
.btn-ghost:hover { color: var(--t); box-shadow: 0 0 0 1px rgba(240,230,224,.3); }

.hero-buttons .btn,
.hero-buttons .btn-primary { padding: 18px 46px; font-size: 1rem; letter-spacing: 2.5px; }

/* Ripple */
.btn-ripple {
  position: absolute; border-radius: 50%;
  background: rgba(255,255,255,0.18);
  transform: scale(0);
  animation: btnRipple 0.55s linear forwards;
  pointer-events: none; z-index: 0;
}
@keyframes btnRipple { to { transform: scale(1); opacity: 0; } }
:not(.nav-links) > .btn { min-height: 40px; }


/* ==========================================
   NAVBAR — identical to index.html
   ========================================== */
.navbar {
  position: fixed; top: 0; width: 100%; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 4% 0 2.5%; height: var(--nav-h);
  background: rgba(13,4,8,.97);
  backdrop-filter: blur(28px); -webkit-backdrop-filter: blur(28px);
  border-bottom: 1px solid rgba(196,149,106,.1);
  transition: height .32s var(--ease), background .32s;
  box-shadow: 0 4px 30px rgba(0,0,0,.35);
  -webkit-transform: translateZ(0); transform: translateZ(0);
  -webkit-backface-visibility: hidden; backface-visibility: hidden;
}
.navbar.scrolled {
  height: 64px;
  background: rgba(8,2,5,.99);
  border-bottom-color: rgba(196,149,106,.14);
}
.navbar.scrolled .nav-logo,
.navbar.scrolled .nav-logo-img { height: 38px; }

.logo, .nav-brand a { display: flex; align-items: center; z-index: 1001; }
.nav-logo, .nav-logo-img {
  height: 47px; width: auto;
  filter: drop-shadow(0 0 12px rgba(196,149,106,.6)) drop-shadow(0 0 24px rgba(123,42,58,.3));
  transition: all .3s;
}
.nav-logo:hover, .nav-logo-img:hover {
  filter: drop-shadow(0 0 18px rgba(196,149,106,.85)) drop-shadow(0 0 32px rgba(123,42,58,.5));
}

.nav-links {
  display: flex; gap: 24px; align-items: center;
  flex-wrap: nowrap; white-space: nowrap;
}
.nav-links a:not(.btn) {
  font-size: .76rem; letter-spacing: 2px; text-transform: uppercase;
  color: var(--mt); transition: color .3s;
  padding-bottom: 2px; position: relative;
}
.nav-links a:not(.btn)::after {
  content: ''; position: absolute;
  bottom: -2px; left: 0; right: 0; height: 1px;
  background: var(--rose); transform: scaleX(0);
  transform-origin: left; transition: transform .28s var(--ease);
}
.nav-links a:not(.btn):hover { color: var(--rose); }
.nav-links a:not(.btn):hover::after,
.nav-links a:not(.btn).nav-active::after { transform: scaleX(1); }
.nav-links a:not(.btn).nav-active { color: var(--rose); }
.nav-links .btn { font-size: .84rem; letter-spacing: 2px; padding: 13px 26px; min-height: unset; line-height: 1; }

.nav-links a[href="portal"].btn { background: transparent; color: var(--mt); box-shadow: 0 0 0 1px rgba(240,230,224,.14); border: none; }
@media (hover: hover) { .nav-links a[href="portal"].btn:hover { color: var(--t); box-shadow: 0 0 0 1px rgba(240,230,224,.3); background: transparent; } }
.nav-links a[href="book"].btn-primary { background: var(--rose); border-color: var(--rose); color: var(--bg); font-weight: 600; }
@media (hover: hover) { .nav-links a[href="book"].btn-primary:hover { background: var(--rose2); border-color: var(--rose2); color: var(--bg); transform: translateY(-2px); } }

.nav-dd { position: relative; display: flex; align-items: center; }
.nav-dd::after { content: ''; position: absolute; top: 100%; left: -20px; right: -20px; height: 16px; }
.nav-dropdown {
  position: absolute; top: calc(100% + 12px);
  left: 50%; transform: translateX(-50%) translateY(6px);
  background: rgba(11,3,7,.98);
  border: 1px solid rgba(196,149,106,.14);
  min-width: 224px; padding: 6px 0;
  opacity: 0; pointer-events: none;
  transition: opacity .18s ease, transform .18s ease;
  z-index: 300;
  box-shadow: 0 24px 56px rgba(0,0,0,.85);
}
.nav-dd:hover .nav-dropdown { opacity: 1; pointer-events: all; transform: translateX(-50%) translateY(0); }
.nav-dropdown a {
  display: flex; align-items: center; gap: 10px;
  padding: 11px 20px; font-size: .74rem; letter-spacing: 1px;
  text-transform: uppercase; color: rgba(255,255,255,.52);
  transition: color .2s, background .2s, padding-left .2s; white-space: nowrap;
}
.nav-dropdown a::after { display: none !important; }
.nav-dropdown a:hover { color: var(--rose); background: rgba(196,149,106,.05); padding-left: 24px; }
.dd-dot { width: 3px; height: 3px; border-radius: 50%; background: rgba(196,149,106,.35); flex-shrink: 0; transition: background .2s, transform .2s; }
.nav-dropdown a:hover .dd-dot { background: var(--rose); transform: scale(1.6); }
.nav-dd-sep { height: 1px; background: rgba(196,149,106,.1); margin: 5px 12px; }
.nav-dropdown--fleet { min-width: 248px; }
.dd-label-col { display: flex; flex-direction: column; gap: 1px; }
.dd-label-main { font-size: .74rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: inherit; }
.dd-label-sub { font-size: .62rem; color: rgba(255,255,255,.3); letter-spacing: .3px; text-transform: none; font-weight: 400; }
.nav-dropdown--fleet a:hover .dd-label-sub { color: rgba(196,149,106,.55); }

.mobile-menu-btn {
  display: none; cursor: pointer; z-index: 1002;
  background: none; border: none; padding: 8px;
  flex-direction: column; gap: 5px;
  justify-content: center; align-items: center;
  min-height: unset !important;
}
.mobile-menu-btn span {
  display: block; width: 24px; height: 1px;
  background: var(--t);
  transition: .3s;
}
.mobile-menu-btn.open span:nth-child(1),
.mobile-menu-btn.active span:nth-child(1) { transform: rotate(45deg) translate(4px,4px); }
.mobile-menu-btn.open span:nth-child(2),
.mobile-menu-btn.active span:nth-child(2) { opacity: 0; }
.mobile-menu-btn.open span:nth-child(3),
.mobile-menu-btn.active span:nth-child(3) { transform: rotate(-45deg) translate(4px,-4px); }

@media (max-width: 1200px) and (min-width: 901px) {
  .nav-links { gap: 12px; }
  .nav-links a:not(.btn) { font-size: 0.76rem; }
  .nav-links .btn { padding: 9px 16px; font-size: 0.76rem; }
  .nav-links a[href="members"], .nav-links a[href="events"] { display: none; }
}
@media (max-width: 900px) {
  :root { --nav-h: 68px; }
  .navbar { padding: 0 4%; }
  .nav-dd { display: contents; }
  .nav-dd::after { display: none; }
  .nav-dropdown { display: none !important; }
  .dd-caret { display: none !important; }
  .mobile-menu-btn { display: flex; }
  .nav-links {
    position: fixed; top: var(--nav-h); left: 0; right: 0; width: 100%;
    background: rgba(6,2,4,1);
    backdrop-filter: none; -webkit-backdrop-filter: none;
    flex-direction: column; align-items: flex-start;
    padding: 0 6%; border-top: 1px solid rgba(196,149,106,0.08);
    box-shadow: 0 16px 40px rgba(0,0,0,0.9);
    z-index: 999; gap: 0; max-height: 0; overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.22,1,0.36,1);
    -webkit-overflow-scrolling: touch;
    will-change: max-height;
  }
  .nav-links.open, .nav-links.active { max-height: 680px; }
  .nav-links a {
    font-size: 0.82rem; width: 100%; padding: 14px 0;
    justify-content: flex-start;
    border-bottom: 1px solid rgba(196,149,106,0.06); letter-spacing: 2px;
  }
  .nav-links .btn {
    margin: 10px 0 4px; padding: 12px 0;
    text-align: center; justify-content: center;
    font-size: 0.72rem; letter-spacing: 2px;
    border: 1px solid rgba(196,149,106,0.3);
    display: block; width: 100%; box-sizing: border-box;
    color: var(--rose); background: transparent; box-shadow: none;
  }
  .nav-links .btn-primary {
    background: var(--rose) !important; color: var(--bg) !important;
    font-weight: 600; border-color: var(--rose) !important; margin-bottom: 16px;
  }
  .nav-links a:last-child { border-bottom: none; }
  .navbar { backdrop-filter: none !important; -webkit-backdrop-filter: none !important; background: rgba(8,8,8,0.98) !important; }
}
/* Hero Section */
.hero {
  height: 100vh;
  height: 100dvh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.75)), url('images/heroes/main-photo.webp') center 30%/cover no-repeat;
  padding: 0 20px;
  position: relative;
  overflow: hidden;
}
/* Scroll-driven veil Ã¢â‚¬â€ darkens hero as user scrolls */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,var(--hero-veil, 0));
  pointer-events: none;
  transition: background 0.05s linear;
}
.hero-content {
  position: relative;
  z-index: 1;
  /* will-change set by JS only when scrolling starts */
}

.hero-content h1 {
  font-size: 3.6rem;
  margin-bottom: 20px;
  animation: fadeInDown 1s ease-out;
  text-shadow: 0 0 16px rgba(196,149,106,0.25), 0 0 40px rgba(196,149,106,0.22), 0 0 80px rgba(196,149,106,0.09);
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 40px;
  color: var(--color-text-muted);
  animation: fadeInUp 1s ease-out 0.3s backwards;
}

.hero-buttons {
  animation: fadeInUp 1s ease-out 0.6s backwards;
}

/* Newsletter Popup */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.popup-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.popup-content {
  background: var(--color-surface);
  padding: 50px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
  max-width: 500px;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.4s ease;
}

.popup-overlay.active .popup-content {
  transform: translateY(0);
}

.popup-close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--color-text-muted);
}

.popup-content h2 {
  color: var(--color-accent);
  margin-bottom: 15px;
  font-size: 2rem;
}

.popup-content p {
  margin-bottom: 25px;
  color: var(--color-text-muted);
}

.popup-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.popup-form input {
  padding: 12px;
  background: var(--color-surface-light);
  border: 1px solid rgba(255,255,255,0.1);
  color: white;
  font-family: var(--font-body);
}

/* Footer */
footer {
  background: #090205;
  padding: 58px 6% 24px;
  border-top: 1px solid rgba(196,149,106,.07);
  position: relative;
  overflow: hidden;
}

footer::before {
  display: none;
}

footer::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(196,149,106,0.18), transparent);
  z-index: 2;
}

.footer-col p {
  color: rgba(240,230,224,.45);
  display: block;
  margin-bottom: 10px;
  font-size: 0.88rem;
  line-height: 1.82;
}

.footer-col a {
  color: rgba(240,230,224,.45);
  display: block;
  margin-bottom: 10px;
  font-size: 0.88rem;
  line-height: 1.5;
  transition: color 0.25s;
  padding: 1px 0;
}

.footer-col a:hover {
  color: rgba(240,230,224,.9);
}

.footer-bottom {
  text-align: center;
  padding-top: 22px;
  border-top: 1px solid rgba(196,149,106,0.05);
  color: rgba(240,230,224,.35);
  font-size: 0.74rem;
  position: relative;
  z-index: 1;
}
.footer-bottom a{color:rgba(196,149,106,0.5);transition:color .25s;text-decoration:none;}
.footer-bottom a:hover{color:rgba(196,149,106,0.9);}
.footer-bottom p+p{margin-top:6px;}

/* ── footer-grid (canonical footer) ── */
.footer-grid{display:grid;grid-template-columns:2fr 1fr 1fr 1fr 1fr;gap:36px;max-width:1200px;margin:0 auto 42px;position:relative;z-index:1}
.footer-logo{height:28px;filter:drop-shadow(0 0 8px rgba(196,149,106,.45));margin-bottom:14px;display:block}
.footer-desc{font-size:.88rem;line-height:1.82;color:rgba(240,230,224,.45);max-width:260px;margin-bottom:14px}
.footer-contact{font-size:.88rem;color:rgba(240,230,224,.45);line-height:2.1}
.footer-contact a{color:rgba(196,149,106,.6);transition:color .3s;text-decoration:none}
.footer-contact a:hover{color:var(--rose)}
.footer-col h4{color:var(--color-accent);margin-bottom:18px;font-size:0.78rem;letter-spacing:3.5px;text-transform:uppercase;font-family:var(--font-body);font-weight:600;text-shadow:none}
@media(max-width:860px){.footer-grid{grid-template-columns:1fr 1fr;gap:28px}.footer-grid>div:first-child{grid-column:1/-1}}
@media(max-width:760px){.footer-grid{grid-template-columns:1fr 1fr;gap:22px}.footer-grid>div:first-child{grid-column:1/-1}}
@media(max-width:480px){.footer-grid{grid-template-columns:1fr 1fr;gap:20px}.footer-grid>div:first-child{grid-column:1/-1}}
@media(max-width:380px){.footer-grid{grid-template-columns:1fr 1fr;gap:16px}.footer-grid>div:first-child{grid-column:1/-1}}

/* Animations */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Form Styles */
.form-group {
  margin-bottom: 20px;
  text-align: left;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: var(--color-accent);
  font-size: 0.9rem;
  letter-spacing: 1px;
}

.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 12px;
  background: var(--color-surface);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  font-family: var(--font-body);
  transition: border-color 0.3s;
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--color-accent);
}

/* Page Headers */
.page-header {
  padding: 160px 5% 90px;
  text-align: center;
  background: linear-gradient(rgba(0,0,0,0.52), rgba(0,0,0,0.88)), var(--color-surface);
  border-bottom: 1px solid transparent;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 380px;
  background: radial-gradient(ellipse at center, rgba(255,255,255,0.065) 0%, transparent 68%);
  pointer-events: none;
  z-index: 0;
}

.page-header > *:not(canvas):not([id^="particles"]) {
  position: relative;
  z-index: 2;
}

.page-header h1 {
  font-size: clamp(2.4rem,5.5vw,3.8rem);
  color: var(--color-text);
  margin-bottom: 18px;
  letter-spacing: 0;
  font-style: italic;
  font-weight: 400;
  line-height: 1.1;
  text-shadow: 0 0 22px rgba(255,255,255,.38), 0 0 50px rgba(255,255,255,.2), 0 0 80px rgba(196,149,106,.2), 0 0 120px rgba(196,149,106,.12);
}

.page-header h1 em,
.page-header h1 span.accent {
  color: var(--color-accent);
  font-style: italic;
  text-shadow: 0 0 20px rgba(196,149,106,.65), 0 0 45px rgba(196,149,106,.35), 0 0 80px rgba(196,149,106,.2);
}

.page-header .page-eyebrow {
  font-size: .66rem;
  letter-spacing: 4.5px;
  text-transform: uppercase;
  color: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 16px;
  text-shadow: 0 0 16px rgba(196,149,106,.7), 0 0 36px rgba(196,149,106,.35);
}

.page-header .page-eyebrow::before,
.page-header .page-eyebrow::after {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--color-accent);
  flex-shrink: 0;
}

.page-header p {
  font-size: 1rem;
  color: var(--mt);
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.9;
  font-family: var(--font-body);
}

/* ==========================================
   ABOVE-FOLD LOAD ANIMATIONS
   (Page headers & about hero Ã¢â‚¬â€ already visible
   on load, so no IntersectionObserver needed)
   ========================================== */
@-webkit-keyframes fadeInUp {
  from { opacity: 0; -webkit-transform: translateY(28px); transform: translateY(28px); }
  to   { opacity: 1; -webkit-transform: translateY(0);    transform: translateY(0); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

.page-header h1 {
  -webkit-animation: fadeInUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
          animation: fadeInUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.page-header p {
  -webkit-animation: fadeInUp 0.7s 0.18s cubic-bezier(0.22, 1, 0.36, 1) both;
          animation: fadeInUp 0.7s 0.18s cubic-bezier(0.22, 1, 0.36, 1) both;
}

/* About page hero uses its own class */
.about-hero-inner {
  -webkit-animation: fadeInUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) both;
          animation: fadeInUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) both;
}


/* WhatsApp Float — Style B: rose gold circle */
.wa-float, .concierge-float{position:fixed;bottom:32px;right:32px;z-index:99;width:54px;height:54px;border-radius:50%;background:var(--color-accent);display:flex;align-items:center;justify-content:center;text-decoration:none;color:#0D0408;box-shadow:0 6px 24px rgba(196,149,106,.45),0 2px 8px rgba(0,0,0,.4);transition:all .28s}
.wa-float:hover, .concierge-float:hover{background:var(--color-accent-hover);transform:scale(1.1);box-shadow:0 8px 32px rgba(196,149,106,.6)}
.concierge-btn{display:flex;align-items:center;justify-content:center;color:inherit;width:100%;height:100%;text-decoration:none}
.concierge-btn:first-child ~ .concierge-btn{display:none}

/* WhatsApp Floating Button — LEGACY (kept for backwards compat) */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 40px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 0px 4px 10px rgba(0,0,0,0.3);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  color: white;
}

/* Utility */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
}

/* Why Choose Us Section */
.why-choose-us {
  padding: 70px 5%;
  background-color: var(--color-bg);
  position: relative;
  overflow: hidden;
}

.why-choose-us h2 {
  text-align: center;
  font-size: clamp(1.8rem,3.5vw,2.6rem);
  color: var(--color-text);
  margin-bottom: 60px;
  font-style: italic;
  letter-spacing: 1px;
  text-shadow: none;
}

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

.why-card {
  text-align: center;
  background: var(--color-surface);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: transform 0.3s;
}

.why-card:hover {
  transform: translateY(-10px);
  border-color: var(--color-accent);
}

.why-img {
  width: 100%;
  height: 200px;
  background-size: cover;
  background-position: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.why-content {
  padding: 30px 20px;
}

.why-content h3 {
  color: var(--color-accent);
  font-size: 1.2rem;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.why-content p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Luxury Experience Section */
.experience-section {
  padding: 70px 5%;
  background-color: var(--color-surface);
  display: flex;
  align-items: center;
  gap: 50px;
  position: relative;
}
.experience-section.reverse {
  flex-direction: row-reverse;
  background-color: var(--color-bg);
}
.experience-image {
  flex: 1;
  height: 500px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.experience-content {
  flex: 1;
}

/* Ensure content in particle-enhanced sections stacks above canvas */
.why-choose-us > *:not([id^="particles"]),
.experience-section > *:not([id^="particles"]) {
  position: relative;
  z-index: 1;
}

/* Content classes that may share a section with particle canvases */
.service-section,
.why-card,
.faq-item,
.faq-accordion,
.about-hero-inner {
  position: relative;
  z-index: 1;
}
.experience-content h2 {
  font-size: clamp(1.8rem,3.2vw,2.6rem);
  color: var(--color-text);
  margin-bottom: 20px;
  font-style: italic;
  text-shadow: none;
}
.experience-content p {
  color: var(--color-text-muted);
  font-size: 1.1rem;
  margin-bottom: 30px;
}

/* FAQ Section */
.faq-wrapper {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.faq-header {
  text-align: center;
  margin-bottom: 50px;
}

.faq-header h2 {
  font-size: 2.5rem;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.faq-header p {
  color: var(--mt);
  font-size: 0.88rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* Tab Bar */
.faq-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 40px;
  border-bottom: 1px solid rgba(196,149,106,0.18);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.faq-tabs::-webkit-scrollbar { display: none; }

.faq-tab {
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  color: rgba(255,255,255,0.45);
  font-family: var(--font-body);
  font-size: 0.95rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 16px 34px;
  margin-bottom: -1px;
  cursor: pointer;
  white-space: nowrap;
  transition: color 0.3s, border-color 0.3s;
  min-height: unset;
}
.faq-tab:hover {
  color: rgba(255,255,255,0.75);
}
.faq-tab.active {
  color: var(--rose);
  border-bottom-color: var(--rose);
}

/* Tab Panels */
.faq-tab-content {
  display: none;
}
.faq-tab-content.active {
  display: block;
  animation: fadeTabIn 0.3s ease;
}

@keyframes fadeTabIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Accordion */
.faq-item {
  border-bottom: 1px solid rgba(196,149,106,0.14);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: rgba(255,255,255,0.88);
  text-align: left;
  padding: 22px 0;
  font-size: 1rem;
  font-family: var(--font-body);
  font-weight: 500;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  transition: color 0.3s;
  min-height: unset;
}
.faq-question:hover {
  color: var(--color-accent);
}
.faq-icon {
  font-size: 1.3rem;
  color: var(--color-accent);
  flex-shrink: 0;
  transition: transform 0.3s;
  opacity: 0.7;
}
.faq-question.active .faq-icon {
  transform: rotate(45deg);
  opacity: 1;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-answer p {
  padding-bottom: 22px;
  color: var(--color-text-muted);
  line-height: 1.75;
  font-size: 0.95rem;
}

/* Booking Car Grid */
#car-options-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 30px;
}

#car-options-container .car-option {
  margin-bottom: 0; /* Reset margin because grid handles gap */
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  padding: 30px 20px;
}

#car-options-container .car-price {
  margin-top: 15px;
  font-size: 1.8rem;
}



/* ==========================================
   COMPACT FEATURE LIST (01Ã¢â‚¬â€œ06 section)
   ========================================== */
.features-compact {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.06);
  text-align: left;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 22px 24px;
  background: #0a0a0a;
  transition: background 0.3s;
}

.feature-item:hover {
  background: rgba(255,255,255,0.03);
}

/* Keep old .feature-num in case referenced elsewhere */
.feature-num {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--color-accent);
  text-shadow: 0 0 16px rgba(196,149,106,0.25), 0 0 40px rgba(196,149,106,0.22), 0 0 80px rgba(196,149,106,0.09);
  flex-shrink: 0;
  line-height: 1.4;
  padding-top: 2px;
}

.feature-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.feature-body strong {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.feature-body span {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.55;
}

/* ==========================================
   NEW FEAT-CARD GRID (01Ã¢â‚¬â€œ06)
   ========================================== */
.feature-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(255,255,255,0.04);
  text-align: left;
}

.feat-card {
  background: #0a0a0a;
  padding: 36px 28px 32px;
  position: relative;
  overflow: hidden;
  transition: background 0.35s ease, transform 0.35s ease;
  cursor: default;
}

.feat-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(196,149,106,0);
  transition: border-color 0.35s ease;
  pointer-events: none;
}

.feat-card:hover {
  background: rgba(196,149,106,0.04);
  transform: translateY(-4px);
}

.feat-card:hover::after {
  border-color: rgba(196,149,106,0.18);
}

.feat-num {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--rose);
  text-shadow: none;
  line-height: 1;
  margin-bottom: 14px;
  font-style: italic;
}

.feat-line {
  width: 32px;
  height: 1px;
  background: linear-gradient(90deg, rgba(196,149,106,0.7), transparent);
  margin-bottom: 16px;
  transition: width 0.4s ease;
}

.feat-card:hover .feat-line {
  width: 56px;
}

.feat-title {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 10px;
  text-shadow: none;
}

.feat-desc {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
}

/* ==========================================
   SCROLL REVEAL SYSTEM
   Full iOS Safari + Android Chrome support
   ========================================== */

.reveal {
  opacity: 0;
  /* Standard */
  transform: translateY(36px);
  transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
  /* WebKit (iOS Safari 12, older Android) */
  -webkit-transform: translateY(36px);
  -webkit-transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
                      -webkit-transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
  /* GPU compositing Ã¢â‚¬â€ smoother on mobile */
  will-change: transform, opacity;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
  -webkit-transform: translateY(0);
  will-change: auto;
}

/* Respect reduced motion (accessibility) */
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1 !important;
    transform: none !important;
    -webkit-transform: none !important;
    transition: none !important;
    -webkit-transition: none !important;
    will-change: auto;
  }
}

/* ==========================================
   MOBILE RESPONSIVENESS Ã¢â‚¬â€ iOS / Android
   ========================================== */

/* Prevent iOS text size adjust */
html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

/* Smooth scrolling on mobile */
* {
  -webkit-tap-highlight-color: transparent;
}

/* Touch-friendly tap size Ã¢â‚¬â€ ONLY on standalone interactive elements, NEVER on nav */
.faq-question { min-height: 44px; }
/* Standalone buttons outside the navbar get a comfortable tap height */
:not(.nav-links) > .btn { min-height: 40px; }
/* Hamburger stays its defined 36Ãƒâ€”36 Ã¢â‚¬â€ no min-height override */
.mobile-menu-btn { min-height: unset !important; }

@media (max-width: 900px) {
  /* Hero mobile fixes */
  .hero {
    background-position: center 50%;
    min-height: 90svh;
    min-height: 90dvh;
    height: 90svh;
    height: 90dvh;
  }
  .hero-content {
    padding: 0 16px;
    max-width: 100%;
  }
  .hero-content h1 {
    font-size: 2.4rem;
    line-height: 1.15;
    word-break: break-word;
  }
  .hero-content p {
    font-size: 1rem;
    line-height: 1.6;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
  .page-header h1 {
    font-size: 2rem;
    line-height: 1.2;
    letter-spacing: 2px;
  }
  .page-header p {
    font-size: 0.95rem;
  }
  .container {
    padding: 40px 15px;
  }
  .fleet-grid {
    grid-template-columns: 1fr !important;
  }
  .why-grid {
    grid-template-columns: 1fr 1fr;
  }
  /* Service cards \u2014 2 col on tablet, image-forward */
  #services > div:last-child {
    grid-template-columns: 1fr 1fr !important;
  }
  .service-card {
    min-height: 300px !important;
  }
  /* Service card descriptions Ã¢â‚¬â€ compact but always visible */
  .service-card {
    min-height: 360px !important;
  }
  .service-card > div:last-child p {
    font-size: 0.8rem !important;
    line-height: 1.55 !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    opacity: 0.85;
  }
  .service-card > div:last-child h3 {
    font-size: 1.3rem !important;
    margin-bottom: 10px !important;
  }

  .experience-section {
    flex-direction: column !important;
    padding: 60px 5% !important;
  }
  .experience-image {
    width: 100% !important;
    height: 320px !important;
    min-height: 320px !important;
    flex-shrink: 0 !important;
    -webkit-flex-shrink: 0 !important;
  }
  .experience-content h2 {
    font-size: 2rem;
  }
  .time-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  /* Booking container mobile */
  .booking-container {
    padding: 20px 16px !important;
  }
  /* Services Ã¢â‚¬â€ horizontal swipe carousel on mobile */
  #services > div:last-child {
    display: flex !important;
    flex-direction: row !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    -webkit-overflow-scrolling: touch !important;
    gap: 0 !important;
    background: transparent !important;
    padding: 0 5% 8px !important;
    scrollbar-width: none;
  }
  #services > div:last-child::-webkit-scrollbar { display: none; }
  .service-card {
    min-width: 85vw !important;
    max-width: 85vw !important;
    flex-shrink: 0 !important;
    scroll-snap-align: start !important;
    margin-right: 12px !important;
    min-height: 360px !important;
    border-radius: 4px !important;
  }
  /* Show description text again inside carousel */
  .service-card > div:last-child p {
    display: block !important;
    font-size: 0.82rem !important;
    line-height: 1.55 !important;
    -webkit-line-clamp: 3;
    display: -webkit-box !important;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  /* FAQ mobile */
  .faq-tab {
    padding: 12px 20px;
    font-size: 0.72rem;
  }
  .faq-header h2 {
    font-size: 2rem !important;
  }
  .faq-question {
    font-size: 0.93rem;
    padding: 18px 0;
    text-align: left;
  }
  /* Why choose us section */
  .why-choose-us {
    padding: 70px 5%;
  }
  .why-choose-us h2 {
    font-size: 2rem;
    margin-bottom: 40px;
  }
}

@media (max-width: 700px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
  #car-options-container {
    grid-template-columns: 1fr !important;
  }
  .grid-2 {
    grid-template-columns: 1fr !important;
  }
  /* Azeon Standard feature grid */
  [style*="grid-template-columns: repeat(auto-fit, minmax(320px, 1fr))"] {
    grid-template-columns: 1fr !important;
  }
  /* contact grid */
  .contact-grid {
    grid-template-columns: 1fr !important;
    gap: 30px !important;
  }
  /* hero */
  .hero {
    background-position: 55% center;
    background-size: 160% auto;
    height: 72svh;
    height: 72dvh;
    min-height: 420px;
  }
  .hero-content h1 {
    font-size: 1.9rem;
    line-height: 1.2;
    letter-spacing: 0;
  }
  .hero-content p {
    font-size: 0.95rem;
    line-height: 1.65;
  }
  .hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    width: 100%;
  }
  .hero-buttons .btn {
    width: 100%;
    max-width: 300px;
    text-align: center;
    font-size: 0.85rem;
    padding: 14px 20px;
  }
  /* page header — reduce zoom on portrait mobile */
  .page-header {
    padding: 100px 5% 44px !important;
    background-size: cover !important;
    background-position: center 35% !important;
  }
  .page-header h1 {
    font-size: 1.75rem;
    line-height: 1.2;
    letter-spacing: 2px;
  }
  .page-header p {
    font-size: 0.9rem;
    line-height: 1.65;
  }
  /* Brief intro section */
  #brief-intro {
    padding: 50px 5% !important;
  }
  #brief-intro h2 {
    font-size: 1.8rem !important;
  }
  /* Feature cards Ã¢â‚¬â€ 2 columns on tablet */
  .feature-cards {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .feat-cards-dots { display: none; }
  /* FAQ section */
  .faq-section {
    padding: 60px 5% !important;
  }
  .faq-header h2 {
    font-size: 1.8rem !important;
  }
  .faq-header {
    margin-bottom: 30px !important;
  }
  .faq-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-bottom: none;
    gap: 2px;
    margin-bottom: 28px;
  }
  .faq-tab {
    padding: 14px 12px;
    font-size: 0.82rem;
    letter-spacing: 1.2px;
    border: 1px solid rgba(255,255,255,0.07);
    border-bottom: 2px solid transparent;
    text-align: center;
    background: rgba(255,255,255,0.02);
  }
  .faq-tab.active {
    background: rgba(196,149,106,0.07);
    border-color: rgba(196,149,106,0.2);
    border-bottom-color: var(--color-accent);
  }
  /* Experience section */
  .experience-section {
    padding: 50px 5% !important;
  }
  .experience-image {
    height: 260px !important;
    min-height: 260px !important;
  }
  .experience-content h2 {
    font-size: 1.8rem;
  }
  .experience-content p {
    font-size: 0.95rem;
  }
  /* Feature cards Ã¢â‚¬â€ SWIPE CAROUSEL on phones */
  .feature-cards {
    display: flex !important;
    flex-direction: row !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    -webkit-overflow-scrolling: touch !important;
    gap: 0 !important;
    background: transparent !important;
    padding: 0 5% 4px !important;
    /* peek: next card edge visible */
    scroll-padding-left: 5%;
    /* hide scrollbar on all browsers */
    scrollbar-width: none;
  }
  .feature-cards::-webkit-scrollbar { display: none; }

  .feat-card {
    min-width: 82vw !important;
    max-width: 82vw !important;
    flex-shrink: 0 !important;
    scroll-snap-align: start !important;
    padding: 30px 24px 28px !important;
    margin-right: 10px !important;
    border: 1px solid rgba(255,255,255,0.07) !important;
    /* cancel the hover lift on touch */
    transform: none !important;
  }
  .feat-card::after { display: none !important; }

  .feat-num {
    font-size: 2rem !important;
  }

  /* Dot indicator strip */
  .feat-cards-dots {
    display: flex;
    justify-content: center;
    gap: 7px;
    margin-top: 18px;
  }
  .feat-cards-dots .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255,255,255,0.18);
    transition: background 0.3s, transform 0.3s;
    cursor: pointer;
  }
  .feat-cards-dots .dot.active {
    background: var(--color-accent);
    transform: scale(1.4);
  }
  /* FAQ */
  .faq-question {
    font-size: 0.9rem;
    padding: 16px 0;
  }
  /* time picker fits on small screen */
  .time-picker-dropdown {
    min-width: 260px !important;
    left: 0 !important;
    right: 0 !important;
    width: auto !important;
  }
  .time-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  /* step labels shorter on tiny screens */
  .step-label {
    font-size: 0.5rem !important;
    letter-spacing: 1px !important;
  }
  /* why choose us image taller on mobile */
  .why-img {
    height: 180px;
  }
  /* Service cards Ã¢â‚¬â€ single column, photo on top / text below */
  #services > div:last-child {
    grid-template-columns: 1fr !important;
  }
  .service-card {
    display: flex !important;
    flex-direction: column !important;
    min-height: unset !important;
  }
  /* Photo div: pull out of absolute, give fixed height */
  .service-card > div:first-child {
    position: relative !important;
    inset: auto !important;
    height: 220px !important;
    width: 100% !important;
    flex-shrink: 0 !important;
  }
  /* Hide gradient overlay Ã¢â‚¬â€ not needed with stacked layout */
  .service-card > div:nth-child(2) {
    display: none !important;
  }
  /* Text section: flows below photo with solid background */
  .service-card > div:last-child {
    position: relative !important;
    inset: auto !important;
    height: auto !important;
    background: #111 !important;
    justify-content: flex-start !important;
    padding: 22px 18px 26px !important;
  }
  .service-card > div:last-child h3 {
    font-size: 1.4rem !important;
    margin-bottom: 10px !important;
  }
  .service-card > div:last-child > p:first-child {
    font-size: 0.65rem !important;
    letter-spacing: 2px !important;
  }
  /* Why choose us */
  .why-choose-us {
    padding: 60px 5%;
  }
  .why-choose-us h2 {
    font-size: 1.8rem;
  }
  /* Compact features Ã¢â‚¬â€ single column on phones */
  .features-compact {
    grid-template-columns: 1fr !important;
  }
  .feature-item {
    padding: 16px 18px !important;
  }
}

@media (max-width: 400px) {
  #car-options-container {
    grid-template-columns: 1fr !important;
  }
  .booking-container {
    padding: 16px 12px !important;
  }
}

/* ==========================================
   COOKIE BANNER
   ========================================== */
#cookie-banner {
  position: fixed;
  bottom: -100%;
  left: 0;
  width: 100%;
  background: var(--color-surface);
  border-top: 1px solid var(--color-accent);
  padding: 20px 5%;
  z-index: 9999;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 -5px 20px rgba(0,0,0,0.8);
  transition: bottom 0.5s ease-in-out;
}

#cookie-banner.show {
  bottom: 0;
}

.cookie-text {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  max-width: 800px;
  line-height: 1.6;
}

.cookie-text a {
  color: var(--color-accent);
  text-decoration: underline;
}

.cookie-btn {
  background: var(--color-accent);
  color: #000;
  border: none;
  padding: 10px 25px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  cursor: pointer;
  border-radius: 4px;
  margin-left: 20px;
  white-space: nowrap;
}

@media (max-width: 700px) {
  #cookie-banner {
    flex-direction: column;
    text-align: center;
    gap: 15px;
    padding: 20px;
  }
  .cookie-btn {
    margin-left: 0;
    width: 100%;
  }
}

/* ==========================================
   TOUCH DEVICE CAROUSEL Ã¢â‚¬â€ all screen widths
   Works on S21 Ultra, tablets in landscape, etc.
   (hover:none)(pointer:coarse) = touchscreen
   ========================================== */
@media (hover: none) and (pointer: coarse) {
  .feature-cards {
    display: flex !important;
    flex-direction: row !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    -webkit-overflow-scrolling: touch !important;
    gap: 0 !important;
    background: transparent !important;
    padding: 0 5% 4px !important;
    scroll-padding-left: 5%;
    scrollbar-width: none;
  }
  .feature-cards::-webkit-scrollbar { display: none; }

  .feat-card {
    min-width: 80vw !important;
    max-width: 80vw !important;
    flex-shrink: 0 !important;
    scroll-snap-align: start !important;
    padding: 28px 22px 26px !important;
    margin-right: 10px !important;
    border: 1px solid rgba(255,255,255,0.08) !important;
    transform: none !important;
  }
  .feat-card::after { display: none !important; }

  .feat-cards-dots {
    display: flex;
    justify-content: center;
    gap: 7px;
    margin-top: 18px;
  }
  .feat-cards-dots .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255,255,255,0.18);
    transition: background 0.3s, transform 0.3s;
    cursor: pointer;
  }
  .feat-cards-dots .dot.active {
    background: var(--color-accent);
    transform: scale(1.4);
  }
}

/* ==========================================
   SOCIAL MEDIA LINKS
   ========================================== */
.social-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 3px;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 0.82rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: border-color 0.3s, color 0.3s, background 0.3s, transform 0.3s;
  background: rgba(255,255,255,0.02);
}
.social-link:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
  background: rgba(196,149,106,0.05);
  transform: translateY(-3px);
}
.social-link svg {
  flex-shrink: 0;
  opacity: 0.7;
  transition: opacity 0.3s;
}
.social-link:hover svg { opacity: 1; }

@media (max-width: 700px) {
  .social-link {
    width: calc(50% - 9px);
    justify-content: center;
  }
}

/* ==========================================
   iOS / ANDROID PERFORMANCE & RENDERING
   Prevents lag, jank, and rendering bugs on
   mobile Safari and Android Chrome.
   ========================================== */

/* Prevent momentum scroll on iOS from causing content shifts */
html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  /* Prevent overscroll bounce showing white background */
  overscroll-behavior: none;
}

/* Smooth momentum scrolling on iOS */
body {
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-y: none;
}

/* Remove iOS tap flash on all interactive elements */
* {
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none; /* disable callout on long-press for links */
}
a, button, [role="button"] {
  -webkit-touch-callout: default; /* re-enable for actual interactive elements */
}

/* GPU-accelerate the navbar (fixed position causes repaints without this) */
.navbar {
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/* GPU-accelerate marquee Ã¢â‚¬â€ prevents jank on low-end Android */
.marquee-track {
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  will-change: transform;
}

/* Prevent hero image from repainting on scroll on iOS Safari */
.hero {
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

/* Contain paint on heavy sections so browser doesn't repaint the full page */
.why-choose-us,
.experience-section,
.testimonials-section,
.standard-section,
.coverage-section,
.app-cta-section {
  contain: layout style;
}

/* Service cards Ã¢â‚¬â€ GPU-accelerate the hover zoom */
.service-card > div:first-child {
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  will-change: transform;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

/* Images Ã¢â‚¬â€ hardware decode for large images */
img {
  image-rendering: auto;
  -webkit-image-rendering: auto;
}

/* Prevent text rendering artifacts on retina / OLED screens */
body, h1, h2, h3, h4, h5, h6, p, span, a {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Fix 100vh iOS Safari bug Ã¢â‚¬â€ use dvh for interactive fullscreen */
@supports (height: 100dvh) {
  .hero {
    height: 100dvh !important;
    min-height: 520px;
  }
}

/* Remove any backdrop-filter on mobile Ã¢â‚¬â€ extremely expensive */
@media (max-width: 900px) {
  .navbar {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    background: rgba(8, 8, 8, 0.98) !important;
  }
}

/* ==========================================
   CYAN GLOW Ã¢â‚¬â€ UNIVERSAL DIVIDERS & HEADINGS
   Replaces every remaining gray hairline with
   the brand cyan gradient used on index.
   ========================================== */

/* Fleet card price rows (top + bottom divider) */
.fleet-pricing {
  border-top: 1px solid rgba(196,149,106,0.18) !important;
  border-bottom: 1px solid rgba(196,149,106,0.18) !important;
}

/* Fleet bespoke-experience block (on-request vehicles) */
.fleet-info > div[style*="border-top"][style*="border-bottom"] {
  border-top: 1px solid rgba(196,149,106,0.18) !important;
  border-bottom: 1px solid rgba(196,149,106,0.18) !important;
}

/* Booking page: on-request vehicle divider strip */
.car-details-wrapper > div[style*="border-top"] {
  border-top: 1px solid rgba(196,149,106,0.18) !important;
}

/* car-price bottom border line */
.car-price {
  border-top: 1px solid rgba(196,149,106,0.18) !important;
}

/* Why-card image bottom line */
.why-img {
  border-bottom: 1px solid rgba(196,149,106,0.15) !important;
}

/* Section heading text-shadow Ã¢â‚¬â€ ensures inline h2s glow too */
h1[style], h2[style], h3[style] {
  text-shadow: 0 0 16px rgba(196,149,106,0.25), 0 0 40px rgba(196,149,106,0.22), 0 0 80px rgba(196,149,106,0.09) !important;
}

/* "Our Services" and "Follow Our World" section top/bottom borders Ã¢â€ â€™ cyan */
section[style*="border-top"][style*="border-bottom"] {
  border-top: 1px solid rgba(196,149,106,0.2) !important;
  border-bottom: 1px solid rgba(196,149,106,0.2) !important;
}

/* Booking container border */
.booking-container {
  border-color: rgba(196,149,106,0.35) !important;
}

/* Step indicator hairline */
.step-indicator::before {
  background: rgba(196,149,106,0.15) !important;
}

/* FAQ first item Ã¢â‚¬â€ add top glow border */
.faq-item:first-child {
  border-top: 1px solid rgba(196,149,106,0.18);
}

/* Booking summary box */
#step-4 > div[style*="border"] {
  border-color: rgba(196,149,106,0.2) !important;
}

/* ==========================================
   TRUST & COMPLIANCE STRIP
   ========================================== */
.trust-strip {
  background: #050505;
  border-bottom: 1px solid rgba(196,149,106,0.1);
  overflow: hidden;
}
.trust-row {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 14px 5%;
  overflow-x: auto;
  white-space: nowrap;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.trust-row::-webkit-scrollbar { display: none; }
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.68rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.42);
  flex-shrink: 0;
}
.trust-dot {
  color: rgba(196,149,106,0.2);
  font-size: 0.65rem;
  flex-shrink: 0;
  user-select: none;
}
.trust-sep {
  color: rgba(196,149,106,0.2) !important;
  font-size: 0.9rem !important;
  padding: 0 4px;
}
.trust-rating {
  gap: 5px !important;
  color: rgba(255,255,255,0.55) !important;
}
.trust-rating-text {
  font-size: 0.7rem;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
}
.trust-rating-text strong {
  color: rgba(255,255,255,0.8);
  font-weight: 700;
}
@media (max-width: 700px) {
  .trust-row { padding: 12px 4%; gap: 16px; }
  .trust-badge { font-size: 0.64rem; }
  .trust-rating-text { font-size: 0.64rem; }
}

/* ==========================================
   MARQUEE TICKER STRIP
   ========================================== */
.marquee-strip {
  background: #000;
  border-top: 1px solid rgba(196,149,106,0.18);
  border-bottom: 1px solid rgba(196,149,106,0.18);
  overflow: hidden;
  padding: 14px 0;
  white-space: nowrap;
  position: relative;
}
.marquee-strip::before,
.marquee-strip::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.marquee-strip::before { left: 0; background: linear-gradient(90deg, #000, transparent); }
.marquee-strip::after  { right: 0; background: linear-gradient(-90deg, #000, transparent); }

.marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 0;
  animation: marqueeScroll 28s linear infinite;
}
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.marquee-item {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  padding: 0 28px;
  transition: color 0.3s;
}
.marquee-sep {
  color: rgba(196,149,106,0.5);
  font-size: 0.65rem;
  flex-shrink: 0;
}
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
}

/* ==========================================
   4-PROMISE STRIP
   ========================================== */
.promises-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: #050505;
  border-bottom: 1px solid rgba(196,149,106,0.15);
}
.promise-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 36px 20px;
  text-align: center;
  border-right: 1px solid rgba(196,149,106,0.1);
  transition: background 0.35s;
}
.promise-item:last-child { border-right: none; }
.promise-item:hover { background: rgba(196,149,106,0.04); }
.promise-main {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.5px;
  margin-bottom: 5px;
  display: block;
}
.promise-sub {
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(196,149,106,0.7);
  display: block;
}
@media (max-width: 700px) {
  .promises-strip {
    grid-template-columns: repeat(2, 1fr);
  }
  .promise-item:nth-child(2) { border-right: none; }
  .promise-item { padding: 24px 16px; }
}

/* ==========================================
   THE AZEON STANDARD (Section 05)
   ========================================== */
.standard-section {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #000;
}
.standard-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 40%;
  filter: brightness(0.25) saturate(0.6);
  transition: transform 8s ease;
}
.standard-section:hover .standard-bg { transform: scale(1.04); }
.standard-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(0,0,0,0.92) 45%, rgba(0,194,203,0.06) 100%);
}
.standard-content {
  position: relative;
  z-index: 2;
  padding: 100px 8%;
  max-width: 680px;
}
.standard-eyebrow {
  font-size: 0.68rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(196,149,106,0.65);
  margin-bottom: 20px;
  display: block;
}
.standard-content h2 {
  font-size: 3.2rem;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 20px;
}
.standard-content > p {
  color: rgba(255,255,255,0.55);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 50px;
  max-width: 480px;
}
.standard-stats {
  display: flex;
  gap: 48px;
}
.standard-stat {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.standard-stat-num {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--color-accent);
  text-shadow: 0 0 16px rgba(196,149,106,0.4), 0 0 40px rgba(196,149,106,0.2);
  line-height: 1;
}
.standard-stat-label {
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}
@media (max-width: 700px) {
  .standard-content { padding: 70px 6%; }
  .standard-content h2 { font-size: 2.2rem; }
  .standard-stats { gap: 28px; }
  .standard-stat-num { font-size: 2rem; }
}

/* ==========================================
   COVERAGE SECTION (Section 07) Ã¢â‚¬â€ animated map
   ========================================== */
.coverage-section {
  background: #030303;
  padding: 70px 5%;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(196,149,106,0.12);
  border-bottom: 1px solid rgba(196,149,106,0.12);
}
.coverage-layout {
  display: flex;
  align-items: center;
  gap: 60px;
  max-width: 1100px;
  margin: 0 auto;
}
.coverage-text-col {
  flex: 0 0 320px;
  display: flex;
  flex-direction: column;
}
.coverage-map-col {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.coverage-canvas {
  display: block;
  max-width: 100%;
  height: auto;
  /* GPU-accelerate the canvas for smooth animation on mobile */
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
}
.coverage-city-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 20px;
}
.coverage-city-list span {
  font-size: 0.64rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
  background: rgba(196,149,106,0.04);
  border: 1px solid rgba(196,149,106,0.1);
  padding: 3px 8px;
  border-radius: 2px;
  white-space: nowrap;
}
/* Desktop: constrain map column so it doesn't balloon */
.coverage-map-col {
  max-width: 480px;
}

@media (max-width: 960px) {
  /* Stack: text above, map below Ã¢â‚¬â€ keep it compact */
  .coverage-layout { flex-direction: column; gap: 28px; }
  .coverage-text-col { flex: none; width: 100%; }
  .coverage-text-col > p { max-width: 100%; }
  .coverage-map-col { width: 100%; max-width: 100%; position: relative; }
  .coverage-canvas { width: 100% !important; height: auto !important; max-height: 300px; }
}

@media (max-width: 600px) {
  .coverage-section { padding: 44px 5%; }
  /* On phones: map is a full-width background, text overlaid on top */
  .coverage-layout { gap: 0; }
  .coverage-map-col {
    position: relative;
    width: calc(100% + 10%);
    margin-left: -5%;
    margin-right: -5%;
    overflow: hidden;
  }
  .coverage-canvas { width: 100% !important; height: auto !important; max-height: 240px; opacity: 0.8; }
  /* Gradient overlay so text above stays readable */
  .coverage-map-col::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(3,3,3,0.7) 0%, rgba(3,3,3,0) 60%);
    pointer-events: none;
  }
  .coverage-text-col { padding-bottom: 20px; }
  .coverage-text-col h2 { font-size: 1.9rem; }
  .coverage-city-list { display: none; } /* hide city chips on smallest screens */
}
.coverage-eyebrow {
  font-size: 0.68rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(196,149,106,0.6);
  margin-bottom: 14px;
  display: block;
}
.coverage-text-col h2 {
  font-size: 2.6rem;
  color: #fff;
  margin-bottom: 12px;
  line-height: 1.1;
}
.coverage-text-col > p {
  color: rgba(255,255,255,0.45);
  font-size: 0.88rem;
  line-height: 1.75;
  margin-bottom: 28px;
  max-width: 280px;
}
.coverage-stats-row {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.coverage-stat { text-align: left; }
.coverage-stat-num {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: rgba(196,149,106,0.85);
  text-shadow: 0 0 16px rgba(196,149,106,0.3);
  line-height: 1;
}
.coverage-stat-label {
  font-size: 0.63rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.32);
  margin-top: 3px;
  display: block;
}

/* ==========================================
   TESTIMONIALS Ã¢â‚¬â€ "FROM THE CABIN" (Section 11)
   ========================================== */
.testimonials-section {
  background: #080808;
  padding: 70px 5%;
  position: relative;
  overflow: hidden;
}
.testimonials-section::before {
  content: '';
  position: absolute;
  bottom: -180px; right: -180px;
  width: 560px; height: 560px;
  background: radial-gradient(ellipse at center, rgba(0,194,203,0.05) 0%, transparent 65%);
  pointer-events: none;
}
.testimonials-eyebrow {
  font-size: 0.68rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(196,149,106,0.6);
  margin-bottom: 14px;
  display: block;
  text-align: center;
}
.testimonials-section h2 {
  text-align: center;
  font-size: 2.6rem;
  color: #fff;
  margin-bottom: 12px;
}
.testimonials-sub {
  text-align: center;
  color: rgba(255,255,255,0.35);
  font-size: 0.82rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 60px;
  display: block;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(255,255,255,0.04);
  max-width: 1100px;
  margin: 0 auto 48px;
}
.testimonial-card {
  background: #080808;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  transition: background 0.35s;
}
.testimonial-card:hover { background: rgba(196,149,106,0.03); }
.testimonial-stars {
  display: flex;
  gap: 3px;
}
.testimonial-star {
  color: rgba(196,149,106,0.7);
  font-size: 0.9rem;
}
.testimonial-quote {
  font-size: 0.93rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.75;
  flex: 1;
  font-style: italic;
}
.testimonial-quote::before { content: '\201C'; color: rgba(196,149,106,0.4); font-size: 1.2em; }
.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding-top: 16px;
  border-top: 1px solid rgba(196,149,106,0.1);
}
.testimonial-name {
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.5px;
}
.testimonial-type {
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(196,149,106,0.55);
}
/* Google rating bar */
.testimonials-rating-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 12px;
}
.google-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50px;
  padding: 10px 22px;
}
.google-badge-stars {
  display: flex;
  gap: 1px;
  color: #F59E0B;
  font-size: 0.9rem;
}
.google-badge-score {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
.google-badge-divider {
  width: 1px;
  height: 28px;
  background: rgba(255,255,255,0.12);
}
.google-badge-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.google-badge-count {
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.5px;
}
.google-badge-platform {
  font-size: 0.68rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  display: flex;
  align-items: center;
  gap: 5px;
}
@media (max-width: 600px) {
  .google-badge { padding: 9px 16px; gap: 9px; }
  .google-badge-score { font-size: 1.2rem; }
  .testimonials-rating-bar { gap: 14px; }
}
@media (max-width: 900px) {
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .testimonials-section { padding: 70px 5%; }
  .testimonials-section h2 { font-size: 2rem; }
  .testimonials-grid { grid-template-columns: 1fr; }
}

/* ==========================================
   APP DOWNLOAD CTA SECTION
   ========================================== */
.app-cta-section {
  background: #000;
  padding: 70px 5%;
  display: flex;
  align-items: center;
  gap: 60px;
  border-top: 1px solid rgba(196,149,106,0.15);
  border-bottom: 1px solid rgba(196,149,106,0.15);
  position: relative;
  overflow: hidden;
}
.app-cta-section::before {
  content: '';
  position: absolute;
  left: -200px; top: 50%;
  transform: translateY(-50%);
  width: 600px; height: 600px;
  background: radial-gradient(ellipse at center, rgba(0,194,203,0.06) 0%, transparent 65%);
  pointer-events: none;
}
.app-cta-content {
  flex: 1;
  position: relative;
  z-index: 1;
}
.app-cta-eyebrow {
  font-size: 0.68rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(196,149,106,0.6);
  margin-bottom: 16px;
  display: block;
}
.app-cta-content h2 {
  font-size: 2.8rem;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 18px;
}
.app-cta-content p {
  color: rgba(255,255,255,0.5);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 420px;
}
.app-badges {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.app-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 3px;
  color: rgba(255,255,255,0.75);
  font-size: 0.82rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  transition: border-color 0.3s, background 0.3s, color 0.3s, transform 0.3s;
}
.app-badge:hover {
  border-color: rgba(196,149,106,0.45);
  background: rgba(196,149,106,0.06);
  color: rgba(196,149,106,0.9);
  transform: translateY(-3px);
}
.app-badge svg { flex-shrink: 0; opacity: 0.6; transition: opacity 0.3s; }
.app-badge:hover svg { opacity: 1; }
.app-cta-visual {
  flex: 0 0 320px;
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
}
.app-cta-mockup {
  width: 200px;
  height: 380px;
  border: 1px solid rgba(196,149,106,0.25);
  border-radius: 32px;
  background: linear-gradient(160deg, #0a0a0a, #111);
  position: relative;
  box-shadow: 0 0 80px rgba(0,194,203,0.1), inset 0 0 40px rgba(0,194,203,0.03);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 24px;
}
.app-cta-mockup::before {
  content: '';
  position: absolute;
  top: 12px; left: 50%;
  transform: translateX(-50%);
  width: 60px; height: 4px;
  background: rgba(196,149,106,0.2);
  border-radius: 2px;
}
.mockup-logo {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(0,194,203,0.15), rgba(0,194,203,0.05));
  border: 1px solid rgba(196,149,106,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}
.mockup-text {
  text-align: center;
}
.mockup-text h4 {
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(255,255,255,0.8);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 4px;
  text-shadow: none;
}
.mockup-text p {
  font-size: 0.65rem;
  color: rgba(196,149,106,0.55);
  letter-spacing: 1px;
  margin: 0;
  line-height: 1.5;
}
.mockup-btn {
  width: 100%;
  padding: 10px;
  background: rgba(196,149,106,0.12);
  border: 1px solid rgba(196,149,106,0.3);
  border-radius: 8px;
  text-align: center;
  font-size: 0.72rem;
  color: rgba(196,149,106,0.8);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 8px;
}
@media (max-width: 900px) {
  .app-cta-section { flex-direction: column; padding: 70px 5%; gap: 40px; }
  .app-cta-visual { flex: none; }
  .app-cta-content h2 { font-size: 2.2rem; }
}
@media (max-width: 600px) {
  .app-cta-content h2 { font-size: 1.9rem; }
  .app-cta-mockup { display: none; }
}

/* ==========================================
   MEMBERS PAGE
   ========================================== */
.members-hero {
  padding: 160px 5% 80px;
  text-align: center;
  background: linear-gradient(rgba(13,4,8,0.55), rgba(13,4,8,0.93)), url('images/heroes/members_hero.jpg') center/cover;
  position: relative;
  overflow: hidden;
}
.members-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 60%, rgba(196,149,106,0.07), transparent 65%);
}
.tiers-section::before { display: none; }
.members-hero > *:not(canvas) { position: relative; z-index: 1; }
.members-hero > canvas.rose-pt-canvas { position: absolute; z-index: 0; }
.members-eyebrow {
  font-size: 0.68rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: rgba(196,149,106,0.7);
  margin-bottom: 16px;
  display: block;
}
.tiers-section {
  background: #000;
  padding: 90px 5%;
}
.tiers-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2px;
  background: rgba(196,149,106,0.06);
  max-width: 1200px;
  margin: 50px auto 0;
}
.tier-card {
  background: #000;
  padding: 40px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  transition: background 0.35s;
  position: relative;
}
.tier-card:hover { background: rgba(196,149,106,0.03); }
.tier-card.featured { background: rgba(196,149,106,0.04); }
.tier-badge {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 4px;
  border: 1px solid;
}
.tier-name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-shadow: none;
}
.tier-sub {
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}
.tier-benefits {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 12px;
  text-align: left;
  width: 100%;
}
.tier-benefits li {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
  padding-left: 14px;
  position: relative;
}
.tier-benefits li::before {
  content: 'Ã¢â‚¬â€';
  position: absolute;
  left: 0;
  color: rgba(196,149,106,0.35);
}
.tier-divider {
  width: 30px;
  height: 1px;
  background: rgba(196,149,106,0.2);
  margin: 4px auto;
}
@media (max-width: 1000px) {
  .tiers-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 700px) {
  .tiers-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .tiers-grid { grid-template-columns: 1fr; }
}

/* ==========================================
   EVENTS PAGE
   ========================================== */
.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(255,255,255,0.04);
  margin-top: 50px;
}
.event-card {
  background: #050505;
  padding: 50px 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: background 0.35s;
}
.event-card:hover { background: rgba(196,149,106,0.03); }
.event-num {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: rgba(196,149,106,0.4);
}
.event-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: #fff;
  font-family: var(--font-heading);
}
.event-desc {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  flex: 1;
}
.event-tag {
  font-size: 0.68rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(196,149,106,0.55);
}
@media (max-width: 900px) {
  .events-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .events-grid { grid-template-columns: 1fr; }
}

/* Partners grid */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: rgba(196,149,106,0.06);
  margin-top: 50px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.partner-card {
  background: #000;
  padding: 36px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  transition: background 0.35s;
}
.partner-card:hover { background: rgba(196,149,106,0.04); }
.partner-name {
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  letter-spacing: 2px;
  text-transform: uppercase;
}
.partner-type {
  font-size: 0.68rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(196,149,106,0.45);
}
@media (max-width: 700px) {
  .partners-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ==========================================
   MOBILE HERO & HEADER POLISH
   ========================================== */

/* members-hero — reduce heavy padding and reposition background */
@media (max-width: 700px) {
  .members-hero {
    padding: 110px 5% 56px;
    background-position: center 30%;
  }
  .members-hero h1 {
    font-size: 2rem !important;
    line-height: 1.2 !important;
  }
}

/* about-hero — already has background-position: center 20% at 600px via inline CSS */
@media (max-width: 700px) {
  .about-hero {
    padding: 100px 5% 50px !important;
    min-height: 55vh !important;
  }
  .about-hero-inner h1 { font-size: 2rem !important; }
  .about-hero-inner p  { font-size: 0.92rem !important; }
}

/* ==========================================
   MOBILE TYPOGRAPHY & SPACING POLISH
   ========================================== */
@media (max-width: 700px) {
  /* Tighter section headings */
  .section-eyebrow { font-size: 0.6rem !important; letter-spacing: 3px !important; }

  /* Footer — single column on very small phones */
  .footer-grid { gap: 20px !important; }
  footer { padding: 44px 5% 20px !important; }
  .footer-bottom { font-size: 0.72rem !important; padding-top: 18px !important; }

  /* WhatsApp float — smaller + lower so it doesn't block CTA buttons */
  .wa-float { width: 46px !important; height: 46px !important; bottom: 18px !important; right: 16px !important; }
  .wa-float svg { width: 20px !important; height: 20px !important; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr 1fr !important; gap: 18px !important; }
  .footer-grid > div:first-child { grid-column: 1 / -1 !important; }
}

/* ── Mobile performance: strip expensive GPU layers ── */
@media (max-width: 900px) {
  /* backdrop-filter is the #1 cause of scroll jank on mobile — remove everywhere */
  * { backdrop-filter: none !important; -webkit-backdrop-filter: none !important; }
  /* Use solid dark backgrounds where blur was masking transparency */
  .navbar { background: rgba(6,2,4,.98) !important; }
  /* Contain paint to sections so browser skips off-screen repaints */
  section, footer, header, .page-header, .about-hero, .members-hero { contain: paint; }
  /* Smooth momentum scrolling on any overflow container */
  [style*="overflow"] { -webkit-overflow-scrolling: touch; }
  /* Prevent scroll chaining on fixed overlays */
  .vl-sheet-list, .vl-photo-modal-box, .nav-links { overscroll-behavior: contain; }
}

/* ============================================================
   SUBPAGE MOBILE POLISH
   Targets inner pages that load styles.css but not index.html
   ============================================================ */

/* ── Section padding: reduce on tablets ── */
@media (max-width: 900px) {
  .why-choose-us  { padding: 58px 5%; }
  .experience-section,
  .experience-section.reverse { padding: 50px 5% !important; }
  .standard-section { padding: 0; }           /* keeps grid intact */
  .standard-content { padding: 52px 5%; }
  .tiers-section    { padding: 62px 5%; }
  .faq-section      { padding: 60px 5% !important; }
  /* Page-header: less top padding so hero doesn't dominate */
  .page-header      { padding: 120px 5% 64px; }
}

/* ── Section padding: tighter on phones ── */
@media (max-width: 700px) {
  .why-choose-us   { padding: 44px 5%; }
  .experience-section,
  .experience-section.reverse { padding: 38px 5% !important; }
  /* Experience image: already 260px at 700px (handled above), confirm */
  .experience-image { height: 240px !important; min-height: 240px !important; }
  .standard-content { padding: 40px 5%; }
  .standard-content h2 { font-size: 2rem; }
  /* Members tiers: tighter */
  .tiers-section  { padding: 48px 5%; }
  .tier-card      { padding: 28px 16px; }
  /* Events grid: reduce padding */
  .event-card     { padding: 36px 22px; }
  /* Testimonials */
  .testimonials-section { padding: 50px 5%; }
  .testimonials-section h2 { font-size: 1.9rem; }
  .testimonial-card { padding: 28px 20px; }
  /* App CTA section */
  .app-cta-section  { padding: 50px 5%; gap: 30px; }
  .app-cta-content h2 { font-size: 1.8rem; }
  /* Standard stats 2-col stays fine, reduce font */
  .standard-stat-num { font-size: 2rem; }
  /* Coverage section */
  .coverage-section { padding: 38px 5%; }
  /* Members hero */
  .members-hero { padding: 100px 5% 50px; }
  /* About hero */
  .about-hero { padding: 90px 5% 44px !important; min-height: 50vh !important; }
  .about-hero-inner h1 { font-size: 1.85rem !important; }
  /* Page headers on phones */
  .page-header { padding: 100px 5% 44px !important; }
  .page-header h1 { font-size: clamp(1.6rem, 5vw, 2.2rem); }
  /* Button sizing: never too large on phones */
  .btn { padding: 14px 28px !important; font-size: .82rem !important; }
  .btn-primary, .btn-outline { min-height: 44px; }
  /* Hero-buttons: always full-width stacked on phones */
  .hero-buttons { flex-direction: column; gap: 10px; width: 100%; }
  .hero-buttons .btn { width: 100%; max-width: 100%; padding: 14px 20px !important; justify-content: center; }
  /* Why-cards: image height */
  .why-img { height: 165px; }
}

/* ── Very small phones (≤480px) ── */
@media (max-width: 480px) {
  /* Section padding: absolute minimum comfortable spacing */
  .why-choose-us    { padding: 36px 5%; }
  .tiers-section    { padding: 36px 5%; }
  .testimonials-section { padding: 36px 5%; }
  .app-cta-section  { padding: 36px 5%; }
  .coverage-section { padding: 30px 5%; }
  /* Experience image shorter */
  .experience-image { height: 200px !important; min-height: 200px !important; }
  /* Testimonials: reduce card padding */
  .testimonial-card { padding: 22px 16px; gap: 14px; }
  /* Tiers grid on tiny phones: single column already set at 480px */
  .tier-badge { width: 52px; height: 52px; font-size: 1.2rem; }
  /* Page header */
  .page-header { padding: 90px 5% 36px !important; }
  /* Buttons: ensure full-width CTA on very small phones */
  .cta-row .btn, .hero-buttons .btn { width: 100%; text-align: center; justify-content: center; }
}

/* ── Touch active state: visible feedback on tap (no hover on mobile) ── */
@media (hover: none) {
  .btn:active       { opacity: 0.82; transform: scale(0.97); }
  .svc-card:active  { background: rgba(196,149,106,.03); }
  .fleet-card:active { border-color: rgba(196,149,106,.3); }
  .faq-question:active { color: var(--color-accent); }
  .follow-link:active { border-color: rgba(196,149,106,.4); background: rgba(196,149,106,.04); }
  /* Disable hover-based transforms that don't fire on touch */
  .feat-card:hover  { transform: none; }
  .svc-card:hover .svc-img img { transform: none; }
  .std-img:hover img, .senz-img:hover img { transform: none; }
}

/* ── About page: standards grid & cards ── */
@media (max-width: 900px) {
  .standards-grid  { grid-template-columns: 1fr 1fr !important; }
  .standard-card   { min-height: 300px !important; }
  .standards-section { padding: 60px 5% !important; }
  .standards-header  { margin-bottom: 34px !important; }
}
@media (max-width: 600px) {
  .standards-grid  { grid-template-columns: 1fr !important; }
  .standard-card   { min-height: 220px !important; }
  .standards-section { padding: 44px 5% !important; }
  .standards-header  { margin-bottom: 24px !important; }
  /* About page discretion image */
  .discretion-img  { min-height: 240px !important; }
}

/* ── Fleet page decorative overlay: hide on mobile (saves paint) ── */
@media (max-width: 700px) {
  [style*="width:500px"][style*="height:500px"],
  [style*="width:600px"][style*="height:600px"] {
    display: none !important;
  }
}
