*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:      #19376D;
  --navy-dark: #102350;
  --navy-soft: #EEF3FB;
  --gold:      #FFA800;
  --gold-dark: #D98F00;
  --green:     #2D6A4F;
  --ink:       #1A1A2E;
  --muted:     #6B7280;
  --border:    #E5E7EB;
  --bg:        #FAFAF8;
  --white:     #FFFFFF;
  --card-shadow: 0 1px 3px rgba(0,0,0,.06), 0 4px 16px rgba(0,0,0,.06);
}

html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; background: var(--bg); color: var(--ink); }
h1,h2,h3,h4 { font-family: 'Poppins', sans-serif; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 2000;
  background: rgba(250,250,248,.92); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%; height: 64px;
}
.logo { text-decoration: none; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.logo img { height: 36px; width: auto; display: block; }
.nav-links { display: flex; align-items: center; gap: 24px; }
.nav-right { display: flex; align-items: center; gap: 10px; }
.nav-links a { font-size: .875rem; font-weight: 500; color: var(--muted); text-decoration: none; transition: color .2s; }
.nav-links a:hover { color: var(--ink); }
/* ── LANG SWITCHER ── */
.lang-switcher {
  position: relative; display: flex; align-items: center;
}
.lang-btn {
  background: none; border: none; border-radius: 8px;
  cursor: pointer; display: flex; align-items: center; gap: 5px;
  padding: 7px 10px; color: var(--muted); font-size: .8rem; font-weight: 500;
  font-family: 'Inter', sans-serif; transition: color .2s;
}
.lang-btn:hover { color: var(--navy); }
.lang-btn svg { flex-shrink: 0; }
.lang-dropdown {
  display: none; position: absolute; top: calc(100% + 8px); right: 0;
  background: var(--white); border: 1px solid var(--border); border-radius: 10px;
  box-shadow: var(--card-shadow); min-width: 110px; overflow: hidden; z-index: 2100;
}
.lang-switcher.open .lang-dropdown { display: block; }
.lang-dropdown a {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 14px; font-size: .85rem; font-weight: 500;
  color: var(--ink); text-decoration: none; transition: background .15s;
}
.lang-dropdown a:hover { background: var(--navy-soft); }
.lang-dropdown a.active { color: var(--navy); font-weight: 700; }

.btn-map {
  background: var(--gold); color: var(--navy); font-family: 'Poppins', sans-serif;
  font-weight: 700; font-size: .85rem; padding: 9px 20px; border-radius: 8px;
  text-decoration: none; transition: background .2s, transform .15s; border: none; cursor: pointer;
  display: flex; align-items: center; gap: 6px; white-space: nowrap;
}
.btn-map:hover { background: var(--gold-dark); transform: translateY(-1px); }

/* ── HAMBURGER ── */
.nav-burger {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
  width: 36px; height: 36px; flex-shrink: 0;
}
.nav-burger span {
  display: block; width: 22px; height: 2px;
  background: var(--ink); border-radius: 2px; transition: all .25s;
}
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── MOBILE NAV DROPDOWN ── */
.mobile-nav {
  display: none; position: fixed; top: 64px; left: 0; right: 0; z-index: 1999;
  background: rgba(250,250,248,.97); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border); flex-direction: column; padding: 4px 0 12px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-size: .95rem; font-weight: 500; color: var(--ink);
  text-decoration: none; padding: 13px 5%;
  border-bottom: 1px solid var(--border); transition: color .2s;
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover { color: var(--navy); }
.mobile-nav .mobile-map-link { color: var(--gold) !important; font-weight: 700; border-top: 1px solid var(--border); }
.mobile-nav-lang {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 5%; border-top: 1px solid var(--border); margin-top: 4px;
}
.mobile-nav-lang span { font-size: .8rem; color: var(--muted); font-weight: 500; }
.mobile-nav-lang-links { display: flex; gap: 6px; }
.mobile-nav-lang-links a {
  font-size: .8rem; font-weight: 600; color: var(--muted);
  text-decoration: none; padding: 5px 10px; border-radius: 6px;
  border: 1px solid var(--border); transition: all .2s;
}
.mobile-nav-lang-links a:hover { border-color: var(--navy); color: var(--navy); }
.mobile-nav-lang-links a.active { background: var(--navy); color: #fff; border-color: var(--navy); }

/* ── HERO ── */
.hero {
  margin-top: 64px; padding: 90px 5% 120px;
  background: var(--ink); position: relative; overflow: hidden;
}
.hero-video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  z-index: 0; pointer-events: none;
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: rgba(0,0,0,.62);
}
.hero::after {
  content: ''; position: absolute;
  bottom: -2px; left: 0; right: 0; height: 60px;
  background: var(--bg); clip-path: ellipse(55% 100% at 50% 100%);
  z-index: 2;
}
.hero-inner { position: relative; z-index: 3; max-width: 780px; margin: 0 auto; text-align: center; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.4} }
.hero h1 { font-size: clamp(1.15rem, 3.5vw, 2.4rem); font-weight: 900; line-height: 1.2; color: #fff; margin-bottom: 20px; }
.hero h1 em { color: var(--gold); font-style: normal; }
[lang="ar"] .hero h1 { line-height: 1.6; }
.hero p { font-size: 1.1rem; color: #fff; white-space: nowrap; margin: 0 auto 40px; line-height: 1.7; }

/* ── Search toggle ── */
.search-mode-toggle {
  display: inline-flex; background: rgba(255,255,255,.15); border-radius: 50px;
  padding: 3px; margin-bottom: 12px; gap: 2px;
}
.smode-btn {
  display: flex; align-items: center; gap: 5px;
  padding: 7px 18px; border-radius: 50px; border: none;
  background: transparent; color: rgba(255,255,255,.75);
  font-size: .8rem; font-weight: 600; cursor: pointer;
  font-family: 'Poppins', sans-serif; transition: all .2s;
  white-space: nowrap;
}
.smode-btn.active { background: white; color: var(--navy); }

/* ── Search bar ── */
.search-wrap {
  background: #fff; border-radius: 16px; padding: 8px 8px 8px 16px;
  display: flex; align-items: center; gap: 8px; box-shadow: 0 8px 40px rgba(0,0,0,.3);
}
.search-input-row { display: flex; align-items: center; gap: 8px; flex: 1; min-width: 0; }
.search-wrap input { flex: 1; border: none; outline: none; font-family: 'Inter', sans-serif; font-size: 1rem; color: var(--ink); background: transparent; min-width: 0; }
.search-wrap input::placeholder { color: #9CA3AF; }
.search-select {
  border: none; outline: none; font-family: 'Inter', sans-serif; font-size: .9rem;
  color: var(--muted); background: transparent; padding: 0 10px;
  border-left: 1px solid var(--border); cursor: pointer; height: 40px; flex-shrink: 0;
}
.search-btn {
  background: var(--navy); color: #fff; border: none; padding: 12px 24px;
  border-radius: 10px; font-family: 'Poppins', sans-serif; font-weight: 600;
  font-size: .95rem; cursor: pointer; transition: background .2s; white-space: nowrap; flex-shrink: 0;
}
.search-btn:hover { background: var(--navy-dark); }

.popular-tags { margin-top: 18px; display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; }
.popular-tags span { font-size: .78rem; color: rgba(255,255,255,.5); line-height: 28px; }
.popular-tags a {
  font-size: .8rem; color: rgba(255,255,255,.75);
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.15);
  padding: 4px 12px; border-radius: 100px; text-decoration: none; transition: background .2s;
}
.popular-tags a:hover { background: rgba(255,255,255,.2); color: #fff; }

/* ── STATS ── */
.stats { display: flex; justify-content: center; gap: 60px; padding: 50px 5%; flex-wrap: wrap; }

/* ── Featured strip ── */
.featured-strip {
  background: var(--bg);
  padding: 32px 24px 40px;
}
.stat { text-align: center; }
.stat-num { font-family: 'Poppins', sans-serif; font-size: 2.2rem; font-weight: 800; color: var(--ink); }
.stat-num span { color: var(--gold); }
.stat-label { font-size: .85rem; color: var(--muted); margin-top: 2px; }

/* ── SECTIONS ── */
.section { padding: 80px 5%; }
.section-alt { background: var(--white); }
.section-header { text-align: center; margin-bottom: 52px; }
.section-header h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 800; margin-bottom: 10px; }
.section-header p { font-size: 1rem; color: var(--muted); max-width: 480px; margin: 0 auto; }
.section-header--left { text-align: left; }
.section-header--left p { margin: 0; }
[dir="rtl"] .section-header--left { text-align: right; }
.eyebrow { display: inline-block; font-size: .72rem; font-weight: 800; letter-spacing: .5px; text-transform: uppercase; background: #FFA800; color: #0f1f4b; padding: 3px 10px; border-radius: 50px; margin-bottom: 10px; }

/* ── CATEGORIES ── */
.cats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 16px; max-width: 1100px; margin: 0 auto; }
.cat-card {
  background: var(--white); border: 1.5px solid var(--border); border-radius: 14px;
  padding: 28px 16px 22px; text-align: center; text-decoration: none; color: var(--ink);
  transition: border-color .2s, box-shadow .2s, transform .2s;
}
.cat-card:hover { border-color: var(--gold); box-shadow: var(--card-shadow); transform: translateY(-3px); }
.cat-card:hover .cat-icon { background: var(--navy); }
.cat-card:hover .cat-icon svg { color: #fff; }
.cat-icon {
  width: 56px; height: 56px; background: var(--navy-soft); border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px; transition: background .2s;
}
.cat-icon svg { width: 26px; height: 26px; color: var(--navy); transition: color .2s; }
.cat-name { font-family: 'Poppins', sans-serif; font-size: .9rem; font-weight: 600; }
.cat-count { font-size: .75rem; color: var(--muted); margin-top: 3px; }

/* ── LISTINGS ── */
.listings-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; max-width: 1100px; margin: 0 auto; }
.listing-card {
  background: var(--white); border: 1px solid var(--border); border-radius: 16px;
  overflow: hidden; text-decoration: none; color: var(--ink);
  transition: box-shadow .2s, transform .2s; display: flex; flex-direction: column;
}
.listing-card:hover { box-shadow: 0 6px 32px rgba(0,0,0,.1); transform: translateY(-3px); }
.listing-thumb { height: 180px; position: relative; overflow: hidden; }
.listing-thumb .badge {
  position: absolute; top: 12px; left: 12px; background: var(--green); color: #fff;
  font-size: .7rem; font-weight: 700; padding: 3px 10px; border-radius: 100px;
}
.listing-thumb .badge-gold { background: var(--gold); color: var(--navy); }
.listing-body { padding: 18px 20px 20px; flex: 1; display: flex; flex-direction: column; gap: 8px; }
.listing-cat-tag { font-size: .72rem; font-weight: 600; color: var(--navy); text-transform: uppercase; letter-spacing: .06em; }
.listing-name { font-family: 'Poppins', sans-serif; font-size: 1.05rem; font-weight: 700; }
.listing-meta { font-size: .82rem; color: var(--muted); display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.listing-meta svg { width: 14px; height: 14px; flex-shrink: 0; }
.listing-meta span { display: flex; align-items: center; gap: 4px; }
.stars { color: #F59E0B; font-size: .85rem; }
.rating-text { color: var(--muted); font-size: .78rem; }
.thumb-rest   { background: linear-gradient(135deg, #FDE8C8, #FBBF7C); }
.thumb-salon  { background: linear-gradient(135deg, #EDE9FE, #A78BFA); }
.thumb-repair { background: linear-gradient(135deg, #D1FAE5, #6EE7B7); }
.thumb-hotel  { background: linear-gradient(135deg, #DBEAFE, #93C5FD); }
.thumb-market { background: linear-gradient(135deg, #FCE7F3, #F9A8D4); }
.thumb-clinic { background: linear-gradient(135deg, #E0F2FE, #7DD3FC); }
.thumb-icon { font-size: 4rem; display: flex; align-items: center; justify-content: center; height: 100%; }

/* ── HOW IT WORKS ── */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 32px; max-width: 900px; margin: 0 auto; }
.step { text-align: center; }
.step-num {
  width: 56px; height: 56px; border-radius: 50%; background: var(--navy); color: #fff;
  font-family: 'Poppins', sans-serif; font-weight: 800; font-size: 1.3rem;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 20px;
}
.step h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; }
.step p { font-size: .88rem; color: var(--muted); line-height: 1.6; }

/* ── CTA BANNER ── */
.cta-banner {
  background: var(--ink); color: #fff; border-radius: 24px;
  padding: 60px 48px; text-align: center; max-width: 1100px;
  margin: 0 auto; position: relative; overflow: hidden;
}
.cta-banner h2 { font-size: clamp(1.8rem, 4vw, 2.5rem); font-weight: 800; margin-bottom: 14px; }
.cta-banner > p { font-size: 1rem; color: rgba(255,255,255,.65); margin-bottom: 32px; max-width: 440px; margin-left: auto; margin-right: auto; }
.cta-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.btn-primary {
  background: var(--gold); color: var(--navy); font-family: 'Poppins', sans-serif;
  font-weight: 700; padding: 14px 32px; border-radius: 10px; text-decoration: none;
  transition: background .2s, transform .15s; border: none; cursor: pointer; font-size: .95rem;
}
.btn-primary:hover { background: var(--gold-dark); transform: translateY(-1px); }
.btn-ghost {
  background: transparent; color: rgba(255,255,255,.8); font-family: 'Poppins', sans-serif;
  font-weight: 600; padding: 14px 32px; border-radius: 10px; text-decoration: none;
  border: 1.5px solid rgba(255,255,255,.25); transition: background .2s; font-size: .95rem;
}
.btn-ghost:hover { background: rgba(255,255,255,.08); color: #fff; }

/* ── FOOTER ── */
footer { background: var(--ink); color: rgba(255,255,255,.6); padding: 56px 5% 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; max-width: 1100px; margin: 0 auto 48px; }
.footer-brand { display: flex; flex-direction: column; align-items: flex-start; }
.footer-brand p { font-size: .875rem; line-height: 1.7; margin-top: 12px; max-width: 280px; }
.footer-map-cta { display: inline-block; margin-top: 16px; background: #FFA800; color: #1a1a1a; font-weight: 700; font-size: .82rem; padding: 9px 18px; border-radius: 20px; text-decoration: none; transition: background .2s, transform .15s; white-space: nowrap; }
.footer-map-cta:hover { background: #ffb829; transform: translateY(-1px); }
.footer-col h4 { font-family: 'Poppins', sans-serif; font-weight: 600; font-size: .9rem; color: #fff; margin-bottom: 16px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { font-size: .85rem; color: rgba(255,255,255,.55); text-decoration: none; transition: color .2s; }
.footer-col ul a:hover { color: #fff; }
.footer-bottom {
  max-width: 1100px; margin: 0 auto; padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.1);
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: .8rem; }

/* ── INNER PAGE HEADER ── */
.page-hero {
  position: relative; color: #fff;
  padding: 100px 5% 56px; text-align: center;
  background: url('/frontend/images/title-opt.jpg') center center/cover no-repeat;
  isolation: isolate;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: #0f1f4b; opacity: .82; z-index: -1;
}
.page-hero h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 800; margin-bottom: 12px; }
.page-hero p { font-size: 1rem; color: rgba(255,255,255,.7); max-width: 520px; margin: 0 auto; }
.breadcrumb { font-size: .8rem; color: rgba(255,255,255,.5); margin-bottom: 18px; }
.breadcrumb a { color: var(--gold); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }

/* ── PROSE ── */
.page-body { max-width: 820px; margin: 0 auto; padding: 64px 5%; }
.page-body h2 { font-size: 1.35rem; font-weight: 700; color: var(--navy); margin: 40px 0 12px; }
.page-body h2:first-child { margin-top: 0; }
.page-body p, .page-body li { font-size: .95rem; line-height: 1.8; color: #374151; }
.page-body ul { padding-left: 20px; margin: 12px 0; }
.page-body li { margin-bottom: 6px; }
.page-body a { color: var(--navy); font-weight: 500; }
.page-body strong { color: var(--ink); }

/* ── ABOUT ── */
.about-values { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 24px; margin: 32px 0; }
.value-card { background: var(--navy-soft); border-radius: 14px; padding: 28px 22px; text-align: center; }
.value-card .icon { font-size: 2rem; margin-bottom: 12px; }
.value-card h3 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.value-card p { font-size: .875rem; color: var(--muted); line-height: 1.6; }

/* ── SERVICES ── */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 28px; max-width: 1100px; margin: 0 auto; }
.service-card { background: var(--white); border: 1px solid var(--border); border-radius: 16px; padding: 36px 28px; box-shadow: var(--card-shadow); }
.service-card .badge { display: inline-block; font-size: .72rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; border-radius: 6px; padding: 4px 10px; margin-bottom: 18px; }
.badge-free { background: #D1FAE5; color: #065F46; }
.badge-premium { background: #FFF3CD; color: #92400E; }
.service-card h3 { font-size: 1.15rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.service-card p { font-size: .9rem; line-height: 1.7; color: var(--muted); margin-bottom: 18px; }
.service-card ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.service-card ul li { font-size: .875rem; color: #374151; padding-left: 20px; position: relative; }
.service-card ul li::before { content: '✓'; position: absolute; left: 0; color: var(--gold); font-weight: 700; }

/* ── SERVICES SECTIONS ── */
.services-section { padding: 56px 5%; }
.services-section-alt { background: var(--navy-soft); }
.services-section-header { text-align: center; margin-bottom: 36px; }
.services-section-header h2 { font-size: 1.6rem; font-weight: 800; color: var(--navy); margin-bottom: 8px; }
.services-section-header p { font-size: .95rem; color: var(--muted); }
.services-full { max-width: 1100px; margin: 0 auto; }
.service-card-wide { display: grid; grid-template-columns: 1fr 1fr; gap: 28px 48px; align-items: start; }
.service-card-wide h3 { grid-column: 1 / -1; font-size: 1.3rem; }
.service-card-wide .badge { grid-column: 1 / -1; justify-self: start; }
.service-card-wide > p { grid-column: 1; }
.service-list-inline { grid-column: 2; margin: 0; }

/* ── CONTACT FORM ── */
.contact-wrap { display: grid; grid-template-columns: 1fr 1.6fr; gap: 60px; max-width: 1000px; margin: 0 auto; padding: 64px 5%; align-items: start; }
.contact-info h2 { font-size: 1.3rem; font-weight: 700; color: var(--navy); margin-bottom: 14px; }
.contact-info p { font-size: .9rem; line-height: 1.75; color: var(--muted); margin-bottom: 28px; }
.contact-detail { display: flex; align-items: center; gap: 8px; margin-bottom: 18px; direction: ltr; }
.contact-detail svg { flex-shrink: 0; color: var(--gold); margin-top: 2px; }
.contact-detail p { font-size: .875rem; color: #374151; margin: 0; line-height: 1; display: flex; align-items: center; }
.contact-form { background: var(--white); border: 1px solid var(--border); border-radius: 16px; padding: 36px; box-shadow: var(--card-shadow); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.form-group label { font-size: .85rem; font-weight: 600; color: var(--ink); }
.form-group input, .form-group select, .form-group textarea {
  border: 1px solid var(--border); border-radius: 8px; padding: 10px 14px;
  font-size: .9rem; font-family: 'Inter', sans-serif; color: var(--ink);
  background: var(--bg); transition: border-color .2s;
  width: 100%;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--navy); box-shadow: 0 0 0 3px rgba(25,55,109,.08);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.btn-submit {
  background: var(--navy); color: #fff; font-family: 'Poppins', sans-serif;
  font-weight: 700; font-size: .9rem; padding: 12px 32px; border-radius: 8px;
  border: none; cursor: pointer; width: 100%; transition: background .2s;
}
.btn-submit:hover { background: var(--navy-dark); }
.form-notice { font-size: .8rem; color: var(--muted); margin-top: 10px; text-align: center; }
.alert { border-radius: 10px; padding: 14px 18px; margin-bottom: 20px; font-size: .9rem; font-weight: 500; }
.alert-success { background: #D1FAE5; color: #065F46; border: 1px solid #6EE7B7; }
.alert-error { background: #FEE2E2; color: #991B1B; border: 1px solid #FCA5A5; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .nav-links { display: none; }
  .nav-right { display: none; }
  .nav-burger { display: flex; }
}
@media (max-width: 768px) {
  .hero { padding: 40px 5% 60px; }
  .hero p { white-space: normal; }
  .search-wrap { flex-direction: column; padding: 16px; gap: 12px; }
  .search-input-row { width: 100%; }
  .search-wrap input { font-size: 1.05rem; padding: 4px 0; }
  .search-select { border-left: none; border-top: 1px solid var(--border); padding: 12px 4px; width: 100%; height: auto; font-size: .95rem; }
  .search-btn { width: 100%; padding: 15px; font-size: 1rem; }
  .smode-btn { padding: 6px 14px; font-size: .75rem; }
  .stats { gap: 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .cta-banner { padding: 40px 24px; }
  .service-card-wide { grid-template-columns: 1fr; }
  .service-card-wide > p, .service-list-inline { grid-column: 1; }
  .contact-wrap { grid-template-columns: 1fr; gap: 32px; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .page-hero { padding: 90px 5% 40px; }
  .contact-form { padding: 24px 18px; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  #bizSlider #bizSlides > div { aspect-ratio: unset; height: 280px; }
  .hero h1 { font-size: 1.55rem; }
}
