/* ASTANA HOME EXPERT — Stylesheet */

:root {
  --navy:     #0B1E3D;
  --navy-2:   #0F2A4A;
  --navy-3:   #162F50;
  --gold:     #C9A84C;
  --gold-l:   #D4B86A;
  --gold-bg:  rgba(201,168,76,0.08);
  --gold-bd:  rgba(201,168,76,0.25);
  --cream:    #F7F4EF;
  --cream-d:  #EDE9E0;
  --text:     #1A1A2E;
  --muted:    #6B7280;
  --border:   #E2DDD5;
  --white:    #FFFFFF;
  --shadow:   0 4px 24px rgba(11,30,61,0.10);
  --shadow-lg:0 12px 48px rgba(11,30,61,0.16);
  --radius:   12px;
  --radius-lg:20px;
  --header-h: 72px;
  --font-head:'Playfair Display', serif;
  --font-body:'Inter', sans-serif;
  --trans:    0.22s ease;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

/* ── Typography ── */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-tag::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
}

.section-title.light { color: var(--white); }

.section-lead {
  font-size: 17px;
  color: var(--muted);
  max-width: 520px;
  line-height: 1.7;
}

/* ── Buttons ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 8px;
  transition: background var(--trans), transform var(--trans), box-shadow var(--trans);
  white-space: nowrap;
}
.btn-primary:hover {
  background: var(--gold-l);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(201,168,76,0.35);
}
.btn-primary:active { transform: translateY(0); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--navy);
  font-weight: 600;
  font-size: 15px;
  padding: 13px 26px;
  border-radius: 8px;
  transition: all var(--trans);
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
}

.btn-outline-light {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.4);
  font-weight: 600;
  font-size: 15px;
  padding: 13px 26px;
  border-radius: 8px;
  transition: all var(--trans);
}
.btn-outline-light:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.7);
}

/* ── Demo badge ── */
.demo-badge {
  position: fixed;
  top: 16px;
  right: 16px;
  z-index: 9999;
  background: rgba(201,168,76,0.95);
  color: var(--navy);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 6px;
  backdrop-filter: blur(8px);
  pointer-events: none;
}

/* ── Header ── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  display: flex;
  align-items: center;
  padding: 0 48px;
  background: transparent;
  transition: background var(--trans), box-shadow var(--trans);
}

.site-header.scrolled {
  background: rgba(11,30,61,0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 16px rgba(0,0,0,0.2);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}

.header-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo-main {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.02em;
}
.logo-sub {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 2px;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.header-nav a {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  transition: color var(--trans);
}
.header-nav a:hover { color: var(--white); }
.header-nav a.active { color: var(--gold); }

.header-cta {
  display: flex;
  align-items: center;
  gap: 16px;
}
.header-phone {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  opacity: 0.9;
}
.header-phone:hover { opacity: 1; }

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: 6px;
  background: rgba(255,255,255,0.1);
}
.mobile-menu-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--trans), opacity var(--trans);
}

/* Mobile nav overlay */
.mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--navy);
  padding: 100px 32px 48px;
  flex-direction: column;
  gap: 32px;
}
.mobile-nav-overlay.open { display: flex; }
.mobile-nav-overlay a {
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 700;
  color: var(--white);
  opacity: 0.8;
  transition: opacity var(--trans);
}
.mobile-nav-overlay a:hover { opacity: 1; }
.mobile-nav-overlay .mobile-nav-phone {
  font-size: 18px;
  font-weight: 600;
  color: var(--gold);
  margin-top: auto;
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--navy) 0%, #0A2040 55%, #152D4A 100%);
  overflow: hidden;
  padding-top: var(--header-h);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 70% 50%, rgba(201,168,76,0.06) 0%, transparent 70%),
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C9A84C' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 60px;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 48px;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold-bg);
  border: 1px solid var(--gold-bd);
  color: var(--gold);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.hero-badge::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
}

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
}
.hero-title em {
  font-style: normal;
  color: var(--gold);
}

.hero-subtitle {
  font-size: 17px;
  color: rgba(255,255,255,0.68);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 500px;
}

.hero-stats {
  display: flex;
  gap: 36px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 8px;
}
.stat-item {}
.stat-num {
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  margin-top: 4px;
}

/* ── Finder Card (Hero right side) ── */
.finder-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.3);
}

.finder-title {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}
.finder-subtitle {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 24px;
}

.finder-step {
  margin-bottom: 20px;
}
.finder-step-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}

.pill-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.finder-pill {
  padding: 8px 16px;
  border-radius: 100px;
  border: 1.5px solid var(--border);
  background: var(--white);
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  transition: all var(--trans);
  font-family: var(--font-body);
}
.finder-pill:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.finder-pill.active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

.finder-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 20px 0;
}

.finder-result {
  background: var(--cream);
  border-radius: 10px;
  padding: 14px 16px;
  margin-bottom: 16px;
  font-size: 13px;
  color: var(--muted);
  display: none;
}
.finder-result.visible { display: block; }
.finder-result strong {
  display: block;
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 2px;
}

.finder-cta { width: 100%; justify-content: center; font-size: 16px; padding: 16px; border-radius: 10px; }

/* ── Trust Bar ── */
.trust-bar {
  background: var(--navy);
  padding: 24px 48px;
}
.trust-bar-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
}
.trust-icon {
  width: 40px;
  height: 40px;
  background: var(--gold-bg);
  border: 1px solid var(--gold-bd);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}
.trust-text-num {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.trust-text-label {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  margin-top: 2px;
}

/* ── Section Commons ── */
.section {
  padding: 96px 48px;
}
.section-inner {
  max-width: 1280px;
  margin: 0 auto;
}
.section-header {
  margin-bottom: 48px;
}

/* ── Property Cards ── */
.props-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.prop-card {
  display: block;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--trans), box-shadow var(--trans);
  border: 1px solid var(--border);
  cursor: pointer;
}
.prop-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.prop-img {
  position: relative;
  height: 220px;
  overflow: hidden;
  border-radius: var(--radius) var(--radius) 0 0;
}

.prop-img-inner {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.prop-card:hover .prop-img-inner { transform: scale(1.04); }

.prop-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.22;
  color: rgba(255,255,255,0.9);
}

.prop-badges {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.prop-badge {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
}
.badge-new    { background: var(--gold); color: var(--navy); }
.badge-hot    { background: #E53935; color: var(--white); }
.badge-invest { background: var(--navy); color: var(--gold); border: 1px solid var(--gold-bd); }
.badge-sale   { background: #2E7D32; color: var(--white); }

.prop-price-tag {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(11,30,61,0.88);
  backdrop-filter: blur(4px);
  color: var(--white);
  font-size: 15px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 6px;
}

.prop-fav {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  background: rgba(255,255,255,0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--muted);
  transition: all var(--trans);
  backdrop-filter: blur(4px);
}
.prop-fav:hover, .prop-fav.active { color: #E53935; background: white; }

.prop-info { padding: 20px; }

.prop-complex {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}

.prop-name {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.3;
}

.prop-spec {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 6px;
}

.prop-location {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 10px;
}

.prop-installment {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  background: var(--cream);
  padding: 6px 10px;
  border-radius: 6px;
  margin-bottom: 14px;
  display: inline-block;
}

.prop-actions {
  display: flex;
  gap: 8px;
}

.btn-prop-price {
  flex: 1;
  background: var(--navy);
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  padding: 10px 16px;
  border-radius: 8px;
  transition: background var(--trans);
  font-family: var(--font-body);
}
.btn-prop-price:hover { background: var(--navy-2); }

.btn-prop-wa {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #25D366;
  border-radius: 8px;
  color: white;
  font-size: 18px;
  flex-shrink: 0;
  transition: background var(--trans);
}
.btn-prop-wa:hover { background: #1ebe5a; }
.btn-prop-wa svg { width: 20px; height: 20px; }

/* ── Section: How We Work ── */
.how-section { background: var(--cream-d); }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 56px;
  right: 56px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-bd) 20%, var(--gold-bd) 80%, transparent);
  z-index: 0;
}

.step-item {
  position: relative;
  z-index: 1;
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px;
  border: 1px solid var(--border);
  text-align: center;
}

.step-num {
  width: 56px;
  height: 56px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  color: var(--gold);
  margin: 0 auto 16px;
}

.step-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.step-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

/* ── Districts ── */
.districts-section { background: var(--navy); }

.districts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.district-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: background var(--trans), border-color var(--trans);
  cursor: pointer;
}
.district-card:hover {
  background: rgba(201,168,76,0.08);
  border-color: var(--gold-bd);
}

.district-icon {
  width: 48px;
  height: 48px;
  background: rgba(201,168,76,0.12);
  border: 1px solid var(--gold-bd);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 16px;
}

.district-name {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}

.district-props {
  font-size: 13px;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 8px;
}

.district-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
}

/* ── Why Us ── */
.why-section {}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.why-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
}
.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-l));
  opacity: 0;
  transition: opacity var(--trans);
}
.why-card:hover::before { opacity: 1; }

.why-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 20px;
  flex-shrink: 0;
}

.why-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.why-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
}

/* ── Reviews ── */
.reviews-section { background: var(--cream-d); }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.review-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px;
  border: 1px solid var(--border);
}

.review-stars {
  font-size: 14px;
  color: var(--gold);
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.review-text {
  font-size: 14px;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 16px;
  color: var(--gold);
  flex-shrink: 0;
}

.review-name {
  font-weight: 700;
  font-size: 14px;
  color: var(--navy);
}
.review-info {
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px;
}

/* ── Lead Form ── */
.lead-section {
  background: var(--navy);
  padding: 96px 48px;
}
.lead-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.lead-title {
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.2;
}
.lead-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 40px;
}

.lead-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: left;
}

.form-field label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}

.form-input {
  background: rgba(255,255,255,0.08);
  border: 1.5px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  color: var(--white);
  font-size: 15px;
  font-family: var(--font-body);
  padding: 13px 16px;
  outline: none;
  transition: border-color var(--trans), background var(--trans);
}
.form-input::placeholder { color: rgba(255,255,255,0.3); }
.form-input:focus {
  border-color: var(--gold);
  background: rgba(255,255,255,0.12);
}

.form-select {
  background: rgba(255,255,255,0.08);
  border: 1.5px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  color: rgba(255,255,255,0.8);
  font-size: 15px;
  font-family: var(--font-body);
  padding: 13px 16px;
  outline: none;
  transition: border-color var(--trans);
  cursor: pointer;
  appearance: none;
}
.form-select:focus { border-color: var(--gold); }
.form-select option { background: var(--navy); color: var(--white); }

.form-field.full { grid-column: 1 / -1; }

.form-submit {
  grid-column: 1 / -1;
  background: var(--gold);
  color: var(--navy);
  font-size: 16px;
  font-weight: 700;
  padding: 16px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  transition: background var(--trans), transform var(--trans);
  margin-top: 4px;
}
.form-submit:hover { background: var(--gold-l); transform: translateY(-1px); }

.form-privacy {
  grid-column: 1 / -1;
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  text-align: center;
}

/* ── Marquee ── */
.marquee-section {
  background: var(--gold);
  padding: 14px 0;
  overflow: hidden;
}
.marquee-track {
  display: flex;
  gap: 48px;
  animation: marquee 30s linear infinite;
  white-space: nowrap;
}
.marquee-track:hover { animation-play-state: paused; }
.marquee-item {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 12px;
}
.marquee-item::after {
  content: '◆';
  font-size: 8px;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── Footer ── */
.site-footer {
  background: #060E1A;
  padding: 64px 48px 32px;
  color: rgba(255,255,255,0.6);
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 32px;
}
.footer-brand { }
.footer-logo-main {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}
.footer-logo-sub {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.footer-tagline {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255,255,255,0.5);
  max-width: 260px;
  margin-bottom: 24px;
}
.footer-social {
  display: flex;
  gap: 10px;
}
.footer-social a {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  transition: all var(--trans);
}
.footer-social a:hover {
  background: var(--gold-bg);
  border-color: var(--gold-bd);
  color: var(--gold);
}

.footer-col-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  transition: color var(--trans);
}
.footer-col a:hover { color: var(--gold); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  gap: 16px;
  flex-wrap: wrap;
}

/* ── WhatsApp Float ── */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.wa-bubble-text {
  background: var(--white);
  color: var(--text);
  font-size: 13px;
  font-weight: 600;
  padding: 10px 16px;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  white-space: nowrap;
  position: relative;
  transition: opacity 0.4s, transform 0.4s;
}
.wa-bubble-text::after {
  content: '';
  position: absolute;
  bottom: -6px;
  right: 18px;
  width: 12px;
  height: 12px;
  background: var(--white);
  clip-path: polygon(0 0, 100% 0, 100% 100%);
  transform: rotate(45deg);
}

.wa-btn {
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,0.4);
  transition: transform var(--trans), box-shadow var(--trans);
  flex-shrink: 0;
}
.wa-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 24px rgba(37,211,102,0.5);
}
.wa-btn svg { width: 28px; height: 28px; }

/* ── Catalog Page ── */
.catalog-hero {
  background: linear-gradient(135deg, var(--navy) 0%, #0A2040 100%);
  padding: calc(var(--header-h) + 48px) 48px 48px;
}
.catalog-hero-inner {
  max-width: 1280px;
  margin: 0 auto;
}
.catalog-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.catalog-hero p {
  font-size: 15px;
  color: rgba(255,255,255,0.6);
}

.catalog-layout {
  max-width: 1280px;
  margin: 0 auto;
  padding: 40px 48px 80px;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 32px;
  align-items: start;
}

/* Catalog Sidebar */
.catalog-sidebar {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  position: sticky;
  top: calc(var(--header-h) + 20px);
}

.sidebar-header {
  padding: 20px 20px 16px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sidebar-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.btn-reset-filters {
  font-size: 12px;
  font-weight: 600;
  color: var(--gold);
  cursor: pointer;
  background: none;
  border: none;
  font-family: var(--font-body);
  padding: 0;
}
.btn-reset-filters:hover { text-decoration: underline; }

.filter-section {
  padding: 20px;
  border-bottom: 1px solid var(--border);
}
.filter-section:last-child { border-bottom: none; }

.filter-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}

.filter-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.filter-pill {
  padding: 6px 12px;
  border-radius: 100px;
  border: 1.5px solid var(--border);
  background: var(--white);
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  transition: all var(--trans);
  font-family: var(--font-body);
}
.filter-pill:hover { border-color: var(--navy); color: var(--navy); }
.filter-pill.active { background: var(--navy); border-color: var(--navy); color: var(--white); }

.price-range {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 8px;
  align-items: center;
}

.price-range-input {
  flex: 1;
  min-width: 0;
  width: 0;
  background: var(--cream);
  border: 1.5px solid var(--border);
  border-radius: 6px;
  padding: 8px 10px;
  font-size: 13px;
  font-family: var(--font-body);
  color: var(--text);
  outline: none;
  transition: border-color var(--trans);
  width: 100%;
}
.price-range-input:focus { border-color: var(--navy); }
.price-range-sep {
  font-size: 14px;
  color: var(--muted);
  text-align: center;
}

/* Sort bar */
.catalog-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 12px;
}
.catalog-count {
  font-size: 14px;
  color: var(--muted);
}
.catalog-count strong { color: var(--navy); font-weight: 700; }

.sort-select {
  border: 1.5px solid var(--border);
  border-radius: 8px;
  background: var(--white);
  color: var(--text);
  font-size: 13px;
  font-family: var(--font-body);
  padding: 8px 12px;
  outline: none;
  cursor: pointer;
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.mobile-filter-btn {
  display: none;
  align-items: center;
  gap: 8px;
  background: var(--navy);
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  padding: 11px 20px;
  border-radius: 8px;
  font-family: var(--font-body);
  cursor: pointer;
  border: none;
  margin-bottom: 16px;
}

/* ── Responsive ── */
@media (max-width: 1100px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 60px 32px;
  }
  .hero-subtitle { margin: 0 auto 36px; }
  .hero-stats { justify-content: center; }
  .finder-card { max-width: 500px; margin: 0 auto; }

  .props-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid   { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .steps-grid::before { display: none; }
  .districts-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: repeat(2, 1fr); }

  .catalog-layout { grid-template-columns: 1fr; }
  .catalog-sidebar { display: none; position: static; }
  .catalog-sidebar.open { display: block; }
  .mobile-filter-btn { display: flex; }
  .catalog-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .section { padding: 64px 24px; }
  .trust-bar { padding: 20px 24px; }
  .trust-bar-inner { gap: 20px; }

  .header-nav { display: none; }
  .header-cta .btn-primary { display: none; }
  .mobile-menu-btn { display: flex; }
  .site-header { padding: 0 24px; }

  .props-grid { grid-template-columns: 1fr; }
  .why-grid   { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .districts-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .hero-inner { padding: 48px 24px; }
  .catalog-hero { padding: calc(var(--header-h) + 24px) 24px 32px; }
  .catalog-layout { padding: 24px 24px 60px; }
  .catalog-grid { grid-template-columns: 1fr; }

  .lead-form { grid-template-columns: 1fr; }
  .lead-section { padding: 64px 24px; }

  .wa-float { bottom: 20px; right: 20px; }
}

@media (max-width: 480px) {
  .trust-bar-inner { flex-direction: column; align-items: flex-start; }
  .hero-stats { flex-direction: column; gap: 16px; }
}
