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

:root {
  --mobile-panel-top: var(--header-h);
  --navy: #08233a;
  --navy-2: #0d314d;
  --teal: #0b9d8d;
  --teal-dark: #087a70;
  --teal-soft: #eaf8f6;
  --mint: #dff5f1;
  --coral: #ff6f61;
  --amber: #ffad2f;
  --blue: #4c8df6;
  --pink: #f05aa6;
  --green: #63a95c;
  --text: #173047;
  --muted: #6d8192;
  --line: #e5edf2;
  --surface: #ffffff;
  --surface-2: #f7fafc;
  --shadow-xs: 0 4px 14px rgba(8, 35, 58, .06);
  --shadow-sm: 0 10px 30px rgba(8, 35, 58, .09);
  --shadow-md: 0 18px 45px rgba(8, 35, 58, .13);
  --radius-sm: 12px;
  --radius: 18px;
  --radius-lg: 26px;
  --container: 1320px;
  --header-h: 78px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Manrope', Arial, sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
img { max-width: 100%; display: block; }
svg.icon { width: 1.1em; height: 1.1em; display: inline-block; vertical-align: -0.15em; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { padding: 84px 0; }
.section-sm { padding: 58px 0; }
.bg-soft { background: var(--surface-2); }
.bg-mint { background: linear-gradient(180deg, #f4fcfb 0%, #eaf8f6 100%); }
.text-center { text-align: center; }
.hidden { display: none !important; }

.skip-link {
  position: fixed;
  left: 16px;
  top: -100px;
  z-index: 9999;
  background: #fff;
  color: var(--navy);
  padding: 10px 14px;
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
}
.skip-link:focus { top: 16px; }

.svg-sprite { position: absolute; width: 0; height: 0; overflow: hidden; pointer-events: none; }

.utility-bar {
  position: relative;
  z-index: 1002;
  min-height: 38px;
  background: #071f34;
  color: rgba(255,255,255,.86);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.utility-inner { min-height: 38px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.utility-left { display: flex; align-items: center; gap: 20px; min-width: 0; }
.utility-left > * { position: relative; }
.utility-left > * + *::before { content: ''; position: absolute; left: -10px; top: 50%; width: 1px; height: 14px; background: rgba(255,255,255,.18); transform: translateY(-50%); }
.utility-slogan { font-size: 11px; font-weight: 700; color: #fff; white-space: nowrap; }
.utility-left a { display: inline-flex; align-items: center; gap: 7px; font-size: 10px; font-weight: 650; color: rgba(255,255,255,.78); white-space: nowrap; }
.utility-left a:hover { color: #fff; }
.utility-left .icon { width: 14px; height: 14px; color: #55d5c6; }
.utility-socials { display: flex; align-items: center; gap: 6px; flex: 0 0 auto; }
.utility-socials a { width: 27px; height: 27px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.16); border-radius: 50%; color: #fff; transition: .2s ease; }
.utility-socials a:hover { border-color: var(--teal); background: var(--teal); transform: translateY(-1px); }
.utility-socials .icon { width: 13px; height: 13px; }

.announcement-bar { position: relative; z-index: 1001; height: 28px; overflow: hidden; background: linear-gradient(90deg, #0a8078, #16a897); color: #fff; }
.announcement-window { position: relative; width: 100%; height: 100%; overflow: hidden; }
.announcement-text { position: absolute; top: 50%; left: 100%; display: inline-flex; align-items: center; white-space: nowrap; font-size: 10px; font-weight: 750; letter-spacing: .15px; transform: translateY(-50%); animation: announcement-marquee 18s linear infinite; }
.announcement-text::before { content: '•'; margin-right: 10px; font-size: 16px; color: #d9fff9; }
@keyframes announcement-marquee { from { transform: translate(0,-50%); } to { transform: translate(calc(-100vw - 100%),-50%); } }
@media (prefers-reduced-motion: reduce) { .announcement-text { left: 50%; animation: none; transform: translate(-50%,-50%); } }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-h);
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(229, 237, 242, .9);
  transition: .25s ease;
}
.site-header.scrolled { box-shadow: 0 12px 32px rgba(8, 35, 58, .08); }
.header-inner {
  height: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 34px;
}
.brand { display: inline-flex; align-items: center; gap: 10px; min-width: max-content; }
.brand-mark { width: 36px; height: 44px; color: var(--teal); }
.brand-copy { line-height: 1.05; }
.brand-copy strong { display: block; font-size: 20px; letter-spacing: -.5px; color: var(--navy); }
.brand-copy span { display: block; margin-top: 5px; color: var(--muted); font-size: 10px; font-weight: 600; }
.nav { display: flex; justify-content: center; align-items: center; gap: 29px; }
.nav a { position: relative; font-size: 13px; font-weight: 700; color: #334d62; }
.nav a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -28px;
  height: 3px;
  border-radius: 99px 99px 0 0;
  background: var(--teal);
  transition: .2s ease;
}
.nav a:hover, .nav a.active { color: var(--teal-dark); }
.nav a:hover::after, .nav a.active::after { right: 0; }
.header-actions { display: flex; align-items: center; gap: 10px; }
.icon-link { display: inline-flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 700; color: #385165; }
.icon-link:hover { color: var(--teal-dark); }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 10px;
  border: 1px solid transparent;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: -.1px;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: #fff; background: var(--teal); box-shadow: 0 8px 20px rgba(11, 157, 141, .25); }
.btn-primary:hover { background: var(--teal-dark); box-shadow: 0 12px 26px rgba(11, 157, 141, .3); }
.btn-outline { color: var(--navy); background: #fff; border-color: #b9c8d3; }
.btn-outline:hover { border-color: var(--teal); color: var(--teal-dark); }
.btn-coral { color: #fff; background: var(--coral); box-shadow: 0 8px 20px rgba(255, 111, 97, .25); }
.btn-sm { min-height: 38px; padding-inline: 14px; border-radius: 9px; }
.btn-block { width: 100%; }
.mobile-toggle { display: none; width: 44px; height: 44px; border: 1px solid var(--line); background: #fff; color: var(--navy); border-radius: 10px; }
.mobile-panel { display: none; }

.hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: visible;
  background:
    linear-gradient(90deg, rgba(7, 30, 50, .74) 0%, rgba(7, 30, 50, .34) 46%, rgba(7, 30, 50, .12) 100%),
    url('https://images.unsplash.com/photo-1527838832700-5059252407fa?auto=format&fit=crop&w=2000&q=86') center 48% / cover no-repeat;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 35, 58, .06), rgba(8, 35, 58, .18));
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 2; padding: 72px 0 102px; }
.hero-copy { max-width: 760px; color: #fff; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #d3fffa;
}
.eyebrow::before { content: ''; width: 30px; height: 2px; background: #6ce1d6; border-radius: 99px; }
.hero h1 { margin: 0 0 15px; font-size: clamp(42px, 5vw, 70px); line-height: 1.06; letter-spacing: -2.7px; max-width: 780px; }
.hero p { max-width: 620px; margin: 0 0 28px; font-size: 17px; color: rgba(255,255,255,.9); }
.search-shell {
  width: min(100%, 1080px);
  display: grid;
  grid-template-columns: 1.5fr 1.1fr 1.1fr auto;
  gap: 10px;
  padding: 10px;
  border-radius: 16px;
  background: rgba(255,255,255,.98);
  box-shadow: 0 20px 50px rgba(5, 23, 37, .26);
}
.search-field {
  min-height: 58px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 16px;
  border: 1px solid #dfe8ed;
  border-radius: 11px;
  background: #fff;
  color: var(--muted);
}
.search-field svg { flex: 0 0 auto; color: var(--navy-2); font-size: 20px; }
.search-field input, .search-field select {
  min-width: 0;
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--text);
  font-size: 13px;
  appearance: none;
}
.search-field select { cursor: pointer; }
.search-submit { min-width: 120px; min-height: 58px; font-size: 13px; border-radius: 11px; }
.hero-stats { display: flex; gap: 26px; flex-wrap: wrap; margin-top: 22px; color: rgba(255,255,255,.88); font-size: 12px; font-weight: 700; }
.hero-stat { display: inline-flex; align-items: center; gap: 7px; }
.hero-stat svg { color: #82e9df; font-size: 17px; }
.category-dock-wrap { position: relative; z-index: 10; margin-top: -48px; }
.category-dock {
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  gap: 4px;
  padding: 15px 18px;
  border: 1px solid rgba(229,237,242,.9);
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow-md);
}
.category-item { position: relative; min-width: 0; text-align: center; padding: 8px 4px; border-radius: 12px; transition: .2s ease; }
.category-item:hover { background: var(--teal-soft); transform: translateY(-2px); }
.category-item::after { content: ''; position: absolute; right: -2px; top: 14px; bottom: 14px; width: 1px; background: var(--line); }
.category-item:last-child::after { display: none; }
.category-icon { width: 46px; height: 46px; margin: 0 auto 8px; display: grid; place-items: center; border-radius: 50%; background: #f0f7f7; color: var(--teal-dark); font-size: 24px; }
.category-item > span:not(.category-icon) { display: block; font-size: 11px; line-height: 1.25; font-weight: 700; color: #425a6d; }
.category-icon .icon { width: 24px; height: 24px; }

.section-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 30px; }
.section-title-wrap { max-width: 660px; }
.section-kicker { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 7px; color: var(--teal); font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 1.4px; }
.section-kicker::before { content: ''; width: 24px; height: 2px; background: currentColor; border-radius: 99px; }
.section-title { margin: 0; color: var(--navy); font-size: clamp(28px, 3vw, 38px); line-height: 1.18; letter-spacing: -1.2px; }
.section-desc { margin: 8px 0 0; color: var(--muted); font-size: 14px; }
.view-all { white-space: nowrap; }

.featured-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; }
.firm-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-xs);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.firm-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: rgba(11,157,141,.35); }
.firm-image { position: relative; aspect-ratio: 1.45; overflow: hidden; background: #eaf0f4; }
.firm-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.firm-card:hover .firm-image img { transform: scale(1.055); }
.badge {
  position: absolute;
  left: 12px;
  top: 12px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 10px;
  border-radius: 99px;
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  box-shadow: 0 5px 14px rgba(0,0,0,.15);
}
.badge.orange { background: #f7941d; }
.badge.pink { background: var(--pink); }
.badge.blue { background: var(--blue); }
.badge.green { background: var(--green); }
.badge.teal { background: var(--teal); }
.badge.navy { background: var(--navy); }
.card-favorite {
  position: absolute;
  right: 12px;
  top: 12px;
  z-index: 3;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,.94);
  color: var(--navy);
  box-shadow: 0 6px 18px rgba(8,35,58,.16);
}
.card-favorite.active { color: var(--coral); }
.card-favorite svg { font-size: 20px; }
.firm-body { padding: 17px; }
.firm-title { margin: 0 0 6px; color: var(--navy); font-size: 16px; letter-spacing: -.35px; }
.firm-location { display: flex; align-items: center; gap: 5px; color: var(--muted); font-size: 11px; }
.firm-location svg { color: var(--teal); }
.firm-meta { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-top: 14px; }
.rating { display: inline-flex; align-items: center; gap: 5px; color: #5f7282; font-size: 11px; }
.rating svg { color: var(--amber); }
.rating strong { color: var(--navy); }
.card-action { min-height: 36px; padding-inline: 13px; border-radius: 8px; }

.latest-grid { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 16px; }
.compact-card { overflow: hidden; border: 1px solid var(--line); border-radius: 14px; background: #fff; box-shadow: var(--shadow-xs); transition: .22s ease; }
.compact-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.compact-img { position: relative; aspect-ratio: 1.55; overflow: hidden; background: #edf3f6; }
.compact-img img { width: 100%; height: 100%; object-fit: cover; transition: .4s ease; }
.compact-card:hover .compact-img img { transform: scale(1.05); }
.compact-fav { position: absolute; right: 8px; top: 8px; width: 30px; height: 30px; border: 0; border-radius: 50%; display: grid; place-items: center; color: var(--navy); background: rgba(255,255,255,.94); }
.compact-fav.active { color: var(--coral); }
.compact-body { padding: 12px; }
.compact-body h3 { margin: 0 0 3px; font-size: 12px; line-height: 1.3; color: var(--navy); }
.compact-category { font-size: 9px; color: var(--teal-dark); font-weight: 700; }
.compact-location { margin-top: 4px; font-size: 9px; color: var(--muted); }
.compact-rating { margin-top: 6px; font-size: 9px; display: flex; align-items: center; gap: 4px; color: var(--navy); }
.compact-rating svg { color: var(--amber); }

.steps-wrap { position: relative; }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; position: relative; z-index: 2; }
.steps-line { position: absolute; left: 16%; right: 16%; top: 50%; height: 2px; border-top: 2px dashed #8fd8d0; z-index: 1; opacity: .8; }
.step-card { position: relative; display: grid; grid-template-columns: auto 1fr; align-items: center; gap: 17px; min-height: 130px; padding: 26px; border: 1px solid #dceeed; border-radius: 18px; background: rgba(255,255,255,.96); box-shadow: var(--shadow-sm); }
.step-num { position: absolute; left: 15px; top: 13px; width: 32px; height: 32px; display: grid; place-items: center; border-radius: 50%; background: var(--teal); color: #fff; font-weight: 800; font-size: 12px; }
.step-icon { width: 68px; height: 68px; display: grid; place-items: center; border-radius: 22px 22px 22px 7px; background: var(--teal-soft); color: var(--teal); font-size: 32px; }
.step-card h3 { margin: 0 0 5px; font-size: 16px; color: var(--navy); }
.step-card p { margin: 0; color: var(--muted); font-size: 12px; }

.scroller { position: relative; }
.scroller-track { display: grid; grid-auto-flow: column; grid-auto-columns: minmax(190px, 1fr); gap: 15px; overflow-x: auto; scrollbar-width: none; scroll-behavior: smooth; padding-bottom: 6px; }
.scroller-track::-webkit-scrollbar { display: none; }
.city-card { overflow: hidden; border: 1px solid var(--line); border-radius: 14px; background: #fff; box-shadow: var(--shadow-xs); }
.city-image { aspect-ratio: 1.65; overflow: hidden; background: #edf3f6; }
.city-image img { width: 100%; height: 100%; object-fit: cover; transition: .5s ease; }
.city-card:hover .city-image img { transform: scale(1.055); }
.city-copy { padding: 12px; text-align: center; }
.city-copy h3 { margin: 0; font-size: 13px; color: var(--navy); }
.city-copy span { display: block; margin-top: 2px; color: var(--muted); font-size: 9px; }
.scroller-controls { display: flex; gap: 8px; }
.round-btn { width: 40px; height: 40px; border: 1px solid #b9c8d3; border-radius: 10px; background: #fff; color: var(--navy); display: grid; place-items: center; }
.round-btn:hover { color: var(--teal); border-color: var(--teal); }
.round-btn.prev svg { transform: rotate(180deg); }

.blog-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 20px; }
.blog-card { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: var(--shadow-xs); transition: .25s ease; }
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.blog-image { aspect-ratio: 1.62; overflow: hidden; background: #edf3f6; }
.blog-image img { width: 100%; height: 100%; object-fit: cover; transition: .5s ease; }
.blog-card:hover .blog-image img { transform: scale(1.05); }
.blog-body { padding: 17px; }
.blog-meta { display: flex; gap: 10px; flex-wrap: wrap; color: var(--muted); font-size: 9px; }
.blog-card h3 { margin: 9px 0 12px; font-size: 15px; line-height: 1.42; color: var(--navy); letter-spacing: -.25px; }
.text-link { display: inline-flex; align-items: center; gap: 7px; color: var(--teal-dark); font-size: 11px; font-weight: 800; }
.text-link:hover { color: var(--coral); }

.cta-band { margin-top: 10px; }
.cta-card { position: relative; overflow: hidden; display: grid; grid-template-columns: 1.2fr auto; align-items: center; gap: 30px; padding: 42px 48px; border-radius: 24px; color: #fff; background: linear-gradient(120deg, var(--navy) 0%, #0b4868 58%, var(--teal-dark) 100%); box-shadow: var(--shadow-md); }
.cta-card::after { content: ''; position: absolute; width: 280px; height: 280px; border-radius: 50%; right: -80px; top: -150px; background: rgba(255,255,255,.08); }
.cta-card h2 { margin: 0 0 8px; font-size: 31px; line-height: 1.2; letter-spacing: -.8px; }
.cta-card p { margin: 0; color: rgba(255,255,255,.78); max-width: 720px; font-size: 13px; }
.cta-actions { display: flex; gap: 10px; position: relative; z-index: 2; }
.cta-card .btn-outline { background: rgba(255,255,255,.06); color: #fff; border-color: rgba(255,255,255,.45); }

.site-footer { margin-top: 86px; color: rgba(255,255,255,.74); background: #062238; }
.footer-top { padding: 64px 0 42px; display: grid; grid-template-columns: 1.4fr .8fr .8fr .8fr 1.35fr; gap: 44px; }
.footer-brand .brand-copy strong { color: #fff; }
.footer-brand .brand-copy span { color: rgba(255,255,255,.58); }
.footer-brand p { max-width: 280px; margin: 18px 0; font-size: 12px; }
.socials { display: flex; gap: 8px; }
.socials a { width: 34px; height: 34px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.12); border-radius: 50%; background: rgba(255,255,255,.08); color: #fff; transition: .2s ease; }
.socials .icon { width: 16px; height: 16px; color: #fff; }
.socials a:hover { background: var(--teal); transform: translateY(-2px); }
.footer-col h3 { margin: 0 0 16px; color: #fff; font-size: 13px; }
.footer-links { display: grid; gap: 9px; }
.footer-links a { font-size: 11px; color: rgba(255,255,255,.68); }
.footer-links a:hover { color: #fff; }
.newsletter p { margin: 0 0 14px; font-size: 11px; }
.newsletter-form { display: grid; grid-template-columns: 1fr auto; gap: 8px; }
.newsletter-form input { min-width: 0; height: 42px; padding: 0 13px; border: 1px solid rgba(255,255,255,.14); border-radius: 9px; background: #fff; outline: 0; color: var(--navy); font-size: 11px; }
.footer-bottom { min-height: 68px; display: flex; align-items: center; justify-content: space-between; gap: 20px; border-top: 1px solid rgba(255,255,255,.1); font-size: 10px; }
.country-select { display: inline-flex; align-items: center; gap: 8px; min-width: 145px; height: 36px; padding: 0 12px; border: 1px solid rgba(255,255,255,.12); border-radius: 9px; }
.flag { font-size: 16px; }

.page-hero { position: relative; padding: 76px 0; color: #fff; background: linear-gradient(120deg, #08233a 0%, #0d4968 62%, #0b9d8d 100%); overflow: hidden; }
.page-hero::after { content: ''; position: absolute; width: 340px; height: 340px; border-radius: 50%; right: -90px; top: -190px; background: rgba(255,255,255,.08); }
.page-hero h1 { margin: 0 0 12px; font-size: clamp(38px, 5vw, 58px); line-height: 1.08; letter-spacing: -2px; }
.page-hero p { margin: 0; max-width: 720px; color: rgba(255,255,255,.8); }
.breadcrumb { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 14px; font-size: 11px; color: rgba(255,255,255,.7); }
.breadcrumb a:hover { color: #fff; }

.content-grid { display: grid; grid-template-columns: 300px 1fr; gap: 28px; align-items: start; }
.sidebar { position: sticky; top: calc(var(--header-h) + 24px); display: grid; gap: 18px; }
.panel { padding: 22px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: var(--shadow-xs); }
.panel h3 { margin: 0 0 16px; font-size: 15px; color: var(--navy); }
.filter-group + .filter-group { margin-top: 18px; padding-top: 18px; border-top: 1px solid var(--line); }
.filter-group label { display: flex; align-items: center; gap: 9px; margin: 9px 0; color: #506778; font-size: 12px; cursor: pointer; }
.filter-group input[type="checkbox"], .filter-group input[type="radio"] { accent-color: var(--teal); }
.range-row { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.field { display: grid; gap: 7px; }
.field label { color: var(--navy); font-size: 11px; font-weight: 700; }
.input, textarea.input, select.input { width: 100%; min-height: 46px; border: 1px solid #d8e3e9; border-radius: 10px; background: #fff; color: var(--text); outline: 0; padding: 0 13px; font-size: 12px; }
textarea.input { min-height: 130px; padding-top: 13px; resize: vertical; }
.input:focus { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(11,157,141,.1); }
.listing-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 18px; margin-bottom: 20px; }
.listing-toolbar p { margin: 0; color: var(--muted); font-size: 12px; }
.listing-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 18px; }
.pagination { display: flex; justify-content: center; gap: 8px; margin-top: 34px; }
.page-btn { min-width: 40px; height: 40px; border: 1px solid var(--line); border-radius: 10px; background: #fff; color: var(--navy); font-weight: 700; }
.page-btn.active, .page-btn:hover { background: var(--teal); color: #fff; border-color: var(--teal); }

.category-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 20px; }
.category-card { position: relative; overflow: hidden; min-height: 210px; padding: 26px; border: 1px solid var(--line); border-radius: 20px; background: linear-gradient(145deg,#fff,#f5fafb); box-shadow: var(--shadow-xs); }
.category-card::after { content: ''; position: absolute; width: 120px; height: 120px; border-radius: 50%; right: -45px; top: -35px; background: var(--teal-soft); }
.category-card .category-icon { margin: 0 0 22px; position: relative; z-index: 2; width: 58px; height: 58px; border-radius: 18px; font-size: 29px; }
.category-card h3 { margin: 0 0 6px; font-size: 18px; color: var(--navy); }
.category-card p { margin: 0 0 18px; color: var(--muted); font-size: 12px; }

.detail-layout { display: grid; grid-template-columns: minmax(0,1.6fr) minmax(320px,.72fr); gap: 28px; align-items: start; }
.gallery-main { aspect-ratio: 1.75; overflow: hidden; border-radius: 22px; background: #edf3f6; }
.gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.gallery-thumbs { display: grid; grid-template-columns: repeat(4,1fr); gap: 10px; margin-top: 10px; }
.gallery-thumbs button { border: 2px solid transparent; padding: 0; border-radius: 12px; overflow: hidden; background: #eef3f5; }
.gallery-thumbs button.active { border-color: var(--teal); }
.gallery-thumbs img { width: 100%; aspect-ratio: 1.45; object-fit: cover; }
.detail-card { padding: 24px; border: 1px solid var(--line); border-radius: 20px; background: #fff; box-shadow: var(--shadow-sm); }
.detail-card h1 { margin: 0 0 8px; font-size: 29px; line-height: 1.2; color: var(--navy); }
.detail-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 16px; }
.pill { display: inline-flex; align-items: center; min-height: 28px; padding: 0 10px; border-radius: 99px; background: var(--teal-soft); color: var(--teal-dark); font-size: 10px; font-weight: 700; }
.info-list { display: grid; gap: 12px; margin: 20px 0; }
.info-row { display: grid; grid-template-columns: 38px minmax(0,1fr); gap: 12px; align-items: center; min-height: 42px; }
.info-row-icon { width: 38px; height: 38px; display: grid; place-items: center; align-self: center; border-radius: 11px; background: var(--teal-soft); color: var(--teal); }
.info-row-icon .icon { width: 18px; height: 18px; }
.info-row > div { min-width: 0; display: grid; gap: 3px; align-content: center; }
.info-row strong { display: block; margin: 0; font-size: 11px; line-height: 1.25; color: var(--navy); }
.info-row > div > span, .info-row > div > a { display: block; min-width: 0; color: var(--muted); font-size: 11px; line-height: 1.45; overflow-wrap: anywhere; }
.tab-nav { display: flex; gap: 8px; flex-wrap: wrap; border-bottom: 1px solid var(--line); margin: 28px 0 22px; }
.tab-btn { border: 0; border-bottom: 3px solid transparent; padding: 12px 14px; background: transparent; color: var(--muted); font-size: 12px; font-weight: 700; }
.tab-btn.active { color: var(--teal-dark); border-color: var(--teal); }
.tab-panel { display: none; }
.tab-panel.active { display: block; }
.prose h2, .prose h3 { color: var(--navy); }
.prose p { color: #52697a; font-size: 14px; }
.prose ul { color: #52697a; font-size: 14px; padding-left: 20px; }
.hours-table { width: 100%; border-collapse: collapse; font-size: 12px; }
.hours-table td { padding: 11px 0; border-bottom: 1px solid var(--line); }
.hours-table td:last-child { text-align: right; font-weight: 700; color: var(--navy); }

.form-card { padding: 28px; border: 1px solid var(--line); border-radius: 20px; background: #fff; box-shadow: var(--shadow-sm); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-grid .full { grid-column: 1 / -1; }
.form-note { margin: 14px 0 0; color: var(--muted); font-size: 10px; }
.contact-grid { display: grid; grid-template-columns: .85fr 1.25fr; gap: 28px; }
.contact-stack { display: grid; gap: 16px; }
.contact-box { display: grid; grid-template-columns: 48px 1fr; gap: 14px; align-items: center; padding: 20px; border: 1px solid var(--line); border-radius: 16px; background: #fff; box-shadow: var(--shadow-xs); }
.contact-box-icon { width: 48px; height: 48px; border-radius: 14px; display: grid; place-items: center; background: var(--teal-soft); color: var(--teal); font-size: 22px; }
.contact-box h3 { margin: 0 0 3px; font-size: 14px; color: var(--navy); }
.contact-box p { margin: 0; color: var(--muted); font-size: 11px; }
.map-placeholder { min-height: 280px; border-radius: 18px; overflow: hidden; background: linear-gradient(135deg,#dff5f1,#dfeaf5); display: grid; place-items: center; color: var(--navy); }
.auth-wrap { min-height: calc(100vh - var(--header-h)); display: grid; grid-template-columns: 1fr 1fr; }
.auth-visual { position: relative; min-height: 680px; background: linear-gradient(rgba(8,35,58,.25),rgba(8,35,58,.65)), url('https://images.unsplash.com/photo-1521737711867-e3b97375f902?auto=format&fit=crop&w=1400&q=84') center/cover no-repeat; }
.auth-visual-copy { position: absolute; left: 9%; right: 9%; bottom: 10%; color: #fff; }
.auth-visual-copy h2 { margin: 0 0 10px; font-size: 42px; line-height: 1.12; letter-spacing: -1.5px; }
.auth-panel { display: grid; place-items: center; padding: 50px; background: #f8fbfc; }
.auth-card { width: min(100%, 480px); }
.auth-card h1 { margin: 0 0 8px; font-size: 34px; color: var(--navy); }
.auth-card > p { margin: 0 0 25px; color: var(--muted); font-size: 13px; }
.password-wrap { position: relative; }
.password-toggle { position: absolute; right: 8px; top: 50%; transform: translateY(-50%); width: 36px; height: 36px; border: 0; background: transparent; color: var(--muted); }
.checkbox-line { display: flex; align-items: center; justify-content: space-between; gap: 15px; margin: 12px 0 18px; font-size: 11px; }
.checkbox-line label { display: flex; align-items: center; gap: 7px; }
.checkbox-line input { accent-color: var(--teal); }

.faq-list { display: grid; gap: 12px; }
.faq-item { border: 1px solid var(--line); border-radius: 14px; background: #fff; overflow: hidden; }
.faq-question { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 15px; padding: 18px 20px; border: 0; background: #fff; color: var(--navy); text-align: left; font-size: 13px; font-weight: 800; }
.faq-question svg { transition: transform .2s ease; }
.faq-item.open .faq-question svg { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .25s ease; }
.faq-answer p { margin: 0; padding: 0 20px 18px; color: var(--muted); font-size: 12px; }

.legal-content { max-width: 900px; margin: 0 auto; }
.legal-content h2 { margin-top: 34px; color: var(--navy); }
.legal-content p, .legal-content li { color: #52697a; font-size: 14px; }

.empty-state { padding: 70px 28px; text-align: center; border: 1px dashed #bfd0da; border-radius: 18px; background: #fbfdfe; }
.empty-state-icon { width: 72px; height: 72px; margin: 0 auto 16px; display: grid; place-items: center; border-radius: 50%; background: var(--teal-soft); color: var(--teal); font-size: 31px; }
.empty-state h2 { margin: 0 0 8px; color: var(--navy); }
.empty-state p { margin: 0 0 20px; color: var(--muted); }

.cookie-banner[hidden], .cookie-banner.is-hidden { display: none !important; }
.cookie-banner { position: fixed; left: 20px; right: 20px; bottom: 20px; z-index: 1500; max-width: 720px; margin-inline: auto; display: grid; grid-template-columns: 1fr auto; gap: 16px; align-items: center; padding: 17px 18px; border-radius: 14px; color: #fff; background: #08233a; box-shadow: 0 20px 50px rgba(0,0,0,.3); }
.cookie-banner p { margin: 0; font-size: 11px; color: rgba(255,255,255,.76); }
.cookie-actions { display: flex; gap: 8px; }
.cookie-banner .btn { min-height: 38px; }
.toast-wrap { position: fixed; right: 22px; top: 96px; z-index: 2000; display: grid; gap: 10px; }
.toast { min-width: 280px; display: grid; grid-template-columns: auto 1fr auto; gap: 10px; align-items: center; padding: 14px 15px; border: 1px solid #cfe6e2; border-radius: 12px; background: #fff; box-shadow: var(--shadow-md); animation: toastIn .25s ease; }
.toast-icon { color: var(--teal); }
.toast p { margin: 0; font-size: 11px; color: var(--text); }
.toast button { border: 0; background: transparent; color: var(--muted); }
@keyframes toastIn { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: none; } }

.reveal { opacity: 0; transform: translateY(16px); transition: opacity .55s ease, transform .55s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 1180px) {
  .nav { gap: 18px; }
  .header-actions .icon-link span { display: none; }
  .featured-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .latest-grid { grid-template-columns: repeat(4, minmax(0,1fr)); }
  .blog-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .footer-top { grid-template-columns: 1.3fr repeat(3, .8fr); }
  .newsletter { grid-column: 1 / -1; }
  .category-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .listing-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
}

@media (max-width: 960px) {
  :root { --header-h: 70px; }
  .header-inner { grid-template-columns: auto auto; justify-content: space-between; }
  .nav, .header-actions { display: none; }
  .mobile-toggle { display: grid; place-items: center; }
  .mobile-panel {
    position: fixed;
    left: 0; right: 0; top: var(--mobile-panel-top); bottom: 0;
    z-index: 999;
    display: block;
    padding: 18px 20px 30px;
    background: #fff;
    transform: translateX(100%);
    transition: .25s ease;
    overflow-y: auto;
  }
  body.menu-open .mobile-panel { transform: none; }
  .mobile-nav { display: grid; gap: 5px; }
  .mobile-nav a { padding: 14px 12px; border-radius: 10px; font-weight: 700; color: var(--navy); }
  .mobile-nav a:hover { background: var(--teal-soft); color: var(--teal-dark); }
  .mobile-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 20px; }
  .hero { min-height: 610px; }
  .hero-inner { padding-top: 66px; }
  .search-shell { grid-template-columns: 1fr 1fr; }
  .search-submit { width: 100%; }
  .category-dock { grid-template-columns: repeat(5, 1fr); row-gap: 10px; }
  .category-item::after { display: none; }
  .latest-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .steps-grid { grid-template-columns: 1fr; }
  .steps-line { display: none; }
  .cta-card { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1.2fr 1fr 1fr; }
  .footer-brand, .newsletter { grid-column: 1 / -1; }
  .content-grid { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .detail-layout { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .auth-wrap { grid-template-columns: 1fr; }
  .auth-visual { min-height: 360px; }
}

@media (max-width: 720px) {
  .utility-inner { min-height: 42px; }
  .utility-left { gap: 12px; overflow-x: auto; scrollbar-width: none; }
  .utility-left::-webkit-scrollbar { display: none; }
  .utility-left > * + *::before { left: -6px; }
  .utility-slogan { display: none; }
  .utility-socials a { width: 25px; height: 25px; }
  .announcement-bar { height: 26px; }
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 62px 0; }
  .brand-copy strong { font-size: 18px; }
  .brand-copy span { display: none; }
  .hero { min-height: 720px; background-position: 60% center; }
  .hero::before { background: linear-gradient(90deg, rgba(5,25,42,.84), rgba(5,25,42,.42)); }
  .hero-inner { padding: 58px 0 116px; }
  .hero h1 { font-size: 42px; letter-spacing: -1.7px; }
  .hero p { font-size: 14px; }
  .search-shell { grid-template-columns: 1fr; }
  .search-field, .search-submit { min-height: 52px; }
  .hero-stats { gap: 14px; }
  .category-dock-wrap { margin-top: -64px; }
  .category-dock { grid-template-columns: repeat(3, 1fr); padding: 12px; }
  .section-heading { align-items: flex-start; }
  .view-all { display: none; }
  .featured-grid, .blog-grid, .listing-grid, .category-grid { grid-template-columns: 1fr; }
  .latest-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .steps-grid { gap: 14px; }
  .step-card { grid-template-columns: auto 1fr; padding: 22px; }
  .cta-card { padding: 32px 25px; }
  .cta-card h2 { font-size: 25px; }
  .cta-actions { flex-direction: column; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 30px; }
  .footer-brand, .newsletter { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; align-items: flex-start; justify-content: center; padding: 18px 0; }
  .form-grid { grid-template-columns: 1fr; }
  .form-grid .full { grid-column: auto; }
  .gallery-thumbs { grid-template-columns: repeat(2,1fr); }
  .auth-panel { padding: 40px 20px; }
  .auth-visual-copy h2 { font-size: 31px; }
  .cookie-banner { grid-template-columns: 1fr; left: 12px; right: 12px; bottom: 12px; }
  .cookie-actions { justify-content: flex-end; }
  .toast-wrap { left: 12px; right: 12px; top: 84px; }
  .toast { min-width: 0; }
}

@media (max-width: 430px) {
  .utility-left a[href^="mailto:"] { display: none; }
  .hero h1 { font-size: 36px; }
  .hero { min-height: 760px; }
  .category-dock { grid-template-columns: repeat(2, 1fr); }
  .latest-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-brand, .newsletter { grid-column: auto; }
  .mobile-actions { grid-template-columns: 1fr; }
}

/* Dynamic PHP/admin integrated pages */
.brand-custom-logo { max-width: 190px; max-height: 58px; object-fit: contain; }
.verified-mark { display:inline-grid;place-items:center;width:19px;height:19px;border-radius:50%;background:var(--teal);color:#fff;font-size:11px;vertical-align:2px;margin-left:4px; }
.scroller-actions { display:flex;gap:8px; }
.round-btn.reverse svg { transform:rotate(180deg); }
.mini-grid { display:grid;grid-template-columns:repeat(6,minmax(0,1fr));gap:16px; }
.mini-card { overflow:hidden;border:1px solid var(--line);border-radius:14px;background:#fff;box-shadow:var(--shadow-xs);transition:.22s ease; }
.mini-card:hover { transform:translateY(-4px);box-shadow:var(--shadow-sm); }
.mini-image { position:relative;display:block;aspect-ratio:1.55;overflow:hidden;background:#edf3f6; }
.mini-image img { width:100%;height:100%;object-fit:cover;transition:.4s ease; }
.mini-card:hover img { transform:scale(1.05); }
.mini-save { position:absolute;right:8px;top:8px;width:27px;height:27px;border-radius:50%;display:grid;place-items:center;background:#fff;color:var(--teal);font-weight:900;box-shadow:0 5px 15px rgba(8,35,58,.16); }
.mini-body { padding:12px; }
.mini-category { color:var(--teal-dark);font-weight:800;font-size:9px; }
.mini-body h3 { margin:4px 0;font-size:12px;line-height:1.3;color:var(--navy); }
.mini-body p { margin:0;color:var(--muted);font-size:9px; }
.mini-body .rating { margin-top:7px; }
.how-section { padding:62px 0;background:linear-gradient(180deg,#f3fbfa,#eaf8f6); }
.how-heading { margin-bottom:26px; }
.how-grid { display:grid;grid-template-columns:repeat(3,1fr);gap:26px;position:relative; }
.how-grid::before { content:"";position:absolute;left:17%;right:17%;top:50%;border-top:2px dashed #8bd5cd;z-index:0; }
.how-card { position:relative;z-index:1;display:grid;grid-template-columns:auto 1fr;gap:16px;align-items:center;padding:24px;border:1px solid #d7ece9;border-radius:18px;background:#fff;box-shadow:var(--shadow-sm); }
.step-number { position:absolute;left:15px;top:12px;width:30px;height:30px;border-radius:50%;display:grid;place-items:center;background:var(--teal);color:#fff;font-weight:900;font-size:11px; }
.how-icon { width:62px;height:62px;display:grid;place-items:center;border-radius:20px 20px 20px 7px;background:var(--teal-soft);color:var(--teal);font-size:29px; }
.how-card h3 { margin:0 0 5px;color:var(--navy);font-size:15px; }
.how-card p { margin:0;color:var(--muted);font-size:11px; }
.blog-card .blog-body>p { margin:-4px 0 12px;color:var(--muted);font-size:11px;line-height:1.55; }
.listing-layout { display:grid;grid-template-columns:270px minmax(0,1fr);gap:28px;align-items:start; }
.filter-panel { position:sticky;top:100px; }
.filter-form { display:grid;gap:15px;padding:22px;border:1px solid var(--line);border-radius:18px;background:#fff;box-shadow:var(--shadow-sm); }
.filter-form h2 { margin:0 0 2px;color:var(--navy);font-size:18px; }
.filter-form label { display:grid;gap:6px; }
.filter-form label>span { color:#526879;font-size:10px;font-weight:800;text-transform:uppercase;letter-spacing:.4px; }
.filter-form input,.filter-form select,.form-card input,.form-card select,.form-card textarea,.auth-card input { width:100%;border:1px solid #ccd9e2;border-radius:10px;background:#fff;color:var(--text);padding:10px 12px;outline:0; }
.filter-form input,.filter-form select,.form-card input,.form-card select,.auth-card input { min-height:44px; }
.filter-form input:focus,.filter-form select:focus,.form-card input:focus,.form-card select:focus,.form-card textarea:focus,.auth-card input:focus { border-color:var(--teal);box-shadow:0 0 0 3px rgba(11,157,141,.1); }
.category-page-grid { display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:22px; }
.category-page-card { overflow:hidden;border:1px solid var(--line);border-radius:18px;background:#fff;box-shadow:var(--shadow-xs);transition:.24s ease; }
.category-page-card:hover { transform:translateY(-5px);box-shadow:var(--shadow-md); }
.category-cover { position:relative;aspect-ratio:1.9;overflow:hidden;background:#edf3f6; }
.category-cover img { width:100%;height:100%;object-fit:cover;transition:.5s; }
.category-page-card:hover img { transform:scale(1.05); }
.category-cover span { position:absolute;left:16px;bottom:16px;width:48px;height:48px;display:grid;place-items:center;border-radius:15px;background:#fff;color:var(--teal);font-size:24px;box-shadow:var(--shadow-sm); }
.category-page-card>div:last-child { padding:19px; }
.category-page-card h2 { margin:0 0 6px;color:var(--navy);font-size:18px; }
.category-page-card p { margin:0 0 12px;color:var(--muted);font-size:12px; }
.category-page-card strong { color:var(--teal-dark);font-size:11px; }
.detail-hero { min-height:460px;display:flex;align-items:flex-end;background-position:center;background-size:cover;color:#fff; }
.detail-hero>.container { width:min(calc(100% - 40px),var(--container));padding:70px 0 54px; }
.breadcrumb.light,.breadcrumb.light a { color:rgba(255,255,255,.72); }
.detail-heading { display:flex;align-items:flex-end;justify-content:space-between;gap:25px; }
.detail-heading h1 { margin:10px 0 8px;font-size:clamp(40px,5vw,62px);letter-spacing:-2px;line-height:1.06; }
.detail-heading p { margin:0;max-width:720px;color:rgba(255,255,255,.8); }
.detail-meta { display:flex;gap:20px;flex-wrap:wrap;margin-top:17px;font-size:12px; }
.detail-meta>span { display:flex;align-items:center;gap:7px; }
.btn-light { color:var(--navy);background:#fff;border:0; }
.detail-main { min-width:0; }
.detail-sidebar { position:sticky;top:100px; }
.gallery-main { width:100%;height:auto;object-fit:cover;display:block; }
.detail-tabs { display:flex;gap:7px;flex-wrap:wrap;margin:28px 0 20px;border-bottom:1px solid var(--line); }
.detail-tabs button { padding:12px 14px;border:0;border-bottom:3px solid transparent;background:transparent;color:var(--muted);font-weight:800;font-size:12px; }
.detail-tabs button.active { color:var(--teal-dark);border-color:var(--teal); }
.tab-panel h2 { color:var(--navy); }
.rich-text { color:#52697a;font-size:14px;line-height:1.75; }
.rich-text h2,.rich-text h3 { color:var(--navy);margin-top:30px; }
.rich-text a { color:var(--teal-dark);text-decoration:underline; }
.hours-list { display:grid;gap:8px; }
.hours-list>div { display:flex;justify-content:space-between;gap:20px;padding:12px 14px;border:1px solid var(--line);border-radius:10px;background:#fff; }
.review-card { padding:17px;border:1px solid var(--line);border-radius:13px;background:#fff;margin-bottom:12px; }
.review-card>div { display:flex;justify-content:space-between;gap:12px; }
.review-card>div span { color:var(--amber); }
.review-card p { color:var(--muted); }
.review-card blockquote { margin:12px 0 0;padding:12px;border-left:3px solid var(--teal);background:var(--teal-soft);font-size:12px; }
.contact-card { padding:23px;border:1px solid var(--line);border-radius:18px;background:#fff;box-shadow:var(--shadow-sm); }
.contact-card h2 { margin:0 0 18px;color:var(--navy);font-size:20px; }
.contact-row { display:grid;grid-template-columns:42px minmax(0,1fr);align-items:start;gap:12px;padding:13px 0;border-bottom:1px solid var(--line); }
.contact-icon { width:42px;height:42px;display:grid;place-items:center;border-radius:12px;background:var(--teal-soft);color:var(--teal);font-size:19px; }
.contact-row strong { display:block;margin-bottom:3px;color:var(--navy);font-size:11px; }
.contact-row p,.contact-row a { margin:0;color:var(--muted);font-size:11px;line-height:1.5;overflow-wrap:anywhere; }
.contact-actions { display:grid;gap:9px;margin-top:17px; }
.article-hero { padding:88px 0;background:linear-gradient(135deg,#f1faf9,#e9f1f6); }
.article-hero h1 { max-width:930px;margin:15px 0 12px;color:var(--navy);font-size:clamp(38px,5vw,62px);line-height:1.08;letter-spacing:-2px; }
.article-hero p { max-width:760px;color:var(--muted); }
.article-hero .badge { position:static;box-shadow:none; }
.article-cover { width:100%;max-height:540px;object-fit:cover;border-radius:22px;margin-bottom:30px; }
.contact-layout { display:grid;grid-template-columns:.75fr 1.25fr;gap:30px;align-items:start; }
.contact-info-panel { padding:28px;border-radius:20px;color:#fff;background:linear-gradient(145deg,var(--navy),#0c5571); }
.contact-info-panel h2 { margin:0 0 9px;font-size:30px; }
.contact-info-panel>p { color:rgba(255,255,255,.72);font-size:12px; }
.contact-info-panel .contact-row { border-color:rgba(255,255,255,.12); }
.contact-info-panel .contact-icon { background:rgba(255,255,255,.1);color:#7debe0; }
.contact-info-panel .contact-row strong { color:#fff; }
.contact-info-panel .contact-row a,.contact-info-panel .contact-row p { color:rgba(255,255,255,.72); }
.form-card h2 { margin:0 0 20px;color:var(--navy); }
.form-card label { display:grid;gap:7px; }
.form-card label>span { color:#506678;font-size:11px;font-weight:800; }
.form-card textarea { resize:vertical; }
.form-card .span-2 { grid-column:span 2; }
.form-section+.form-section { margin-top:28px;padding-top:24px;border-top:1px solid var(--line); }
.form-section h2 { margin:0 0 17px;color:var(--navy);font-size:20px; }
.narrow { max-width:960px; }
.consent { display:flex!important;grid-template-columns:auto 1fr!important;align-items:flex-start;gap:8px!important;margin:19px 0; }
.consent input { width:17px!important;min-height:17px!important;accent-color:var(--teal); }
.auth-section { min-height:650px;display:grid;place-items:center;padding:70px 20px;background:linear-gradient(135deg,#f5fbfa,#eef3f7); }
.auth-section .auth-card { padding:30px;border:1px solid var(--line);border-radius:20px;background:#fff;box-shadow:var(--shadow-md); }
.auth-card form { display:grid;gap:15px;margin:22px 0; }
.auth-card label { display:grid;gap:7px; }
.auth-card label>span { font-size:11px;font-weight:800;color:#506678; }
.empty-state>.icon { width:70px;height:70px;padding:17px;border-radius:50%;background:var(--teal-soft);color:var(--teal); }
.server-flash { display:none; }
.toast.error { border-color:#ffd2d2; }
.toast.error .toast-icon { color:#d64a4a; }
.favorite-wrapper[hidden] { display:none!important; }

@media(max-width:1180px){.mini-grid{grid-template-columns:repeat(4,minmax(0,1fr))}.category-page-grid{grid-template-columns:repeat(2,minmax(0,1fr))}}
@media(max-width:960px){.listing-layout,.contact-layout{grid-template-columns:1fr}.filter-panel,.detail-sidebar{position:static}.how-grid{grid-template-columns:1fr}.how-grid::before{display:none}.mini-grid{grid-template-columns:repeat(3,minmax(0,1fr))}.detail-heading{align-items:flex-start;flex-direction:column}.form-card .span-2{grid-column:auto}}
@media(max-width:720px){.mini-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.category-page-grid{grid-template-columns:1fr}.detail-hero>.container{width:min(calc(100% - 28px),var(--container));padding:60px 0 40px}.detail-heading h1{font-size:38px}.contact-card{padding:18px}.how-card{padding:20px}.article-hero{padding:60px 0}.article-hero h1{font-size:38px}}
@media(max-width:430px){.mini-grid{grid-template-columns:1fr}.detail-meta{display:grid;gap:9px}}

/* Admin-controlled homepage section order */
.home-sections {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

@media (min-width: 1181px) {
  .footer-top {
    grid-template-columns: minmax(220px, 1.35fr) repeat(auto-fit, minmax(140px, 1fr));
    gap: 32px;
  }
}
