/* ============================================================
   EXCEL WIZARD — rggupta.com
   Brand palette: Deep forest greens + warm gold accents
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,500;0,9..40,700;1,9..40,400&family=Fraunces:opsz,wght@9..144,400;9..144,700;9..144,900&display=swap');

:root {
  --c-bg: #faf9f6;
  --c-bg-alt: #f0ede6;
  --c-surface: #ffffff;
  --c-text: #1a1a1a;
  --c-text-mid: #4a4a4a;
  --c-text-light: #767676;
  --c-green: #1a6b3c;
  --c-green-dark: #0e4525;
  --c-green-light: #e8f5ec;
  --c-gold: #c8952e;
  --c-gold-light: #fdf5e6;
  --c-accent: #d4432a;
  --c-border: #e2ddd5;
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --max-w: 1200px;
  --radius: 10px;
  --shadow: 0 2px 20px rgba(0,0,0,.06);
  --shadow-lg: 0 8px 40px rgba(0,0,0,.1);
}

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

html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--c-text);
  background: var(--c-bg);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--c-green); text-decoration: none; transition: color .2s; }
a:hover { color: var(--c-gold); }

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }

/* ---- HEADER / NAV ---- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--c-border);
}
.nav-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}
.nav-logo {
  font-family: var(--font-display);
  font-weight: 900; font-size: 1.35rem;
  color: var(--c-green-dark);
  display: flex; align-items: center; gap: 8px;
}
.nav-logo span { color: var(--c-gold); }
.nav-links { display: flex; gap: 28px; list-style: none; align-items: center; }
.nav-links a {
  font-size: .9rem; font-weight: 500; color: var(--c-text-mid);
  position: relative; padding: 4px 0;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -2px; left: 0;
  width: 0; height: 2px; background: var(--c-gold);
  transition: width .25s;
}
.nav-links a:hover { color: var(--c-green); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  background: var(--c-green); color: #fff !important;
  padding: 9px 22px; border-radius: 6px; font-weight: 600;
  font-size: .88rem;
}
.nav-cta:hover { background: var(--c-green-dark); color: #fff !important; }
.nav-cta::after { display: none !important; }

/* Mobile nav */
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 6px; }
.nav-toggle svg { width: 26px; height: 26px; stroke: var(--c-text); }

@media(max-width:768px) {
  .nav-toggle { display: block; }
  .nav-links {
    display: none; flex-direction: column;
    position: absolute; top: 68px; left: 0; right: 0;
    background: #fff; border-bottom: 1px solid var(--c-border);
    padding: 20px 24px; gap: 16px;
  }
  .nav-links.open { display: flex; }
}

/* ---- HERO ---- */
.hero {
  padding: 80px 0 60px;
  background: linear-gradient(170deg, var(--c-green-dark) 0%, var(--c-green) 60%, #2a8c56 100%);
  color: #fff; position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 24px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
  position: relative; z-index: 1;
}
.hero h1 {
  font-family: var(--font-display); font-size: 3rem;
  font-weight: 900; line-height: 1.15; margin-bottom: 20px;
}
.hero h1 em { font-style: normal; color: var(--c-gold); }
.hero p { font-size: 1.12rem; opacity: .9; margin-bottom: 32px; max-width: 520px; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; border-radius: 7px; font-weight: 600;
  font-size: .95rem; border: none; cursor: pointer; transition: all .2s;
}
.btn-gold { background: var(--c-gold); color: #fff; }
.btn-gold:hover { background: #b5841f; color: #fff; }
.btn-outline { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.4); }
.btn-outline:hover { border-color: #fff; color: #fff; }
.btn-green { background: var(--c-green); color: #fff; }
.btn-green:hover { background: var(--c-green-dark); color: #fff; }

.hero-stats {
  display: flex; gap: 40px; margin-top: 36px;
}
.hero-stat strong {
  display: block; font-family: var(--font-display);
  font-size: 2.2rem; font-weight: 900; color: var(--c-gold);
}
.hero-stat span { font-size: .85rem; opacity: .8; }

.hero-right {
  background: rgba(255,255,255,.08); border-radius: 16px;
  border: 1px solid rgba(255,255,255,.12); padding: 36px;
}
.hero-right h3 { font-family: var(--font-display); margin-bottom: 16px; font-size: 1.3rem; }

@media(max-width:768px) {
  .hero-inner { grid-template-columns: 1fr; gap: 36px; }
  .hero h1 { font-size: 2.1rem; }
  .hero-stats { gap: 24px; }
  .hero-stat strong { font-size: 1.6rem; }
}

/* ---- SECTIONS ---- */
.section { padding: 72px 0; }
.section-alt { background: var(--c-bg-alt); }
.section-green { background: var(--c-green-dark); color: #fff; }
.section-title {
  font-family: var(--font-display); font-size: 2.1rem;
  font-weight: 900; text-align: center; margin-bottom: 12px;
}
.section-sub {
  text-align: center; color: var(--c-text-light);
  max-width: 600px; margin: 0 auto 48px; font-size: 1.05rem;
}

/* ---- SERVICE CARDS ---- */
.services-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.svc-card {
  background: var(--c-surface); border: 1px solid var(--c-border);
  border-radius: var(--radius); padding: 32px 28px;
  transition: box-shadow .25s, transform .25s;
}
.svc-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.svc-card .icon {
  width: 52px; height: 52px; border-radius: 10px;
  background: var(--c-green-light); display: flex;
  align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 18px;
}
.svc-card h3 {
  font-family: var(--font-display); font-size: 1.15rem;
  font-weight: 700; margin-bottom: 10px;
}
.svc-card p { color: var(--c-text-mid); font-size: .92rem; }

/* ---- FAQ ---- */
.faq-item {
  border: 1px solid var(--c-border); border-radius: var(--radius);
  margin-bottom: 12px; background: var(--c-surface); overflow: hidden;
}
.faq-q {
  padding: 18px 24px; font-weight: 600; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  font-size: .98rem;
}
.faq-q::after { content: '+'; font-size: 1.3rem; color: var(--c-gold); transition: transform .2s; }
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden; transition: max-height .3s ease, padding .3s;
  padding: 0 24px; color: var(--c-text-mid); font-size: .93rem; line-height: 1.7;
}
.faq-item.open .faq-a { max-height: 500px; padding: 0 24px 20px; }

/* ---- BLOG / ARTICLE CARDS ---- */
.blog-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.blog-card {
  background: var(--c-surface); border: 1px solid var(--c-border);
  border-radius: var(--radius); overflow: hidden;
  transition: box-shadow .25s, transform .25s;
}
.blog-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.blog-card-body { padding: 24px; }
.blog-card .tag {
  display: inline-block; background: var(--c-green-light);
  color: var(--c-green); font-size: .75rem; font-weight: 600;
  padding: 4px 10px; border-radius: 4px; margin-bottom: 10px;
  text-transform: uppercase; letter-spacing: .5px;
}
.blog-card h3 {
  font-family: var(--font-display); font-size: 1.1rem;
  font-weight: 700; margin-bottom: 8px; line-height: 1.4;
}
.blog-card p { color: var(--c-text-mid); font-size: .88rem; }

/* ---- ARTICLE PAGE ---- */
.article-header { padding: 60px 0 32px; }
.article-header .breadcrumb {
  font-size: .82rem; color: var(--c-text-light); margin-bottom: 16px;
}
.article-header .breadcrumb a { color: var(--c-green); }
.article-header h1 {
  font-family: var(--font-display); font-size: 2.4rem;
  font-weight: 900; max-width: 800px; line-height: 1.2;
}
.article-meta {
  display: flex; gap: 20px; margin-top: 14px;
  font-size: .85rem; color: var(--c-text-light);
}
.article-body {
  max-width: 800px; padding-bottom: 60px;
}
.article-body h2 {
  font-family: var(--font-display); font-size: 1.5rem;
  font-weight: 700; margin: 36px 0 14px; color: var(--c-green-dark);
}
.article-body h3 {
  font-family: var(--font-display); font-size: 1.2rem;
  font-weight: 700; margin: 28px 0 10px;
}
.article-body p { margin-bottom: 16px; color: var(--c-text-mid); }
.article-body ul, .article-body ol {
  margin: 0 0 16px 24px; color: var(--c-text-mid);
}
.article-body li { margin-bottom: 6px; }
.article-body code {
  background: var(--c-bg-alt); padding: 2px 7px; border-radius: 4px;
  font-size: .9em; font-family: 'Courier New', monospace;
}
.article-body pre {
  background: #1a1a2e; color: #e0e0e0; padding: 20px 24px;
  border-radius: var(--radius); overflow-x: auto;
  margin: 16px 0 24px; font-size: .88rem; line-height: 1.6;
}
.article-body pre code { background: none; padding: 0; color: inherit; }
.article-body blockquote {
  border-left: 4px solid var(--c-gold); padding: 16px 24px;
  background: var(--c-gold-light); border-radius: 0 var(--radius) var(--radius) 0;
  margin: 16px 0 24px; font-style: italic; color: var(--c-text-mid);
}

/* CTA box inside articles */
.cta-box {
  background: linear-gradient(135deg, var(--c-green-dark), var(--c-green));
  color: #fff; border-radius: var(--radius); padding: 36px;
  margin: 40px 0; text-align: center;
}
.cta-box h3 {
  font-family: var(--font-display); font-size: 1.4rem;
  margin-bottom: 12px; color: #fff;
}
.cta-box p { opacity: .9; margin-bottom: 20px; }

/* Sidebar */
.article-layout {
  display: grid; grid-template-columns: 1fr 320px; gap: 48px;
  max-width: var(--max-w); margin: 0 auto; padding: 0 24px;
}
.sidebar { padding-top: 60px; }
.sidebar-box {
  background: var(--c-surface); border: 1px solid var(--c-border);
  border-radius: var(--radius); padding: 24px; margin-bottom: 24px;
}
.sidebar-box h4 {
  font-family: var(--font-display); font-weight: 700;
  margin-bottom: 14px; font-size: 1rem;
}
.sidebar-box ul { list-style: none; }
.sidebar-box li { margin-bottom: 8px; }
.sidebar-box a { font-size: .9rem; color: var(--c-text-mid); }
.sidebar-box a:hover { color: var(--c-green); }

/* AdSense placeholder */
.ad-slot {
  background: var(--c-bg-alt); border: 2px dashed var(--c-border);
  border-radius: var(--radius); padding: 24px; text-align: center;
  color: var(--c-text-light); font-size: .82rem; margin: 24px 0;
  min-height: 90px; display: flex; align-items: center; justify-content: center;
}

@media(max-width:900px) {
  .article-layout { grid-template-columns: 1fr; }
  .sidebar { padding-top: 0; }
}

/* ---- CONTACT / FORM ---- */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
}
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block; font-weight: 600; margin-bottom: 6px;
  font-size: .88rem; color: var(--c-text);
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 12px 16px; border: 1px solid var(--c-border);
  border-radius: 6px; font-family: var(--font-body);
  font-size: .95rem; background: var(--c-surface);
  transition: border-color .2s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--c-green);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

@media(max-width:768px) {
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

/* ---- TEAM ---- */
.team-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 28px;
}
.team-card { text-align: center; }
.team-card img {
  width: 120px; height: 120px; border-radius: 50%;
  object-fit: cover; margin: 0 auto 14px;
  border: 3px solid var(--c-green-light);
}
.team-card h4 { font-family: var(--font-display); font-weight: 700; }
.team-card p { color: var(--c-text-light); font-size: .85rem; }
.team-social { display: flex; gap: 10px; justify-content: center; margin-top: 8px; }
.team-social a {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--c-green-light); display: flex;
  align-items: center; justify-content: center;
  color: var(--c-green); font-size: .8rem;
  transition: background .2s;
}
.team-social a:hover { background: var(--c-green); color: #fff; }

/* ---- FOOTER ---- */
.site-footer {
  background: var(--c-green-dark); color: rgba(255,255,255,.8);
  padding: 60px 0 0;
}
.footer-grid {
  max-width: var(--max-w); margin: 0 auto; padding: 0 24px;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px;
}
.footer-grid h4 {
  font-family: var(--font-display); color: #fff;
  font-weight: 700; margin-bottom: 18px; font-size: 1rem;
}
.footer-grid a {
  display: block; color: rgba(255,255,255,.65);
  font-size: .88rem; margin-bottom: 10px;
}
.footer-grid a:hover { color: var(--c-gold); }
.footer-grid p { font-size: .88rem; line-height: 1.7; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  margin-top: 40px; padding: 20px 24px;
  max-width: var(--max-w); margin-left: auto; margin-right: auto;
  display: flex; justify-content: space-between; align-items: center;
  font-size: .82rem; flex-wrap: wrap; gap: 12px;
}
.footer-sisters { display: flex; gap: 16px; flex-wrap: wrap; }
.footer-sisters a { color: var(--c-gold); font-weight: 600; font-size: .82rem; }

@media(max-width:768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media(max-width:480px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ---- WHATSAPP FLOAT ---- */
.wa-float {
  position: fixed; bottom: 24px; left: 24px; z-index: 999;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25d366; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 14px rgba(37,211,102,.4);
  transition: transform .2s;
}
.wa-float:hover { transform: scale(1.1); }
.wa-float svg { width: 28px; height: 28px; fill: #fff; }

/* ---- PAGINATION ---- */
.pagination { display: flex; gap: 8px; justify-content: center; margin-top: 40px; flex-wrap: wrap; }
.pagination a, .pagination span {
  padding: 8px 14px; border-radius: 6px; font-size: .88rem; font-weight: 600;
}
.pagination a { background: var(--c-surface); border: 1px solid var(--c-border); color: var(--c-text); }
.pagination a:hover { background: var(--c-green-light); }
.pagination .current { background: var(--c-green); color: #fff; }

/* ---- LOCATION HERO ---- */
.loc-hero {
  padding: 60px 0; background: var(--c-green-dark); color: #fff;
}
.loc-hero h1 { font-family: var(--font-display); font-size: 2.4rem; font-weight: 900; }
.loc-hero p { opacity: .85; margin-top: 12px; max-width: 650px; font-size: 1.05rem; }

/* ---- TRUST BAR ---- */
.trust-bar {
  background: var(--c-surface); border-bottom: 1px solid var(--c-border);
  padding: 14px 0;
}
.trust-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 24px;
  display: flex; justify-content: center; gap: 40px;
  font-size: .82rem; color: var(--c-text-light); flex-wrap: wrap;
}
.trust-inner span { display: flex; align-items: center; gap: 6px; }

/* ---- SCHEMA / STRUCTURED DATA (invisible) ---- */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

/* ---- SUCCESS MESSAGE ---- */
.form-success {
  display: none; background: var(--c-green-light); color: var(--c-green-dark);
  border: 1px solid var(--c-green); border-radius: var(--radius);
  padding: 24px; text-align: center; font-weight: 600;
}

/* ---- INDEX PAGE LISTS ---- */
.index-list { list-style: none; column-count: 3; column-gap: 24px; }
.index-list li { break-inside: avoid; margin-bottom: 8px; }
.index-list a { font-size: .9rem; color: var(--c-text-mid); display: block; padding: 6px 0; border-bottom: 1px solid var(--c-border); }
.index-list a:hover { color: var(--c-green); }
@media(max-width:768px) { .index-list { column-count: 2; } }
@media(max-width:480px) { .index-list { column-count: 1; } }

/* ---- UTILITY ---- */
.text-center { text-align: center; }
.mt-2 { margin-top: 16px; }
.mt-4 { margin-top: 32px; }
.mb-4 { margin-bottom: 32px; }

/* ---- STICKY CTA BAR ---- */
.sticky-cta-bar {
  position: fixed; bottom: -80px; left: 0; right: 0; z-index: 98;
  background: var(--c-green-dark);
  border-top: 2px solid var(--c-gold);
  padding: 12px 24px;
  display: flex; align-items: center; justify-content: center; gap: 16px;
  transition: bottom .35s ease;
  box-shadow: 0 -4px 20px rgba(0,0,0,.15);
}
.sticky-cta-bar.visible { bottom: 0; }
.sticky-cta-bar p {
  color: rgba(255,255,255,.9); font-size: .9rem; font-weight: 500; margin: 0;
}
.sticky-cta-bar .btn {
  padding: 9px 20px; font-size: .85rem; white-space: nowrap;
}
@media(max-width:600px) {
  .sticky-cta-bar { flex-direction: column; gap: 8px; padding: 10px 16px; }
  .sticky-cta-bar p { font-size: .8rem; text-align: center; }
}
