/* ═══════════════════════════════════════════════════════════════
   YS Real Estate — yogeshsharmarealestate.com
   Global stylesheet (all pages)
   ═══════════════════════════════════════════════════════════════ */

:root {
  --ink:        #16202c;   /* near-black text */
  --ink-soft:   #465363;
  --muted:      #8792a1;
  --brand:      #0d8a5f;   /* emerald green */
  --brand-dark: #0a6e4c;
  --brand-soft: #e7f6ef;
  --blue:       #2563eb;   /* accent blue */
  --blue-dark:  #1d4ed8;
  --blue-soft:  #e8effd;
  --gold:       #d4a13c;   /* accent for prices/stars */
  --cream:      #f6f9f7;
  --white:      #ffffff;
  --line:       #e3e9e5;
  --dark:       #0e1e33;   /* deep navy — hero / footer */
  --dark-2:     #14294a;
  --radius:     14px;
  --shadow:     0 10px 30px rgba(14, 30, 51, .08);
  --shadow-lg:  0 18px 48px rgba(14, 30, 51, .16);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { font-family: 'Sora', 'Inter', sans-serif; line-height: 1.2; }

img { max-width: 100%; display: block; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }

.container { width: min(1160px, 92%); margin: 0 auto; }

/* ── Buttons ─────────────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 13px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 8px 22px rgba(13, 138, 95, .35);
}
.btn-primary:hover { background: var(--brand-dark); }
.btn-outline {
  border-color: rgba(255,255,255,.55);
  color: #fff;
}
.btn-outline:hover { background: rgba(255,255,255,.12); }
.btn-dark {
  background: var(--dark);
  color: #fff;
}
.btn-dark:hover { background: #000; }

/* ── Top strip ───────────────────────────────────────────────── */
.topbar {
  background: var(--dark);
  color: #c6cedb;
  font-size: 13px;
  padding: 7px 0;
}
.topbar-inner { display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.topbar a { color: #fff; font-weight: 500; }
.topbar-sep { margin: 0 8px; opacity: .5; }

/* ── Navbar ──────────────────────────────────────────────────── */
.navbar {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 60;
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 16px;
}
.brand { display: flex; align-items: center; gap: 11px; }
.brand-mark {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--dark), var(--dark-2));
  color: #fff;
  display: grid; place-items: center;
  font-family: 'Sora', sans-serif;
  font-weight: 800; font-size: 18px;
  letter-spacing: .5px;
  box-shadow: 0 6px 16px rgba(14, 30, 51, .35);
  border-bottom: 3px solid var(--brand);
}
.brand-text strong { font-family: 'Sora', sans-serif; font-size: 19px; display: block; line-height: 1.15; }
.brand-text small  { color: var(--muted); font-size: 11.5px; letter-spacing: .4px; }

.nav { display: flex; align-items: center; gap: 24px; }
.nav-link {
  font-weight: 500;
  font-size: 15px;
  color: var(--ink-soft);
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
  transition: color .15s;
}
.nav-link:hover  { color: var(--ink); }
.nav-link.active { color: var(--brand-dark); border-bottom-color: var(--brand); }
.nav-cta { padding: 10px 22px; font-size: 14px; }

.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span {
  display: block; width: 24px; height: 2.5px;
  background: var(--ink); margin: 5px 0; border-radius: 2px;
  transition: transform .2s, opacity .2s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ── Hero (home) ─────────────────────────────────────────────── */
.hero {
  background:
    radial-gradient(1000px 500px at 85% -10%, rgba(13, 138, 95, .3), transparent 60%),
    radial-gradient(700px 400px at -10% 110%, rgba(37, 99, 235, .22), transparent 55%),
    linear-gradient(160deg, var(--dark), var(--dark-2));
  color: #fff;
  padding: 90px 0 100px;
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 48px;
  align-items: center;
}
.hero-inner { max-width: 720px; }
.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  color: #9fe3c6;
  font-size: 13px; font-weight: 600;
  padding: 7px 16px; border-radius: 999px;
  margin-bottom: 22px;
  letter-spacing: .3px;
}
.hero h1 {
  font-size: clamp(34px, 5.2vw, 54px);
  font-weight: 800;
  margin-bottom: 20px;
}
.hero h1 em { color: #35c98e; font-style: normal; }
.hero p {
  font-size: 18px;
  color: #b4bdcc;
  margin-bottom: 34px;
  max-width: 580px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-stats {
  display: flex; gap: 40px; flex-wrap: wrap;
  margin-top: 54px;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,.14);
}
.hero-stat strong { font-family: 'Sora'; font-size: 28px; color: #35c98e; display: block; }
.hero-stat span   { font-size: 13.5px; color: #93a0b3; }

.hero-pics {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 16px;
  min-height: 440px;
}
.hero-pic {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 20px 50px rgba(0,0,0,.4);
}
.hero-pic img { width: 100%; height: 100%; object-fit: cover; }
.hero-pic-tall { grid-row: span 2; }
.hero-pic-badge {
  position: absolute;
  left: -14px; bottom: 24px;
  background: var(--white);
  color: var(--ink);
  border-radius: 14px;
  padding: 14px 20px;
  display: flex; align-items: center; gap: 12px;
  box-shadow: var(--shadow-lg);
  font-size: 13.5px;
}
.hero-pic-badge .hpb-icon {
  width: 42px; height: 42px;
  border-radius: 11px;
  background: var(--brand-soft);
  display: grid; place-items: center;
  font-size: 20px;
}
.hero-pic-badge strong { display: block; font-family: 'Sora'; font-size: 15px; }
.hero-pic-badge span   { color: var(--muted); font-size: 12.5px; }

/* ── Page hero (inner pages) ─────────────────────────────────── */
.page-hero {
  background:
    radial-gradient(800px 350px at 80% -20%, rgba(13, 138, 95, .28), transparent 60%),
    radial-gradient(600px 300px at 10% 120%, rgba(37, 99, 235, .22), transparent 55%),
    linear-gradient(160deg, var(--dark), var(--dark-2));
  color: #fff;
  padding: 60px 0 64px;
  text-align: center;
}
.page-hero h1 { font-size: clamp(30px, 4vw, 42px); font-weight: 800; margin-bottom: 12px; }
.page-hero p  { color: #b4bdcc; max-width: 640px; margin: 0 auto; font-size: 16.5px; }
.breadcrumb   { font-size: 13.5px; color: #8a96a8; margin-bottom: 14px; }
.breadcrumb a { color: #35c98e; }

/* ── Sections ────────────────────────────────────────────────── */
.section       { padding: 84px 0; }
.section-alt   { background: var(--cream); }
.section-head  { text-align: center; max-width: 660px; margin: 0 auto 52px; }
.section-kicker {
  color: var(--blue);
  font-weight: 700; font-size: 13px;
  letter-spacing: 2.5px; text-transform: uppercase;
  display: block; margin-bottom: 12px;
}
.section-head h2 { font-size: clamp(26px, 3.4vw, 38px); font-weight: 800; margin-bottom: 14px; }
.section-head p  { color: var(--ink-soft); font-size: 16.5px; }

/* ── Cards / grids ───────────────────────────────────────────── */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: transform .18s ease, box-shadow .18s ease;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.card-icon {
  width: 58px; height: 58px;
  border-radius: 14px;
  background: var(--brand-soft);
  display: grid; place-items: center;
  font-size: 27px;
  margin-bottom: 20px;
}
.card h3 { font-size: 19px; margin-bottom: 10px; }
.card p  { color: var(--ink-soft); font-size: 14.5px; }
.card-link {
  display: inline-block;
  margin-top: 16px;
  color: var(--brand-dark);
  font-weight: 600; font-size: 14px;
}

/* Cards with image tops */
.card-media { padding: 0; overflow: hidden; }
.card-media .card-img {
  height: 190px;
  overflow: hidden;
  background: var(--cream);
}
.card-media .card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}
.card-media:hover .card-img img { transform: scale(1.07); }
.card-media .card-body { padding: 24px 26px 28px; }
.card-media .card-icon {
  width: 48px; height: 48px;
  font-size: 22px;
  margin: -48px 0 14px;
  position: relative;
  border: 3px solid var(--white);
  background: var(--brand-soft);
  box-shadow: var(--shadow);
}

/* ── Property cards ──────────────────────────────────────────── */
.prop-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .18s ease, box-shadow .18s ease;
  display: flex;
  flex-direction: column;
}
.prop-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.prop-img {
  position: relative;
  height: 210px;
  overflow: hidden;
  background: var(--cream);
}
.prop-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}
.prop-card:hover .prop-img img { transform: scale(1.06); }
.prop-tag {
  position: absolute; top: 14px; left: 14px;
  background: var(--brand);
  color: #fff;
  font-size: 12px; font-weight: 700;
  padding: 5px 13px;
  border-radius: 999px;
  letter-spacing: .3px;
}
.prop-tag.tag-sale { background: var(--blue); }
.prop-tag.tag-hot  { background: #d64545; }
.prop-price {
  position: absolute; bottom: 14px; left: 14px;
  background: rgba(14, 30, 51, .88);
  color: #ffd98a;
  font-family: 'Sora';
  font-weight: 700; font-size: 15.5px;
  padding: 6px 14px;
  border-radius: 10px;
}
.prop-body { padding: 20px 22px 22px; flex: 1; display: flex; flex-direction: column; }
.prop-body h3 { font-size: 17.5px; margin-bottom: 6px; }
.prop-loc { color: var(--muted); font-size: 13.5px; margin-bottom: 14px; }
.prop-specs {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}
.prop-specs span {
  background: var(--cream);
  border: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 12.5px; font-weight: 600;
  padding: 5px 12px;
  border-radius: 999px;
}
.prop-cta { margin-top: 16px; display: flex; gap: 10px; }
.prop-cta .btn { padding: 9px 18px; font-size: 13.5px; flex: 1; text-align: center; }

/* Filters */
.filters {
  display: flex; justify-content: center; flex-wrap: wrap;
  gap: 10px; margin-bottom: 40px;
}
.filters .btn { padding: 9px 20px; font-size: 13.5px; }

/* ── Why-us strip ────────────────────────────────────────────── */
.why-item { text-align: center; padding: 10px; }
.why-item .card-icon { margin: 0 auto 16px; }
.why-item h3 { font-size: 16.5px; margin-bottom: 8px; }
.why-item p  { font-size: 14px; color: var(--ink-soft); }

/* ── Steps ───────────────────────────────────────────────────── */
.step { position: relative; padding: 28px 24px 24px; }
.step-num {
  font-family: 'Sora';
  font-size: 42px; font-weight: 800;
  color: var(--brand);
  opacity: .22;
  display: block; margin-bottom: 8px;
}

/* ── Split / about section ───────────────────────────────────── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 54px;
  align-items: center;
}
.split-img {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.split-img img { width: 100%; height: 100%; object-fit: cover; min-height: 380px; }
.split-img .exp-chip {
  position: absolute;
  right: 18px; bottom: 18px;
  background: var(--brand);
  color: #fff;
  border-radius: 14px;
  padding: 14px 20px;
  text-align: center;
  box-shadow: 0 12px 30px rgba(13, 138, 95, .5);
}
.split-img .exp-chip strong { display: block; font-family: 'Sora'; font-size: 26px; line-height: 1.1; }
.split-img .exp-chip span   { font-size: 12px; opacity: .95; }
.split-body .section-kicker { text-align: left; }
.split-body h2 { font-size: clamp(26px, 3.2vw, 36px); font-weight: 800; margin-bottom: 16px; }
.split-body p  { color: var(--ink-soft); margin-bottom: 14px; }
.check-list { margin: 20px 0 26px; }
.check-list li {
  display: flex; gap: 12px;
  margin-bottom: 12px;
  font-weight: 500;
  font-size: 15px;
}
.check-list li::before {
  content: '✓';
  width: 24px; height: 24px; flex: 0 0 24px;
  border-radius: 50%;
  background: var(--brand-soft);
  color: var(--brand-dark);
  font-weight: 800; font-size: 13px;
  display: grid; place-items: center;
  margin-top: 2px;
}

/* ── CTA band ────────────────────────────────────────────────── */
.cta-band {
  background: linear-gradient(120deg, var(--blue-dark), var(--brand));
  color: #fff;
  border-radius: 20px;
  padding: 54px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
  box-shadow: var(--shadow-lg);
}
.cta-band h2 { font-size: clamp(24px, 3vw, 32px); margin-bottom: 8px; }
.cta-band p  { opacity: .92; }
.cta-band .btn-dark { white-space: nowrap; }

/* ── Testimonials ────────────────────────────────────────────── */
.t-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 28px;
  display: flex;
  flex-direction: column;
}
.t-stars { color: var(--gold); font-size: 15px; letter-spacing: 2px; margin-bottom: 14px; }
.t-text  { color: var(--ink-soft); font-size: 14.5px; font-style: italic; flex: 1; }
.t-person { display: flex; align-items: center; gap: 12px; margin-top: 20px; }
.t-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--brand));
  color: #fff;
  display: grid; place-items: center;
  font-family: 'Sora'; font-weight: 700; font-size: 15px;
}
.t-person strong { display: block; font-size: 14.5px; }
.t-person span   { color: var(--muted); font-size: 12.5px; }

/* ── FAQ accordion ───────────────────────────────────────────── */
.faq-wrap { max-width: 780px; margin: 0 auto; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 22px;
  font-weight: 600;
  font-size: 15.5px;
  font-family: 'Sora';
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 22px;
  color: var(--brand-dark);
  font-weight: 400;
  transition: transform .2s;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item[open] summary { color: var(--brand-dark); }
.faq-item .faq-a {
  padding: 0 22px 20px;
  color: var(--ink-soft);
  font-size: 14.5px;
}

/* ── Calculators ─────────────────────────────────────────────── */
.calc-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px 32px;
  box-shadow: var(--shadow);
}
.calc-card h3 { font-size: 21px; margin-bottom: 6px; }
.calc-card > p { color: var(--ink-soft); font-size: 14.5px; margin-bottom: 24px; }
.calc-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: end;
}
.calc-group { margin-bottom: 16px; }
.calc-group label {
  display: block;
  font-size: 13.5px; font-weight: 600;
  margin-bottom: 6px;
}
.calc-group input,
.calc-group select {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  font: inherit;
  font-size: 15px;
  background: var(--cream);
  transition: border-color .15s, background .15s;
}
.calc-group input:focus,
.calc-group select:focus {
  outline: none;
  border-color: var(--brand);
  background: var(--white);
}
.calc-result {
  background: var(--brand-soft);
  border: 1px solid #c4e8d6;
  border-radius: 12px;
  padding: 20px 22px;
  margin-top: 8px;
}
.calc-result .cr-big {
  font-family: 'Sora';
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 800;
  color: var(--brand-dark);
}
.calc-result .cr-sub { color: var(--ink-soft); font-size: 13.5px; margin-top: 4px; }
.calc-note { color: var(--muted); font-size: 12.5px; margin-top: 14px; }

.conv-table { width: 100%; border-collapse: collapse; font-size: 14.5px; }
.conv-table th, .conv-table td {
  text-align: left;
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
}
.conv-table th {
  font-family: 'Sora';
  font-size: 13px;
  letter-spacing: .5px;
  text-transform: uppercase;
  color: var(--brand-dark);
  background: var(--brand-soft);
}
.conv-table tr:hover td { background: var(--cream); }
.conv-table td b { color: var(--ink); }
.table-scroll { overflow-x: auto; border: 1px solid var(--line); border-radius: 12px; }

/* Slider-style EMI result bar */
.emi-breakup { display: flex; border-radius: 8px; overflow: hidden; height: 14px; margin-top: 14px; }
.emi-breakup .principal { background: var(--brand); }
.emi-breakup .interest  { background: var(--gold); }
.emi-legend { display: flex; gap: 20px; margin-top: 10px; font-size: 12.5px; color: var(--ink-soft); }
.emi-legend i {
  display: inline-block; width: 10px; height: 10px; border-radius: 3px; margin-right: 6px;
}
.emi-legend .li-p i { background: var(--brand); }
.emi-legend .li-i i { background: var(--gold); }

/* ── Contact page ────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 40px;
  align-items: start;
}
.contact-card {
  background: linear-gradient(160deg, var(--dark), var(--dark-2));
  color: #dfe3ea;
  border-radius: var(--radius);
  padding: 38px 34px;
}
.contact-card h3 { color: #fff; font-size: 21px; margin-bottom: 22px; }
.contact-item { display: flex; gap: 14px; margin-bottom: 22px; font-size: 15px; }
.contact-item .ci-icon {
  width: 42px; height: 42px; flex: 0 0 42px;
  border-radius: 11px;
  background: rgba(13, 138, 95, .25);
  display: grid; place-items: center;
  font-size: 19px;
}
.contact-item strong { display: block; color: #fff; font-size: 14px; margin-bottom: 2px; }
.contact-item a { color: #7fe0b6; }

.form-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 38px 34px;
  box-shadow: var(--shadow);
}
.form-card h3 { font-size: 21px; margin-bottom: 6px; }
.form-card > p { color: var(--ink-soft); font-size: 14.5px; margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-size: 13.5px; font-weight: 600;
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  font: inherit;
  font-size: 14.5px;
  background: var(--cream);
  transition: border-color .15s, background .15s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--brand);
  background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 120px; }

.alert {
  border-radius: 10px;
  padding: 14px 18px;
  font-size: 14.5px;
  font-weight: 500;
  margin-bottom: 20px;
}
.alert-success { background: #e8f6ec; color: #1e7a3c; border: 1px solid #bfe5cb; }
.alert-error   { background: #fdecec; color: #b3261e; border: 1px solid #f3c2bf; }

.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  margin-top: 60px;
}
.map-wrap iframe { display: block; width: 100%; height: 380px; border: 0; }

/* ── Areas strip ─────────────────────────────────────────────── */
.area-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
.area-strip span {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 22px;
  font-weight: 600;
  font-size: 14px;
  color: var(--ink-soft);
}
.area-strip span b { color: var(--brand-dark); }

.coverage {
  text-align: center;
  color: var(--ink-soft);
  font-size: 15px;
  margin-top: 40px;
}
.coverage strong { color: var(--ink); }

/* ── Footer ──────────────────────────────────────────────────── */
.footer {
  background: linear-gradient(160deg, var(--dark), var(--dark-2));
  color: #a9b2c1;
  padding-top: 64px;
  font-size: 14.5px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
  gap: 36px;
  padding-bottom: 44px;
}
.footer h4 { color: #fff; font-size: 15.5px; margin-bottom: 18px; }
.footer-brand { margin-bottom: 16px; }
.footer-brand .brand-text strong { color: #fff; }
.footer-about { font-size: 14px; line-height: 1.7; }
.footer-links li, .footer-contact li { margin-bottom: 10px; }
.footer-links a:hover { color: #35c98e; }
.footer-contact a { color: #7fe0b6; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 18px 0;
  font-size: 13px;
}
.footer-bottom-inner { display: flex; justify-content: space-between; gap: 10px; flex-wrap: wrap; }

/* ── WhatsApp float ──────────────────────────────────────────── */
.wa-float {
  position: fixed;
  right: 22px; bottom: 22px;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25d366;
  display: grid; place-items: center;
  box-shadow: 0 10px 26px rgba(37, 211, 102, .45);
  z-index: 80;
  transition: transform .15s ease;
}
.wa-float:hover { transform: scale(1.08); }

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 980px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-pics { min-height: 340px; }
  .hero-pic-badge { left: 10px; }
  .split { grid-template-columns: 1fr; gap: 36px; }
}

@media (max-width: 720px) {
  .nav {
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: stretch;
    padding: 10px 6vw 22px;
    gap: 4px;
    display: none;
    box-shadow: var(--shadow-lg);
  }
  .nav.open { display: flex; }
  .nav-link { padding: 12px 4px; border-bottom: 1px solid var(--line); }
  .nav-link.active { border-bottom-color: var(--brand); }
  .nav-cta { margin-top: 12px; text-align: center; }
  .nav-toggle { display: block; }

  .topbar-inner { justify-content: center; text-align: center; }
  .hero { padding: 64px 0 70px; }
  .hero-stats { gap: 26px; }
  .section { padding: 60px 0; }
  .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-band { padding: 38px 26px; text-align: center; justify-content: center; }
  .form-row, .calc-row { grid-template-columns: 1fr; }
}
