/* ============================================================
   DIGICON REALTORS — Unified Stylesheet
   Typography: Cormorant Garamond (display) + DM Sans (body)
   Palette: Deep Forest Green + Warm Cream + Champagne Gold
   ============================================================ */

/* ── 0. Variables & Reset ─────────────────────────────────── */
:root {
  --primary:       #1A3A26;
  --primary-mid:   #2D5C3C;
  --primary-dark:  #0C1A12;
  --primary-light: #EBF2EE;
  --accent:        #C9A96E;
  --accent-light:  #F7F0E3;
  --cream:         #FAF6EE;
  --white:         #FFFFFF;
  --dark:          #0C1A12;
  --text-1:        #0C1A12;
  --text-2:        #3D5444;
  --text-3:        #7A8E81;
  --bdr:           #DDE8E1;
  --card-bg:       #FFFFFF;
  --font-display:  'Cormorant Garamond', serif;
  --font-body:     'DM Sans', sans-serif;
  --max-w:         1240px;
  --gutter:        1.5rem;
  --radius:        16px;
  --radius-lg:     24px;
  --ease:          cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-sm:     0 2px 12px rgba(12,26,18,.06);
  --shadow-md:     0 8px 32px rgba(12,26,18,.10);
  --shadow-lg:     0 20px 60px rgba(12,26,18,.14);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: var(--font-body); background: var(--white); color: var(--text-1); overflow-x: hidden; line-height: 1.6; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { font-family: var(--font-body); cursor: pointer; }
input, select, textarea { font-family: var(--font-body); }

/* ── 1. Typography ────────────────────────────────────────── */
.display-xl { font-family: var(--font-display); font-size: clamp(52px, 7vw, 88px); font-weight: 600; line-height: 1.0; letter-spacing: -1px; }
.display-lg { font-family: var(--font-display); font-size: clamp(40px, 5vw, 64px); font-weight: 600; line-height: 1.1; letter-spacing: -0.5px; }
.display-md { font-family: var(--font-display); font-size: clamp(28px, 3.5vw, 44px); font-weight: 600; line-height: 1.2; }
.display-sm { font-family: var(--font-display); font-size: clamp(22px, 2.5vw, 32px); font-weight: 600; line-height: 1.3; }
.text-lg { font-size: 1.125rem; line-height: 1.75; }
.text-md { font-size: 1rem; line-height: 1.7; }
.text-sm { font-size: 0.875rem; line-height: 1.6; }
.text-xs { font-size: 0.75rem; letter-spacing: 0.04em; }
.italic { font-style: italic; }
.gold { color: var(--accent); }
.green { color: var(--primary); }

/* ── 2. Layout Utilities ──────────────────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--gutter); }
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.section-label {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-body); font-size: 11px; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase; color: var(--accent);
  margin-bottom: 18px;
}
.section-label::before { content: ''; width: 28px; height: 1.5px; background: var(--accent); }
.section-header { margin-bottom: 56px; }
.section-header.centered { text-align: center; }
.section-header.split { display: flex; justify-content: space-between; align-items: flex-end; }
.divider { width: 48px; height: 2px; background: var(--accent); margin: 20px 0; }
.divider.centered { margin: 20px auto; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 32px; border-radius: 50px; font-size: 14px; font-weight: 600;
  letter-spacing: 0.02em; transition: all 0.25s var(--ease); border: 2px solid transparent;
  white-space: nowrap;
}
.btn-primary { background: var(--primary); color: var(--white); border-color: var(--primary); }
.btn-primary:hover { background: var(--primary-mid); border-color: var(--primary-mid); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(26,58,38,.25); }
.btn-gold { background: var(--accent); color: var(--white); border-color: var(--accent); }
.btn-gold:hover { background: #b8935a; border-color: #b8935a; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,169,110,.3); }
.btn-outline { background: transparent; color: var(--primary); border-color: var(--primary); }
.btn-outline:hover { background: var(--primary); color: var(--white); transform: translateY(-2px); }
.btn-outline-white { background: transparent; color: var(--white); border-color: rgba(255,255,255,.55); }
.btn-outline-white:hover { background: var(--white); color: var(--primary); }
.btn-outline-gold { background: transparent; color: var(--accent); border-color: var(--accent); }
.btn-outline-gold:hover { background: var(--accent); color: var(--white); }
.btn-sm { padding: 10px 22px; font-size: 13px; }
.btn-lg { padding: 18px 40px; font-size: 15px; }
.btn i, .btn svg { font-size: 12px; transition: transform 0.2s; }
.btn:hover i { transform: translateX(3px); }

/* Tag / Badge */
.tag { display: inline-block; padding: 5px 14px; border-radius: 50px; font-size: 11px; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase; }
.tag-available { background: #D1FAE5; color: #065F46; }
.tag-upcoming  { background: #FEF3C7; color: #92400E; }
.tag-occupied  { background: #F3F4F6; color: #6B7280; }
.tag-sale      { background: var(--primary-light); color: var(--primary); }
.tag-rent      { background: var(--accent-light); color: #8B6914; }

/* ── 3. Navigation ────────────────────────────────────────── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  padding: 0 var(--gutter); transition: background 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.navbar.transparent { background: transparent; }
.navbar.scrolled {
  background: rgba(12,26,18,.92); backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px); box-shadow: 0 1px 0 rgba(255,255,255,.08);
}
.navbar.light-page { background: var(--white); box-shadow: var(--shadow-sm); }
.navbar.light-page .nav-link { color: var(--text-1); }
.navbar.light-page .nav-link:hover { color: var(--primary); }
.navbar.light-page .nav-logo-text strong { color: var(--primary); }
.navbar.light-page .nav-logo-text small { color: var(--text-3); }
.navbar.light-page .nav-manage { color: var(--primary); }
.nav-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; height: 76px;
}
.nav-logo { display: flex; align-items: center; gap: 14px; text-decoration: none; }
.nav-logo-mark {
  width: 38px; height: 38px; flex-shrink: 0;
  border-radius: 50%;
  border: 1.5px solid var(--accent);
  background: transparent;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.25s;
}
.navbar.transparent .nav-logo-mark { background: rgba(201,169,110,.08); }
.navbar.light-page .nav-logo-mark,
.navbar.scrolled .nav-logo-mark  { background: rgba(26,58,38,.08); border-color: var(--primary); }
.nav-logo-mark span {
  font-family: var(--font-display); font-size: 20px; font-weight: 600;
  color: var(--accent); line-height: 1; letter-spacing: 0;
}
.navbar.light-page .nav-logo-mark span,
.navbar.scrolled .nav-logo-mark span { color: var(--primary); }
.nav-logo-text strong {
  display: block; font-size: 13px; font-weight: 700;
  color: var(--white); letter-spacing: 2px; text-transform: uppercase;
}
.nav-logo-text small {
  font-size: 9px; color: rgba(255,255,255,.45);
  letter-spacing: 2.5px; text-transform: uppercase;
}
.navbar.light-page .nav-logo-text strong,
.navbar.scrolled .nav-logo-text strong { color: var(--primary); }
.navbar.light-page .nav-logo-text small,
.navbar.scrolled .nav-logo-text small  { color: var(--text-3); }
.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-link { font-size: 13px; font-weight: 500; color: rgba(255,255,255,.8); transition: color 0.2s; letter-spacing: 0.3px; }
.nav-link:hover, .nav-link.active { color: var(--accent); }
.nav-actions { display: flex; align-items: center; gap: 14px; }
.nav-manage { font-size: 13px; font-weight: 600; color: rgba(255,255,255,.75); background: none; border: none; cursor: pointer; letter-spacing: 0.2px; transition: color 0.2s; }
.nav-manage:hover { color: var(--accent); }
.nav-cta { background: var(--accent); color: var(--white); padding: 10px 24px; border-radius: 50px; font-size: 13px; font-weight: 700; border: none; cursor: pointer; transition: all 0.25s; letter-spacing: 0.3px; }
.nav-cta:hover { background: #b8935a; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(201,169,110,.35); }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: 6px; cursor: pointer; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--white); border-radius: 2px; transition: all 0.3s; }
.navbar.light-page .hamburger span { background: var(--primary); }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
.mobile-nav {
  display: none; position: fixed; inset: 0; z-index: 899;
  background: var(--primary-dark); padding: 100px 32px 48px;
  flex-direction: column; gap: 8px;
  overflow-y: auto;
}
.mobile-nav.open { display: flex; animation: fadeIn .25s ease; }
.mobile-nav-link { font-size: 28px; font-family: var(--font-display); font-weight: 600; color: var(--white); padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.08); letter-spacing: 0.5px; }
.mobile-nav-link:hover { color: var(--accent); }
.mobile-nav-actions { display: flex; flex-direction: column; gap: 12px; margin-top: 32px; }

/* ── 4. Hero ──────────────────────────────────────────────── */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1512917774080-9991f1c4c750?w=1800&q=85') center/cover no-repeat;
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(12,26,18,.95) 0%, rgba(12,26,18,.60) 45%, rgba(12,26,18,.25) 100%);
}
.hero-content {
  position: relative; z-index: 1;
  width: 100%;
  padding-top: 120px;   /* ~120px breathing room below fixed nav */
  padding-bottom: 60px;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase;
  color: var(--accent); margin-bottom: 24px;
}
.hero-eyebrow::before { content: ''; width: 32px; height: 1px; background: var(--accent); }
.hero h1 {
  font-family: var(--font-display); font-size: clamp(52px, 7.5vw, 100px);
  font-weight: 600; line-height: 1.0; color: var(--white);
  letter-spacing: -1px; margin-bottom: 24px; max-width: 820px;
}
.hero h1 em { font-style: italic; color: var(--accent); }
.hero-sub { font-size: 16px; color: rgba(255,255,255,.72); line-height: 1.75; max-width: 560px; margin-bottom: 36px; }

/* Hero Search Bar */
.hero-search {
  display: flex; align-items: stretch;
  background: rgba(255,255,255,.97);
  border-radius: 12px; overflow: hidden;
  max-width: 780px; margin-bottom: 18px;
  box-shadow: 0 8px 48px rgba(0,0,0,.40);
}
.hero-search-field {
  flex: 1; display: flex; flex-direction: column;
  padding: 14px 22px; border-right: 1px solid #E8E4DC;
  min-width: 0; transition: background 0.2s;
}
.hero-search-field:hover { background: #F7F3EA; }
.hero-search-field label {
  font-size: 10px; font-weight: 700; letter-spacing: 1.2px;
  text-transform: uppercase; color: var(--text-3);
  margin-bottom: 5px; display: block;
}
.hero-search-field select {
  border: none; outline: none; background: transparent;
  font-family: var(--font-body); font-size: 14px; font-weight: 600;
  color: var(--text-1); cursor: pointer; width: 100%;
  appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='7' viewBox='0 0 11 7'%3E%3Cpath d='M1 1l4.5 4.5L10 1' stroke='%231A3A26' stroke-width='1.6' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 2px center;
  padding-right: 18px;
}
.hero-search-btn {
  padding: 0 32px; background: var(--accent); border: none;
  color: var(--primary); font-family: var(--font-body);
  font-size: 14px; font-weight: 700; cursor: pointer; letter-spacing: 0.3px;
  display: flex; align-items: center; gap: 10px;
  transition: background 0.25s; white-space: nowrap; flex-shrink: 0;
  text-decoration: none;
}
.hero-search-btn:hover { background: #D4B478; color: var(--primary); }
.hero-landlord {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; color: rgba(255,255,255,.6);
  margin-bottom: 52px; cursor: pointer;
  transition: color 0.2s; border: none; background: none;
  font-family: var(--font-body); padding: 0;
}
.hero-landlord:hover { color: var(--accent); }
.hero-landlord span { text-decoration: underline; text-underline-offset: 3px; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 64px; }
.hero-stats-bar {
  display: flex; gap: 0; border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 40px;
}
.hero-stat {
  flex: 1; padding-right: 32px;
  border-right: 1px solid rgba(255,255,255,.1);
  margin-right: 32px;
}
.hero-stat:last-child { border-right: none; margin-right: 0; }
.hero-stat strong { display: block; font-family: var(--font-display); font-size: 40px; font-weight: 600; color: var(--white); line-height: 1; margin-bottom: 6px; }
.hero-stat strong span { color: var(--accent); }
.hero-stat p { font-size: 12px; color: rgba(255,255,255,.5); letter-spacing: 1.5px; text-transform: uppercase; font-weight: 500; }

/* ── 5. Marquee Ticker ────────────────────────────────────── */
.ticker { background: var(--accent); padding: 14px 0; overflow: hidden; }
.ticker-track { display: flex; gap: 0; animation: tickerScroll 28s linear infinite; white-space: nowrap; }
.ticker-item { display: inline-flex; align-items: center; gap: 24px; padding: 0 32px; font-size: 12px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--white); flex-shrink: 0; }
.ticker-dot { width: 4px; height: 4px; background: rgba(255,255,255,.5); border-radius: 50%; }

/* ── 6. Why Digicon ───────────────────────────────────────── */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: var(--bdr); border: 1px solid var(--bdr); border-radius: var(--radius-lg); overflow: hidden; }
.why-card { background: var(--white); padding: 40px 32px; position: relative; overflow: hidden; transition: background 0.3s; }
.why-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--accent); transform: scaleX(0); transform-origin: left; transition: transform 0.35s var(--ease); }
.why-card:hover::before { transform: scaleX(1); }
.why-card:hover { background: var(--cream); }
.why-icon { width: 52px; height: 52px; background: var(--primary-light); border-radius: 14px; display: flex; align-items: center; justify-content: center; color: var(--primary); font-size: 20px; margin-bottom: 20px; }
.why-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 10px; color: var(--text-1); }
.why-card p { font-size: 14px; color: var(--text-2); line-height: 1.7; }

/* ── 7. Property Categories ───────────────────────────────── */
.cat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.cat-card {
  background: var(--white); border: 1.5px solid var(--bdr); border-radius: var(--radius);
  padding: 32px 24px; text-align: center; cursor: pointer;
  transition: all 0.3s var(--ease);
}
.cat-card:hover, .cat-card.active { border-color: var(--primary); background: var(--primary-light); transform: translateY(-4px); box-shadow: var(--shadow-md); }
.cat-icon { width: 60px; height: 60px; border-radius: 16px; background: var(--primary-light); margin: 0 auto 18px; display: flex; align-items: center; justify-content: center; font-size: 24px; transition: background 0.3s; }
.cat-card:hover .cat-icon, .cat-card.active .cat-icon { background: var(--primary); }
.cat-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 4px; color: var(--text-1); }
.cat-card p { font-size: 13px; color: var(--text-3); }

/* ── 8. About Split ───────────────────────────────────────── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-img-col { position: relative; }
.about-img-main { border-radius: var(--radius-lg); overflow: hidden; height: 580px; }
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-badge {
  position: absolute; bottom: -24px; right: -24px;
  background: var(--primary); color: var(--white); border-radius: var(--radius);
  padding: 24px 28px; text-align: center; min-width: 140px;
  border: 4px solid var(--white);
}
.about-badge strong { display: block; font-family: var(--font-display); font-size: 48px; font-weight: 600; color: var(--accent); line-height: 1; }
.about-badge span { font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; opacity: .7; margin-top: 4px; display: block; }
.about-features { display: flex; flex-direction: column; gap: 14px; margin: 28px 0 36px; }
.about-feature { display: flex; gap: 14px; align-items: flex-start; background: var(--cream); border-radius: 12px; padding: 16px; }
.about-feature-icon { width: 42px; height: 42px; min-width: 42px; background: var(--primary); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--accent); font-size: 15px; }
.about-feature-text strong { display: block; font-size: 14px; font-weight: 700; margin-bottom: 3px; }
.about-feature-text span { font-size: 13px; color: var(--text-2); }

/* ── 9. Services ──────────────────────────────────────────── */
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.service-card { border-radius: var(--radius-lg); overflow: hidden; background: var(--white); border: 1px solid var(--bdr); transition: all 0.35s var(--ease); cursor: pointer; }
.service-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-6px); border-color: transparent; }
.service-img { height: 220px; overflow: hidden; }
.service-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.55s var(--ease); }
.service-card:hover .service-img img { transform: scale(1.06); }
.service-body { padding: 28px 32px; }
.service-num { font-family: var(--font-display); font-size: 13px; color: var(--accent); font-weight: 600; letter-spacing: 1px; margin-bottom: 10px; }
.service-body h3 { font-size: 20px; font-weight: 700; margin-bottom: 10px; line-height: 1.3; }
.service-body p { font-size: 14px; color: var(--text-2); line-height: 1.75; margin-bottom: 20px; }
.service-link { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 700; color: var(--primary); transition: gap 0.2s; }
.service-link:hover { gap: 10px; }
.service-link i { font-size: 11px; }

/* ── 10. Property Cards ───────────────────────────────────── */
.prop-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.prop-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.prop-card { border-radius: var(--radius-lg); overflow: hidden; background: var(--white); border: 1px solid var(--bdr); transition: all 0.35s var(--ease); }
.prop-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-8px); border-color: transparent; }
.prop-img { position: relative; height: 240px; overflow: hidden; background: var(--primary-light); }
.prop-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.55s var(--ease); }
.prop-card:hover .prop-img img { transform: scale(1.07); }
.prop-img-badges { position: absolute; top: 14px; left: 14px; right: 14px; display: flex; justify-content: space-between; align-items: flex-start; }
.prop-wa-quick {
  width: 34px; height: 34px; background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 14px; opacity: 0; transition: opacity 0.3s;
  box-shadow: 0 2px 8px rgba(0,0,0,.2);
}
.prop-card:hover .prop-wa-quick { opacity: 1; }
.prop-body { padding: 22px 24px 24px; }
.prop-location { display: flex; align-items: center; gap: 6px; font-size: 12px; color: var(--text-3); margin-bottom: 8px; font-weight: 500; }
.prop-location i { color: var(--accent); font-size: 11px; }
.prop-body h3 { font-size: 17px; font-weight: 700; color: var(--text-1); margin-bottom: 14px; line-height: 1.35; }
.prop-amenities { display: flex; gap: 16px; margin-bottom: 18px; padding-bottom: 18px; border-bottom: 1px solid var(--bdr); }
.prop-amenity { display: flex; align-items: center; gap: 5px; font-size: 12px; color: var(--text-2); font-weight: 500; }
.prop-amenity i { color: var(--primary); font-size: 11px; }
.prop-footer { display: flex; gap: 10px; align-items: center; }
.prop-enquire { flex: 1; background: var(--primary); color: var(--white); padding: 10px 16px; border-radius: 50px; font-size: 13px; font-weight: 600; border: none; cursor: pointer; transition: all 0.25s; text-align: center; }
.prop-enquire:hover { background: var(--primary-mid); transform: translateY(-1px); }
.prop-enquire:disabled { background: var(--text-3); cursor: default; transform: none; }
.prop-wa-btn {
  width: 40px; height: 40px; background: #E8F5E9; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #25D366; font-size: 16px; border: 1.5px solid #C8E6C9; transition: all 0.25s;
  flex-shrink: 0;
}
.prop-wa-btn:hover { background: #25D366; color: white; border-color: #25D366; }

/* ── 11. Testimonials ─────────────────────────────────────── */
.testimonials { background: var(--primary-dark); }
.test-header .section-label { color: var(--accent); }
.test-header .section-label::before { background: var(--accent); }
.test-header h2 { color: var(--white); }
.test-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.test-card { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08); border-radius: var(--radius-lg); padding: 36px; transition: background 0.3s; }
.test-card:hover { background: rgba(255,255,255,.08); }
.test-stars { display: flex; gap: 3px; color: var(--accent); font-size: 13px; margin-bottom: 20px; }
.test-card blockquote { font-family: var(--font-display); font-size: 18px; font-style: italic; color: rgba(255,255,255,.88); line-height: 1.65; margin-bottom: 28px; }
.test-author { display: flex; align-items: center; gap: 14px; }
.test-avatar { width: 48px; height: 48px; border-radius: 50%; background: var(--primary); border: 2px solid rgba(201,169,110,.3); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 16px; color: var(--accent); flex-shrink: 0; }
.test-info strong { display: block; font-size: 14px; font-weight: 700; color: var(--white); }
.test-info span { font-size: 12px; color: rgba(255,255,255,.45); }

/* ── 12. Stats Counter ────────────────────────────────────── */
.stats-section { background: var(--primary); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat-item { padding: 56px 32px; text-align: center; border-right: 1px solid rgba(255,255,255,.1); }
.stat-item:last-child { border-right: none; }
.stat-num { font-family: var(--font-display); font-size: 60px; font-weight: 600; color: var(--white); line-height: 1; margin-bottom: 10px; }
.stat-num span { color: var(--accent); }
.stat-label { font-size: 12px; color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: 2px; font-weight: 600; }

/* ── 13. Process ──────────────────────────────────────────── */
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; }
.process-steps::before {
  content: ''; position: absolute; top: 40px; left: 12.5%; right: 12.5%;
  height: 1px; background: repeating-linear-gradient(90deg, var(--accent) 0, var(--accent) 10px, transparent 10px, transparent 20px);
}
.process-step { text-align: center; padding: 0 20px; position: relative; z-index: 1; }
.step-circle { width: 80px; height: 80px; border-radius: 50%; background: var(--white); border: 2px solid var(--accent); display: flex; align-items: center; justify-content: center; margin: 0 auto 24px; box-shadow: 0 0 0 8px var(--cream); transition: all 0.3s; }
.step-circle:hover { background: var(--primary); border-color: var(--primary); }
.step-circle span { font-family: var(--font-display); font-size: 22px; font-weight: 600; color: var(--primary); }
.step-circle:hover span { color: var(--accent); }
.process-step h3 { font-size: 16px; font-weight: 700; margin-bottom: 10px; }
.process-step p { font-size: 13px; color: var(--text-2); line-height: 1.7; }

/* ── 14. Team Grid ────────────────────────────────────────── */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.team-card { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--bdr); transition: all 0.3s; }
.team-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: transparent; }
.team-photo { height: 260px; background: var(--primary-light); display: flex; align-items: center; justify-content: center; overflow: hidden; }
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-initials { width: 96px; height: 96px; border-radius: 50%; background: var(--primary); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 30px; font-weight: 600; color: var(--accent); }
.team-info { padding: 22px 24px; border-top: 3px solid transparent; transition: border-color 0.3s; }
.team-card:hover .team-info { border-top-color: var(--accent); }
.team-info h3 { font-size: 17px; font-weight: 700; margin-bottom: 4px; }
.team-info span { font-size: 13px; color: var(--accent); font-weight: 600; display: block; margin-bottom: 14px; }
.team-socials { display: flex; gap: 8px; }
.team-socials a { width: 32px; height: 32px; border-radius: 50%; border: 1.5px solid var(--bdr); display: flex; align-items: center; justify-content: center; font-size: 12px; color: var(--text-3); transition: all 0.2s; }
.team-socials a:hover { background: var(--primary); border-color: var(--primary); color: var(--white); }

/* ── 15. Blog Grid ────────────────────────────────────────── */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.blog-card { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--bdr); background: var(--white); transition: all 0.3s; }
.blog-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: transparent; }
.blog-img { height: 210px; overflow: hidden; }
.blog-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.55s var(--ease); }
.blog-card:hover .blog-img img { transform: scale(1.06); }
.blog-body { padding: 24px 28px; }
.blog-cat { display: inline-block; background: var(--primary-light); color: var(--primary); padding: 4px 12px; border-radius: 50px; font-size: 11px; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase; margin-bottom: 12px; }
.blog-meta { font-size: 12px; color: var(--text-3); margin-bottom: 8px; display: flex; gap: 12px; }
.blog-body h3 { font-size: 18px; font-weight: 700; line-height: 1.4; margin-bottom: 12px; color: var(--text-1); }
.blog-body p { font-size: 13px; color: var(--text-2); line-height: 1.75; margin-bottom: 18px; }
.blog-read { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 700; color: var(--primary); transition: gap 0.2s; }
.blog-read:hover { gap: 10px; color: var(--primary-mid); }

/* ── 16. CTA Banner ───────────────────────────────────────── */
.cta-split { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.cta-card { border-radius: var(--radius-lg); padding: 52px 48px; position: relative; overflow: hidden; }
.cta-card.cta-green { background: var(--primary); }
.cta-card.cta-dark { background: var(--primary-dark); }
.cta-card::before { content: ''; position: absolute; top: -60px; right: -60px; width: 200px; height: 200px; border-radius: 50%; background: rgba(201,169,110,.08); }
.cta-card h3 { font-family: var(--font-display); font-size: 32px; font-weight: 600; color: var(--white); margin-bottom: 12px; line-height: 1.25; }
.cta-card p { font-size: 14px; color: rgba(255,255,255,.65); line-height: 1.75; margin-bottom: 28px; }

/* ── 17. Footer ───────────────────────────────────────────── */
.footer { background: var(--primary-dark); color: var(--white); padding: 80px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2.2fr 1fr 1fr 1.5fr; gap: 56px; margin-bottom: 64px; }
.footer-brand-copy { font-size: 14px; color: rgba(255,255,255,.45); line-height: 1.8; margin: 18px 0 24px; }
.footer-socials { display: flex; gap: 10px; }
.footer-socials a { width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,.06); display: flex; align-items: center; justify-content: center; font-size: 14px; color: rgba(255,255,255,.45); transition: all 0.25s; border: 1px solid rgba(255,255,255,.06); }
.footer-socials a:hover { background: var(--accent); border-color: var(--accent); color: var(--white); }
.footer-col h4 { font-size: 12px; font-weight: 700; color: rgba(255,255,255,.35); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 22px; }
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col ul li a { font-size: 14px; color: rgba(255,255,255,.55); transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--accent); }
.footer-contact { display: flex; flex-direction: column; gap: 14px; }
.footer-contact-row { display: flex; gap: 12px; align-items: flex-start; }
.footer-contact-row i { color: var(--accent); font-size: 13px; margin-top: 3px; flex-shrink: 0; }
.footer-contact-row span { font-size: 13px; color: rgba(255,255,255,.5); line-height: 1.6; }
.footer-contact-row a { color: rgba(255,255,255,.5); transition: color 0.2s; }
.footer-contact-row a:hover { color: var(--accent); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.06); padding: 24px 0; display: flex; justify-content: space-between; align-items: center; }
.footer-copy { font-size: 13px; color: rgba(255,255,255,.3); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 13px; color: rgba(255,255,255,.3); transition: color 0.2s; }
.footer-legal a:hover { color: rgba(255,255,255,.7); }
.fiabci-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(201,169,110,.12); border: 1px solid rgba(201,169,110,.25); border-radius: 8px; padding: 8px 14px; margin-top: 16px; }
.fiabci-badge span { font-size: 11px; color: var(--accent); font-weight: 700; letter-spacing: 1px; text-transform: uppercase; }

/* ── 18. Popups ───────────────────────────────────────────── */
.popup-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(12,26,18,.75); z-index: 9000;
  align-items: center; justify-content: center;
  backdrop-filter: blur(8px); padding: 20px;
}
.popup-overlay.active { display: flex; }
.popup-box {
  background: var(--white); border-radius: var(--radius-lg); width: 100%; max-width: 520px;
  max-height: 92vh; overflow-y: auto; position: relative;
  box-shadow: 0 32px 100px rgba(0,0,0,.35); animation: popIn 0.3s var(--ease);
}
.popup-header { padding: 32px 36px 0; position: sticky; top: 0; background: var(--white); z-index: 1; }
.popup-header-bar { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; padding-bottom: 24px; border-bottom: 1px solid var(--bdr); }
.popup-close { width: 36px; height: 36px; border-radius: 50%; border: 1.5px solid var(--bdr); background: transparent; cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 16px; color: var(--text-3); transition: all 0.2s; flex-shrink: 0; }
.popup-close:hover { background: var(--bdr); color: var(--text-1); }
.popup-title-group small { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--accent); display: block; margin-bottom: 6px; }
.popup-title-group h2 { font-family: var(--font-display); font-size: 26px; font-weight: 600; color: var(--text-1); line-height: 1.2; }
.popup-prop-name { display: inline-flex; align-items: center; gap: 7px; background: var(--primary-light); color: var(--primary); padding: 6px 14px; border-radius: 50px; font-size: 12px; font-weight: 600; margin-top: 10px; }
.popup-prop-name i { font-size: 10px; color: var(--accent); }
.popup-body { padding: 28px 36px 36px; }
.form-group { margin-bottom: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--text-1); margin-bottom: 7px; }
.form-group label .req { color: #DC2626; margin-left: 2px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 12px 16px; border: 1.5px solid var(--bdr);
  border-radius: 10px; font-size: 14px; color: var(--text-1);
  background: var(--white); outline: none; transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none; appearance: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(26,58,38,.08); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-group select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237A8E81' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; }
.radio-group { display: flex; flex-direction: column; gap: 10px; }
.radio-opt { display: flex; align-items: center; gap: 10px; cursor: pointer; }
.radio-opt input[type="radio"] { accent-color: var(--primary); width: 16px; height: 16px; flex-shrink: 0; }
.radio-opt span { font-size: 14px; color: var(--text-1); }
.popup-or { display: flex; align-items: center; gap: 12px; margin: 20px 0; }
.popup-or::before, .popup-or::after { content: ''; flex: 1; height: 1px; background: var(--bdr); }
.popup-or span { font-size: 12px; color: var(--text-3); font-weight: 600; letter-spacing: 1px; text-transform: uppercase; }
.popup-wa-btn { width: 100%; display: flex; align-items: center; justify-content: center; gap: 10px; padding: 13px; border-radius: 50px; background: #E8F5E9; border: 1.5px solid #A5D6A7; color: #1B5E20; font-size: 14px; font-weight: 700; cursor: pointer; transition: all 0.25s; }
.popup-wa-btn:hover { background: #25D366; border-color: #25D366; color: white; }
.popup-wa-btn i { font-size: 16px; }
.popup-success { display: none; padding: 52px 36px; text-align: center; }
.popup-success-icon { font-size: 52px; margin-bottom: 20px; }
.popup-success h3 { font-family: var(--font-display); font-size: 28px; font-weight: 600; color: var(--primary); margin-bottom: 10px; }
.popup-success p { font-size: 15px; color: var(--text-2); line-height: 1.7; }

/* Manage popup header variant */
.popup-box.manage-popup .popup-header { background: var(--primary); border-radius: var(--radius-lg) var(--radius-lg) 0 0; }
.popup-box.manage-popup .popup-header-bar { border-bottom-color: rgba(255,255,255,.12); }
.popup-box.manage-popup .popup-close { border-color: rgba(255,255,255,.2); color: rgba(255,255,255,.6); }
.popup-box.manage-popup .popup-close:hover { background: rgba(255,255,255,.12); color: white; }
.popup-box.manage-popup .popup-title-group small { color: var(--accent); }
.popup-box.manage-popup .popup-title-group h2 { color: var(--white); }

/* ── 19. WhatsApp Widget ──────────────────────────────────── */
.wa-float { position: fixed; bottom: 28px; right: 28px; z-index: 8000; display: flex; flex-direction: column; align-items: flex-end; gap: 12px; }
.wa-btn {
  width: 58px; height: 58px; border-radius: 50%; background: #25D366; border: none;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,.4); animation: waPulse 3s infinite;
  position: relative; transition: transform 0.2s;
}
.wa-btn:hover { transform: scale(1.08); }
.wa-btn svg { width: 26px; height: 26px; fill: white; }
.wa-tooltip {
  position: absolute; right: calc(100% + 14px); top: 50%; transform: translateY(-50%);
  background: var(--dark); color: white; font-size: 12px; font-weight: 600;
  padding: 8px 14px; border-radius: 8px; white-space: nowrap; opacity: 0; pointer-events: none;
  transition: opacity 0.2s;
}
.wa-tooltip::after { content: ''; position: absolute; left: 100%; top: 50%; transform: translateY(-50%); border: 6px solid transparent; border-left-color: var(--dark); }
.wa-btn:hover .wa-tooltip { opacity: 1; }
.wa-chat-panel {
  display: none; width: 320px; background: white; border-radius: 18px;
  box-shadow: 0 16px 60px rgba(0,0,0,.18); overflow: hidden;
}
.wa-chat-panel.open { display: flex; flex-direction: column; animation: waFadeIn 0.25s var(--ease); }
.wa-panel-header { background: #075E54; padding: 18px 20px; display: flex; align-items: center; gap: 12px; }
.wa-panel-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--primary); display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 14px; color: var(--accent); flex-shrink: 0; font-family: var(--font-display); }
.wa-panel-info { flex: 1; min-width: 0; }
.wa-panel-info strong { display: block; font-size: 14px; font-weight: 700; color: white; }
.wa-panel-info span { font-size: 12px; color: rgba(255,255,255,.6); }
.wa-panel-close { background: none; border: none; color: rgba(255,255,255,.6); font-size: 18px; cursor: pointer; padding: 4px; line-height: 1; transition: color 0.2s; }
.wa-panel-close:hover { color: white; }
.wa-panel-body { background: #ECE5DD; padding: 20px; flex: 1; }
.wa-bubble { background: white; border-radius: 12px 12px 12px 2px; padding: 14px 16px; position: relative; max-width: 90%; box-shadow: 0 1px 2px rgba(0,0,0,.1); }
.wa-bubble::before { content: ''; position: absolute; bottom: 0; left: -8px; border: 8px solid transparent; border-right-color: white; border-bottom-color: white; }
.wa-bubble p { font-size: 13.5px; color: #1A1A1A; line-height: 1.6; margin-bottom: 6px; }
.wa-bubble time { font-size: 11px; color: #9CA3AF; }
.wa-panel-footer { background: #F0F0F0; padding: 12px 14px; display: flex; gap: 10px; align-items: flex-end; }
.wa-panel-footer textarea { flex: 1; border: none; background: white; border-radius: 22px; padding: 10px 14px; font-size: 13px; resize: none; outline: none; font-family: var(--font-body); max-height: 100px; line-height: 1.5; }
.wa-send-btn { width: 40px; height: 40px; border-radius: 50%; background: #25D366; border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: background 0.2s; }
.wa-send-btn:hover { background: #1da851; }
.wa-send-btn svg { width: 18px; height: 18px; fill: white; }
.wa-panel-privacy { background: #F0F0F0; padding: 8px 14px; font-size: 11px; color: #9CA3AF; text-align: center; border-top: 1px solid #E0E0E0; }

/* ── 20. Inner Page Hero ──────────────────────────────────── */
.page-hero {
  background: var(--primary); padding: 120px 0 64px;
  position: relative; overflow: hidden;
}
.page-hero::before { content: ''; position: absolute; top: -100px; right: -100px; width: 400px; height: 400px; border-radius: 50%; background: rgba(201,169,110,.06); }
.page-hero::after { content: ''; position: absolute; bottom: -80px; left: 10%; width: 300px; height: 300px; border-radius: 50%; background: rgba(255,255,255,.03); }
.page-hero-inner { position: relative; z-index: 1; }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 13px; color: rgba(255,255,255,.45); margin-bottom: 20px; }
.breadcrumb a { color: rgba(255,255,255,.45); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb i { font-size: 9px; }
.breadcrumb span { color: var(--accent); font-weight: 600; }
.page-hero h1 { font-family: var(--font-display); font-size: clamp(40px, 5vw, 64px); font-weight: 600; color: var(--white); line-height: 1.1; margin-bottom: 16px; }
.page-hero p { font-size: 16px; color: rgba(255,255,255,.6); max-width: 560px; line-height: 1.75; }

/* ── 21. Properties Page specific ────────────────────────── */
.filter-bar { background: var(--white); border-bottom: 1px solid var(--bdr); padding: 20px 0; position: sticky; top: 76px; z-index: 100; box-shadow: 0 4px 16px rgba(0,0,0,.04); }
.filter-inner { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.filter-label { font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--text-3); margin-right: 4px; }
.filter-select {
  padding: 9px 36px 9px 16px; border: 1.5px solid var(--bdr); border-radius: 50px;
  font-size: 13px; color: var(--text-1); background: var(--white);
  outline: none; cursor: pointer; transition: border-color 0.2s;
  font-family: var(--font-body); font-weight: 500;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%237A8E81' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 12px center;
  -webkit-appearance: none; appearance: none;
}
.filter-select:focus { border-color: var(--primary); }
.filter-submit { padding: 9px 22px; border-radius: 50px; font-size: 13px; font-weight: 700; background: var(--primary); color: white; border: none; cursor: pointer; transition: all 0.25s; }
.filter-submit:hover { background: var(--primary-mid); }
.props-count { font-size: 13px; color: var(--text-3); margin-left: auto; font-weight: 500; }

/* ── 22. Contact Page ─────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 64px; align-items: start; }
.contact-form-wrap { background: var(--white); border-radius: var(--radius-lg); padding: 48px; border: 1px solid var(--bdr); }
.contact-form-wrap h2 { font-family: var(--font-display); font-size: 36px; font-weight: 600; margin-bottom: 8px; }
.contact-form-wrap p { font-size: 15px; color: var(--text-2); margin-bottom: 36px; }
.form-honeypot { display: none; }
#contact-msg { margin-top: 16px; padding: 14px 18px; border-radius: 10px; font-size: 14px; font-weight: 500; display: none; }
#contact-msg.success { display: block; background: #D1FAE5; color: #065F46; border: 1px solid #A7F3D0; }
#contact-msg.error { display: block; background: #FEE2E2; color: #991B1B; border: 1px solid #FECACA; }
.contact-info-wrap { display: flex; flex-direction: column; gap: 24px; }
.contact-info-card { background: var(--white); border: 1px solid var(--bdr); border-radius: var(--radius); padding: 28px; }
.contact-info-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 16px; }
.contact-info-row { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 14px; }
.contact-info-row:last-child { margin-bottom: 0; }
.contact-info-icon { width: 40px; height: 40px; background: var(--primary-light); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--primary); font-size: 14px; flex-shrink: 0; }
.contact-info-text strong { display: block; font-size: 13px; font-weight: 700; margin-bottom: 2px; }
.contact-info-text span, .contact-info-text a { font-size: 14px; color: var(--text-2); }
.contact-info-text a:hover { color: var(--primary); }
.consent-row { display: flex; gap: 10px; align-items: flex-start; }
.consent-row input[type="checkbox"] { accent-color: var(--primary); width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px; }
.consent-row label { font-size: 13px; color: var(--text-2); line-height: 1.5; }

/* ── 23. Blog page ────────────────────────────────────────── */
.blog-featured { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-bottom: 48px; }
.blog-featured-main .blog-img { height: 360px; }
.blog-featured-main .blog-body h3 { font-size: 24px; }
.blog-sidebar-list { display: flex; flex-direction: column; gap: 20px; }
.blog-side-card { display: flex; gap: 16px; padding: 16px; border-radius: 12px; border: 1px solid var(--bdr); transition: border-color 0.25s, box-shadow 0.25s; }
.blog-side-card:hover { border-color: var(--primary); box-shadow: var(--shadow-sm); }
.blog-side-thumb { width: 80px; height: 80px; border-radius: 10px; overflow: hidden; flex-shrink: 0; }
.blog-side-thumb img { width: 100%; height: 100%; object-fit: cover; }
.blog-side-info h4 { font-size: 14px; font-weight: 700; line-height: 1.4; margin-bottom: 6px; }
.blog-side-info span { font-size: 12px; color: var(--text-3); }

/* ── 24. Associates strip ─────────────────────────────────── */
.associates { background: var(--white); padding: 28px 0; border-top: 1px solid var(--bdr); border-bottom: 1px solid var(--bdr); }
.associates-inner { display: flex; align-items: center; gap: 48px; justify-content: center; flex-wrap: wrap; }
.associates-label { font-size: 11px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--text-3); margin-right: 8px; }
.associate-logo { font-size: 15px; font-weight: 900; color: var(--bdr); letter-spacing: 2px; padding: 8px 18px; border: 1.5px solid var(--bdr); border-radius: 8px; transition: all 0.25s; }
.associate-logo:hover { border-color: var(--accent); color: var(--accent); }

/* ── 25. Animations & Keyframes ───────────────────────────── */
@keyframes popIn {
  from { opacity: 0; transform: scale(0.94) translateY(16px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes tickerScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes waPulse {
  0%, 100% { box-shadow: 0 6px 24px rgba(37,211,102,.4); }
  50% { box-shadow: 0 6px 24px rgba(37,211,102,.4), 0 0 0 12px rgba(37,211,102,.12); }
}
@keyframes waFadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.65s var(--ease), transform 0.65s var(--ease); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── 26. Responsive ───────────────────────────────────────── */
@media (max-width: 1024px) {
  .prop-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .hero h1 { font-size: clamp(42px, 6vw, 72px); }
}
@media (max-width: 768px) {
  :root { --gutter: 1rem; }
  .section { padding: 64px 0; }
  .section-header.split { flex-direction: column; align-items: flex-start; gap: 16px; }
  .nav-links, .nav-actions { display: none; }
  .hamburger { display: flex; }
  .about-grid { grid-template-columns: 1fr; }
  .about-badge { right: 16px; bottom: 16px; }
  .services-grid { grid-template-columns: 1fr; }
  .prop-grid, .prop-grid.cols-2 { grid-template-columns: 1fr; }
  .test-grid { grid-template-columns: 1fr; }
  .stat-item { padding: 36px 20px; }
  .stat-num { font-size: 48px; }
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .process-steps::before { display: none; }
  .team-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .cta-split { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-stats-bar { flex-direction: column; gap: 20px; border-top: none; padding-top: 0; }
  .hero-stat { border-right: none; padding-right: 0; margin-right: 0; padding-bottom: 20px; border-bottom: 1px solid rgba(255,255,255,.1); }
  .hero-stat:last-child { border-bottom: none; padding-bottom: 0; }
  .hero h1 { font-size: clamp(38px, 9vw, 58px); }
  .hero-content { padding-top: 88px; padding-bottom: 48px; }
  .hero-search { flex-direction: column; border-radius: 10px; }
  .hero-search-field { border-right: none; border-bottom: 1px solid #E8E4DC; }
  .hero-search-field:last-of-type { border-bottom: none; }
  .hero-search-btn { justify-content: center; padding: 16px 24px; border-radius: 0; }
  .blog-featured { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .cta-card { padding: 36px 28px; }
  .popup-box { border-radius: var(--radius); }
  .popup-header { padding: 24px 24px 0; }
  .popup-body { padding: 24px; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .cat-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 36px; }
  .stat-num { font-size: 44px; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { text-align: center; justify-content: center; }
}
