/* ── DESIGN TOKENS ──────────────────────────────────────── */
:root {
  --green: #007A6E;
  --green-dark: #005f56;
  --green-light: #e8f5f3;
  --green-lighter: #f0faf9;
  --gold: #FF5A00;
  --gold-light: #fff3ee;
  --ink: #0d1f24;
  --gray: #5c6770;
  --gray-light: #f7f8f9;
  --border: #e3e6ea;
  --border-dark: #c8cdd3;
  --white: #FFFFFF;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.06);
  --shadow: 0 4px 12px rgba(0,0,0,.08);
  --shadow-hover: 0 12px 32px rgba(0,0,0,.12);
  --radius: 14px;
  --radius-sm: 8px;
  --radius-lg: 20px;
}
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; color: var(--ink); background: var(--white); line-height: 1.55; -webkit-font-smoothing: antialiased; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
img { max-width: 100%; display: block; }

/* ── NAV ────────────────────────────────────────────────── */
.nav { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,.96); backdrop-filter: blur(8px); border-bottom: 1px solid var(--border); }
.nav.scrolled { box-shadow: 0 2px 12px rgba(0,0,0,.06); }
.nav-inner { max-width: 1240px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; height: 64px; gap: 16px; }
.logo { display: flex; align-items: center; gap: 10px; font-family: 'Syne', sans-serif; font-weight: 800; font-size: 1.25rem; letter-spacing: -.02em; color: var(--ink); text-decoration: none; }
.logo-img { width: 38px; height: 38px; border-radius: 8px; object-fit: cover; flex-shrink: 0; }
.logo-text { line-height: 1; }
.logo-text span { color: var(--green); }
.logo span { color: var(--green); }
.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links a { padding: 8px 13px; border-radius: 8px; font-size: .88rem; font-weight: 500; color: var(--gray); transition: .15s; }
.nav-links a:hover, .nav-links a.active { color: var(--ink); background: var(--gray-light); }
.nav-cta { display: flex; align-items: center; gap: 8px; }
.btn-green { background: var(--green); color: white; border-radius: var(--radius-sm); padding: 10px 18px; font-size: .87rem; font-weight: 600; transition: .18s; display: inline-flex; align-items: center; gap: 6px; }
.btn-green:hover { background: var(--green-dark); transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--green); border: 1.5px solid var(--green); border-radius: var(--radius-sm); padding: 8.5px 16px; font-size: .87rem; font-weight: 600; transition: .18s; display: inline-flex; align-items: center; gap: 6px; }
.btn-outline:hover { background: var(--green-light); }
.nav-icon-btn { width: 38px; height: 38px; border-radius: 50%; background: var(--gray-light); display: flex; align-items: center; justify-content: center; position: relative; transition: .15s; }
.nav-icon-btn:hover { background: var(--border); }
.nav-icon-btn svg { width: 16px; height: 16px; color: var(--ink); }
.nav-icon-badge { position: absolute; top: -2px; right: -2px; background: var(--gold); color: white; font-size: .62rem; font-weight: 700; padding: 1px 5px; border-radius: 100px; min-width: 16px; text-align: center; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.nav-toggle svg { width: 22px; height: 22px; color: var(--ink); }
.nav-mobile { display: none; position: absolute; top: 64px; left: 0; right: 0; background: white; border-bottom: 1px solid var(--border); padding: 16px 24px; flex-direction: column; gap: 2px; z-index: 99; box-shadow: 0 6px 20px rgba(0,0,0,.08); }
.nav-mobile a, .nav-mobile button { display: block; padding: 11px 0; font-size: .93rem; font-weight: 500; color: var(--ink); text-align: left; border-bottom: 1px solid var(--border); width: 100%; }
.nav-mobile a:last-child, .nav-mobile button:last-child { border-bottom: none; }

/* ── HERO ────────────────────────────────────────────────── */
.hero { background: linear-gradient(160deg, #f0faf9 0%, #fff 60%, #fff7f3 100%); padding: 56px 0 68px; position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; top: -80px; right: -80px; width: 480px; height: 480px; background: radial-gradient(circle, rgba(0,122,110,.07) 0%, transparent 70%); pointer-events: none; }
.hero::after { content: ''; position: absolute; bottom: -60px; left: 15%; width: 300px; height: 300px; background: radial-gradient(circle, rgba(255,90,0,.04) 0%, transparent 70%); pointer-events: none; }
.hero-inner { max-width: 1240px; margin: 0 auto; padding: 0 24px; display: grid; grid-template-columns: 1.15fr .85fr; gap: 56px; align-items: center; position: relative; z-index: 1; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 7px; background: white; border: 1.5px solid var(--border); border-radius: 100px; padding: 5px 14px 5px 8px; font-size: .78rem; font-weight: 600; margin-bottom: 20px; box-shadow: var(--shadow-sm); }
.hero-eyebrow .dot { width: 8px; height: 8px; background: #22c55e; border-radius: 50%; position: relative; flex-shrink: 0; }
.hero-eyebrow .dot::after { content: ''; position: absolute; inset: 0; background: #22c55e; border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { transform: scale(1); opacity: .4; } 50% { transform: scale(2); opacity: 0; } }
.hero h1 { font-family: 'Syne', sans-serif; font-size: clamp(2rem, 3.8vw, 3.1rem); font-weight: 800; line-height: 1.12; letter-spacing: -.03em; color: var(--ink); margin-bottom: 16px; }
.hero h1 em { font-style: normal; color: var(--green); }
.hero-sub { font-size: 1.05rem; color: var(--gray); margin-bottom: 28px; max-width: 480px; line-height: 1.65; }

/* ── HERO SEARCH ───────────────────────────────────────── */
.hero-search { background: white; border: 1.5px solid var(--border); border-radius: var(--radius); box-shadow: 0 4px 20px rgba(0,0,0,.08); display: flex; flex-wrap: wrap; overflow: hidden; }
.hs-field { display: flex; flex-direction: column; padding: 12px 16px; flex: 1; min-width: 130px; border-right: 1px solid var(--border); cursor: pointer; transition: .15s; position: relative; }
.hs-field:last-of-type { border-right: none; }
.hs-field:hover { background: var(--gray-light); }
.hs-field label { font-size: .68rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--green); margin-bottom: 3px; }
.hs-field input, .hs-field select { border: none; outline: none; font-family: inherit; font-size: .92rem; font-weight: 500; color: var(--ink); background: transparent; width: 100%; cursor: pointer; }
.hs-suggest { position: absolute; top: calc(100% + 4px); left: 0; right: 0; background: white; border: 1.5px solid var(--border); border-radius: var(--radius-sm); box-shadow: var(--shadow-hover); max-height: 280px; overflow-y: auto; z-index: 20; display: none; }
.hs-suggest.show { display: block; }
.hs-item { padding: 10px 14px; cursor: pointer; display: flex; align-items: center; gap: 10px; border-bottom: 1px solid var(--border); transition: .1s; }
.hs-item:last-child { border-bottom: none; }
.hs-item:hover { background: var(--green-light); }
.hs-item-icon { font-size: 1.1rem; }
.hs-item-main { font-weight: 600; font-size: .88rem; color: var(--ink); }
.hs-item-sub { font-size: .74rem; color: var(--gray); }
.hs-btn { background: var(--green); color: white; padding: 0 28px; font-family: inherit; font-size: .92rem; font-weight: 700; display: flex; align-items: center; gap: 7px; transition: .18s; white-space: nowrap; min-height: 56px; }
.hs-btn:hover { background: var(--green-dark); }
.hs-btn svg { width: 16px; height: 16px; }

.hero-stats { display: flex; gap: 28px; margin-top: 24px; }
.hero-stat strong { display: block; font-family: 'Syne', sans-serif; font-size: 1.45rem; font-weight: 800; color: var(--ink); }
.hero-stat span { font-size: .77rem; color: var(--gray); font-weight: 500; }
.hero-visual { position: relative; }
.hero-img { border-radius: var(--radius-lg); overflow: hidden; background: #0a1628; aspect-ratio: 4/3; display: block; box-shadow: 0 20px 56px rgba(0,0,0,.18); position: relative; }
.hero-img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,.22) 100%); pointer-events: none; z-index: 2; }
.hero-photo { width: 100%; height: 100%; object-fit: cover; display: block; position: relative; z-index: 1; }
.hero-float { position: absolute; background: white; border-radius: 12px; box-shadow: 0 8px 24px rgba(0,0,0,.18); padding: 10px 14px; display: flex; align-items: center; gap: 9px; font-size: .8rem; font-weight: 600; z-index: 3; }
.hero-float.f1 { bottom: 18px; left: -18px; animation: floaty 4s ease-in-out infinite; }
.hero-float.f2 { top: 18px; right: -16px; animation: floaty 4s ease-in-out infinite .5s; }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }
.hero-float-icon { width: 32px; height: 32px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: .9rem; flex-shrink: 0; }
.hero-float-icon.g { background: #dcfce7; color: #16a34a; }
.hero-float-icon.o { background: #fff3ee; color: var(--gold); }
.hero-float-label { font-size: .66rem; font-weight: 400; color: var(--gray); margin-bottom: 1px; }
.hero-float-value { color: var(--ink); font-weight: 700; }

/* ── TRUST BAR ──────────────────────────────────────────── */
.trust-bar { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--gray-light); padding: 16px 0; }
.trust-inner { max-width: 1240px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: center; gap: 36px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 8px; font-size: .83rem; font-weight: 600; color: var(--ink); }
.trust-item svg { width: 17px; height: 17px; color: var(--green); flex-shrink: 0; }
.trust-sep { width: 1px; height: 18px; background: var(--border-dark); }

/* ── SECTIONS ──────────────────────────────────────────── */
.section-wrap { max-width: 1240px; margin: 0 auto; padding: 0 24px; }
.section-header { text-align: center; margin-bottom: 44px; }
.section-tag { display: inline-block; font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--green); background: var(--green-light); padding: 5px 12px; border-radius: 100px; margin-bottom: 12px; }
.section-header h2 { font-family: 'Syne', sans-serif; font-size: clamp(1.65rem, 2.6vw, 2.1rem); font-weight: 800; letter-spacing: -.03em; color: var(--ink); margin-bottom: 11px; }
.section-header p { font-size: .95rem; color: var(--gray); max-width: 440px; margin: 0 auto; }

.hiw { padding: 68px 0; background: white; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.step { border: 1.5px solid var(--border); border-radius: var(--radius); padding: 26px 22px; text-align: center; transition: .2s; position: relative; }
.step:hover { border-color: var(--green); box-shadow: var(--shadow-hover); transform: translateY(-2px); }
.step-num { position: absolute; top: -10px; left: -10px; width: 26px; height: 26px; background: var(--gold); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: .78rem; }
.step-icon { width: 46px; height: 46px; background: var(--green-light); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.step-icon svg { width: 22px; height: 22px; color: var(--green); }
.step h3 { font-size: 1rem; font-weight: 700; color: var(--ink); margin-bottom: 7px; }
.step p { font-size: .85rem; color: var(--gray); line-height: 1.6; }

/* ── STICKY SEARCH ──────────────────────────────────────── */
.sticky-bar { position: fixed; top: 64px; left: 0; right: 0; z-index: 90; background: white; border-bottom: 1px solid var(--border); padding: 10px 0; transform: translateY(-100%); transition: transform .3s ease; box-shadow: 0 4px 16px rgba(0,0,0,.08); }
.sticky-bar.show { transform: translateY(0); }
.sticky-inner { max-width: 1240px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; gap: 10px; }
.sticky-search-input { flex: 2; padding: 9px 13px; border: 1.5px solid var(--border); border-radius: var(--radius-sm); font-family: inherit; font-size: .88rem; color: var(--ink); background: white; transition: .15s; }
.sticky-search-input:focus { outline: none; border-color: var(--green); }
.sticky-city { flex: 1; padding: 9px 13px; border: 1.5px solid var(--border); border-radius: var(--radius-sm); font-family: inherit; font-size: .88rem; color: var(--ink); background: white; }
.sticky-city:focus { outline: none; border-color: var(--green); }
.sticky-go { background: var(--green); color: white; border-radius: var(--radius-sm); padding: 10px 22px; font-family: inherit; font-weight: 700; font-size: .88rem; white-space: nowrap; transition: .18s; }
.sticky-go:hover { background: var(--green-dark); }

/* ── DIRECTORY ──────────────────────────────────────────── */
.dir { background: var(--gray-light); padding: 60px 0 80px; }
.dir-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 22px; flex-wrap: wrap; gap: 12px; }
.dir-header h2 { font-family: 'Syne', sans-serif; font-size: clamp(1.4rem, 2vw, 1.85rem); font-weight: 800; letter-spacing: -.02em; color: var(--ink); }
.dir-header p { font-size: .83rem; color: var(--gray); margin-top: 4px; }
.dir-count { font-size: .87rem; color: var(--gray); font-weight: 500; }
.dir-count strong { color: var(--green); font-weight: 700; }

/* Filter bar */
.filter-bar { background: white; border-radius: var(--radius); padding: 12px 16px; margin-bottom: 18px; display: flex; align-items: center; gap: 14px; flex-wrap: wrap; border: 1px solid var(--border); }
.fb-label { font-size: .77rem; font-weight: 700; color: var(--ink); text-transform: uppercase; letter-spacing: .05em; }
.fb-group { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.fb-chip { padding: 6px 13px; border-radius: 100px; font-size: .82rem; font-weight: 600; border: 1.5px solid var(--border); background: white; color: var(--gray); transition: .15s; white-space: nowrap; }
.fb-chip:hover { border-color: var(--green); color: var(--green); }
.fb-chip.active { background: var(--green); color: white; border-color: var(--green); }
.fb-sort { margin-left: auto; display: flex; align-items: center; gap: 8px; }
.fb-sort select { padding: 7px 12px; border: 1.5px solid var(--border); border-radius: var(--radius-sm); font-family: inherit; font-size: .85rem; color: var(--ink); background: white; cursor: pointer; }

.tabs-wrap { overflow-x: auto; scrollbar-width: none; margin-bottom: 22px; }
.tabs-wrap::-webkit-scrollbar { display: none; }
.tabs { display: flex; gap: 2px; border-bottom: 2px solid var(--border); white-space: nowrap; }
.ctab { padding: 11px 18px; font-size: .83rem; font-weight: 600; color: var(--gray); border-bottom: 2.5px solid transparent; background: none; white-space: nowrap; transition: .18s; margin-bottom: -2px; }
.ctab:hover { color: var(--ink); }
.ctab.active { color: var(--green); border-bottom-color: var(--green); }

.cards-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); gap: 18px; }
.no-results { text-align: center; padding: 60px 24px; display: none; }
.no-results.show { display: block; }
.no-results h3 { font-size: 1.1rem; font-weight: 700; color: var(--ink); margin-bottom: 8px; }
.no-results p { color: var(--gray); font-size: .9rem; }

/* ── COMPANY CARD ───────────────────────────────────────── */
.company-card { background: white; border-radius: var(--radius); overflow: hidden; transition: .25s; cursor: pointer; position: relative; display: flex; flex-direction: column; border: 1px solid transparent; box-shadow: var(--shadow-sm); }
.company-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-3px); border-color: rgba(0,122,110,.2); }
.company-card.featured .card-photo::before { content: 'Featured'; position: absolute; top: 12px; left: 12px; z-index: 3; background: var(--gold); color: white; font-size: .66rem; font-weight: 700; padding: 3px 9px; border-radius: 100px; letter-spacing: .04em; text-transform: uppercase; }
.card-photo { height: 150px; position: relative; display: flex; align-items: center; justify-content: center; flex-shrink: 0; overflow: hidden; }
.card-logo { width: 72px; height: 72px; border-radius: 16px; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 1rem; color: white; letter-spacing: .05em; position: relative; z-index: 1; box-shadow: 0 4px 16px rgba(0,0,0,.25); background: rgba(255,255,255,.18); backdrop-filter: blur(6px); }
.card-photo-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.38) 0%, transparent 60%); }
.card-actions { position: absolute; top: 10px; right: 10px; display: flex; gap: 6px; z-index: 3; }
.card-action-btn { width: 30px; height: 30px; background: rgba(255,255,255,.92); border-radius: 50%; font-size: .85rem; display: flex; align-items: center; justify-content: center; transition: .15s; backdrop-filter: blur(4px); }
.card-action-btn:hover { background: white; transform: scale(1.1); }
.card-action-btn.saved { color: #ef4444; }
.card-action-btn.comparing { background: var(--green); color: white; }
.card-type { position: absolute; bottom: 10px; left: 12px; background: rgba(255,255,255,.9); border-radius: 5px; padding: 2px 8px; font-size: .67rem; font-weight: 700; color: var(--ink); backdrop-filter: blur(4px); z-index: 2; }
.card-body { padding: 14px 16px 12px; flex: 1; display: flex; flex-direction: column; }
.card-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 8px; margin-bottom: 5px; }
.cname { font-weight: 700; font-size: .95rem; color: var(--ink); line-height: 1.35; flex: 1; }
.card-rating { display: flex; align-items: center; gap: 3px; flex-shrink: 0; }
.card-rating svg { width: 12px; height: 12px; fill: #f59e0b; }
.card-rating span { font-size: .78rem; font-weight: 700; color: var(--ink); }
.cloc { font-size: .76rem; color: var(--gray); margin-bottom: 8px; display: flex; align-items: center; gap: 4px; }
.card-badges { display: flex; flex-wrap: wrap; gap: 4px; margin-bottom: 12px; }
.bdg { font-size: .67rem; font-weight: 600; padding: 3px 8px; border-radius: 5px; }
.b-local { background: var(--green-light); color: var(--green-dark); }
.b-intl { background: #eff6ff; color: #2563eb; }
.b-air { background: #f0fdf4; color: #16a34a; }
.b-wed { background: #fdf4ff; color: #9333ea; }
.b-corp { background: #fff7ed; color: #ea580c; }
.b-arm { background: #fef2f2; color: #dc2626; }
.card-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 10px; border-top: 1px solid var(--border); margin-top: auto; gap: 8px; }
.card-price { display: flex; flex-direction: column; }
.price-label { font-size: .67rem; color: var(--gray); font-weight: 500; }
.price-from { font-size: 1.05rem; font-weight: 800; color: var(--ink); }
.price-from small { font-size: .7rem; font-weight: 400; color: var(--gray); }
.card-book { background: var(--green-light); color: var(--green); border-radius: 7px; padding: 8px 14px; font-size: .8rem; font-weight: 700; transition: .18s; }
.card-book:hover { background: var(--green); color: white; }
.rv-strip { padding: 8px 16px 12px; border-top: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.rv-stars-mini { color: #f59e0b; font-size: .72rem; }
.rv-info { font-size: .72rem; color: var(--gray); }
.rv-write { font-size: .72rem; font-weight: 600; color: var(--green); }
.rv-write:hover { text-decoration: underline; }

/* Signals line */
.card-signal { padding: 6px 16px; background: linear-gradient(to right, var(--green-light), transparent); border-top: 1px solid var(--border); font-size: .72rem; font-weight: 600; color: var(--green-dark); display: flex; align-items: center; gap: 5px; }

/* ── WHY ──────────────────────────────────────────────── */
.why { background: var(--ink); color: white; padding: 72px 0; position: relative; overflow: hidden; }
.why::before { content: ''; position: absolute; top: -100px; right: -100px; width: 500px; height: 500px; background: radial-gradient(circle, rgba(0,122,110,.18) 0%, transparent 70%); }
.why .section-tag { color: #6ee7e0; background: rgba(0,122,110,.2); }
.why .section-header h2 { color: white; }
.why .section-header p { color: rgba(255,255,255,.6); }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; position: relative; z-index: 1; }
.why-card { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); border-radius: var(--radius); padding: 22px; transition: .2s; }
.why-card:hover { background: rgba(255,255,255,.07); border-color: rgba(0,122,110,.5); }
.why-icon { width: 40px; height: 40px; background: rgba(0,122,110,.2); border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 12px; }
.why-icon svg { width: 19px; height: 19px; color: #6ee7e0; }
.why-card h3 { font-size: .95rem; font-weight: 700; color: white; margin-bottom: 6px; }
.why-card p { font-size: .82rem; color: rgba(255,255,255,.55); line-height: 1.6; }

/* ── CITIES ─────────────────────────────────────────────── */
.city-sec { padding: 72px 0; background: white; }
.city-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 40px; }
.city-card { border-radius: var(--radius); overflow: hidden; position: relative; aspect-ratio: 4/3; cursor: pointer; transition: .25s; }
.city-card:hover { transform: translateY(-4px); box-shadow: 0 14px 36px rgba(0,0,0,.17); }
.city-card-bg { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-size: 4.5rem; }
.city-card-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.8) 0%, rgba(0,0,0,.15) 60%, transparent 100%); }
.city-card-text { position: absolute; bottom: 0; left: 0; right: 0; padding: 18px; }
.city-card-text h3 { font-family: 'Syne', sans-serif; font-size: 1.2rem; font-weight: 800; color: white; margin-bottom: 3px; }
.city-card-text p { font-size: .78rem; color: rgba(255,255,255,.8); font-weight: 500; }
.city-pills { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 18px; justify-content: center; }

/* ── BLOG ───────────────────────────────────────────────── */
.blog-sec { background: var(--gray-light); padding: 72px 0; }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 40px; }
.blog-card { background: white; border-radius: var(--radius); overflow: hidden; transition: .25s; cursor: pointer; box-shadow: var(--shadow-sm); }
.blog-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-hover); }
.blog-img { height: 170px; display: flex; align-items: center; justify-content: center; font-size: 3.5rem; position: relative; }
.blog-img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.25), transparent); }
.blog-body { padding: 20px; }
.blog-cat { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--green); margin-bottom: 7px; }
.blog-title { font-family: 'Syne', sans-serif; font-size: 1.05rem; font-weight: 700; color: var(--ink); line-height: 1.35; margin-bottom: 7px; }
.blog-excerpt { font-size: .85rem; color: var(--gray); line-height: 1.6; margin-bottom: 10px; }
.blog-meta { font-size: .73rem; color: var(--gray); font-weight: 500; }

/* ── PARTNER ────────────────────────────────────────────── */
.partner { background: linear-gradient(160deg, var(--green-light) 0%, white 100%); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 64px 0; }
.partner-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.partner-left h2 { font-family: 'Syne', sans-serif; font-size: clamp(1.5rem, 2.2vw, 2rem); font-weight: 800; letter-spacing: -.02em; color: var(--ink); margin-bottom: 14px; line-height: 1.2; }
.partner-left p { font-size: .92rem; color: var(--gray); margin-bottom: 24px; line-height: 1.65; }
.partner-feats { display: flex; flex-direction: column; gap: 11px; }
.partner-feat { display: flex; align-items: center; gap: 10px; font-size: .88rem; font-weight: 600; }
.partner-feat svg { width: 16px; height: 16px; color: var(--green); flex-shrink: 0; }
.partner-form { background: white; border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow-hover); border: 1px solid var(--border); }
.partner-form h3 { font-family: 'Syne', sans-serif; font-weight: 800; font-size: 1.1rem; color: var(--ink); margin-bottom: 16px; }
.form-group { margin-bottom: 12px; }
.form-group label { display: block; font-size: .76rem; font-weight: 700; color: var(--ink); margin-bottom: 5px; letter-spacing: .02em; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 10px 12px; border: 1.5px solid var(--border); border-radius: var(--radius-sm); font-family: inherit; font-size: .88rem; color: var(--ink); transition: .15s; background: white; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--green); box-shadow: 0 0 0 3px rgba(0,122,110,.1); }

/* ── TESTIMONIALS ───────────────────────────────────────── */
.testi { background: white; padding: 72px 0; }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 40px; }
.testi-card { background: var(--gray-light); border: 1px solid var(--border); border-radius: var(--radius); padding: 22px; transition: .2s; }
.testi-card:hover { background: white; border-color: rgba(0,122,110,.25); box-shadow: var(--shadow-hover); }
.testi-stars { color: #f59e0b; font-size: .9rem; margin-bottom: 10px; }
.testi-text { font-size: .88rem; line-height: 1.65; color: var(--ink); margin-bottom: 16px; }
.testi-author { display: flex; align-items: center; gap: 10px; }
.testi-avatar { width: 34px; height: 34px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: .78rem; color: white; }
.testi-name { font-weight: 700; font-size: .82rem; color: var(--ink); }
.testi-city { font-size: .72rem; color: var(--gray); }

/* ── FINAL CTA ──────────────────────────────────────────── */
.final-cta { background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 100%); padding: 72px 0; text-align: center; position: relative; overflow: hidden; }
.final-cta::before { content: ''; position: absolute; top: -50%; left: 50%; transform: translateX(-50%); width: 600px; height: 600px; background: radial-gradient(circle, rgba(255,255,255,.1) 0%, transparent 70%); }
.final-cta h2 { font-family: 'Syne', sans-serif; font-size: clamp(1.7rem, 3vw, 2.5rem); font-weight: 800; color: white; letter-spacing: -.03em; margin-bottom: 14px; position: relative; }
.final-cta p { font-size: 1rem; color: rgba(255,255,255,.8); margin-bottom: 32px; position: relative; }
.final-cta-btns { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; position: relative; }
.btn-white { background: white; color: var(--green); border-radius: var(--radius-sm); padding: 13px 26px; font-family: inherit; font-weight: 700; font-size: .95rem; transition: .18s; display: inline-flex; align-items: center; gap: 8px; }
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0,0,0,.15); }
.btn-wa { background: #25d366; color: white; border-radius: var(--radius-sm); padding: 13px 26px; font-family: inherit; font-weight: 700; font-size: .95rem; transition: .18s; display: inline-flex; align-items: center; gap: 8px; }
.btn-wa:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(37,211,102,.3); }

/* ── FOOTER ─────────────────────────────────────────────── */
.footer { background: #0a0f1e; color: rgba(255,255,255,.55); padding: 56px 0 28px; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 36px; margin-bottom: 40px; }
.footer-brand .logo { color: white; margin-bottom: 12px; display: inline-flex; }
.footer-brand p { font-size: .82rem; line-height: 1.65; max-width: 240px; }
.footer-col h4 { font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: white; margin-bottom: 13px; }
.footer-col a { display: block; font-size: .82rem; margin-bottom: 7px; color: rgba(255,255,255,.45); transition: .15s; }
.footer-col a:hover { color: white; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding-top: 22px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; font-size: .78rem; }
.footer-bottom a { color: rgba(255,255,255,.35); transition: .15s; margin-left: 16px; }
.footer-bottom a:hover { color: white; }
.social-links { display: flex; gap: 8px; margin-top: 14px; }
.social-link { width: 32px; height: 32px; background: rgba(255,255,255,.08); border-radius: 7px; display: flex; align-items: center; justify-content: center; transition: .18s; }
.social-link:hover { background: var(--green); }
.social-link svg { width: 14px; height: 14px; fill: rgba(255,255,255,.65); }

/* ── MODALS ─────────────────────────────────────────────── */
.modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.55); z-index: 1000; display: none; align-items: center; justify-content: center; padding: 16px; backdrop-filter: blur(4px); }
.modal-overlay.open { display: flex; }
.modal { background: white; border-radius: 18px; width: 100%; max-width: 520px; max-height: 92vh; overflow-y: auto; box-shadow: 0 24px 64px rgba(0,0,0,.2); animation: modalIn .22s cubic-bezier(.4,0,.2,1); }
.modal.wide { max-width: 900px; }
@keyframes modalIn { from { transform: translateY(20px) scale(.97); opacity: 0; } to { transform: translateY(0) scale(1); opacity: 1; } }
.modal-head { padding: 20px 22px 0; display: flex; align-items: center; justify-content: space-between; }
.modal-head h2 { font-family: 'Syne', sans-serif; font-size: 1.15rem; font-weight: 800; color: var(--ink); }
.modal-close { width: 30px; height: 30px; background: var(--gray-light); border-radius: 50%; font-size: 1rem; color: var(--gray); display: flex; align-items: center; justify-content: center; transition: .15s; }
.modal-close:hover { background: var(--border); color: var(--ink); }
.modal-body { padding: 18px 22px 22px; }
.bk-banner { background: var(--green-light); border: 1.5px solid #a8d8bc; border-radius: 8px; padding: 11px 13px; margin-bottom: 16px; display: flex; align-items: center; gap: 9px; font-size: .85rem; font-weight: 600; color: var(--green-dark); }
.bk-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.bk-full { grid-column: 1 / -1; }
.bk-form label { display: block; font-size: .75rem; font-weight: 700; color: var(--ink); margin-bottom: 4px; letter-spacing: .02em; }
.bk-form input, .bk-form select, .bk-form textarea { width: 100%; padding: 9px 11px; border: 1.5px solid var(--border); border-radius: var(--radius-sm); font-family: inherit; font-size: .88rem; color: var(--ink); transition: .15s; }
.bk-form input:focus, .bk-form select:focus, .bk-form textarea:focus { outline: none; border-color: var(--green); box-shadow: 0 0 0 3px rgba(0,122,110,.08); }
.bk-err { font-size: .7rem; color: #ef4444; margin-top: 2px; display: none; }
.bk-err.show { display: block; }
.bk-submit { width: 100%; margin-top: 16px; padding: 13px; font-size: .95rem; border-radius: var(--radius-sm); background: var(--green); color: white; font-family: inherit; font-weight: 700; transition: .18s; }
.bk-submit:hover { background: var(--green-dark); }
.bk-success { text-align: center; padding: 20px 0; display: none; }
.bk-success.show { display: block; }
.bk-success-icon { font-size: 2.8rem; margin-bottom: 10px; }
.bk-success h3 { font-size: 1.05rem; font-weight: 700; color: var(--ink); margin-bottom: 6px; }
.bk-success p { font-size: .85rem; color: var(--gray); }
.rv-stars-row { display: flex; gap: 5px; margin: 10px 0; }
.rv-stars-row button { font-size: 1.5rem; color: #d1d5db; transition: .15s; line-height: 1; }
.rv-stars-row button.active, .rv-stars-row button:hover { color: #f59e0b; }

/* ── COMPARE MODAL ──────────────────────────────────────── */
.compare-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.compare-col { border: 1.5px solid var(--border); border-radius: var(--radius); padding: 16px; position: relative; }
.compare-empty { background: var(--gray-light); border: 2px dashed var(--border-dark); text-align: center; color: var(--gray); font-size: .85rem; padding: 40px 16px; }
.compare-empty-icon { font-size: 2rem; margin-bottom: 8px; opacity: .4; }
.compare-remove { position: absolute; top: 10px; right: 10px; width: 24px; height: 24px; background: #fee2e2; color: #dc2626; border-radius: 50%; font-size: .75rem; }
.compare-logo { width: 48px; height: 48px; border-radius: 10px; color: white; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: .78rem; margin-bottom: 10px; }
.compare-col h3 { font-size: .92rem; font-weight: 700; margin-bottom: 6px; }
.compare-row { padding: 8px 0; border-top: 1px solid var(--border); font-size: .82rem; }
.compare-row-label { font-size: .7rem; color: var(--gray); text-transform: uppercase; letter-spacing: .05em; font-weight: 600; margin-bottom: 3px; }
.compare-row-value { color: var(--ink); font-weight: 600; }

/* ── DRAWER ─────────────────────────────────────────────── */
.drawer-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.45); z-index: 999; display: none; backdrop-filter: blur(2px); }
.drawer-overlay.open { display: block; }
.drawer { position: fixed; right: 0; top: 0; bottom: 0; width: 100%; max-width: 520px; background: white; z-index: 1000; transform: translateX(100%); transition: transform .3s cubic-bezier(.4,0,.2,1); overflow-y: auto; box-shadow: -4px 0 32px rgba(0,0,0,.12); }
.drawer.open { transform: translateX(0); }
.drawer-head { padding: 18px 20px; border-bottom: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; position: sticky; top: 0; background: white; z-index: 1; }
.drawer-head h2 { font-family: 'Syne', sans-serif; font-size: 1.05rem; font-weight: 800; color: var(--ink); }
.drawer-body { padding: 20px; }
.drawer-hero { background: linear-gradient(135deg, #0a1628, var(--green)); border-radius: var(--radius); padding: 24px; color: white; margin-bottom: 20px; text-align: center; }
.drawer-hero-logo { width: 64px; height: 64px; border-radius: 14px; background: rgba(255,255,255,.15); display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: .95rem; margin: 0 auto 12px; box-shadow: 0 4px 16px rgba(0,0,0,.25); }
.drawer-hero h3 { font-family: 'Syne', sans-serif; font-weight: 800; font-size: 1.15rem; margin-bottom: 4px; }
.drawer-hero p { font-size: .85rem; opacity: .85; }
.drawer-tabs { display: flex; gap: 2px; background: var(--gray-light); border-radius: 8px; padding: 3px; margin-bottom: 20px; }
.dtab { flex: 1; padding: 8px; border-radius: 6px; font-family: inherit; font-size: .82rem; font-weight: 600; color: var(--gray); transition: .15s; }
.dtab.active { background: white; color: var(--green); box-shadow: var(--shadow-sm); }
.vcard { background: var(--gray-light); border-radius: 8px; padding: 12px 14px; display: flex; align-items: center; justify-content: space-between; margin-bottom: 6px; border: 1px solid var(--border); cursor: pointer; transition: .15s; }
.vcard:hover { border-color: var(--green); background: var(--green-light); }
.vcard-icon { font-size: 1.2rem; margin-right: 10px; }
.vcar-name { font-weight: 700; font-size: .88rem; color: var(--ink); }
.vcar-type { font-size: .73rem; color: var(--gray); }
.vcar-price { font-weight: 800; font-size: .9rem; color: var(--green); }
.drawer-book-btn { width: 100%; margin-top: 16px; padding: 12px; background: var(--green); color: white; border-radius: var(--radius-sm); font-family: inherit; font-weight: 700; font-size: .9rem; transition: .18s; }
.drawer-book-btn:hover { background: var(--green-dark); }
.drawer-share { display: flex; gap: 8px; margin-top: 10px; }
.drawer-share-btn { flex: 1; padding: 10px; background: var(--gray-light); border-radius: var(--radius-sm); font-family: inherit; font-weight: 600; font-size: .82rem; color: var(--ink); transition: .15s; display: flex; align-items: center; justify-content: center; gap: 6px; }
.drawer-share-btn:hover { background: var(--border); }
.sec-label { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; color: var(--gray); margin: 18px 0 10px; display: block; }
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 16px; }
.stat-card { background: var(--gray-light); border-radius: 10px; padding: 12px; text-align: center; }
.stat-num { font-family: 'Syne', sans-serif; font-weight: 800; font-size: 1.2rem; color: var(--green); }
.stat-lbl { font-size: .7rem; color: var(--gray); font-weight: 600; text-transform: uppercase; letter-spacing: .04em; }

/* ── SAVED DRAWER / COMPARE BAR ─────────────────────────── */
.compare-bar { position: fixed; bottom: 0; left: 0; right: 0; background: white; border-top: 2px solid var(--green); padding: 12px 24px; display: none; z-index: 95; box-shadow: 0 -6px 20px rgba(0,0,0,.1); }
.compare-bar.show { display: flex; align-items: center; gap: 14px; justify-content: space-between; }
.compare-bar-info { display: flex; align-items: center; gap: 14px; }
.compare-bar-count { font-family: 'Syne', sans-serif; font-weight: 800; font-size: 1rem; color: var(--green); }
.compare-bar-items { display: flex; gap: 6px; }
.compare-bar-item { width: 36px; height: 36px; border-radius: 8px; background: var(--gray-light); display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: .7rem; color: var(--ink); }
.compare-bar-btn { background: var(--green); color: white; border-radius: var(--radius-sm); padding: 10px 22px; font-weight: 700; font-size: .88rem; transition: .18s; }
.compare-bar-btn:hover { background: var(--green-dark); }

/* ── WA FLOAT ───────────────────────────────────────────── */
.wa-float { position: fixed; bottom: 22px; right: 22px; z-index: 98; width: 52px; height: 52px; background: #25d366; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 14px rgba(37,211,102,.4); transition: .2s; }
.wa-float:hover { transform: scale(1.1); box-shadow: 0 6px 20px rgba(37,211,102,.5); }
.wa-float svg { width: 24px; height: 24px; fill: white; }

/* ── RESPONSIVE ─────────────────────────────────────────── */
@media(max-width:980px){
  .hero-inner { grid-template-columns: 1fr; gap: 32px; }
  .hero-visual { display: none; }
  .steps { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .city-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .partner-inner { grid-template-columns: 1fr; gap: 32px; }
  .testi-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 28px; }
  .compare-grid { grid-template-columns: 1fr; }
}
@media(max-width:640px){
  .nav-links, .nav-cta .btn-outline { display: none; }
  .nav-toggle { display: flex; }
  .hero-search { flex-direction: column; }
  .hs-field { border-right: none; border-bottom: 1px solid var(--border); }
  .hs-field:last-of-type { border-bottom: none; }
  .cards-grid { grid-template-columns: 1fr; }
  .city-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .bk-fields { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .trust-inner { gap: 18px; }
  .trust-sep { display: none; }
  .hero-stats { gap: 18px; }
  .final-cta-btns { flex-direction: column; align-items: center; }
  .compare-bar { padding: 10px 16px; }
  .filter-bar { flex-direction: column; align-items: stretch; }
  .fb-sort { margin-left: 0; }
}

/* ══════════════════════════════════════════════════════════════
   MULTI-PAGE ADDITIONS — styles for new page layouts
   ══════════════════════════════════════════════════════════════ */

/* Active nav link */
.nav-link.active { color: var(--green); }
.nav-link.active::after { content: ''; display: block; height: 2px; background: var(--green); margin-top: 2px; border-radius: 1px; }

/* Generic page header (used on Browse, How, Partners, Blog, Contact) */
.page-header { background: linear-gradient(180deg, #f7f7f7 0%, #ffffff 100%); padding: 48px 0 32px; border-bottom: 1px solid var(--border); }
.page-header .section-wrap { text-align: center; }
.page-header h1 { font-family: 'Syne', sans-serif; font-size: 2.2rem; font-weight: 800; letter-spacing: -.02em; margin-bottom: 10px; color: var(--ink); line-height: 1.15; }
.page-header p { max-width: 640px; margin: 0 auto; color: var(--gray); font-size: 1.02rem; line-height: 1.6; }
@media(max-width:640px){
  .page-header { padding: 30px 0 22px; }
  .page-header h1 { font-size: 1.6rem; }
  .page-header p { font-size: .92rem; }
}

/* Browse page: search + filter bar */
.browse-search input:focus,
.browse-search select:focus { outline: none; border-color: var(--green); box-shadow: 0 0 0 3px rgba(0,122,110,.1); }

/* City tabs on Browse */
.city-tabs { display: flex; gap: 8px; margin-bottom: 20px; overflow-x: auto; padding-bottom: 4px; scrollbar-width: none; }
.city-tabs::-webkit-scrollbar { display: none; }
.city-tab { padding: 8px 16px; background: white; border: 1.5px solid var(--border); border-radius: 100px; font-family: inherit; font-size: .85rem; font-weight: 600; color: var(--gray); cursor: pointer; transition: .15s; white-space: nowrap; flex-shrink: 0; }
.city-tab:hover { border-color: var(--green); color: var(--green); }
.city-tab.active { background: var(--green); color: white; border-color: var(--green); }

/* Hero search button on home */
.hero-search-btn { background: var(--green); color: white; border: none; padding: 0 22px; border-radius: var(--radius-sm); font-family: inherit; font-size: .95rem; font-weight: 700; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 7px; transition: .18s; }
.hero-search-btn:hover { background: var(--green-dark); }

/* FAQ accordion on How It Works */
.faq-list { margin-bottom: 10px; }
.faq-item { background: white; border: 1.5px solid var(--border); border-radius: 10px; margin-bottom: 10px; padding: 16px 18px; transition: .15s; }
.faq-item[open] { border-color: var(--green); box-shadow: 0 4px 16px rgba(0,122,110,.08); }
.faq-item summary { cursor: pointer; font-size: .94rem; outline: none; list-style: none; display: flex; justify-content: space-between; align-items: center; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 1.3rem; font-weight: 400; color: var(--gray); transition: .18s; }
.faq-item[open] summary::after { transform: rotate(45deg); color: var(--green); }
.faq-item p { margin-top: 12px; color: var(--gray); line-height: 1.7; font-size: .9rem; }

/* Partner benefit list on /partners */
.partner-benefits { display: flex; flex-direction: column; gap: 16px; margin-top: 20px; }
.partner-benefit { display: flex; gap: 14px; align-items: flex-start; }
.partner-benefit-icon { width: 44px; height: 44px; background: var(--green-light); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; flex-shrink: 0; }
.partner-benefit h4 { font-family: 'Syne', sans-serif; font-weight: 800; font-size: 1rem; margin-bottom: 3px; color: var(--ink); }
.partner-benefit p { font-size: .87rem; color: var(--gray); line-height: 1.55; }

/* Contact page grid on mobile */
@media(max-width:720px){
  .contact-grid { grid-template-columns: 1fr !important; }
}

/* Company detail page — fleet grid cards */
.vcard-full { background: white; border: 1.5px solid var(--border); border-radius: 12px; padding: 16px; transition: .18s; }
.vcard-full:hover { border-color: var(--green); box-shadow: 0 4px 16px rgba(0,0,0,.06); }

/* Company hero */
.company-hero h1 { font-family: 'Syne', sans-serif; font-size: 1.8rem; font-weight: 800; letter-spacing: -.02em; line-height: 1.1; }
@media(max-width:640px){
  .company-hero h1 { font-size: 1.4rem; }
}

/* Ensure all forms look good */
.form-group { margin-bottom: 14px; }
.form-group label { display: block; font-size: .78rem; font-weight: 700; color: var(--ink); margin-bottom: 5px; letter-spacing: .02em; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 11px 13px; border: 1.5px solid var(--border); border-radius: var(--radius-sm); font-family: inherit; font-size: .92rem; color: var(--ink); transition: .15s; background: white; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--green); box-shadow: 0 0 0 3px rgba(0,122,110,.1); }

/* ══════════════════════════════════════════════════════════════
   HOW IT WORKS GRID (hiw-* classes used on new pages)
   ══════════════════════════════════════════════════════════════ */
.hiw-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.hiw-step { background: white; border: 1.5px solid var(--border); border-radius: var(--radius); padding: 28px 20px; text-align: center; transition: .2s; position: relative; }
.hiw-step:hover { border-color: var(--green); box-shadow: var(--shadow-hover); transform: translateY(-3px); }
.hiw-num { width: 44px; height: 44px; background: var(--green); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 1.1rem; margin: 0 auto 14px; font-family: 'Syne', sans-serif; }
.hiw-step h3 { font-family: 'Syne', sans-serif; font-size: 1.05rem; font-weight: 800; color: var(--ink); margin-bottom: 8px; }
.hiw-step p { font-size: .88rem; color: var(--gray); line-height: 1.6; }

@media (max-width: 980px) {
  .hiw-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}
@media (max-width: 640px) {
  .hiw-grid { grid-template-columns: 1fr; gap: 12px; }
  .hiw-step { padding: 22px 16px; }
}

/* ══════════════════════════════════════════════════════════════
   CITY CARDS - simpler flex structure used on new pages
   (matches <a class="city-card"><h3>City</h3><span>n cos</span></a>)
   ══════════════════════════════════════════════════════════════ */
.city-sec { padding: 60px 0 80px; background: white; }
a.city-card { display: flex; flex-direction: column; justify-content: flex-end; padding: 24px; text-decoration: none; color: white; min-height: 180px; position: relative; overflow: hidden; }
a.city-card::before { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,0.55) 100%); }
a.city-card h3 { position: relative; font-family: 'Syne', sans-serif; font-size: 1.4rem; font-weight: 800; letter-spacing: -.02em; color: white !important; margin-bottom: 4px; }
a.city-card span { position: relative; font-size: .82rem; color: rgba(255,255,255,0.85); font-weight: 600; }
.city-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
@media (max-width: 900px) { .city-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .city-grid { grid-template-columns: 1fr; } }

/* ══════════════════════════════════════════════════════════════
   SECTION HEADER on new pages
   ══════════════════════════════════════════════════════════════ */
.section-header { text-align: center; margin-bottom: 40px; }

/* ══════════════════════════════════════════════════════════════
   TRUST BAR - fix visibility (was dark bar hiding items)
   ══════════════════════════════════════════════════════════════ */
.trust-inner { max-width: 1240px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: center; gap: 24px; flex-wrap: wrap; }
.trust-sep { width: 1px; height: 16px; background: var(--border); }

/* Final CTA section */
.final-cta { background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 100%); color: white; padding: 70px 0; text-align: center; }
.final-cta h2 { font-family: 'Syne', sans-serif; font-size: 2rem; font-weight: 800; letter-spacing: -.02em; margin-bottom: 12px; color: white; }
.final-cta p { font-size: 1.05rem; color: rgba(255,255,255,0.9); margin-bottom: 24px; }
.final-cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }


/* ══════════════════════════════════════════════════════════════
   MOBILE NAV - dropdown menu
   ══════════════════════════════════════════════════════════════ */
.mobile-nav { display: none; padding: 10px 24px 14px; background: white; border-top: 1px solid var(--border); }
.mobile-nav.open { display: block; }
.mobile-nav a { display: block; padding: 10px 8px; font-size: .9rem; font-weight: 500; color: var(--ink); border-radius: 6px; }
.mobile-nav a:hover { background: var(--gray-light); }


/* ══════════════════════════════════════════════════════════════
   BLOG CARDS (new multi-page classes)
   ══════════════════════════════════════════════════════════════ */
.blog-sec { background: var(--gray-light); padding: 40px 0 80px; }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 900px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .blog-grid { grid-template-columns: 1fr; } }

a.blog-card { display: block; background: white; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); transition: .2s; color: inherit; }
a.blog-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-hover); }
.blog-card-img { height: 180px; display: flex; align-items: center; justify-content: center; position: relative; }
.blog-emoji { font-size: 3.5rem; filter: drop-shadow(0 4px 10px rgba(0,0,0,0.3)); }
.blog-card-body { padding: 20px 22px 22px; }
.blog-card-cat { display: inline-block; font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--green); background: var(--green-light); padding: 4px 10px; border-radius: 100px; margin-bottom: 10px; }
.blog-card-body h3 { font-family: 'Syne', sans-serif; font-size: 1.1rem; font-weight: 800; color: var(--ink); margin-bottom: 8px; line-height: 1.3; }
.blog-card-body p { font-size: .87rem; color: var(--gray); line-height: 1.55; margin-bottom: 12px; }
.blog-card-meta { display: flex; gap: 8px; font-size: .76rem; color: var(--gray); font-weight: 500; }

/* ══════════════════════════════════════════════════════════════
   BOOKING FORM - reshape inline inputs to proper vertical layout
   ══════════════════════════════════════════════════════════════ */
.bk-fields > div { display: flex; flex-direction: column; }
.bk-fields label { display: block; font-size: .78rem; font-weight: 700; color: var(--ink); margin-bottom: 5px; letter-spacing: .02em; }
.bk-fields input, .bk-fields select, .bk-fields textarea { width: 100%; padding: 11px 13px; border: 1.5px solid var(--border); border-radius: var(--radius-sm); font-family: inherit; font-size: .92rem; color: var(--ink); transition: .15s; background: white; }
.bk-fields input:focus, .bk-fields select:focus, .bk-fields textarea:focus { outline: none; border-color: var(--green); box-shadow: 0 0 0 3px rgba(0,122,110,.1); }
