/* ─── R.S App Building Private Limited — style.css ─────────────────────────── */
/* Palette: Forest Green + Cream + Gold | Style: Split-screen, premium typography */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

/* ─── Variables ─────────────────────────────────────────────────────────────── */
:root {
  --green:        #1a5c38;
  --green-mid:    #1e6b42;
  --green-light:  #2d8a57;
  --green-pale:   #e8f2ec;
  --gold:         #c9a84c;
  --gold-light:   #e0bf72;
  --gold-pale:    #fdf6e3;
  --cream:        #faf7f2;
  --cream-dark:   #f0ebe0;
  --white:        #ffffff;
  --fg:           #1a1a1a;
  --fg-mid:       #3d3d3d;
  --fg-muted:     #6b6b6b;
  --border:       #e5e0d5;
  --border-green: rgba(26,92,56,0.12);
  --radius:       3px;
  --shadow:       0 2px 20px rgba(26,92,56,0.07);
  --shadow-lg:    0 8px 40px rgba(26,92,56,0.12);
}

/* ─── Reset ─────────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 400;
  color: var(--fg);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }

/* ─── Typography ─────────────────────────────────────────────────────────────── */
h1, h2, h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.01em;
}
h4, h5, h6 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  line-height: 1.3;
}
h1 { font-size: clamp(2.4rem, 5.5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: 1.5rem; }
h4 { font-size: 0.95rem; }
p  { line-height: 1.8; }
.text-muted { color: var(--fg-muted); }

/* ─── Container ─────────────────────────────────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ─── Buttons ────────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.6rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: 1.5px solid transparent;
  transition: all 0.22s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}
.btn-primary:hover { background: var(--green-mid); border-color: var(--green-mid); }
.btn-gold {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn-gold:hover { background: var(--gold-light); border-color: var(--gold-light); }
.btn-outline {
  background: transparent;
  color: var(--green);
  border-color: var(--green);
}
.btn-outline:hover { background: var(--green); color: var(--white); }
.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}
.btn-outline-light:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }
.btn-lg { padding: 0.9rem 2.2rem; font-size: 0.82rem; }

/* ─── Labels / Badges ────────────────────────────────────────────────────────── */
.section-label {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}
.badge {
  display: inline-block;
  padding: 0.18rem 0.55rem;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 2px;
  background: var(--cream-dark);
  color: var(--fg-muted);
}
.badge-green { background: var(--green-pale); color: var(--green); }
.badge-gold  { background: var(--gold-pale);  color: #8a6a1a; }
.badge-dark  { background: rgba(26,92,56,0.7); color: rgba(255,255,255,0.9); }

/* ─── Sections ───────────────────────────────────────────────────────────────── */
.section { padding: 6rem 0; }
.section-cream { background: var(--cream); }
.section-green { background: var(--green); }
.section-header { margin-bottom: 4rem; }
.section-header.centered { text-align: center; }
.section-header .section-label { display: block; margin-bottom: 0.75rem; }
.section-header h2 { margin-bottom: 1rem; }
.section-header p { color: var(--fg-muted); max-width: 560px; font-size: 0.95rem; }
.section-header.centered p { margin: 0 auto; }

/* ─── Navbar ─────────────────────────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--green);
  box-shadow: 0 2px 20px rgba(0,0,0,0.15);
  transition: background 0.3s, box-shadow 0.3s;
}
.navbar.scrolled {
  background: var(--green);
  box-shadow: 0 2px 20px rgba(0,0,0,0.15);
}
.navbar-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 1rem 0;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}
.nav-logo svg {
  display: block;
  height: 32px;
  width: auto;
}
.nav-logo-text .name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
}
.nav-logo-text .sub {
  font-size: 0.52rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.1rem;
  margin-left: auto;
}
.nav-links a {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  padding: 0.4rem 0.8rem;
  border-radius: 2px;
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-right {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}
.nav-phone {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
}
.nav-phone svg {
  width: 0.85rem; height: 0.85rem;
  stroke: var(--gold); fill: none;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}
.hamburger {
  display: none;
  background: none;
  border: none;
  padding: 0.25rem;
  margin-left: auto;
}
.hamburger svg {
  width: 1.4rem; height: 1.4rem;
  stroke: var(--white); fill: none;
  stroke-width: 2; stroke-linecap: round;
}
.mobile-menu {
  display: none;
  flex-direction: column;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--green);
  z-index: 99;
  padding: 5rem 2rem 2rem;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: rgba(255,255,255,0.7);
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.mobile-menu a:hover { color: var(--white); }
.mobile-menu-footer {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.mobile-menu-footer a {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  border: none; padding: 0;
}

/* ─── Hero (Split-screen) ────────────────────────────────────────────────────── */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
  align-items: stretch;
}
.hero-left {
  background: var(--green);
  display: flex;
  align-items: center;
  padding: 8rem 4rem 5rem;
  position: relative;
  overflow: hidden;
}
.hero-left::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(201,168,76,0.06);
}
.hero-left::after {
  content: '';
  position: absolute;
  bottom: -40px; left: -40px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: rgba(255,255,255,0.03);
}
.hero-left-content { position: relative; z-index: 1; }
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.hero-eyebrow-line { width: 2rem; height: 1px; background: var(--gold); }
.hero-eyebrow span {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}
.hero h1 { color: var(--white); margin-bottom: 1.5rem; }
.hero h1 em { font-style: italic; color: var(--gold-light); }
.hero-desc { color: rgba(255,255,255,0.5); font-size: 0.95rem; margin-bottom: 2.5rem; max-width: 420px; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 3rem; }
.hero-trust {
  display: flex;
  gap: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.hero-trust-item { }
.hero-trust-val {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold-light);
}
.hero-trust-lbl {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.35);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.hero-right {
  background: var(--green);
  display: flex;
  align-items: stretch;
  justify-content: center;
  padding: 0;
  position: relative;
  overflow: hidden;
}
.hero-right::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 30%, rgba(26,92,56,0.04) 0%, transparent 60%);
}
.hero-img-wrap {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  min-height: 500px;
}
.hero-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  border-radius: 0;
  box-shadow: none;
  display: block;
  min-height: 0;
}
.hero-badge-float {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  z-index: 10;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 0.75rem 1rem;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.hero-badge-float svg {
  width: 1.2rem; height: 1.2rem;
  stroke: var(--green); fill: none;
  stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round;
}
.hero-badge-float strong { font-size: 0.78rem; color: var(--fg); display: block; }
.hero-badge-float span { font-size: 0.65rem; color: var(--fg-muted); }

/* ─── Stats bar ──────────────────────────────────────────────────────────────── */
.stats-bar { background: var(--gold); padding: 2.5rem 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; text-align: center; }
.stat-val {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
}
.stat-lbl { font-size: 0.68rem; color: rgba(255,255,255,0.7); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 0.2rem; }

/* ─── Split section ──────────────────────────────────────────────────────────── */
.split-section { display: grid; grid-template-columns: 1fr 1fr; }
.split-dark {
  background: var(--green);
  padding: 5rem 4rem;
  display: flex;
  align-items: center;
}
.split-light {
  background: var(--cream);
  padding: 5rem 4rem;
  display: flex;
  align-items: center;
}
.split-dark h2 { color: var(--white); margin-bottom: 1.25rem; }
.split-dark p { color: rgba(255,255,255,0.5); font-size: 0.9rem; margin-bottom: 1.5rem; }
.split-dark .section-label { color: var(--gold); display: block; margin-bottom: 0.75rem; }

/* ─── Service cards ──────────────────────────────────────────────────────────── */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: start; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
  box-shadow: var(--shadow);
}
.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
  border-color: var(--border-green);
}
.service-icon {
  width: 2.5rem; height: 2.5rem;
  background: var(--green-pale);
  border-radius: 3px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
}
.service-icon svg {
  width: 1.2rem; height: 1.2rem;
  stroke: var(--green); fill: none;
  stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round;
}
.service-card h3 { font-size: 1.1rem; margin-bottom: 0.6rem; }
.service-card p { font-size: 0.82rem; color: var(--fg-muted); margin-bottom: 1rem; line-height: 1.75; }
.service-tags { display: flex; flex-wrap: wrap; gap: 0.35rem; }

/* ─── Promise / Value boxes ──────────────────────────────────────────────────── */
.promise-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
.promise-box {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.promise-icon {
  width: 2rem; height: 2rem;
  background: var(--green-pale);
  border-radius: 2px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.promise-icon svg {
  width: 1rem; height: 1rem;
  stroke: var(--green); fill: none;
  stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round;
}
.promise-box strong { display: block; font-size: 0.85rem; margin-bottom: 0.3rem; }
.promise-box p { font-size: 0.78rem; color: var(--fg-muted); line-height: 1.7; }

/* ─── Portfolio ──────────────────────────────────────────────────────────────── */
.portfolio-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: box-shadow 0.2s, transform 0.2s;
}
.portfolio-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.portfolio-visual {
  height: 160px;
  display: flex; align-items: flex-end;
  padding: 1rem;
  position: relative;
  overflow: hidden;
}
.portfolio-visual-letter {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -60%);
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem; font-weight: 700;
  color: rgba(255,255,255,0.07);
}
.portfolio-badge { position: relative; z-index: 1; }
.portfolio-body { padding: 1.25rem; }
.portfolio-highlights { display: flex; flex-wrap: wrap; gap: 0.35rem; margin-bottom: 0.75rem; }
.portfolio-tech { display: flex; flex-wrap: wrap; gap: 0.35rem; margin-top: 0.5rem; }

/* ─── Process ────────────────────────────────────────────────────────────────── */
.process-split { display: grid; grid-template-columns: 1fr 1fr; min-height: 500px; }
.process-nav {
  background: var(--green);
  padding: 4rem;
}
.process-nav-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  cursor: pointer;
  transition: opacity 0.2s;
  opacity: 0.5;
}
.process-nav-item.active { opacity: 1; }
.process-nav-item:last-child { border-bottom: none; }
.process-nav-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem; font-weight: 700;
  color: var(--gold);
  line-height: 1;
  flex-shrink: 0;
  width: 2rem;
}
.process-nav-title { font-size: 0.85rem; font-weight: 700; color: var(--white); margin-bottom: 0.2rem; }
.process-nav-sub { font-size: 0.72rem; color: rgba(255,255,255,0.4); }
.process-detail {
  background: var(--cream);
  padding: 4rem;
  display: flex;
  align-items: center;
}
.process-detail-inner { display: none; }
.process-detail-inner.active { display: block; }
.process-detail-inner h3 { font-size: 1.6rem; margin-bottom: 1rem; }
.process-detail-inner p { font-size: 0.88rem; color: var(--fg-muted); margin-bottom: 1.5rem; line-height: 1.8; }
.process-deliverables { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.25rem; }
.deliverable-tag {
  display: flex; align-items: center; gap: 0.4rem;
  padding: 0.35rem 0.75rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 2px;
  font-size: 0.72rem; font-weight: 600;
  color: var(--fg-mid);
}
.deliverable-tag svg {
  width: 0.75rem; height: 0.75rem;
  stroke: var(--green); fill: none;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}
.check-list { display: flex; flex-direction: column; gap: 0.5rem; }
.check-list li {
  font-size: 0.82rem; color: var(--fg-muted);
  padding-left: 1.25rem;
  position: relative;
}
.check-list li::before {
  content: '✓';
  position: absolute; left: 0;
  color: var(--green); font-size: 0.7rem; font-weight: 700;
}

/* ─── Timeline ───────────────────────────────────────────────────────────────── */
.timeline { position: relative; padding-left: 5rem; }
.timeline::before {
  content: '';
  position: absolute;
  left: 3.5rem; top: 0; bottom: 0;
  width: 1px; background: var(--border);
}
.timeline-item { position: relative; padding-bottom: 2.5rem; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-year {
  position: absolute;
  left: -5rem; top: 0.1rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.85rem; font-weight: 700;
  color: var(--gold);
}
.timeline-dot {
  position: absolute;
  left: -1.65rem; top: 0.35rem;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green);
  border: 2px solid var(--white);
  box-shadow: 0 0 0 2px var(--green);
}
.timeline-body h4 { font-size: 0.9rem; margin-bottom: 0.35rem; }
.timeline-body p { font-size: 0.8rem; color: var(--fg-muted); line-height: 1.75; }

/* ─── Blog ───────────────────────────────────────────────────────────────────── */
.blog-featured {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-bottom: 2.5rem;
}
.blog-featured-visual {
  background: var(--green);
  min-height: 280px;
  display: flex; align-items: flex-end;
  padding: 2rem;
  position: relative;
  overflow: hidden;
}
.blog-featured-visual::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(45deg, transparent, transparent 30px, rgba(255,255,255,0.015) 30px, rgba(255,255,255,0.015) 31px);
}
.blog-featured-body { padding: 2.5rem; display: flex; flex-direction: column; justify-content: center; }
.blog-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: box-shadow 0.2s, transform 0.2s;
}
.blog-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.blog-visual {
  height: 130px;
  background: var(--green);
  display: flex; align-items: flex-end;
  padding: 1rem;
  position: relative;
  overflow: hidden;
}
.blog-visual::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(45deg, transparent, transparent 20px, rgba(255,255,255,0.02) 20px, rgba(255,255,255,0.02) 21px);
}
.blog-body { padding: 1.25rem; }
.blog-meta { font-size: 0.68rem; color: var(--fg-muted); margin-top: 0.75rem; }

/* ─── FAQ ────────────────────────────────────────────────────────────────────── */
.faq-section { margin-bottom: 2.5rem; }
.faq-category {
  font-size: 0.62rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--gold);
}
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  width: 100%;
  display: flex; justify-content: space-between; align-items: center;
  gap: 1rem;
  padding: 1.1rem 0;
  background: none; border: none;
  text-align: left;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.875rem; font-weight: 600;
  color: var(--fg);
}
.faq-icon {
  width: 1rem; height: 1rem;
  flex-shrink: 0;
  stroke: var(--green); fill: none;
  stroke-width: 2; stroke-linecap: round;
  transition: transform 0.2s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer p { font-size: 0.82rem; color: var(--fg-muted); line-height: 1.8; padding-bottom: 1.1rem; }

/* ─── Contact ────────────────────────────────────────────────────────────────── */
.contact-split { display: grid; grid-template-columns: 1fr 1.4fr; }
.contact-left {
  background: var(--green);
  padding: 5rem 4rem;
}
.contact-left h2 { color: var(--white); margin-bottom: 1rem; }
.contact-left > p { color: rgba(255,255,255,0.5); font-size: 0.88rem; margin-bottom: 2.5rem; line-height: 1.8; }
.contact-info-block {
  display: flex; gap: 1rem; align-items: flex-start;
  margin-bottom: 1.5rem;
}
.contact-info-icon {
  width: 2rem; height: 2rem;
  background: rgba(255,255,255,0.08);
  border-radius: 2px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-info-icon svg {
  width: 0.9rem; height: 0.9rem;
  max-width: 0.9rem; max-height: 0.9rem;
  stroke: var(--gold); fill: none;
  stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round;
  flex-shrink: 0;
}
/* WhatsApp SVG uses fill, not stroke */
.contact-info-icon svg[fill="currentColor"] {
  fill: var(--gold);
  stroke: none;
}
.contact-info-label { font-size: 0.62rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.35); margin-bottom: 0.2rem; }
.contact-info-value { font-size: 0.82rem; color: rgba(255,255,255,0.75); line-height: 1.65; }
.contact-info-value a { color: var(--gold-light); }
.contact-right { background: var(--cream); padding: 5rem 4rem; }
.contact-right h3 { font-size: 1.6rem; margin-bottom: 0.5rem; }
.contact-right > p { font-size: 0.85rem; color: var(--fg-muted); margin-bottom: 2rem; }

/* ─── Form ───────────────────────────────────────────────────────────────────── */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.form-group { margin-bottom: 1rem; }
.form-label { display: block; font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--fg-muted); margin-bottom: 0.4rem; }
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.875rem;
  color: var(--fg);
  background: var(--white);
  transition: border-color 0.2s;
  outline: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--green); }
.form-textarea { min-height: 130px; resize: vertical; }
.form-note { font-size: 0.68rem; color: var(--fg-muted); margin-top: 0.3rem; }
.form-success { text-align: center; padding: 2rem 0; }
.check-circle {
  width: 3.5rem; height: 3.5rem;
  background: var(--green-pale);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem;
}
.check-circle svg {
  width: 1.5rem; height: 1.5rem;
  stroke: var(--green); fill: none;
  stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round;
}

/* ─── Page hero ──────────────────────────────────────────────────────────────── */
.page-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 380px;
}
.page-hero-left {
  background: var(--green);
  padding: 9rem 4rem 5rem;
  position: relative;
  overflow: hidden;
}
.page-hero-left::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(201,168,76,0.05);
}
.page-hero-left .section-label { color: var(--gold); display: block; margin-bottom: 0.75rem; }
.page-hero-left h1 { color: var(--white); margin-bottom: 1rem; }
.page-hero-left p { color: rgba(255,255,255,0.5); font-size: 0.95rem; }
.page-hero-right {
  background: var(--cream);
  display: flex; align-items: center;
  padding: 5rem 4rem;
}

/* ─── Info box ───────────────────────────────────────────────────────────────── */
.info-box {
  display: flex; gap: 0.75rem; align-items: flex-start;
  padding: 1rem 1.25rem;
  background: var(--green-pale);
  border: 1px solid var(--border-green);
  border-radius: var(--radius);
  margin-bottom: 1.5rem;
}
.info-box svg {
  width: 1rem; height: 1rem; flex-shrink: 0;
  stroke: var(--green); fill: none;
  stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round;
  margin-top: 0.15rem;
}
.info-box p { font-size: 0.82rem; color: var(--fg-muted); line-height: 1.7; }

/* ─── CTA section ────────────────────────────────────────────────────────────── */
.cta-split { display: grid; grid-template-columns: 1fr 1fr; }
.cta-dark {
  background: var(--green);
  padding: 5rem 4rem;
  display: flex; flex-direction: column; justify-content: center;
}
.cta-dark h2 { color: var(--white); margin-bottom: 1rem; }
.cta-dark p { color: rgba(255,255,255,0.5); font-size: 0.9rem; margin-bottom: 2rem; }
.cta-light {
  background: var(--gold-pale);
  padding: 5rem 4rem;
  display: flex; flex-direction: column; justify-content: center;
}
.cta-light h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; margin-bottom: 1rem; color: var(--fg); }
.cta-light p { font-size: 0.85rem; color: var(--fg-muted); margin-bottom: 1.5rem; }
.contact-mini { display: flex; flex-direction: column; gap: 0.75rem; }
.contact-mini-item {
  display: flex; align-items: center; gap: 0.75rem;
  font-size: 0.82rem; color: var(--fg-mid);
}
.contact-mini-item svg {
  width: 1rem; height: 1rem;
  stroke: var(--green); fill: none;
  stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round;
  flex-shrink: 0;
}

/* ─── Footer ─────────────────────────────────────────────────────────────────── */
footer { background: var(--green); padding: 5rem 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 3rem;
  padding-bottom: 3rem;
}
.footer-logo { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1.25rem; }
.footer-logo img { height: 2rem; width: auto; filter: brightness(0) invert(1); }
.footer-logo-text .name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem; font-weight: 700;
  color: var(--white); line-height: 1.1;
}
.footer-logo-text .sub { font-size: 0.5rem; color: rgba(255,255,255,0.35); letter-spacing: 0.08em; text-transform: uppercase; }
.footer-brand p { font-size: 0.78rem; color: rgba(255,255,255,0.35); line-height: 1.8; margin-bottom: 1.5rem; }
.footer-contact-item {
  display: flex; align-items: flex-start; gap: 0.6rem;
  margin-bottom: 0.75rem;
}
.footer-contact-item svg {
  width: 0.85rem; height: 0.85rem; flex-shrink: 0;
  stroke: var(--gold); fill: none;
  stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round;
  margin-top: 0.1rem;
}
.footer-contact-item span, .footer-contact-item a {
  font-size: 0.75rem; color: rgba(255,255,255,0.35); line-height: 1.6;
}
.footer-contact-item a:hover { color: rgba(255,255,255,0.7); }
.footer-col h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.62rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 1.25rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col ul li a { font-size: 0.78rem; color: rgba(255,255,255,0.35); transition: color 0.2s; }
.footer-col ul li a:hover { color: rgba(255,255,255,0.75); }
.hours-row {
  display: flex; justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 0.75rem;
}
.hours-day { color: rgba(255,255,255,0.4); }
.hours-time { color: #e8f2ec; font-weight: 600; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 1.5rem 0;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.7rem; color: rgba(255,255,255,0.25);
}

/* ─── Filter tabs ────────────────────────────────────────────────────────────── */
.filter-tabs { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 2.5rem; }
.filter-tab {
  padding: 0.4rem 1rem;
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  border: 1.5px solid var(--border);
  border-radius: 2px;
  background: transparent;
  color: var(--fg-muted);
  cursor: pointer;
  transition: all 0.2s;
}
.filter-tab:hover { border-color: var(--green); color: var(--green); }
.filter-tab.active { background: var(--green); border-color: var(--green); color: var(--white); }

/* ─── Responsive ─────────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .grid-4, .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .process-split { grid-template-columns: 1fr; }
  .process-nav { padding: 3rem 2rem; }
  .process-detail { padding: 3rem 2rem; }
}
@media (max-width: 768px) {
  .hero, .split-section, .page-hero, .cta-split, .contact-split, .blog-featured { grid-template-columns: 1fr; }
  .hero-left, .hero-right { padding: 6rem 2rem 3rem; }
  .hero-right { padding-top: 3rem; }
  .split-dark, .split-light { padding: 3.5rem 2rem; }
  .contact-left, .contact-right { padding: 3.5rem 2rem; }
  .cta-dark, .cta-light { padding: 3.5rem 2rem; }
  .page-hero-left, .page-hero-right { padding: 6rem 2rem 3rem; }
  .page-hero-right { padding-top: 3rem; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .promise-grid { grid-template-columns: 1fr; }
  .nav-links, .nav-right { display: none; }
  .hamburger { display: block; }
  .mobile-menu { display: flex; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .container { padding: 0 1.25rem; }
  .section { padding: 4rem 0; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
}
