/* ==========================================================================
   Parkalot — Design System (Refined / Editorial)
   Smart Airport Parking. Stress-Free Travel.
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root{
  /* Ink-first brand palette — monochrome with two whisper-quiet accents */
  --midnight: #12151B;       /* primary ink */
  --midnight-2: #1B1F26;
  --midnight-3: #23272F;
  --emerald: #3C6E58;        /* muted forest — used only as a tiny accent */
  --emerald-dark: #2E5646;
  --emerald-light: #EEF2EF;
  --gold: #A9812F;           /* muted metal — ratings & rare highlight */
  --gold-light: #F6F0E2;
  --white: #FFFFFF;
  --gray-50:  #F7F7F8;
  --gray-100: #EFEFF1;
  --gray-200: #E2E3E6;
  --gray-300: #CBCDD2;
  --gray-400: #9A9DA6;
  --gray-500: #6B6E76;
  --gray-600: #494C54;
  --gray-700: #2B2D33;
  --success: #2E5646;
  --danger: #B3413B;

  /* Gradients — deliberately restrained, near-solid */
  --grad-hero: linear-gradient(165deg, #12151B 0%, #1C2129 55%, #12151B 100%);
  --grad-emerald: linear-gradient(135deg, #1E222A 0%, #12151B 100%); /* "primary fill" */
  --grad-gold: linear-gradient(135deg, #C2A053 0%, #A9812F 100%);
  --grad-sky: linear-gradient(180deg, rgba(18,21,27,0) 0%, rgba(18,21,27,0.9) 100%);

  /* Typography */
  --font-display: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Radii — slightly tighter, more architectural */
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;
  --r-full: 999px;

  /* Shadows — soft, neutral, never colored */
  --shadow-sm: 0 1px 2px rgba(18,21,27,0.05);
  --shadow-md: 0 14px 32px rgba(18,21,27,0.07);
  --shadow-lg: 0 32px 64px -20px rgba(18,21,27,0.20);
  --shadow-glow: 0 0 0 1px rgba(18,21,27,0.04);

  --container: 1240px;
  --transition: all .25s cubic-bezier(.4,0,.2,1);
}

*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family:var(--font-body);
  color:var(--midnight);
  background:var(--white);
  -webkit-font-smoothing:antialiased;
  line-height:1.6;
}
h1,h2,h3,h4{ font-family:var(--font-display); margin:0; color:var(--midnight); letter-spacing:-0.025em; font-weight:700; }
p{ margin:0; }
a{ color:inherit; text-decoration:none; }
ul{ margin:0; padding:0; list-style:none; }
img{ max-width:100%; display:block; }
button{ font-family:inherit; cursor:pointer; }
input,select,textarea{ font-family:inherit; }

.container{ max-width:var(--container); margin:0 auto; padding:0 24px; }
.section{ padding:104px 0; }
.section-tight{ padding:64px 0; }

@media (max-width:900px){
  .section{ padding:64px 0; }
  .section-tight{ padding:44px 0; }
}

/* ---------- Utility ---------- */
.eyebrow{
  display:inline-flex; align-items:center; gap:10px;
  font-size:12px; font-weight:600; letter-spacing:.14em; text-transform:uppercase;
  color:var(--gray-600);
}
.eyebrow::before{ content:''; width:22px; height:1px; background:currentColor; opacity:.55; }
.eyebrow.gold{ color:#8B6B22; }
.eyebrow.light{ color:rgba(255,255,255,.72); }
.eyebrow.light::before{ background:rgba(255,255,255,.5); }

.section-head{ max-width:640px; margin-bottom:52px; }
.section-head h2{ font-size:40px; font-weight:700; margin-top:16px; letter-spacing:-.03em; }
.section-head p{ font-size:16.5px; color:var(--gray-500); margin-top:14px; line-height:1.7; }
.section-head.center{ margin-left:auto; margin-right:auto; text-align:center; }

.text-muted{ color:var(--gray-500); }
.grad-text{
  background:var(--grad-emerald);
  -webkit-background-clip:text; background-clip:text; color:transparent;
}

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  font-weight:600; font-size:14.5px; font-family:var(--font-display);
  padding:15px 28px; border-radius:var(--r-full); border:none;
  transition:var(--transition); white-space:nowrap; letter-spacing:-.01em;
}
.btn-primary{ background:var(--midnight); color:var(--white); }
.btn-primary:hover{ background:var(--midnight-2); transform:translateY(-1px); }
.btn-secondary{ background:transparent; color:var(--midnight); border:1px solid var(--gray-300); }
.btn-secondary:hover{ border-color:var(--midnight); }
.btn-ghost-light{ background:transparent; color:var(--white); border:1px solid rgba(255,255,255,.4); }
.btn-ghost-light:hover{ background:rgba(255,255,255,.08); border-color:rgba(255,255,255,.7); }
.btn-dark{ background:var(--midnight); color:var(--white); }
.btn-dark:hover{ background:var(--midnight-2); transform:translateY(-1px); }
.btn-block{ width:100%; }
.btn-sm{ padding:10px 18px; font-size:13px; }
.btn[disabled]{ opacity:.5; cursor:not-allowed; transform:none !important; }

/* ---------- Nav ---------- */
.nav{
  position:sticky; top:0; z-index:100;
  background:rgba(255,255,255,.85);
  backdrop-filter:blur(18px); -webkit-backdrop-filter:blur(18px);
  border-bottom:1px solid var(--gray-200);
}
.nav .container{ display:flex; align-items:center; justify-content:space-between; height:80px; }
.logo{ display:flex; align-items:center; gap:10px; font-family:var(--font-display); font-weight:700; font-size:19px; color:var(--midnight); letter-spacing:-.02em; }
.logo svg{ width:32px; height:32px; }
.nav-links{ display:flex; align-items:center; gap:36px; }
.nav-links a{ font-size:14px; font-weight:500; color:var(--gray-600); transition:var(--transition); }
.nav-links a:hover{ color:var(--midnight); }
.nav-actions{ display:flex; align-items:center; gap:16px; }
.lang-toggle{ font-size:13px; font-weight:500; color:var(--gray-600); display:flex; align-items:center; gap:6px; padding:8px 14px; border-radius:var(--r-full); border:1px solid var(--gray-200); }
.nav-burger{ display:none; }

@media (max-width:920px){
  .nav-links{ display:none; }
  .nav-burger{ display:flex; }
}

/* ---------- Hero ---------- */
.hero{
  position:relative; background:var(--grad-hero); color:var(--white); overflow:hidden;
  padding:96px 0 0;
}
.hero::before{
  content:''; position:absolute; inset:0;
  background: radial-gradient(900px 500px at 50% -10%, rgba(255,255,255,.06), transparent 60%);
  pointer-events:none;
}
.hero-video-frame{
  position:absolute; inset:0; z-index:0; overflow:hidden;
}
.hero-video-frame img{
  position:absolute; inset:0; width:100%; height:100%; object-fit:cover;
  filter:grayscale(55%) contrast(1.08) brightness(.8);
}
.hero-video-frame::after{
  content:''; position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(18,21,27,.45) 0%, rgba(18,21,27,.68) 55%, rgba(18,21,27,.97) 100%);
}
.hero-inner{ position:relative; z-index:1; text-align:center; padding-bottom:72px; }
.hero h1{
  font-size:clamp(38px,6vw,64px); font-weight:700; line-height:1.08; letter-spacing:-.035em;
  max-width:900px; margin:24px auto 0;
}
.hero p.sub{ max-width:560px; margin:22px auto 0; font-size:17px; color:rgba(255,255,255,.68); line-height:1.7; }
.hero-ctas{ display:flex; gap:14px; justify-content:center; margin-top:38px; flex-wrap:wrap; }
.hero-stats{ display:flex; gap:56px; justify-content:center; margin-top:68px; flex-wrap:wrap; }
.hero-stats .stat{ text-align:center; }
.hero-stats .stat b{ display:block; font-family:var(--font-display); font-size:26px; font-weight:700; }
.hero-stats .stat span{ font-size:12.5px; color:rgba(255,255,255,.55); letter-spacing:.03em; }

/* ---------- Booking widget ---------- */
.booking-widget{
  position:relative; z-index:2; background:var(--white); border-radius:var(--r-xl);
  box-shadow:var(--shadow-lg); border:1px solid var(--gray-200);
  padding:28px; margin:0 auto; max-width:1080px;
  transform:translateY(48px);
}
.bw-tabs{ display:flex; gap:4px; margin-bottom:22px; border-bottom:1px solid var(--gray-100); padding-bottom:0; }
.bw-tab{ padding:10px 4px; margin-right:22px; border-radius:0; font-weight:600; font-size:13.5px; background:transparent; color:var(--gray-400); border-bottom:2px solid transparent; transition:var(--transition); }
.bw-tab.active{ background:transparent; color:var(--midnight); border-bottom-color:var(--midnight); }
.bw-grid{ display:grid; grid-template-columns:1.3fr 1fr 1fr 1fr 1fr; gap:14px; }
.bw-field{ display:flex; flex-direction:column; gap:6px; text-align:left; }
.bw-field label{ font-size:11px; font-weight:600; text-transform:uppercase; letter-spacing:.08em; color:var(--gray-500); }
.bw-field .input-wrap{ display:flex; align-items:center; gap:8px; border:1px solid var(--gray-200); border-radius:var(--r-md); padding:11px 13px; transition:var(--transition); }
.bw-field .input-wrap:focus-within{ border-color:var(--midnight); box-shadow:0 0 0 3px rgba(18,21,27,.06); }
.bw-field input, .bw-field select{ border:none; outline:none; font-size:14px; font-weight:500; color:var(--midnight); width:100%; background:transparent; }
.bw-field svg{ flex-shrink:0; color:var(--gray-400); width:17px; height:17px; }
.bw-extras{ display:flex; flex-wrap:wrap; gap:10px; margin-top:18px; }
.toggle-chip{ display:flex; align-items:center; gap:8px; padding:10px 16px; border-radius:var(--r-full); border:1px solid var(--gray-200); font-size:13px; font-weight:500; color:var(--gray-600); transition:var(--transition); user-select:none; }
.toggle-chip input{ display:none; }
.toggle-chip svg{ width:15px; height:15px; }
.toggle-chip.on{ background:var(--midnight); border-color:var(--midnight); color:var(--white); }
.bw-submit-row{ display:flex; justify-content:space-between; align-items:center; margin-top:22px; gap:16px; flex-wrap:wrap; }
.bw-price-hint{ font-size:13px; color:var(--gray-500); }
.bw-price-hint b{ color:var(--midnight); font-size:15px; }

@media (max-width:920px){
  .bw-grid{ grid-template-columns:1fr 1fr; }
  .booking-widget{ transform:translateY(28px); padding:20px; }
}
@media (max-width:600px){ .bw-grid{ grid-template-columns:1fr; } }

/* ---------- Trust bar ---------- */
.trust-bar{ background:var(--gray-50); padding:26px 0; border-bottom:1px solid var(--gray-200); }
.trust-bar .container{ display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:24px; }
.trust-items{ display:flex; gap:40px; flex-wrap:wrap; }
.trust-item{ display:flex; align-items:center; gap:10px; font-size:13px; font-weight:500; color:var(--gray-600); }
.trust-item svg{ width:18px; height:18px; color:var(--gray-500); }

/* ---------- Feature cards ---------- */
.feature-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:1px; background:var(--gray-200); border:1px solid var(--gray-200); border-radius:var(--r-lg); overflow:hidden; }
.feature-card{ background:var(--white); padding:36px 32px; transition:var(--transition); }
.feature-card:hover{ background:var(--gray-50); }
.feature-icon{ width:40px; height:40px; display:flex; align-items:center; justify-content:center; margin-bottom:22px; }
.feature-icon svg{ width:24px; height:24px; color:var(--midnight); stroke-width:1.5; }
.feature-card h3{ font-size:18px; font-weight:600; margin-bottom:10px; letter-spacing:-.01em; }
.feature-card p{ font-size:14px; color:var(--gray-500); line-height:1.7; }

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

/* ---------- Operator / comparison cards ---------- */
.operator-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:1px; background:var(--gray-200); border:1px solid var(--gray-200); }
.op-card{ background:var(--white); overflow:hidden; transition:var(--transition); display:flex; flex-direction:column; }
.op-card:hover{ background:var(--gray-50); }
.op-media{ position:relative; height:170px; background:var(--grad-hero); overflow:hidden; }
.op-media img{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; filter:grayscale(40%) contrast(1.05) brightness(.92); transition:transform .5s ease; }
.op-card:hover .op-media img{ transform:scale(1.04); }
.op-media::after{ content:''; position:absolute; inset:0; background:linear-gradient(180deg, rgba(18,21,27,.05) 0%, rgba(18,21,27,.4) 100%); }
.op-media svg{ position:relative; z-index:1; width:36px; height:36px; color:rgba(255,255,255,.4); stroke-width:1; }
.op-badge, .op-badge.best-value, .op-badge.cheapest, .op-badge.closest, .op-badge.popular{
  position:absolute; top:16px; left:16px; z-index:2; padding:6px 12px; border-radius:var(--r-full);
  font-size:10.5px; font-weight:600; letter-spacing:.08em; text-transform:uppercase;
  background:rgba(255,255,255,.95); color:var(--midnight);
}
.op-body{ padding:24px; flex:1; display:flex; flex-direction:column; gap:14px; }
.op-top{ display:flex; justify-content:space-between; align-items:flex-start; gap:12px; }
.op-name{ font-size:16.5px; font-weight:600; letter-spacing:-.01em; }
.op-rating{ display:flex; align-items:center; gap:5px; font-size:13px; font-weight:600; color:var(--midnight); }
.op-rating svg{ width:14px; height:14px; color:var(--gold); }
.op-meta{ display:flex; flex-wrap:wrap; gap:6px 14px; font-size:12.5px; color:var(--gray-500); }
.op-meta span{ display:flex; align-items:center; gap:5px; }
.op-meta svg{ width:13px; height:13px; }
.op-tags{ display:flex; flex-wrap:wrap; gap:6px; }
.tag{ font-size:11px; font-weight:500; padding:5px 10px; border-radius:var(--r-full); background:var(--gray-100); color:var(--gray-600); }
.op-foot{ display:flex; align-items:center; justify-content:space-between; padding-top:16px; border-top:1px solid var(--gray-100); }
.op-price b{ font-size:20px; font-family:var(--font-display); font-weight:700; }
.op-price span{ font-size:11.5px; color:var(--gray-500); display:block; }

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

/* ---------- Steps ---------- */
.steps-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:1px; background:var(--gray-200); border:1px solid var(--gray-200); }
.step-card{ position:relative; padding:30px 26px 26px; background:var(--white); }
.step-num{ width:32px; height:32px; border-radius:50%; border:1px solid var(--gray-300); color:var(--midnight); font-weight:600; font-family:var(--font-display); display:flex; align-items:center; justify-content:center; margin-bottom:18px; font-size:13px; }
.step-card h3{ font-size:16px; font-weight:600; margin-bottom:8px; letter-spacing:-.01em; }
.step-card p{ font-size:13.5px; color:var(--gray-500); line-height:1.7; }
@media (max-width:900px){ .steps-grid{ grid-template-columns:1fr 1fr; } }
@media (max-width:560px){ .steps-grid{ grid-template-columns:1fr; } }

/* ---------- Testimonials ---------- */
.test-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:1px; background:var(--gray-200); border:1px solid var(--gray-200); }
.test-card{ background:var(--white); padding:30px; }
.test-stars{ display:flex; gap:3px; margin-bottom:16px; color:var(--gold); letter-spacing:2px; }
.test-card p.quote{ font-size:14.5px; color:var(--gray-600); margin-bottom:22px; line-height:1.75; }
.test-person{ display:flex; align-items:center; gap:12px; }
.test-avatar{ width:38px; height:38px; border-radius:50%; background:var(--midnight); display:flex; align-items:center; justify-content:center; color:#fff; font-weight:600; font-size:13px; }
.test-person b{ display:block; font-size:13.5px; font-weight:600; }
.test-person span{ font-size:12px; color:var(--gray-500); }
@media (max-width:900px){ .test-grid{ grid-template-columns:1fr; } }

/* ---------- FAQ ---------- */
.faq-list{ max-width:820px; margin:0 auto; }
.faq-item{ border-bottom:1px solid var(--gray-200); }
.faq-q{ display:flex; align-items:center; justify-content:space-between; padding:24px 4px; font-weight:600; font-size:15px; cursor:pointer; letter-spacing:-.01em; }
.faq-q svg{ width:18px; height:18px; color:var(--gray-400); transition:var(--transition); flex-shrink:0; }
.faq-item.open .faq-q svg{ transform:rotate(45deg); color:var(--midnight); }
.faq-a{ max-height:0; overflow:hidden; transition:max-height .3s ease; }
.faq-a-inner{ padding:0 4px 24px; font-size:14px; color:var(--gray-500); max-width:680px; line-height:1.75; }
.faq-item.open .faq-a{ max-height:400px; }

/* ---------- CTA banner ---------- */
.cta-banner{ background:var(--grad-hero); border-radius:var(--r-xl); padding:72px; text-align:center; color:var(--white); position:relative; overflow:hidden; }
.cta-banner::before{ content:''; position:absolute; inset:0; background:radial-gradient(700px 400px at 50% 0%, rgba(255,255,255,.05), transparent 70%); }
.cta-banner h2{ font-size:34px; font-weight:700; position:relative; letter-spacing:-.03em; }
.cta-banner p{ position:relative; margin-top:12px; color:rgba(255,255,255,.65); font-size:15.5px; }
.cta-banner .hero-ctas{ position:relative; margin-top:30px; }
.cta-banner .btn-primary{ background:var(--white); color:var(--midnight); }
.cta-banner .btn-primary:hover{ background:var(--gray-100); }

/* ---------- Footer ---------- */
.footer{ background:var(--midnight); color:rgba(255,255,255,.62); padding:80px 0 32px; }
.footer-grid{ display:grid; grid-template-columns:1.4fr repeat(4,1fr); gap:32px; padding-bottom:52px; border-bottom:1px solid rgba(255,255,255,.1); }
.footer-col h4{ color:var(--white); font-size:12px; font-weight:600; text-transform:uppercase; letter-spacing:.08em; margin-bottom:20px; }
.footer-col ul li{ margin-bottom:13px; font-size:13.5px; }
.footer-col ul a:hover{ color:var(--white); }
.footer-bottom{ display:flex; justify-content:space-between; align-items:center; padding-top:28px; flex-wrap:wrap; gap:16px; font-size:12.5px; }
.footer-logo{ display:flex; align-items:center; gap:10px; font-family:var(--font-display); font-weight:700; font-size:18px; color:var(--white); margin-bottom:16px; letter-spacing:-.02em; }
.social-row{ display:flex; gap:10px; }
.social-row a{ width:34px; height:34px; border-radius:50%; border:1px solid rgba(255,255,255,.14); display:flex; align-items:center; justify-content:center; }
.social-row svg{ width:14px; height:14px; }
.newsletter-row{ display:flex; gap:8px; margin-top:16px; max-width:320px; }
.newsletter-row input{ flex:1; padding:11px 14px; border-radius:var(--r-full); border:1px solid rgba(255,255,255,.16); background:transparent; color:var(--white); font-size:13px; }
.newsletter-row input::placeholder{ color:rgba(255,255,255,.35); }

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

/* ---------- Reveal animation ---------- */
[data-reveal]{ opacity:0; transform:translateY(20px); transition:opacity .7s ease, transform .7s ease; }
[data-reveal].in{ opacity:1; transform:none; }

/* ---------- Page header (interior pages) ---------- */
.page-header{ background:var(--gray-50); border-bottom:1px solid var(--gray-200); padding:38px 0; }
.breadcrumb{ display:flex; align-items:center; gap:8px; font-size:12.5px; color:var(--gray-500); margin-bottom:16px; }
.breadcrumb a:hover{ color:var(--midnight); }

/* ---------- Badges / pills generic ---------- */
.pill{ display:inline-flex; align-items:center; gap:6px; padding:5px 12px; border-radius:var(--r-full); font-size:11.5px; font-weight:600; }
.pill.green{ background:var(--emerald-light); color:var(--emerald-dark); }
.pill.gold{ background:var(--gold-light); color:#7A5D22; }
.pill.gray{ background:var(--gray-100); color:var(--gray-600); }

/* ---------- Layout helpers ---------- */
.grid-2{ display:grid; grid-template-columns:1fr 380px; gap:40px; align-items:start; }
@media (max-width:980px){ .grid-2{ grid-template-columns:1fr; } }

.card{ background:var(--white); border:1px solid var(--gray-200); border-radius:var(--r-lg); padding:26px; }
.sticky{ position:sticky; top:104px; }

/* ---------- Filters (search results) ---------- */
.filter-group{ padding-bottom:20px; margin-bottom:20px; border-bottom:1px solid var(--gray-200); }
.filter-group:last-child{ border-bottom:none; }
.filter-group h5{ font-size:11.5px; font-weight:600; text-transform:uppercase; letter-spacing:.07em; color:var(--gray-500); margin-bottom:14px; }
.check-row{ display:flex; align-items:center; justify-content:space-between; padding:8px 0; font-size:13.5px; color:var(--gray-600); cursor:pointer; }
.check-row input{ accent-color:var(--midnight); width:15px; height:15px; }
.range-row{ display:flex; align-items:center; gap:10px; }
.range-row input[type=range]{ flex:1; accent-color:var(--midnight); }

/* ---------- Result list card (list style) ---------- */
.result-card{ display:grid; grid-template-columns:220px 1fr 200px; gap:24px; background:var(--white); border:1px solid var(--gray-200); border-radius:var(--r-lg); padding:22px; margin-bottom:16px; transition:var(--transition); }
.result-card:hover{ box-shadow:var(--shadow-md); border-color:var(--gray-300); }
.result-media{ border-radius:var(--r-md); background:var(--grad-hero); position:relative; overflow:hidden; min-height:150px; }
.result-media img{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; filter:grayscale(40%) contrast(1.05) brightness(.92); }
.result-media::after{ content:''; position:absolute; inset:0; background:linear-gradient(180deg, rgba(18,21,27,.05) 0%, rgba(18,21,27,.35) 100%); }
.result-media svg{ position:relative; z-index:1; width:34px; height:34px; color:rgba(255,255,255,.4); stroke-width:1; }
.result-media .op-badge{ top:12px; left:12px; }
.result-info h3{ font-size:17px; font-weight:600; margin-bottom:8px; letter-spacing:-.01em; }
.result-actions{ display:flex; flex-direction:column; justify-content:space-between; align-items:flex-end; text-align:right; }
.result-actions .price b{ font-size:24px; font-family:var(--font-display); font-weight:700; display:block; }
.result-actions .price span{ font-size:11.5px; color:var(--gray-500); }

@media (max-width:860px){
  .result-card{ grid-template-columns:1fr; }
  .result-actions{ align-items:flex-start; text-align:left; flex-direction:row; justify-content:space-between; width:100%; }
}

/* ---------- Gallery ---------- */
.gallery-grid{ display:grid; grid-template-columns:2fr 1fr 1fr; grid-template-rows:1fr 1fr; gap:2px; border-radius:var(--r-lg); overflow:hidden; height:420px; }
.gallery-grid > div{ background:var(--grad-hero); position:relative; overflow:hidden; }
.gallery-grid > div:first-child{ grid-row:1 / span 2; }
.gallery-grid img{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; filter:grayscale(40%) contrast(1.05) brightness(.92); }
.gallery-grid > div::after{ content:''; position:absolute; inset:0; background:linear-gradient(180deg, rgba(18,21,27,.02) 0%, rgba(18,21,27,.4) 100%); }
.gallery-grid svg{ position:relative; z-index:1; width:26px; height:26px; stroke-width:1; }
.gallery-tag{ position:absolute; z-index:2; bottom:14px; left:14px; background:rgba(255,255,255,.95); color:var(--midnight); font-size:11px; font-weight:600; padding:6px 12px; border-radius:var(--r-full); letter-spacing:.02em; }
@media (max-width:760px){ .gallery-grid{ grid-template-columns:1fr 1fr; height:auto; } .gallery-grid > div{ height:160px; } .gallery-grid > div:first-child{ grid-row:auto; grid-column:1 / span 2; height:220px; } }

/* ---------- Amenities ---------- */
.amenity-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:1px; background:var(--gray-200); border:1px solid var(--gray-200); }
.amenity{ display:flex; align-items:center; gap:12px; padding:16px; background:var(--white); }
.amenity svg{ width:19px; height:19px; color:var(--midnight); flex-shrink:0; stroke-width:1.5; }
.amenity span{ font-size:13.5px; font-weight:500; }
@media (max-width:700px){ .amenity-grid{ grid-template-columns:1fr 1fr; } }

/* ---------- Ratings breakdown ---------- */
.rating-breakdown{ display:grid; grid-template-columns:1fr 1fr; gap:12px 32px; }
.rating-row{ display:flex; align-items:center; justify-content:space-between; gap:12px; font-size:13px; }
.rating-bar{ flex:1; height:3px; background:var(--gray-200); border-radius:var(--r-full); overflow:hidden; margin:0 12px; }
.rating-bar > div{ height:100%; background:var(--midnight); }

/* ---------- Reviews ---------- */
.review-card{ padding:24px 0; border-bottom:1px solid var(--gray-200); }
.review-head{ display:flex; justify-content:space-between; align-items:flex-start; margin-bottom:10px; }
.review-stars{ display:flex; gap:2px; color:var(--gold); }
.review-stars svg{ width:13px; height:13px; }

/* ---------- Map placeholder ---------- */
.map-placeholder{ height:280px; border-radius:var(--r-lg); background:
  linear-gradient(var(--gray-50), var(--gray-50)),
  repeating-linear-gradient(0deg, rgba(18,21,27,.04) 0 1px, transparent 1px 32px),
  repeating-linear-gradient(90deg, rgba(18,21,27,.04) 0 1px, transparent 1px 32px);
  position:relative; display:flex; align-items:center; justify-content:center; border:1px solid var(--gray-200);
}
.map-pin{ width:40px; height:40px; border-radius:50% 50% 50% 0; background:var(--midnight); transform:rotate(-45deg); display:flex; align-items:center; justify-content:center; box-shadow:var(--shadow-md); }
.map-pin svg{ transform:rotate(45deg); width:18px; height:18px; color:#fff; }

/* ---------- Booking wizard ---------- */
.wizard-steps{ display:flex; align-items:center; gap:0; margin-bottom:44px; overflow-x:auto; }
.wizard-step{ display:flex; align-items:center; gap:10px; flex-shrink:0; }
.wizard-step .dot{ width:30px; height:30px; border-radius:50%; background:transparent; color:var(--gray-400); display:flex; align-items:center; justify-content:center; font-weight:600; font-size:12.5px; border:1px solid var(--gray-300); transition:var(--transition); }
.wizard-step.active .dot{ background:var(--midnight); color:#fff; border-color:var(--midnight); }
.wizard-step.done .dot{ background:var(--midnight); color:#fff; border-color:var(--midnight); }
.wizard-step span.label{ font-size:12.5px; font-weight:600; color:var(--gray-400); white-space:nowrap; }
.wizard-step.active span.label{ color:var(--midnight); }
.wizard-step.done span.label{ color:var(--midnight); }
.wizard-line{ width:32px; height:1px; background:var(--gray-300); margin:0 6px; flex-shrink:0; }

.form-row{ display:grid; grid-template-columns:1fr 1fr; gap:16px; margin-bottom:16px; }
.form-field{ display:flex; flex-direction:column; gap:6px; }
.form-field.full{ grid-column:1/-1; }
.form-field label{ font-size:12.5px; font-weight:600; color:var(--gray-600); }
.form-field input, .form-field select, .form-field textarea{ padding:13px 14px; border-radius:var(--r-md); border:1px solid var(--gray-200); font-size:14px; outline:none; transition:var(--transition); }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus{ border-color:var(--midnight); box-shadow:0 0 0 3px rgba(18,21,27,.06); }
@media (max-width:640px){ .form-row{ grid-template-columns:1fr; } }

.summary-card{ position:sticky; top:104px; }
.summary-line{ display:flex; justify-content:space-between; font-size:13.5px; padding:10px 0; color:var(--gray-600); }
.summary-line.total{ border-top:1px solid var(--gray-200); margin-top:6px; padding-top:16px; font-weight:700; color:var(--midnight); font-size:16px; }

.pay-methods{ display:flex; gap:10px; flex-wrap:wrap; margin-bottom:18px; }
.pay-method{ flex:1; min-width:100px; padding:14px; border:1px solid var(--gray-200); border-radius:var(--r-md); text-align:center; font-size:12.5px; font-weight:600; color:var(--gray-500); transition:var(--transition); }
.pay-method.active{ border-color:var(--midnight); background:var(--midnight); color:var(--white); }

.confirm-hero{ text-align:center; padding:56px 0; }
.confirm-icon{ width:80px; height:80px; border-radius:50%; background:var(--midnight); display:flex; align-items:center; justify-content:center; margin:0 auto 26px; }
.confirm-icon svg{ width:38px; height:38px; color:#fff; stroke-width:2; }

/* ---------- Dashboard ---------- */
.dash-shell{ display:grid; grid-template-columns:260px 1fr; min-height:70vh; }
.dash-sidebar{ background:var(--gray-50); border-right:1px solid var(--gray-200); padding:32px 20px; }
.dash-nav a{ display:flex; align-items:center; gap:12px; padding:12px 14px; border-radius:var(--r-md); font-size:14px; font-weight:500; color:var(--gray-600); margin-bottom:4px; }
.dash-nav a.active{ background:var(--midnight); color:#fff; }
.dash-nav a:hover:not(.active){ background:var(--gray-200); }
.dash-nav svg{ width:17px; height:17px; stroke-width:1.5; }
.dash-main{ padding:36px; }
.dash-stats{ display:grid; grid-template-columns:repeat(4,1fr); gap:1px; margin-bottom:32px; background:var(--gray-200); border:1px solid var(--gray-200); }
.dash-stat{ padding:22px 20px; background:var(--white); }
.dash-stat b{ display:block; font-size:24px; font-family:var(--font-display); font-weight:700; margin-top:8px; }
.dash-stat span{ font-size:12px; color:var(--gray-500); font-weight:500; }
.table{ width:100%; border-collapse:collapse; }
.table th{ text-align:left; font-size:11.5px; text-transform:uppercase; letter-spacing:.05em; color:var(--gray-500); font-weight:600; padding:12px 16px; border-bottom:1px solid var(--gray-200); }
.table td{ padding:16px; border-bottom:1px solid var(--gray-100); font-size:13.5px; }
.status-pill{ padding:4px 10px; border-radius:var(--r-full); font-size:11px; font-weight:600; }
.status-pill.confirmed{ background:var(--emerald-light); color:var(--emerald-dark); }
.status-pill.upcoming{ background:var(--gold-light); color:#7A5D22; }
.status-pill.completed{ background:var(--gray-100); color:var(--gray-600); }
@media (max-width:900px){ .dash-shell{ grid-template-columns:1fr; } .dash-sidebar{ display:none; } .dash-stats{ grid-template-columns:1fr 1fr; } }

/* ---------- Dashboard panels ---------- */
.dash-panel{ display:none; }
.dash-panel.active{ display:block; }
.dash-panel-head{ display:flex; justify-content:space-between; align-items:center; margin-bottom:24px; flex-wrap:wrap; gap:12px; }
.dash-panel-head h2{ font-size:20px; font-weight:700; letter-spacing:-.02em; }
.dash-panel-head p{ font-size:13.5px; color:var(--gray-500); margin-top:4px; }

/* ---------- Vehicles ---------- */
.vehicle-row{ display:flex; align-items:center; justify-content:space-between; padding:18px 20px; border:1px solid var(--gray-200); border-radius:var(--r-md); margin-bottom:12px; }
.vehicle-left{ display:flex; align-items:center; gap:16px; }
.vehicle-icon{ width:44px; height:44px; border-radius:var(--r-md); background:var(--gray-50); border:1px solid var(--gray-200); display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.vehicle-icon svg{ width:22px; height:22px; color:var(--midnight); stroke-width:1.5; }
.vehicle-actions{ display:flex; align-items:center; gap:10px; }
.icon-btn{ width:34px; height:34px; border-radius:50%; border:1px solid var(--gray-200); display:flex; align-items:center; justify-content:center; color:var(--gray-500); transition:var(--transition); }
.icon-btn:hover{ border-color:var(--midnight); color:var(--midnight); }
.icon-btn svg{ width:15px; height:15px; }

/* ---------- Payment methods ---------- */
.paycard{ display:flex; align-items:center; justify-content:space-between; padding:18px 20px; border:1px solid var(--gray-200); border-radius:var(--r-md); margin-bottom:12px; }
.paycard-left{ display:flex; align-items:center; gap:16px; }
.paycard-brand{ width:46px; height:32px; border-radius:6px; background:var(--midnight); color:#fff; font-size:10px; font-weight:700; display:flex; align-items:center; justify-content:center; letter-spacing:.02em; flex-shrink:0; }
.paycard-num{ font-size:14px; font-weight:600; letter-spacing:.02em; }
.paycard-meta{ font-size:12px; color:var(--gray-500); margin-top:2px; }
.add-method{ display:flex; align-items:center; justify-content:center; gap:8px; padding:18px; border:1px dashed var(--gray-300); border-radius:var(--r-md); color:var(--gray-500); font-size:13.5px; font-weight:600; cursor:pointer; transition:var(--transition); }
.add-method:hover{ border-color:var(--midnight); color:var(--midnight); }

/* ---------- Travel history timeline ---------- */
.timeline{ position:relative; padding-left:32px; }
.timeline::before{ content:''; position:absolute; left:5px; top:6px; bottom:6px; width:1px; background:var(--gray-200); }
.timeline-item{ position:relative; padding-bottom:32px; }
.timeline-item:last-child{ padding-bottom:0; }
.timeline-item::before{ content:''; position:absolute; left:-32px; top:3px; width:11px; height:11px; border-radius:50%; background:var(--white); border:2px solid var(--midnight); }
.timeline-item.past::before{ background:var(--midnight); }
.timeline-date{ font-size:11.5px; font-weight:600; text-transform:uppercase; letter-spacing:.06em; color:var(--gray-500); margin-bottom:6px; }
.timeline-body{ display:flex; justify-content:space-between; align-items:flex-start; gap:16px; padding:16px 18px; border:1px solid var(--gray-200); border-radius:var(--r-md); flex-wrap:wrap; }
.timeline-body h4{ font-size:15px; font-weight:600; letter-spacing:-.01em; }
.timeline-body p{ font-size:12.5px; color:var(--gray-500); margin-top:4px; }

/* ---------- Invoices ---------- */
.invoice-download{ display:inline-flex; align-items:center; gap:6px; font-size:12.5px; font-weight:600; color:var(--midnight); border:1px solid var(--gray-200); padding:7px 13px; border-radius:var(--r-full); transition:var(--transition); }
.invoice-download:hover{ border-color:var(--midnight); }
.invoice-download svg{ width:13px; height:13px; }

/* ---------- Support / chat ---------- */
.support-grid{ display:grid; grid-template-columns:1fr 300px; gap:24px; align-items:start; }
@media (max-width:900px){ .support-grid{ grid-template-columns:1fr; } }

.chat-shell{ display:flex; flex-direction:column; height:540px; border:1px solid var(--gray-200); border-radius:var(--r-lg); overflow:hidden; background:var(--white); }
.chat-header{ padding:16px 20px; border-bottom:1px solid var(--gray-200); display:flex; justify-content:space-between; align-items:center; }
.chat-header-left{ display:flex; align-items:center; gap:12px; }
.chat-avatar{ width:34px; height:34px; border-radius:50%; background:var(--midnight); color:#fff; display:flex; align-items:center; justify-content:center; font-size:12px; font-weight:700; }
.chat-header h4{ font-size:14px; font-weight:600; }
.chat-header span{ font-size:11.5px; color:var(--gray-500); display:flex; align-items:center; gap:5px; }
.chat-status-dot{ width:6px; height:6px; border-radius:50%; background:var(--emerald-dark); display:inline-block; }
.chat-messages{ flex:1; overflow-y:auto; padding:20px; display:flex; flex-direction:column; gap:12px; background:var(--gray-50); }
.msg{ max-width:78%; padding:11px 15px; border-radius:16px; font-size:13.5px; line-height:1.6; }
.msg.bot{ background:var(--white); border:1px solid var(--gray-200); align-self:flex-start; border-bottom-left-radius:4px; }
.msg.user{ background:var(--midnight); color:#fff; align-self:flex-end; border-bottom-right-radius:4px; }
.msg.system{ align-self:center; background:var(--gray-100); color:var(--gray-600); font-size:11.5px; padding:7px 14px; border-radius:var(--r-full); max-width:none; }
.chat-typing{ display:flex; gap:4px; padding:12px 16px; background:var(--white); border:1px solid var(--gray-200); border-radius:16px; border-bottom-left-radius:4px; align-self:flex-start; width:fit-content; }
.chat-typing span{ width:5px; height:5px; border-radius:50%; background:var(--gray-400); animation:chatBlink 1.2s infinite; }
.chat-typing span:nth-child(2){ animation-delay:.2s; }
.chat-typing span:nth-child(3){ animation-delay:.4s; }
@keyframes chatBlink{ 0%,80%,100%{ opacity:.25; } 40%{ opacity:1; } }
.chat-suggestions{ display:flex; flex-wrap:wrap; gap:8px; padding:0 16px 14px; background:var(--gray-50); }
.chat-suggestion{ font-size:11.5px; padding:7px 13px; border:1px solid var(--gray-200); border-radius:var(--r-full); color:var(--gray-600); background:var(--white); transition:var(--transition); }
.chat-suggestion:hover{ border-color:var(--midnight); color:var(--midnight); }
.chat-input-row{ display:flex; gap:10px; padding:14px; border-top:1px solid var(--gray-200); background:var(--white); }
.chat-input-row input{ flex:1; border:1px solid var(--gray-200); border-radius:var(--r-full); padding:11px 16px; font-size:13.5px; outline:none; transition:var(--transition); }
.chat-input-row input:focus{ border-color:var(--midnight); box-shadow:0 0 0 3px rgba(18,21,27,.06); }
.chat-send{ width:42px; height:42px; border-radius:50%; background:var(--midnight); color:#fff; display:flex; align-items:center; justify-content:center; flex-shrink:0; border:none; transition:var(--transition); }
.chat-send:hover{ background:var(--midnight-2); }
.chat-send svg{ width:16px; height:16px; }

.support-side-card{ border:1px solid var(--gray-200); border-radius:var(--r-lg); padding:22px; margin-bottom:16px; }
.support-side-card h5{ font-size:12px; font-weight:600; text-transform:uppercase; letter-spacing:.06em; color:var(--gray-500); margin-bottom:14px; }
.support-link-row{ display:flex; justify-content:space-between; align-items:center; padding:10px 0; font-size:13.5px; border-bottom:1px solid var(--gray-100); }
.support-link-row:last-child{ border-bottom:none; }
.ticket-status{ font-size:11px; font-weight:600; padding:3px 9px; border-radius:var(--r-full); }
.ticket-status.open{ background:var(--gold-light); color:#7A5D22; }
.ticket-status.resolved{ background:var(--emerald-light); color:var(--emerald-dark); }
