/* =============================================================
   style.css  —  Nigeria Property Verification
   One file. All pages. No fragments.
   ============================================================= */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&family=Inter:wght@300;400;500;600&display=swap');

/* ── Variables ── */
:root {
  --green:      #0B4D2B;
  --green-dk:   #083A20;
  --green-tint: rgba(11,77,43,.06);
  --cream:      #F5F1E8;
  --cream-dk:   #EDE8DA;
  --cream-dkr:  #E2DDD0;
  --gold:       #C79A2D;
  --gold-lt:    #D4AA4A;
  --text:       #1E1E1E;
  --text-md:    #4A4A4A;
  --text-lt:    #7A7A7A;
  --white:      #FFFFFF;
  --border:     #D6D0C2;
  --border-md:  #C4BBAA;
  --shadow:     0 2px 20px rgba(11,77,43,.09);
  --shadow-lg:  0 8px 48px rgba(11,77,43,.14);
  --fh:         'Playfair Display', Georgia, serif;
  --fb:         'Inter', system-ui, sans-serif;
  --nav-h:      72px;
  --max:        1160px;
  --r:          2px;
  --ease:       .22s ease;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--fb);
  font-size: 16px;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a   { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: var(--fb); cursor: pointer; border: none; background: none; }
input, select, textarea { font-family: var(--fb); }

/* ── Typography ── */
h1, h2, h3, h4, h5 {
  font-family: var(--fh);
  font-weight: 600;
  line-height: 1.14;
  color: var(--text);
}
h1 { font-size: clamp(2.4rem, 5vw, 3.9rem); }
h2 { font-size: clamp(1.85rem, 3.4vw, 2.75rem); }
h3 { font-size: clamp(1.3rem, 2.2vw, 1.8rem); }
h4 { font-size: 1.2rem; }
p  { font-size: 15.5px; color: var(--text-md); line-height: 1.8; }

/* ── Layout ── */
.container  { max-width: var(--max); margin: 0 auto; padding: 0 28px; }
.section    { padding: 88px 0; }
.section-sm { padding: 60px 0; }

/* ── Eyebrow ── */
.eyebrow {
  display: inline-block;
  font-size: 11px; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 14px;
}
.eyebrow-lt { color: var(--gold-lt); }

/* ── Divider ── */
.divider   { width: 48px; height: 3px; background: var(--gold); margin: 18px 0 28px; }
.divider-c { margin-left: auto; margin-right: auto; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12.5px; font-weight: 600;
  letter-spacing: .07em; text-transform: uppercase;
  padding: 14px 30px; border-radius: var(--r);
  transition: all var(--ease);
  cursor: pointer; white-space: nowrap; text-decoration: none;
}
.btn-primary { background: var(--gold); color: var(--white); border: 2px solid var(--gold); }
.btn-primary:hover { background: #a97e22; border-color: #a97e22; }
.btn-green   { background: var(--green); color: var(--white); border: 2px solid var(--green); }
.btn-green:hover { background: var(--green-dk); border-color: var(--green-dk); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,.5); }
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,.09); }
.btn-outline-dk { background: transparent; color: var(--green); border: 2px solid var(--green); }
.btn-outline-dk:hover { background: var(--green); color: var(--white); }
.btn-full { width: 100%; justify-content: center; }

/* ── Page hero ── */
.page-hero {
  background: var(--green-dk);
  padding: 72px 0 64px;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background-image: repeating-linear-gradient(
    45deg, rgba(199,154,45,.045) 0, rgba(199,154,45,.045) 1px,
    transparent 1px, transparent 40px);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); margin-bottom: 14px; }
.page-hero p  { color: rgba(255,255,255,.68); font-size: 17px; max-width: 580px; margin: 0; }

/* ── CTA Banner ── */
.cta-banner {
  background: var(--green-dk); padding: 80px 0;
  text-align: center; position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; inset: 0;
  background-image: repeating-linear-gradient(
    -45deg, rgba(199,154,45,.04) 0, rgba(199,154,45,.04) 1px,
    transparent 1px, transparent 36px);
}
.cta-banner .container { position: relative; z-index: 1; }
.cta-banner h2 { color: var(--white); margin-bottom: 14px; }
.cta-banner p  { color: rgba(255,255,255,.62); font-size: 17px; max-width: 520px; margin: 0 auto 36px; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* =============================================================
   NAVIGATION
   ============================================================= */
.site-nav {
  position: sticky; top: 0; z-index: 900;
  height: var(--nav-h);
  background: var(--white); border-bottom: 1px solid var(--border);
  display: flex; align-items: center;
}
.nav-inner {
  max-width: var(--max); margin: 0 auto; padding: 0 28px;
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.nav-brand {
  display: flex; flex-direction: column; gap: 2px;
  text-decoration: none; flex-shrink: 0;
}
.nav-brand-name { font-family: var(--fh); font-size: 1.12rem; font-weight: 700; color: var(--green); line-height: 1.1; }
.nav-brand-sub  { font-size: 9.5px; font-weight: 500; letter-spacing: .16em; text-transform: uppercase; color: var(--text-lt); }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-link {
  font-size: 13px; font-weight: 500; color: var(--text);
  text-decoration: none; padding-bottom: 3px;
  border-bottom: 2px solid transparent;
  transition: color var(--ease), border-color var(--ease);
}
.nav-link:hover, .nav-link.active { color: var(--green); border-color: var(--gold); }
.nav-cta {
  font-size: 12px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  padding: 10px 22px; background: var(--green); color: var(--white);
  border-radius: var(--r); text-decoration: none;
  transition: background var(--ease); flex-shrink: 0;
}
.nav-cta:hover { background: var(--green-dk); }
.nav-burger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 4px; background: none; border: none;
}
.nav-burger span {
  display: block; width: 24px; height: 2px;
  background: var(--text); border-radius: 1px; transition: all var(--ease);
}
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-nav {
  display: none; position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: var(--white); border-bottom: 1px solid var(--border);
  padding: 20px 28px 28px;
  z-index: 800; flex-direction: column; box-shadow: var(--shadow);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  display: block; font-size: 15px; font-weight: 500;
  color: var(--text); text-decoration: none;
  padding: 15px 0; border-bottom: 1px solid var(--border);
  transition: color var(--ease);
}
.mobile-nav a:hover, .mobile-nav a.active { color: var(--green); }
.mobile-nav .mob-cta {
  display: block; text-align: center; margin-top: 20px;
  font-size: 13px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  padding: 14px; background: var(--green); color: var(--white);
  border-radius: var(--r); text-decoration: none;
}

/* =============================================================
   FOOTER
   ============================================================= */
.site-footer { background: var(--green-dk); }
.footer-top {
  display: grid; grid-template-columns: 1.9fr 1fr 1fr 1.4fr;
  gap: 52px; padding: 72px 0 56px;
}
.footer-brand-name { font-family: var(--fh); font-size: 1.4rem; font-weight: 700; color: var(--white); margin-bottom: 6px; }
.footer-tagline    { font-family: var(--fh); font-size: .95rem; font-style: italic; color: var(--gold-lt); margin-bottom: 18px; }
.footer-desc       { font-size: 13.5px; line-height: 1.8; color: rgba(255,255,255,.55); }
.footer-col-title  { font-size: 10.5px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--gold-lt); margin-bottom: 18px; }
.footer-col li       { margin-bottom: 10px; }
.footer-col li a     { font-size: 13.5px; color: rgba(255,255,255,.58); text-decoration: none; transition: color var(--ease); }
.footer-col li a:hover { color: var(--white); }
.fci     { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; font-size: 13.5px; color: rgba(255,255,255,.58); line-height: 1.6; }
.fci svg { flex-shrink: 0; margin-top: 3px; color: var(--gold-lt); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.09); padding: 24px 0;
  display: flex; align-items: flex-start; justify-content: space-between; gap: 24px; flex-wrap: wrap;
}
.footer-disc { font-size: 12px; color: rgba(255,255,255,.38); max-width: 640px; line-height: 1.65; }
.footer-disc strong { color: rgba(255,255,255,.5); }
.footer-copy { font-size: 12px; color: rgba(255,255,255,.35); white-space: nowrap; }

/* =============================================================
   FLOATING WHATSAPP
   ============================================================= */
.wa-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  display: flex; align-items: center; gap: 10px;
  padding: 13px 20px;
  background: #25D366; color: var(--white);
  border-radius: 50px;
  font-size: 13.5px; font-weight: 600; text-decoration: none;
  box-shadow: 0 4px 20px rgba(37,211,102,.35);
  transition: all var(--ease);
}
.wa-float:hover { background: #1fba59; transform: translateY(-2px); }

/* =============================================================
   HOME — HERO
   ============================================================= */
.hero {
  background: var(--green-dk);
  position: relative; overflow: hidden;
  min-height: 620px; display: flex; align-items: center;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('https://images.unsplash.com/photo-1560518883-ce09059eeffa?w=1800&q=80');
  background-size: cover; background-position: center 40%; opacity: .16;
}
.hero-pattern {
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(
    45deg, rgba(199,154,45,.04) 0, rgba(199,154,45,.04) 1px, transparent 1px, transparent 40px);
}
.hero-content { position: relative; z-index: 2; padding: 100px 0 106px; max-width: 720px; }
.hero-ey { display: flex; align-items: center; gap: 12px; margin-bottom: 24px; }
.hero-ey-line { width: 36px; height: 1px; background: var(--gold); }
.hero-ey-text { font-size: 11px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--gold-lt); }
.hero h1    { color: var(--white); margin-bottom: 22px; }
.hero h1 em { font-style: italic; color: var(--gold-lt); }
.hero-sub   { font-size: 17px; color: rgba(255,255,255,.72); margin-bottom: 40px; line-height: 1.78; max-width: 580px; }
.hero-ctas  { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero-trust { display: flex; flex-wrap: wrap; margin-top: 56px; border-top: 1px solid rgba(255,255,255,.11); padding-top: 36px; }
.hero-ti    { display: flex; align-items: center; gap: 10px; padding-right: 28px; margin-right: 28px; border-right: 1px solid rgba(255,255,255,.13); }
.hero-ti:last-child { border-right: none; }
.hero-ti-dot  { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }
.hero-ti-text { font-size: 12.5px; font-weight: 500; color: rgba(255,255,255,.68); }

/* ── Trust strip ── */
.trust-strip { background: var(--cream); border-bottom: 1px solid var(--border); padding: 24px 0; }
.trust-strip-inner { display: flex; align-items: center; justify-content: center; gap: 44px; flex-wrap: wrap; }
.tti { display: flex; align-items: center; gap: 10px; }
.tti-icon  { width: 32px; height: 32px; border-radius: 50%; background: var(--green); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.tti-label { align-items: center; font-size: 14px; font-weight: 500; color: var(--text); }

/* ── About preview ── */
.ap-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.ap-imgwrap { position: relative; }
.ap-imgwrap img { width: 100%; height: 500px; object-fit: cover; object-position: top; border-radius: var(--r); }
.ap-badge   { position: absolute; bottom: -20px; right: -20px; background: var(--green); padding: 22px 26px; border-radius: var(--r); box-shadow: var(--shadow-lg); }
.ap-badge-n { display: block; font-family: var(--fh); font-size: 2.6rem; font-weight: 700; color: var(--gold-lt); line-height: 1; margin-bottom: 4px; }
.ap-badge-l { font-size: 11px; color: rgba(255,255,255,.68); letter-spacing: .06em; }
.ap-creds   { margin: 24px 0 32px; display: flex; flex-direction: column; gap: 12px; }
.ap-cred    { display: flex; align-items: flex-start; gap: 12px; font-size: 14.5px; color: var(--text); }
.ap-cred svg { flex-shrink: 0; color: var(--gold); margin-top: 3px; }

/* ── Services overview ── */
.svc-ov-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2px; background: var(--border-md); border: 1px solid var(--border-md); margin-top: 52px;
}
.svc-ov-card { background: var(--white); padding: 36px 30px; transition: background var(--ease); text-decoration: none; display: block; }
.svc-ov-card:hover { background: var(--green); }
.soc-icon  { width: 48px; height: 48px; background: var(--cream); border-radius: var(--r); display: flex; align-items: center; justify-content: center; color: var(--green); margin-bottom: 22px; transition: all var(--ease); }
.svc-ov-card:hover .soc-icon { background: rgba(255,255,255,.1); color: var(--gold-lt); }
.soc-title { font-family: var(--fh); font-size: 1.18rem; font-weight: 600; color: var(--green); margin-bottom: 10px; transition: color var(--ease); line-height: 1.25; }
.svc-ov-card:hover .soc-title { color: var(--white); }
.soc-desc  { font-size: 13.5px; color: var(--text-md); line-height: 1.72; transition: color var(--ease); }
.svc-ov-card:hover .soc-desc  { color: rgba(255,255,255,.68); }
.soc-arr   { display: block; margin-top: 18px; font-size: 18px; color: var(--gold); transition: color var(--ease); }
.svc-ov-card:hover .soc-arr   { color: var(--gold-lt); }

/* ── Why section ── */
.why-grid    { display: flex; flex-direction: column; gap: 72px; align-items: center; }
.why-img img { width: 100%; height: 440px; object-fit: cover; border-radius: var(--r); }
.why-cap     { font-size: 12px; color: var(--text-lt); margin-top: 10px; font-style: italic; }
.risk-list   { display: flex; flex-direction: column; gap: 14px; margin-top: 26px; }
.risk-item   { display: flex; gap: 18px; padding: 18px 20px; background: var(--cream); border-left: 3px solid var(--gold); }
.risk-num    { font-family: var(--fh); font-size: 1.45rem; font-weight: 700; color: var(--gold); line-height: 1; flex-shrink: 0; min-width: 26px; }
.risk-title  { display: block; font-size: 14px; font-weight: 600; color: var(--text); margin-bottom: 3px; }
.risk-desc   { font-size: 13.5px; color: var(--text-md); }

/* ── Stats ── */
.stats-sec  { background: var(--green); padding: 68px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.07); }
.stat-item  { background: var(--green); padding: 38px 28px; text-align: center; }
.stat-num   { display: block; font-family: var(--fh); font-size: 3.2rem; font-weight: 700; color: var(--gold-lt); line-height: 1; margin-bottom: 8px; }
.stat-lbl   { font-size: 13px; color: rgba(255,255,255,.62); }

/* ── Process ── */
.process-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 2px; background: var(--border-md); border: 1px solid var(--border-md); margin-top: 52px; }
.proc-step    { background: var(--white); padding: 36px 28px; }
.proc-num     { font-family: var(--fh); font-size: 3.2rem; font-weight: 700; color: var(--gold); line-height: 1; margin-bottom: 16px; }
.proc-step h4 { font-family: var(--fh); font-size: 1.18rem; color: var(--green); margin-bottom: 10px; }
.proc-step p  { font-size: 13.5px; }

/* ── Testimonials ── */
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 52px; }
.testi-card { background: var(--cream); padding: 32px; border: 1px solid var(--border); border-top: 3px solid var(--gold); }
.testi-q    { display: block; font-family: var(--fh); font-size: 4.5rem; color: var(--gold); line-height: .6; margin-bottom: 18px; }
.testi-text { font-size: 15px; color: var(--text); line-height: 1.78; font-style: italic; margin-bottom: 26px; }
.testi-auth { display: flex; align-items: center; gap: 12px; }
.testi-av   { width: 44px; height: 44px; border-radius: 50%; background: var(--cream-dkr); display: flex; align-items: center; justify-content: center; font-family: var(--fh); font-size: 1.1rem; font-weight: 700; color: var(--green); flex-shrink: 0; }
.testi-name { font-size: 14px; font-weight: 600; color: var(--text); display: block; }
.testi-role { font-size: 12px; color: var(--text-lt); margin-top: 2px; display: block; }

/* ── Blog preview ── */
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; margin-top: 52px; }
.blog-card { background: var(--white); border: 1px solid var(--border); text-decoration: none; display: block; transition: box-shadow var(--ease); }
.blog-card:hover { box-shadow: var(--shadow); }
.blog-card img { width: 100%; height: 200px; object-fit: cover; display: block; }
.bc-body   { padding: 24px; }
.bc-cat    { display: inline-block; font-size: 10.5px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.bc-title  { font-family: var(--fh); font-size: 1.12rem; font-weight: 600; color: var(--text); line-height: 1.3; margin-bottom: 10px; transition: color var(--ease); }
.blog-card:hover .bc-title { color: var(--green); }
.bc-exc    { font-size: 13.5px; color: var(--text-md); line-height: 1.7; margin-bottom: 16px; }
.bc-meta   { font-size: 12px; color: var(--text-lt); display: flex; align-items: center; gap: 8px; }
.mdot      { width: 3px; height: 3px; border-radius: 50%; background: var(--border-md); display: inline-block; }

/* =============================================================
   SERVICES PAGE  —  card grid, no images
   ============================================================= */
.svc-trust-bar { background: var(--white); border-bottom: 1px solid var(--border); padding: 16px 0; }
.svc-tb-inner  { display: flex; align-items: center; justify-content: center; gap: 36px; flex-wrap: wrap; }
.svc-tb-item   { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 500; color: var(--text-md); }

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

.svc-panel {
  background: var(--white); border: 1px solid var(--border);
  padding: 36px 32px 32px;
  display: flex; flex-direction: column;
  position: relative;
  transition: box-shadow var(--ease), border-color var(--ease);
}
.svc-panel:hover { box-shadow: 0 8px 32px rgba(11,77,43,.10); border-color: var(--border-md); }
.svc-panel.featured { border-color: var(--gold); border-width: 2px; }
.svc-badge {
  position: absolute; top: -1px; left: 32px;
  background: var(--gold); color: var(--white);
  font-size: 10.5px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  padding: 4px 12px; border-radius: 0 0 var(--r) var(--r);
}
.sp-top  { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 20px; }
.sp-num  { font-family: var(--fh); font-size: 2.6rem; font-weight: 700; color: var(--cream-dkr); line-height: 1; }
.sp-icon { width: 52px; height: 52px; background: var(--green-tint); border-radius: var(--r); display: flex; align-items: center; justify-content: center; color: var(--green); flex-shrink: 0; }
.svc-panel.featured .sp-icon { background: rgba(199,154,45,.1); color: var(--gold); }
.svc-panel h3   { font-family: var(--fh); font-size: 1.3rem; font-weight: 600; color: var(--green); margin-bottom: 12px; line-height: 1.2; }
.sp-desc        { font-size: 14px; color: var(--text-md); line-height: 1.75; margin-bottom: 22px; }
.sp-checks      { display: flex; flex-direction: column; gap: 8px; margin-bottom: 24px; flex: 1; }
.sp-checks li   { display: flex; align-items: flex-start; gap: 10px; font-size: 13.5px; color: var(--text-md); line-height: 1.55; }
.sp-checks li::before {
  content: ''; display: block; width: 16px; height: 16px; border-radius: 50%;
  background-color: var(--green);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M4 8l3 3 5-5' stroke='white' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-size: cover; flex-shrink: 0; margin-top: 2px;
}
.svc-panel.featured .sp-checks li::before { background-color: var(--gold); }
.sp-aud      { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 24px; }
.sp-aud span { font-size: 11px; font-weight: 500; padding: 4px 10px; background: var(--cream); color: var(--text-md); border-radius: 20px; border: 1px solid var(--border); }
.sp-btn {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  font-size: 12.5px; font-weight: 600; letter-spacing: .07em; text-transform: uppercase;
  padding: 13px 20px; background: var(--green); color: var(--white);
  border-radius: var(--r); text-decoration: none;
  transition: background var(--ease); margin-top: auto;
}
.sp-btn:hover { background: var(--green-dk); }
.sp-btn.gold  { background: var(--gold); }
.sp-btn.gold:hover { background: #a97e22; }

.svc-note {
  display: flex; align-items: flex-start; gap: 12px;
  margin-top: 36px; padding: 18px 22px;
  background: rgba(199,154,45,.07); border: 1px solid rgba(199,154,45,.25); border-radius: var(--r);
}
.svc-note svg { flex-shrink: 0; margin-top: 2px; }
.svc-note p   { font-size: 14px; color: var(--text-md); margin: 0; }
.svc-note a   { color: var(--green); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }

/* =============================================================
   ABOUT PAGE
   ============================================================= */
.about-layout  { display: grid; grid-template-columns: 360px 1fr; gap: 72px; align-items: start; }
.about-sidebar { position: sticky; top: calc(var(--nav-h) + 24px); }
.about-photo img { width: 100%; height: 500px; object-fit: cover; object-position: top; border-radius: var(--r) var(--r) 0 0; display: block; }
.about-photo-cap  { background: var(--green); padding: 20px 24px; border-radius: 0 0 var(--r) var(--r); }
.about-photo-name { font-family: var(--fh); font-size: 1.2rem; font-weight: 700; color: var(--white); display: block; }
.about-photo-role { font-size: 12px; color: rgba(255,255,255,.65); margin-top: 4px; letter-spacing: .06em; display: block; }
.about-sb-cta  { margin-top: 20px; background: var(--cream); border: 1px solid var(--border); padding: 22px 24px; }
.about-sb-cta h5 { font-size: 11px; font-weight: 600; letter-spacing: .15em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.about-content h3 { color: var(--green); margin-top: 44px; margin-bottom: 16px; }
.about-content p  { margin-bottom: 20px; }
.exp-grid  { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 22px 0 32px; }
.exp-item  { display: flex; align-items: flex-start; gap: 12px; padding: 16px 18px; background: var(--cream); border-left: 3px solid var(--gold); }
.exp-item svg { flex-shrink: 0; color: var(--gold); margin-top: 1px; }
.exp-item p   { font-size: 14px; font-weight: 500; color: var(--text); margin: 0; }
.values-list  { display: flex; flex-direction: column; }
.val-item     { padding: 22px 0; border-bottom: 1px solid var(--border); }
.val-item:first-child { padding-top: 0; }
.val-item:last-child  { border-bottom: none; }
.val-item h4  { font-family: var(--fh); font-size: 1.12rem; color: var(--green); margin-bottom: 6px; }
.val-item p   { font-size: 14.5px; margin: 0; }
.faq-list { display: flex; flex-direction: column; margin-top: 28px; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 0; cursor: pointer; gap: 20px;
  font-family: var(--fh); font-size: 1.05rem; font-weight: 600; color: var(--text);
  transition: color var(--ease);
}
.faq-q:hover { color: var(--green); }
.faq-icon { flex-shrink: 0; font-size: 22px; color: var(--gold); transition: transform var(--ease); line-height: 1; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a { display: none; padding-bottom: 20px; font-size: 14.5px; color: var(--text-md); line-height: 1.78; }
.faq-item.open .faq-a { display: block; }

/* =============================================================
   BLOG PAGE
   ============================================================= */
.blog-layout { display: grid; grid-template-columns: 1fr 300px; gap: 52px; align-items: start; }
.blog-featured {
  display: grid; grid-template-columns: 1fr 1fr;
  border: 1px solid var(--border); text-decoration: none;
  margin-bottom: 48px; transition: box-shadow var(--ease);
}
.blog-featured:hover { box-shadow: var(--shadow); }
.bf-img img { width: 100%; height: 100%; min-height: 300px; object-fit: cover; display: block; }
.bf-body    { padding: 44px; background: var(--white); display: flex; flex-direction: column; justify-content: center; }
.bf-tag     { font-size: 10.5px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; display: block; }
.bf-body h2 { font-size: clamp(1.5rem, 2.5vw, 2rem); color: var(--text); margin-bottom: 14px; transition: color var(--ease); }
.blog-featured:hover .bf-body h2 { color: var(--green); }
.bf-body p  { margin-bottom: 20px; }
.bf-meta    { font-size: 12px; color: var(--text-lt); display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }
.blog-sec-title { font-family: var(--fh); font-size: 1.35rem; color: var(--green); padding-bottom: 14px; border-bottom: 2px solid var(--gold); }
.blog-art-list  { margin-top: 24px; display: flex; flex-direction: column; }
.blog-art-row   { display: flex; gap: 20px; padding: 22px 0; border-bottom: 1px solid var(--border); text-decoration: none; }
.blog-art-row:last-child { border-bottom: none; }
.blog-art-row img { width: 110px; height: 80px; object-fit: cover; border-radius: var(--r); flex-shrink: 0; }
.bar-cat   { font-size: 10px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); margin-bottom: 5px; display: block; }
.bar-title { font-family: var(--fh); font-size: 1rem; font-weight: 600; color: var(--text); line-height: 1.3; transition: color var(--ease); }
.blog-art-row:hover .bar-title { color: var(--green); }
.bar-meta  { font-size: 12px; color: var(--text-lt); margin-top: 8px; }
.blog-search { position: relative; margin-bottom: 28px; }
.blog-search input {
  width: 100%; padding: 13px 48px 13px 16px;
  border: 1px solid var(--border-md); border-radius: var(--r);
  background: var(--cream); font-size: 14px; color: var(--text);
  outline: none; transition: all var(--ease);
}
.blog-search input:focus { border-color: var(--green); background: var(--white); }
.blog-search input::placeholder { color: var(--text-lt); }
.bs-icon { position: absolute; right: 14px; top: 50%; transform: translateY(-50%); color: var(--text-lt); pointer-events: none; }
.blog-sidebar { display: flex; flex-direction: column; gap: 24px; position: sticky; top: calc(var(--nav-h)+24px); }
.sb-widget     { background: var(--cream); border: 1px solid var(--border); padding: 24px; }
.sb-widget h4  { font-family: var(--fh); font-size: 1.05rem; color: var(--green); margin-bottom: 14px; padding-bottom: 10px; border-bottom: 2px solid var(--gold); }
.sb-cat        { display: flex; align-items: center; justify-content: space-between; padding: 9px 0; border-bottom: 1px solid var(--border); font-size: 13.5px; cursor: pointer; transition: color var(--ease); }
.sb-cat:last-child { border-bottom: none; }
.sb-cat:hover  { color: var(--green); }
.sb-cat span   { font-size: 12px; color: var(--text-lt); }
.sb-recent     { display: flex; gap: 12px; padding: 10px 0; border-bottom: 1px solid var(--border); text-decoration: none; }
.sb-recent:last-child { border-bottom: none; }
.sb-recent img { width: 60px; height: 48px; object-fit: cover; border-radius: var(--r); flex-shrink: 0; }
.sb-rec-title  { font-family: var(--fh); font-size: .9rem; color: var(--text); line-height: 1.3; transition: color var(--ease); }
.sb-recent:hover .sb-rec-title { color: var(--green); }
.sb-cta        { background: var(--green); padding: 24px; }
.sb-cta h4     { color: var(--white); margin-bottom: 10px; font-size: 1.05rem; }
.sb-cta p      { font-size: 13px; color: rgba(255,255,255,.68); margin-bottom: 16px; }

/* =============================================================
   BLOG ARTICLE
   ============================================================= */
.art-layout { display: grid; grid-template-columns: 1fr 300px; gap: 52px; align-items: start; }
.art-cat    { font-size: 11px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; display: block; }
.art-header h1 { font-size: clamp(2rem, 3.5vw, 2.8rem); margin-bottom: 16px; }
.art-meta   { font-size: 13px; color: var(--text-lt); display: flex; align-items: center; gap: 12px; flex-wrap: wrap; padding-bottom: 20px; border-bottom: 1px solid var(--border); margin-bottom: 36px; }
.art-meta strong { color: var(--text); }
.art-hero   { width: 100%; height: 420px; object-fit: cover; border-radius: var(--r); margin-bottom: 40px; display: block; }
.art-body h2 { font-size: 1.7rem; color: var(--green); margin: 36px 0 14px; }
.art-body h3 { font-size: 1.3rem; color: var(--text); margin: 28px 0 12px; }
.art-body p  { margin-bottom: 20px; font-size: 16px; line-height: 1.82; }
.art-body ul, .art-body ol { padding-left: 20px; margin-bottom: 20px; }
.art-body ul  { list-style: disc; }
.art-body ol  { list-style: decimal; }
.art-body li  { font-size: 15.5px; color: var(--text-md); margin-bottom: 8px; line-height: 1.75; }
.art-body blockquote { border-left: 4px solid var(--gold); padding: 20px 24px; background: var(--cream); margin: 28px 0; font-family: var(--fh); font-size: 1.15rem; font-style: italic; color: var(--text); line-height: 1.6; }
.art-cta    { background: var(--green); padding: 36px 40px; border-radius: var(--r); margin-top: 48px; }
.art-cta h3 { color: var(--white); margin-bottom: 10px; font-size: 1.5rem; }
.art-cta p  { color: rgba(255,255,255,.72); margin-bottom: 20px; }

/* =============================================================
   SHARED FORM ELEMENTS
   (used on book.html, request-verification.html, contact.html)
   ============================================================= */
.form-grid   { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group  { display: flex; flex-direction: column; gap: 7px; }
.form-group.full { grid-column: 1 / -1; }
label { font-size: 11.5px; font-weight: 600; letter-spacing: .09em; text-transform: uppercase; color: var(--text); }
input, select, textarea {
  font-size: 14.5px; color: var(--text);
  padding: 12px 16px; border: 1px solid var(--border-md); border-radius: var(--r);
  background: var(--cream); transition: all var(--ease); outline: none;
  -webkit-appearance: none; appearance: none;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--green); background: var(--white);
  box-shadow: 0 0 0 3px rgba(11,77,43,.07);
}
input::placeholder, textarea::placeholder { color: var(--text-lt); }
textarea { resize: vertical; min-height: 130px; line-height: 1.65; }
select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%234A4A4A'%3E%3Cpath d='M5.23 7.21a.75.75 0 011.06.02L10 11.17l3.71-3.94a.75.75 0 111.08 1.04l-4.25 4.5a.75.75 0 01-1.08 0l-4.25-4.5a.75.75 0 01.02-1.06z'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; background-size: 18px; padding-right: 42px; cursor: pointer;
}
.form-notice { font-size: 12px; color: var(--text-lt); margin-top: 14px; text-align: center; line-height: 1.6; }
.field-error { font-size: 12px; color: #C0392B; margin-top: 4px; display: block; }
input.err, select.err, textarea.err { border-color: #C0392B; }

/* ── Form success state ── */
.form-success { display: none; text-align: center; padding: 56px 40px; }
.form-success.visible { display: block; }
.fs-icon { width: 64px; height: 64px; border-radius: 50%; background: var(--green); display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; }
.form-success h3 { color: var(--green); margin-bottom: 10px; }

/* =============================================================
   BOOK A SERVICE PAGE
   ============================================================= */
.book-back {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 13px; font-weight: 500; color: rgba(255,255,255,.6);
  text-decoration: none; margin-bottom: 20px; transition: color var(--ease);
}
.book-back:hover { color: var(--white); }
.book-layout { display: grid; grid-template-columns: 1fr 360px; gap: 52px; align-items: start; }
.book-panel  { background: var(--white); border: 1px solid var(--border); }
.book-chip   { display: flex; align-items: center; gap: 8px; padding: 14px 24px; background: var(--green); color: var(--white); font-size: 13px; font-weight: 600; border-bottom: 1px solid rgba(255,255,255,.15); }
.book-chip svg { flex-shrink: 0; color: var(--gold-lt); }
.book-fieldset { border: none; padding: 32px 36px 28px; border-bottom: 1px solid var(--border); }
.book-fieldset:last-of-type { border-bottom: none; }
.book-legend { padding-top: 24px; font-size: 11px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); margin-top: 12px; margin-bottom: 12px; display: block; }
.book-submit-row { padding: 28px 36px 36px; background: var(--cream); border-top: 1px solid var(--border); }
.book-sidebar { display: flex; flex-direction: column; gap: 20px; position: sticky; top: calc(var(--nav-h)+24px); }
.sb-block     { background: var(--cream); border: 1px solid var(--border); padding: 28px; }
.sb-block h4  { font-family: var(--fh); font-size: 1.1rem; color: var(--green); margin-bottom: 12px; }
.sb-block p   { font-size: 13.5px; margin-bottom: 12px; }
.sb-block p:last-of-type { margin-bottom: 0; }
.bk-steps  { display: flex; flex-direction: column; gap: 20px; margin-top: 4px; }
.bk-step   { display: flex; gap: 14px; align-items: flex-start; }
.bk-snum   { width: 28px; height: 28px; border-radius: 50%; background: var(--green); color: var(--white); font-size: 12px; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px; }
.bk-step strong { display: block; font-size: 13.5px; font-weight: 600; color: var(--text); margin-bottom: 3px; }
.bk-step p      { font-size: 13px; margin: 0; line-height: 1.6; }
.ci-item        { display: flex; align-items: flex-start; gap: 11px; font-size: 14px; color: var(--text); margin-bottom: 12px; line-height: 1.55; }
.ci-item svg    { flex-shrink: 0; color: var(--gold); margin-top: 2px; }
.ci-item:last-child { margin-bottom: 0; }
.sb-conf        { display: flex; gap: 14px; align-items: flex-start; }
.sb-conf svg    { flex-shrink: 0; margin-top: 2px; }
.sb-conf strong { display: block; font-size: 13.5px; color: var(--text); margin-bottom: 5px; }
.sb-conf p      { font-size: 13px; margin: 0; }

/* ── WhatsApp button ── */
.wa-btn {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  width: 100%; padding: 14px;
  background: #25D366; color: var(--white);
  font-size: 13.5px; font-weight: 600; font-family: var(--fb);
  border-radius: var(--r); text-decoration: none; border: none; cursor: pointer;
  transition: background var(--ease); margin-top: 14px;
}
.wa-btn:hover { background: #1fba59; }

/* =============================================================
   REQUEST VERIFICATION PAGE
   ============================================================= */
.req-layout { display: grid; grid-template-columns: 1fr 360px; gap: 52px; align-items: start; }
.req-panel  { background: var(--white); border: 1px solid var(--border); padding: 48px; }
.req-title  { font-family: var(--fh); font-size: 1.85rem; font-weight: 600; color: var(--green); margin-bottom: 6px; }
.req-sub    { font-size: 14px; color: var(--text-md); margin-bottom: 36px; }
.req-sidebar { display: flex; flex-direction: column; gap: 20px; position: sticky; top: calc(var(--nav-h)+24px); }

/* =============================================================
   CONTACT PAGE
   ============================================================= */
.cont-layout { display: grid; grid-template-columns: 1fr 380px; gap: 52px; align-items: start; }
.cont-meth   { display: flex; gap: 20px; padding: 28px; border: 1px solid var(--border); margin-bottom: 20px; }
.cont-meth:last-of-type { margin-bottom: 0; }
.cont-m-icon { width: 48px; height: 48px; background: var(--green); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.cont-meth h4 { font-family: var(--fh); font-size: 1.1rem; color: var(--green); margin-bottom: 6px; }
.cont-meth p  { font-size: 14px; margin-bottom: 6px; }
.cont-meth a  { font-size: 14px; font-weight: 600; color: var(--green); text-decoration: none; display: block; transition: color var(--ease); }
.cont-meth a:hover { color: var(--gold); }

/* =============================================================
   RESPONSIVE
   ============================================================= */
@media (max-width: 1024px) {
  .about-layout             { grid-template-columns: 300px 1fr; gap: 48px; }
  .blog-layout, .art-layout { grid-template-columns: 1fr 260px; }
  .req-layout, .cont-layout { grid-template-columns: 1fr 300px; }
  .book-layout              { grid-template-columns: 1fr 320px; gap: 40px; }
}

@media (max-width: 960px) {
  .nav-links, .nav-cta { display: none; }
  .nav-burger          { display: flex; }
  .hero-trust          { flex-direction: column; }
  .hero-ti             { padding-right: 0; margin-right: 0; border-right: none; padding-bottom: 14px; border-bottom: 1px solid rgba(255,255,255,.1); }
  .hero-ti:last-child  { border-bottom: none; }
  .ap-grid, .why-grid  { grid-template-columns: 1fr; gap: 48px; }
  .ap-imgwrap          { order: -1; }
  .ap-badge            { bottom: -16px; right: 16px; }
  .svc-ov-grid, .stats-grid, .process-grid, .testi-grid, .blog-grid { grid-template-columns: 1fr 1fr; }
  .svc-card-grid       { grid-template-columns: 1fr 1fr; }
  .about-layout        { grid-template-columns: 1fr; gap: 36px; }
  .about-sidebar       { position: static; }
  .about-photo img     { height: 360px; }
  .exp-grid            { grid-template-columns: 1fr; }
  .blog-layout, .art-layout { grid-template-columns: 1fr; }
  .blog-sidebar        { position: static; }
  .blog-featured       { grid-template-columns: 1fr; }
  .req-layout, .cont-layout, .book-layout { grid-template-columns: 1fr; }
  .req-sidebar, .book-sidebar { position: static; }
  .footer-top          { grid-template-columns: 1fr 1fr; gap: 32px; padding: 52px 0 40px; }
}

@media (max-width: 640px) {
  .section     { padding: 64px 0; }
  .container   { padding: 0 20px; }
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.78rem; }
  .hero-content { padding: 68px 0 76px; }
  .svc-ov-grid, .stats-grid, .process-grid, .testi-grid, .blog-grid, .svc-card-grid { grid-template-columns: 1fr; }
  .form-grid   { grid-template-columns: 1fr; }
  .form-group.full { grid-column: 1; }
  .req-panel   { padding: 28px 20px; }
  .book-fieldset    { padding: 20px 16px 16px; }
  .book-submit-row  { padding: 18px 16px 24px; }
  .bf-body     { padding: 28px; }
  .footer-top  { grid-template-columns: 1fr; gap: 28px; padding: 44px 0 36px; }
  .footer-bottom { flex-direction: column; gap: 10px; }
  .cta-btns    { flex-direction: column; align-items: center; }
  .wa-float .wa-txt { display: none; }
  .wa-float    { padding: 14px; border-radius: 50%; }
}
