/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #f4f5f3;          /* cool off-white */
  --bg2: #ffffff;          /* card surface */
  --bg3: #e9ebe8;          /* subtle alt */
  --ink: #18242b;          /* near-black slate */
  --ink-soft: #44535b;     /* body text */
  --muted: #76838d;        /* labels / meta */
  --accent: #2f6f64;       /* muted teal green (trust) */
  --accent-dark: #245349;
  --accent-soft: #e2ece8;
  --navy: #1c2a33;         /* deep professional slate */
  --navy2: #243641;
  --line: #dedfd9;         /* hairline borders */
  --on-dark: #f4f5f3;      /* text on navy surfaces */
  --on-dark-soft: rgba(244,245,243,0.66);
  --radius: 8px;
  --radius-lg: 14px;
  --shadow-sm: 0 1px 2px rgba(24,36,43,0.05), 0 1px 3px rgba(24,36,43,0.06);
  --shadow-md: 0 4px 12px rgba(24,36,43,0.07), 0 2px 4px rgba(24,36,43,0.05);
  --shadow-lg: 0 18px 40px rgba(24,36,43,0.12);
  --hero-overlay-1: rgba(244,245,243,0.97);
  --hero-overlay-2: rgba(244,245,243,0.78);
  --hero-overlay-3: rgba(244,245,243,0.30);
  --nav-bg: rgba(255,255,255,0.82);
  --nav-bg-solid: #ffffff;
  --nav-ink: #18242b;
  --step-num: #2f6f64;          /* readable step numerals */
  --font-display: 'Bricolage Grotesque', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
}

[data-theme="dark"] {
  --bg: #11181d;          /* deep slate */
  --bg2: #1a242b;          /* card surface */
  --bg3: #161f25;          /* subtle alt */
  --ink: #f0f3f2;          /* headings */
  --ink-soft: #b8c3c8;     /* body text */
  --muted: #7e8b93;        /* labels / meta */
  --accent: #6fb3a4;       /* lifted teal for contrast */
  --accent-dark: #58a08f;
  --accent-soft: rgba(111,179,164,0.14);
  --navy: #0c1216;         /* darker base for cta/footer */
  --navy2: #141d22;
  --line: #29363d;         /* hairline borders */
  --on-dark: #f0f3f2;
  --on-dark-soft: rgba(240,243,242,0.66);
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.3), 0 1px 3px rgba(0,0,0,0.35);
  --shadow-md: 0 4px 14px rgba(0,0,0,0.4), 0 2px 6px rgba(0,0,0,0.3);
  --shadow-lg: 0 20px 46px rgba(0,0,0,0.55);
  --hero-overlay-1: rgba(17,24,29,0.96);
  --hero-overlay-2: rgba(17,24,29,0.80);
  --hero-overlay-3: rgba(17,24,29,0.40);
  --nav-bg: rgba(15,21,26,0.82);
  --nav-bg-solid: #11181d;
  --nav-ink: #f0f3f2;
  --step-num: #6fb3a4;
}

body, .nav, .card-item, .step, .form-card, .info-box, .about-card,
.qualify-item, .compare-col, .footer, .cta-strip, .map-frame iframe,
.form-group input, .form-group select, .form-group textarea, .social-btn, .faq-cta {
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink-soft);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* === TYPOGRAPHY === */
h1,h2,h3 { font-family: var(--font-display); font-weight: 700; line-height: 1.08; color: var(--ink); letter-spacing: -0.02em; }
h1 { font-size: clamp(2.8rem, 6.2vw, 4.8rem); font-weight: 800; }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); margin-bottom: 1.2rem; font-weight: 700; }
h3 { font-size: 1.25rem; margin-bottom: 0.6rem; font-weight: 600; }
p { color: var(--ink-soft); margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }
em { font-style: normal; color: var(--accent); }
a { color: inherit; text-decoration: none; }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.85rem;
  display: block;
}

/* === LAYOUT === */
.container { max-width: 1140px; margin: 0 auto; padding: 0 2rem; }
.section { padding: 6rem 0; }
.center { text-align: center; }
.center.eyebrow { text-align: center; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }

@media (max-width: 768px) {
  .two-col { grid-template-columns: 1fr; gap: 2.5rem; }
  .section { padding: 4rem 0; }
}

/* === NAVIGATION === */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.85rem 2.5rem;
  background: var(--nav-bg);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid var(--line);
}
.nav.scrolled { box-shadow: var(--shadow-md); }

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.32rem;
  font-weight: 800;
  color: var(--nav-ink);
  letter-spacing: -0.025em;
  display: inline-flex; align-items: baseline; gap: 0.32rem;
}
.nav-logo span { color: var(--accent); font-weight: 800; }

.nav-links { display: flex; gap: 0.35rem; list-style: none; margin: 0 auto 0 3rem; }
.nav-links a {
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--nav-ink);
  opacity: 0.72;
  transition: opacity 0.2s, color 0.2s, background 0.2s;
  position: relative;
  padding: 0.5rem 0.9rem;
  border-radius: 7px;
}
.nav-links a:hover { opacity: 1; color: var(--accent); background: var(--accent-soft); }
.nav-links a.active { opacity: 1; color: var(--accent); }
.nav-links a.active::after {
  content: ''; position: absolute; left: 0.9rem; right: 0.9rem; bottom: 2px;
  height: 2px; background: var(--accent); border-radius: 2px;
}

.nav-right { display: flex; align-items: center; gap: 0.5rem; }

.nav-toggle {
  display: none;
  background: none; border: none; color: var(--nav-ink);
  font-size: 1.4rem; cursor: pointer;
}

@media (max-width: 768px) {
  .nav { padding: 0.85rem 1.25rem; }
  .nav-toggle { display: block; }
  .nav-links {
    display: none; flex-direction: column; gap: 0; margin: 0;
    position: fixed; top: 60px; left: 0; right: 0;
    background: var(--nav-bg-solid); padding: 0.5rem 0;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-lg);
  }
  .nav-links.open { display: flex; }
  .nav-links li { padding: 0; }
  .nav-links a { padding: 0.95rem 1.5rem; border-radius: 0; border-bottom: 1px solid var(--line); display: block; }
  .nav-links a.active::after { display: none; }
}

/* === HERO === */
.hero {
  min-height: 94vh;
  display: flex; flex-direction: column;
  justify-content: center;
  padding-top: 90px;
  position: relative;
  overflow: hidden;
  background: #0c1216;
}

.hero-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(100deg, rgba(10,15,18,0.94) 0%, rgba(10,15,18,0.80) 42%, rgba(10,15,18,0.55) 70%, rgba(10,15,18,0.42) 100%),
    url('https://images.unsplash.com/photo-1568605114967-8130f3a36994?auto=format&fit=crop&w=1600&q=80');
  background-size: cover;
  background-position: center right;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(transparent 60%, rgba(10,15,18,0.55) 100%);
  pointer-events: none;
}

.hero-content {
  position: relative; z-index: 2;
  max-width: 1140px; margin: 0 auto; padding: 0 2rem;
  flex: 1; display: flex; flex-direction: column; justify-content: center;
  width: 100%;
}

.hero-eyebrow { margin-bottom: 1.4rem; }

.hero-title {
  font-size: clamp(3.2rem, 7vw, 5.6rem);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
  color: #ffffff;
  text-shadow: 0 2px 20px rgba(0,0,0,0.35);
  animation: fadeUp 0.8s ease both;
}
.hero-title em { color: var(--accent); font-style: normal; }
[data-theme="dark"] .hero-title em { color: #7fc3b3; }

.hero-sub {
  font-size: 1.12rem;
  max-width: 520px;
  color: rgba(255,255,255,0.82);
  margin-bottom: 2.5rem;
  text-shadow: 0 1px 12px rgba(0,0,0,0.3);
  animation: fadeUp 0.8s 0.15s ease both;
}

.hero-ctas {
  display: flex; gap: 1rem; flex-wrap: wrap;
  animation: fadeUp 0.8s 0.3s ease both;
}
.center .hero-ctas { justify-content: center; }
.hero .btn-outline {
  background: rgba(255,255,255,0.06);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.4);
  backdrop-filter: blur(4px);
}
.hero .btn-outline:hover { border-color: #fff; background: rgba(255,255,255,0.14); color: #fff; }

.hero-stats {
  position: relative; z-index: 2;
  max-width: 1140px; margin: 0 auto; padding: 1.75rem 2rem 3.25rem;
  display: flex; align-items: center; gap: 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.16);
  width: 100%;
  animation: fadeUp 0.8s 0.4s ease both;
}

.stat { display: flex; flex-direction: column; }
.stat-num { font-family: var(--font-display); font-size: 2.4rem; font-weight: 800; color: #fff; letter-spacing: -0.02em; }
.stat-label { font-size: 0.74rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.6); margin-top: 0.15rem; }
.stat-div { width: 1px; height: 44px; background: rgba(255,255,255,0.18); }

/* hero badge sits on dark scrim now */
.hero .hero-badge {
  color: #fff;
  background: rgba(47,111,100,0.34);
  border: 1px solid rgba(255,255,255,0.22);
  backdrop-filter: blur(6px);
}
.hero .hero-badge::before { background: #7fc3b3; box-shadow: 0 0 0 3px rgba(127,195,179,0.25); }

@media (max-width: 600px) {
  .hero-bg { background-position: 64% center; }
  .hero-stats { flex-direction: row; flex-wrap: wrap; align-items: flex-start; gap: 1.5rem 2rem; padding-bottom: 2.5rem; }
  .stat-div { display: none; }
  .stat-num { font-size: 1.9rem; }
}

/* === PAGE HERO (interior pages) === */
.page-hero {
  padding: 150px 0 70px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: var(--bg3);
}
.page-hero .hero-bg {
  background-image:
    linear-gradient(100deg, var(--hero-overlay-1) 0%, var(--hero-overlay-2) 50%, var(--hero-overlay-3) 100%),
    url('https://images.unsplash.com/photo-1605276374104-dee2a0ed3cd6?auto=format&fit=crop&w=1600&q=80');
  background-size: cover; background-position: center;
}
.sellers-hero .hero-bg {
  background-image:
    linear-gradient(100deg, var(--hero-overlay-1) 0%, var(--hero-overlay-2) 50%, var(--hero-overlay-3) 100%),
    url('https://images.unsplash.com/photo-1570129477492-45c003edd2be?auto=format&fit=crop&w=1600&q=80');
  background-size: cover; background-position: center;
}

.page-hero-content {
  max-width: 1140px; margin: 0 auto; padding: 0 2rem;
  position: relative; z-index: 2;
  animation: fadeUp 0.7s ease both;
}
.page-hero-content .hero-sub { max-width: 560px; }

/* === BUTTONS === */
.btn {
  display: inline-block;
  padding: 0.9rem 2rem;
  font-family: var(--font-body);
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: var(--radius);
  transition: all 0.2s ease;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover { background: var(--accent-dark); transform: translateY(-1px); box-shadow: var(--shadow-md); }

.btn-outline {
  background: var(--bg2);
  color: var(--ink);
  border: 1px solid var(--line);
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }

.btn-full { width: 100%; text-align: center; margin-top: 1.5rem; font-size: 0.9rem; padding: 1rem; }

/* === CARDS === */
.about-card {
  background: var(--bg2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}
.about-card-icon { font-size: 1.8rem; color: var(--accent); margin-bottom: 1rem; }

/* visual column image (about page) */
.col-visual .col-photo {
  width: 100%; border-radius: var(--radius-lg);
  display: block; box-shadow: var(--shadow-lg);
  object-fit: cover; aspect-ratio: 4 / 3;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.25rem;
  margin-top: 3rem;
}
.card-item {
  background: var(--bg2);
  padding: 2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s, box-shadow 0.2s;
}
.card-item:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.card-icon { color: var(--accent); font-size: 1.1rem; margin-bottom: 0.9rem; }

/* === STEPS === */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
  margin-top: 3rem;
}
.step {
  padding: 2.5rem;
  background: var(--bg2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  position: relative;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.step::before {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 3px; height: 100%;
  background: var(--accent);
  opacity: 0; transition: opacity 0.25s;
}
.step:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.step:hover::before { opacity: 1; }
.step { transition: transform 0.2s, box-shadow 0.2s; }
.step-num {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--step-num);
  line-height: 1;
  margin-bottom: 0.85rem;
  letter-spacing: -0.02em;
  display: inline-block;
}
.step h3 { color: var(--ink); }

/* === PHOTO STRIP (homes gallery) === */
.photo-strip { padding: 5rem 0 0; background: var(--bg3); border-top: 1px solid var(--line); }
.photo-strip .container { margin-bottom: 2.5rem; }
.photo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.photo-grid figure { position: relative; overflow: hidden; aspect-ratio: 1 / 1; margin: 0; background: var(--bg2); }
.photo-grid img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.5s ease;
}
.photo-grid figure:hover img { transform: scale(1.06); }
.photo-grid figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 1.6rem 1rem 0.9rem;
  background: linear-gradient(transparent, rgba(12,18,22,0.82));
  color: #fff; font-size: 0.78rem; letter-spacing: 0.03em;
}
@media (max-width: 820px) { .photo-grid { grid-template-columns: repeat(2, 1fr); } }

/* === SECTIONS === */
.about-intro { border-bottom: 1px solid var(--line); }
.how-it-works { background: var(--bg3); border-bottom: 1px solid var(--line); }
.why-us { border-bottom: 1px solid var(--line); }

.cta-strip {
  background: var(--navy);
}
.cta-strip h2 { margin-bottom: 0.75rem; color: var(--on-dark); }
.cta-strip p { margin-bottom: 2rem; color: var(--on-dark-soft); }
.cta-strip .btn-outline { background: transparent; color: var(--on-dark); border-color: rgba(244,245,243,0.35); }
.cta-strip .btn-outline:hover { border-color: var(--on-dark); color: var(--on-dark); }

/* === INFO BOX === */
.info-box {
  background: var(--bg2);
  border: 1px solid var(--line);
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.info-box h3 { margin-bottom: 1.25rem; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--accent); }
.info-row { display: flex; align-items: center; gap: 0.75rem; padding: 0.65rem 0; border-bottom: 1px solid var(--line); font-size: 0.92rem; color: var(--ink-soft); }
.info-row:last-child { border-bottom: none; }
.info-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); flex-shrink: 0; }

/* === BENEFIT LIST === */
.benefit-list { list-style: none; margin-top: 1.5rem; }
.benefit-list li {
  padding: 0.6rem 0 0.6rem 1.6rem;
  position: relative;
  color: var(--ink-soft);
  font-size: 0.96rem;
  border-bottom: 1px solid var(--line);
}
.benefit-list li::before {
  content: '\2713';
  position: absolute; left: 0;
  color: var(--accent); font-weight: 700;
}

/* === COMPARE GRID === */
.compare-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem;
  margin-top: 1rem;
}
.compare-col { padding: 2.5rem; background: var(--bg2); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); }
.compare-col.good { border-color: var(--accent); box-shadow: 0 0 0 1px var(--accent), var(--shadow-md); }
.compare-col h3 { font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 1.5rem; }
.compare-col.bad h3 { color: var(--muted); }
.compare-col.good h3 { color: var(--accent); }
.compare-item {
  padding: 0.7rem 0;
  font-size: 0.92rem;
  border-bottom: 1px solid var(--line);
  display: flex; align-items: center; gap: 0.6rem;
}
.compare-item:last-child { border-bottom: none; }
.compare-item.no { color: var(--muted); }
.compare-item.no::before { content: '\2715'; color: #c0654f; font-size: 0.8rem; font-weight: 700; }
.compare-item.yes { color: var(--ink); }
.compare-item.yes::before { content: '\2713'; color: var(--accent); font-size: 0.9rem; font-weight: 700; }

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

/* === WHO QUALIFIES === */
.who-qualifies { background: var(--bg3); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.qualify-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.25rem;
  margin-top: 3rem;
}
.qualify-item {
  background: var(--bg2);
  border: 1px solid var(--line);
  padding: 1.85rem;
  text-align: center;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s, box-shadow 0.2s;
}
.qualify-item:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.qualify-icon { font-size: 1.9rem; margin-bottom: 0.75rem; display: block; }
.qualify-item p { font-size: 0.92rem; color: var(--ink-soft); margin: 0; }

/* === FORM === */
.form-section { background: var(--bg3); border-top: 1px solid var(--line); }
.form-intro { color: var(--ink-soft); max-width: 560px; margin: 0.5rem auto 3rem; }

.form-card {
  max-width: 780px; margin: 0 auto;
  background: var(--bg2);
  border: 1px solid var(--line);
  padding: 2.75rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.form-card h3 { margin-bottom: 1.5rem; }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }

.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group.full { grid-column: 1 / -1; }

.form-group label {
  font-size: 0.74rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg);
  border: 1px solid var(--line);
  color: var(--ink);
  padding: 0.8rem 1rem;
  font-family: var(--font-body);
  font-size: 0.92rem;
  border-radius: var(--radius);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--muted); opacity: 0.7; }
.form-group select option { background: var(--bg2); }
.form-group textarea { resize: vertical; min-height: 100px; }

.checkbox-group { display: flex; flex-wrap: wrap; gap: 0.75rem 1.5rem; padding-top: 0.25rem; }
.checkbox-label {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.92rem; color: var(--ink-soft);
  cursor: pointer; text-transform: none; letter-spacing: 0; font-weight: 400;
}
.checkbox-label input { width: 15px; height: 15px; accent-color: var(--accent); }

.form-disclaimer { text-align: center; font-size: 0.8rem; color: var(--muted); margin-top: 1rem; }

@media (max-width: 600px) {
  .form-grid { grid-template-columns: 1fr; }
  .form-card { padding: 1.75rem; }
}

/* === SUCCESS === */
.success-msg {
  max-width: 780px; margin: 2rem auto 0;
  background: var(--accent-soft);
  border: 1px solid var(--accent);
  padding: 2rem;
  text-align: center;
  border-radius: var(--radius-lg);
}
.success-msg h3 { color: var(--accent-dark); margin-bottom: 0.5rem; }

/* === CONTACT LAYOUT === */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}
.contact-details { margin-top: 2rem; }
.contact-item {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
}
.contact-icon { font-size: 1.2rem; color: var(--accent); flex-shrink: 0; width: 2rem; }
.contact-item strong { display: block; font-size: 0.74rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent); margin-bottom: 0.2rem; font-weight: 600; }
.contact-item p { font-size: 0.92rem; margin: 0; color: var(--ink-soft); }

.social-row { display: flex; gap: 0.75rem; margin-top: 2rem; flex-wrap: wrap; }
.social-btn {
  font-size: 0.76rem;
  letter-spacing: 0.04em;
  border: 1px solid var(--line);
  padding: 0.55rem 1.1rem;
  border-radius: var(--radius);
  color: var(--ink-soft);
  background: var(--bg2);
  transition: all 0.2s;
}
.social-btn:hover { border-color: var(--accent); color: var(--accent); }

@media (max-width: 860px) {
  .contact-layout { grid-template-columns: 1fr; gap: 3rem; }
}

/* === MAP BLOCK === */
.map-section { border-top: 1px solid var(--line); background: var(--bg2); }
.map-head { text-align: center; margin-bottom: 2.5rem; }
.map-frame {
  width: 100%;
  height: 420px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.map-frame iframe { width: 100%; height: 100%; border: 0; display: block; filter: grayscale(0.12); }

/* === FAQ === */
.faq-section { background: var(--bg); }
.faq-category { margin-bottom: 4rem; }
.faq-category h2 { margin-bottom: 1.5rem; }
.faq-list { border-top: 1px solid var(--line); }

.faq-item { border-bottom: 1px solid var(--line); }
.faq-question {
  display: flex; justify-content: space-between; align-items: center;
  width: 100%; background: none; border: none;
  color: var(--ink); text-align: left;
  font-family: var(--font-body);
  font-size: 1.02rem; font-weight: 500;
  padding: 1.3rem 0;
  cursor: pointer;
  gap: 1rem;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--accent); }
.faq-icon {
  font-size: 1.4rem; color: var(--accent);
  flex-shrink: 0; line-height: 1;
  transition: transform 0.25s;
}
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.35s ease, padding 0.25s;
}
.faq-answer.open { max-height: 500px; padding-bottom: 1.3rem; }
.faq-answer p { font-size: 0.96rem; color: var(--ink-soft); }
.faq-icon.rotated { transform: rotate(45deg); }

.faq-cta {
  text-align: center;
  padding: 4rem 2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--bg2);
  box-shadow: var(--shadow-sm);
}
.faq-cta h3 { font-size: 1.7rem; margin-bottom: 0.75rem; }
.faq-cta p { color: var(--ink-soft); margin-bottom: 2rem; }

/* === FOOTER === */
.footer {
  background: var(--navy2);
  padding: 3rem 0;
}
.footer .nav-logo { color: var(--on-dark); }
.footer .nav-logo span { color: var(--accent); }
.footer-inner {
  display: flex; flex-direction: column;
  align-items: center; gap: 1.5rem;
  text-align: center;
}
.footer-brand { display: flex; flex-direction: column; align-items: center; text-align: center; }
.footer-brand .nav-logo { justify-content: center; }
.footer-brand p { font-size: 0.88rem; color: var(--on-dark-soft); margin-top: 0.4rem; }
.footer-nav { display: flex; gap: 2rem; flex-wrap: wrap; justify-content: center; }
.footer-nav a { font-size: 0.82rem; letter-spacing: 0.04em; color: var(--on-dark-soft); transition: color 0.2s; }
.footer-nav a:hover { color: var(--on-dark); }
.footer-copy { font-size: 0.78rem; color: rgba(244,245,243,0.4); }

/* === ANIMATION === */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.section .container { animation: fadeUp 0.7s ease both; }

/* === THEME TOGGLE === */
.theme-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--nav-ink);
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.2s;
  flex-shrink: 0;
}
.theme-toggle:hover { border-color: var(--accent); color: var(--accent); background: var(--accent-soft); transform: translateY(-1px); }
.theme-toggle svg { width: 18px; height: 18px; display: block; }
.theme-toggle .icon-moon { display: none; }
.theme-toggle .icon-sun { display: block; }
[data-theme="dark"] .theme-toggle .icon-moon { display: block; }
[data-theme="dark"] .theme-toggle .icon-sun { display: none; }

@media (max-width: 768px) {
  .theme-toggle { width: 38px; height: 38px; }
}

/* hero badge for a more professional, credible header */
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.74rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-soft);
  border: 1px solid var(--line);
  padding: 0.45rem 0.9rem;
  border-radius: 100px;
  margin-bottom: 1.4rem;
}
.hero-badge::before {
  content: ''; width: 7px; height: 7px; border-radius: 50%;
  background: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft);
}
