
:root {
  --brand-green: #1A4D2E;
  --brand-green-dark: #0F3A20;
  --accent-gold: #C5A572;
  --accent-gold-light: #D9BF8E;
  --text-body: #111111;
  --text-muted: #666666;
  --surface: #F4F1E8;
  --callout: #FFF8E7;
  --success: #2E7D32;
  --danger: #B23A2E;
  --border: #DDD6C8;
  --white: #FFFFFF;

  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --max-w: 1200px;
  --pad: clamp(20px, 4vw, 40px);
  --radius: 10px;
  --shadow: 0 4px 24px rgba(26, 77, 46, 0.08);
  --shadow-lg: 0 8px 40px rgba(26, 77, 46, 0.15);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.6;
  color: var(--text-body);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--brand-green); text-decoration: none; }
a:hover { color: var(--accent-gold); }

h1, h2, h3, h4 { font-family: var(--font-serif); font-weight: 700; line-height: 1.15; color: var(--brand-green); }
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: 0.6em; }
h3 { font-size: 1.4rem; margin-bottom: 0.4em; }
p { margin-bottom: 1em; }

.kicker {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 0.8em;
}

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--pad); }
.section { padding: clamp(50px, 8vw, 100px) 0; }
.section-tight { padding: clamp(30px, 5vw, 60px) 0; }
.section-soft { background: var(--surface); }
.section-dark { background: var(--brand-green); color: var(--white); }
.section-dark h1, .section-dark h2, .section-dark h3 { color: var(--white); }
.section-dark .kicker { color: var(--accent-gold-light); }

/* ============ HEADER ============ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
.site-header .inner { display: flex; align-items: center; justify-content: space-between; padding: 14px var(--pad); max-width: var(--max-w); margin: 0 auto; }
.site-header .logo img { height: 44px; width: auto; }
.site-nav { display: flex; gap: 28px; align-items: center; }
.site-nav a { color: var(--text-body); font-weight: 500; font-size: 15px; }
.site-nav a:hover { color: var(--brand-green); }
.site-nav a.active { color: var(--brand-green); font-weight: 600; }

.btn { display: inline-block; padding: 12px 24px; border-radius: 999px; font-weight: 600; font-size: 15px; border: none; cursor: pointer; transition: all 0.2s ease; text-align: center; }
.btn-primary { background: var(--brand-green); color: var(--white); }
.btn-primary:hover { background: var(--brand-green-dark); color: var(--white); transform: translateY(-1px); box-shadow: var(--shadow); }
.btn-outline { background: transparent; color: var(--brand-green); border: 2px solid var(--brand-green); }
.btn-outline:hover { background: var(--brand-green); color: var(--white); }
.btn-gold { background: var(--accent-gold); color: var(--brand-green); }
.btn-gold:hover { background: var(--accent-gold-light); color: var(--brand-green); }
.btn-lg { padding: 16px 32px; font-size: 17px; }

.hamburger { display: none; background: none; border: none; font-size: 24px; cursor: pointer; color: var(--brand-green); }

@media (max-width: 900px) {
  .site-nav { display: none; }
  .site-nav.open { display: flex; position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; background: var(--white); padding: 20px var(--pad); gap: 18px; box-shadow: var(--shadow); }
  .hamburger { display: block; }
}

/* ============ HERO ============ */
.hero {
  background: linear-gradient(135deg, var(--brand-green) 0%, var(--brand-green-dark) 100%);
  color: var(--white);
  padding: clamp(50px, 8vw, 100px) 0;
  position: relative; overflow: hidden;
}
.hero h1 { color: var(--white); margin-bottom: 0.4em; }
.hero .sub { font-size: clamp(1.1rem, 2.2vw, 1.35rem); color: rgba(255,255,255,0.9); margin-bottom: 2em; max-width: 620px; }
.hero .grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 40px; align-items: center; }
.hero .kicker { color: var(--accent-gold-light); }
.hero .cta-group { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-image img { max-height: 500px; margin: 0 auto; }
@media (max-width: 800px) {
  .hero .grid { grid-template-columns: 1fr; }
  .hero-image { display: none; }
}

/* ============ TRUST BAR ============ */
.trust-bar {
  background: var(--surface);
  padding: 16px var(--pad);
  text-align: center;
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.5px;
}

/* ============ GRIDS ============ */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
@media (max-width: 800px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card h3 { color: var(--brand-green); }
.card p { color: var(--text-muted); }
.card .card-cta { display: inline-block; margin-top: 12px; color: var(--brand-green); font-weight: 600; }

/* ============ FORMS ============ */
.form-card {
  background: var(--white);
  color: var(--text-body);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}
.form-card h3 { color: var(--brand-green); }
.form-card label { color: var(--text-body); }
.form-card.dark {
  background: var(--brand-green-dark);
  color: var(--white);
  border-color: var(--brand-green-dark);
}
.form-card.dark label { color: var(--white); }
.form-card h3 { margin-bottom: 8px; }
.form-card .form-sub { color: var(--text-muted); margin-bottom: 20px; font-size: 15px; }
.form-card.dark .form-sub { color: rgba(255,255,255,0.8); }
.form-field { margin-bottom: 16px; }
.form-field label { display: block; font-weight: 600; font-size: 13px; margin-bottom: 6px; letter-spacing: 0.3px; }
.form-field input, .form-field select, .form-field textarea {
  width: 100%; padding: 12px 14px; border: 1.5px solid var(--border);
  border-radius: 6px; font-family: inherit; font-size: 15px; background: var(--white); color: var(--text-body);
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none; border-color: var(--brand-green); box-shadow: 0 0 0 3px rgba(26,77,46,0.15);
}
.form-field textarea { resize: vertical; min-height: 100px; }
.form-card button { width: 100%; margin-top: 8px; }
.form-trust { font-size: 13px; color: var(--text-muted); text-align: center; margin-top: 12px; }
.form-card.dark .form-trust { color: rgba(255,255,255,0.7); }

/* ============ TESTIMONIAL ============ */
.testimonial {
  background: var(--callout);
  border-left: 6px solid var(--accent-gold);
  padding: 32px;
  border-radius: 8px;
  font-style: italic;
  font-size: 1.15rem;
  color: var(--text-body);
}
.testimonial cite { display: block; margin-top: 16px; font-style: normal; font-weight: 600; color: var(--brand-green); font-size: 15px; }

/* ============ FAQ ============ */
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}
.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--brand-green);
  padding-right: 30px;
  position: relative;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 0; top: 0;
  font-size: 1.5rem;
  transition: transform 0.2s;
}
.faq-item[open] summary::after { content: '−'; }
.faq-item .answer { padding-top: 12px; color: var(--text-body); line-height: 1.7; }

/* ============ 7-STEP TIMELINE ============ */
.steps { display: grid; grid-template-columns: repeat(7, 1fr); gap: 12px; margin: 30px 0; }
@media (max-width: 900px) { .steps { grid-template-columns: repeat(2, 1fr); } }
.step {
  text-align: center;
  padding: 20px 12px;
  background: var(--white);
  border: 2px solid var(--brand-green);
  border-radius: 8px;
  position: relative;
}
.step .num {
  display: inline-block;
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--brand-green); color: var(--white);
  font-weight: 700; line-height: 40px; margin-bottom: 8px;
  font-family: var(--font-serif); font-size: 1.2rem;
}
.step .label { font-weight: 600; font-size: 14px; color: var(--brand-green); }

/* ============ SOLD CARDS ============ */
.sold-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; }
.sold-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.sold-card .image { height: 180px; background: linear-gradient(135deg, var(--brand-green), var(--brand-green-dark)); display: flex; align-items: center; justify-content: center; color: var(--accent-gold); font-family: var(--font-serif); font-size: 2rem; }
.sold-card .details { padding: 20px; }
.sold-card .price { font-family: var(--font-serif); font-size: 1.4rem; color: var(--brand-green); font-weight: 700; }
.sold-card .meta { font-size: 13px; color: var(--text-muted); margin-top: 4px; }

/* ============ CALCULATOR ============ */
.calc-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
@media (max-width: 800px) { .calc-wrap { grid-template-columns: 1fr; } }
.calc-inputs .form-field { margin-bottom: 20px; }
.calc-output {
  background: var(--brand-green);
  color: var(--white);
  padding: 32px;
  border-radius: var(--radius);
  align-self: start;
}
.calc-output h3 { color: var(--white); margin-bottom: 20px; }
.calc-output .row { display: flex; justify-content: space-between; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.15); }
.calc-output .row:last-child { border-bottom: none; }
.calc-output .row .label { opacity: 0.85; }
.calc-output .row .value { font-weight: 700; font-family: var(--font-serif); font-size: 1.15rem; }
.calc-output .primary-row .value { font-size: 1.8rem; color: var(--accent-gold-light); }

/* ============ FOOTER ============ */
.site-footer {
  background: var(--brand-green-dark);
  color: rgba(255,255,255,0.85);
  padding: 60px 0 30px;
  font-size: 14px;
}
.site-footer .grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
@media (max-width: 800px) { .site-footer .grid { grid-template-columns: 1fr; } }
.site-footer h4 { color: var(--white); font-size: 1rem; margin-bottom: 16px; }
.site-footer a { color: rgba(255,255,255,0.85); display: block; margin-bottom: 8px; }
.site-footer a:hover { color: var(--accent-gold-light); }
.site-footer .brand p { max-width: 320px; color: rgba(255,255,255,0.7); }
.site-footer .socials { display: flex; gap: 12px; margin-top: 16px; }
.site-footer .socials a { width: 36px; height: 36px; border: 1px solid rgba(255,255,255,0.3); border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; font-size: 15px; margin: 0; }
.compliance {
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 24px;
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}

/* ============ FLOATING WHATSAPP ============ */
.fab-whatsapp {
  position: fixed; bottom: 24px; right: 24px; z-index: 200;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  text-decoration: none; transition: transform 0.2s;
}
.fab-whatsapp:hover { transform: scale(1.08); color: white; }

/* ============ CTA BANDS ============ */
.cta-band { background: var(--brand-green); color: var(--white); padding: 60px 0; text-align: center; }
.cta-band h2 { color: var(--white); margin-bottom: 12px; }
.cta-band .sub { color: rgba(255,255,255,0.85); max-width: 600px; margin: 0 auto 24px; font-size: 1.1rem; }
.cta-band .cta-group { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ============ MEET PREET BLOCK ============ */
.meet-preet { display: grid; grid-template-columns: 1fr 1.5fr; gap: 50px; align-items: center; }
@media (max-width: 800px) { .meet-preet { grid-template-columns: 1fr; } }
.meet-preet .photo img { max-height: 500px; border-radius: var(--radius); }
.meet-preet h2 { margin-bottom: 20px; }

/* ============ FACTS SIDEBAR ============ */
.facts-sidebar {
  background: var(--brand-green);
  color: var(--white);
  padding: 32px;
  border-radius: var(--radius);
  align-self: start;
}
.facts-sidebar h3 { color: var(--white); margin-bottom: 16px; }
.facts-sidebar ul { list-style: none; padding: 0; }
.facts-sidebar li { padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,0.15); font-size: 15px; }
.facts-sidebar li:last-child { border-bottom: none; }

/* ============ TABLES / DATA ============ */
.info-table { width: 100%; border-collapse: collapse; margin: 20px 0; }
.info-table th, .info-table td { padding: 14px 16px; text-align: left; border-bottom: 1px solid var(--border); }
.info-table th { background: var(--surface); color: var(--brand-green); font-weight: 700; }

/* ============ MISC ============ */
.divider { height: 1px; background: var(--border); margin: 40px 0; }
.text-center { text-align: center; }
.mt-4 { margin-top: 40px; }
.mb-4 { margin-bottom: 40px; }
.badge { display: inline-block; background: var(--callout); color: var(--brand-green); padding: 4px 12px; border-radius: 999px; font-size: 12px; font-weight: 600; letter-spacing: 0.5px; }

/* Skip link for accessibility */
.skip-link { position: absolute; top: -40px; left: 0; background: var(--brand-green); color: var(--white); padding: 8px 16px; z-index: 999; }
.skip-link:focus { top: 0; color: white; }
