/* ═══════════════════════════════════════════════════════════════════
   Golden Green Nursery — Shared Stylesheet
   ═══════════════════════════════════════════════════════════════════ */

/* ─── Reset ─────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  color: #2c2c2c;
  background: #fff;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ─── Design Tokens ─────────────────────────────────────────────── */
:root {
  --green-dark:  #1e5631;
  --green-mid:   #2e7d45;
  --green-light: #4caf72;
  --amber:       #d97706;
  --cream:       #f8f5ef;
  --text-muted:  #6b7280;
  --radius:      12px;
  --shadow-sm:   0 2px 8px rgba(0,0,0,.06);
  --shadow-md:   0 4px 20px rgba(0,0,0,.10);
  --shadow-lg:   0 8px 32px rgba(0,0,0,.14);
}

/* ─── Layout ────────────────────────────────────────────────────── */
.container  { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.section    { padding: 80px 0; }
.section-sm { padding: 56px 0; }
.section-bg { background: var(--cream); }

/* ─── Typography ────────────────────────────────────────────────── */
h1, h2, h3 { font-family: 'Playfair Display', Georgia, serif; line-height: 1.25; }
.section-header { text-align: center; margin-bottom: 52px; }
.section-header .badge { margin-bottom: 12px; }
.section-header h2 { font-size: clamp(26px, 4vw, 42px); margin-bottom: 12px; }
.section-header p  { color: var(--text-muted); max-width: 540px; margin: 0 auto; font-size: 16px; }

/* ─── Badges ────────────────────────────────────────────────────── */
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: #e8f5e9; color: var(--green-dark);
  font-size: 12px; font-weight: 600; letter-spacing: .5px; text-transform: uppercase;
  padding: 6px 14px; border-radius: 100px;
}
.badge-amber  { background: #fff3e0; color: #b45309; }
.badge-red    { background: #fef2f2; color: #b91c1c; }

/* ─── Buttons ───────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 100px;
  font-size: 15px; font-weight: 600; cursor: pointer;
  transition: transform .15s, box-shadow .15s;
  border: none; font-family: 'Inter', sans-serif;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-primary   { background: var(--green-dark); color: #fff; }
.btn-outline   { background: transparent; color: var(--green-dark); border: 2px solid var(--green-dark); }
.btn-whatsapp  { background: #25D366; color: #fff; }
.btn-call      { background: var(--amber); color: #fff; }
.btn-sm        { padding: 10px 20px; font-size: 13px; }

/* ─── Header / Nav ──────────────────────────────────────────────── */
header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #e5e7eb;
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.logo {
  display: flex; align-items: center; gap: 10px;
}
.logo-leaf {
  width: 36px; height: 36px;
  background: var(--green-dark);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.logo-leaf::after {
  content: '🌿';
  font-size: 18px;
  transform: rotate(45deg);
  display: block;
}
.logo-text span:first-child {
  display: block; font-family: 'Playfair Display', serif;
  font-size: 18px; font-weight: 700; color: var(--green-dark); line-height: 1;
}
.logo-text span:last-child {
  font-size: 11px; color: var(--text-muted); letter-spacing: .3px;
}
.nav-links {
  display: flex; align-items: center; gap: 24px; list-style: none;
}
.nav-links a {
  font-size: 14px; font-weight: 500; color: #374151;
  transition: color .15s; padding: 4px 0;
  border-bottom: 2px solid transparent;
}
.nav-links a:hover, .nav-links a.active { color: var(--green-dark); border-bottom-color: var(--green-dark); }
.nav-cta { display: flex; gap: 10px; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; }
.hamburger span { width: 24px; height: 2px; background: #374151; border-radius: 2px; display: block; }

/* Mobile nav */
#mobile-nav {
  display: none; background: #fff;
  border-bottom: 1px solid #e5e7eb; padding: 16px 24px;
}
#mobile-nav a {
  display: block; padding: 11px 0; font-size: 15px;
  border-bottom: 1px solid #f3f4f6; color: #374151;
}
#mobile-nav a:last-of-type { border-bottom: none; }
#mobile-nav .mobile-cta {
  display: flex; gap: 10px; margin-top: 16px;
}
#mobile-nav .mobile-cta .btn { flex: 1; justify-content: center; padding: 12px; }

/* ─── Breadcrumb ────────────────────────────────────────────────── */
.breadcrumb {
  background: var(--cream); border-bottom: 1px solid #e5e7eb;
  padding: 10px 0;
}
.breadcrumb ol {
  list-style: none; display: flex; align-items: center; gap: 6px; flex-wrap: wrap;
}
.breadcrumb li { font-size: 13px; color: var(--text-muted); }
.breadcrumb li a { color: var(--green-dark); }
.breadcrumb li a:hover { text-decoration: underline; }
.breadcrumb li + li::before { content: '›'; margin-right: 6px; }

/* ─── Page Hero (sub-pages) ─────────────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, #0d3320 0%, var(--green-dark) 60%, #2e7d45 100%);
  color: #fff; padding: 60px 0 52px; text-align: center;
}
.page-hero .badge { background: rgba(255,255,255,.15); color: #fff; margin-bottom: 16px; }
.page-hero h1 { font-size: clamp(30px, 5vw, 52px); color: #fff; margin-bottom: 14px; }
.page-hero h1 em { font-style: normal; color: #a5d6a7; }
.page-hero p { font-size: 17px; color: rgba(255,255,255,.8); max-width: 560px; margin: 0 auto 24px; }
.page-hero-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; }

/* ─── Trust bar ─────────────────────────────────────────────────── */
.trust-bar {
  background: var(--cream); padding: 22px 0;
  border-bottom: 1px solid #e5e7eb;
}
.trust-items {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 36px;
}
.trust-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 500; color: var(--green-dark);
}
.trust-item span:first-child { font-size: 20px; }

/* ─── Why Us grid ───────────────────────────────────────────────── */
.why-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}
.why-card {
  display: flex; gap: 16px; align-items: flex-start;
  background: var(--cream); border-radius: var(--radius); padding: 22px;
}
.why-icon {
  width: 46px; height: 46px; border-radius: 12px;
  background: var(--green-dark); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; flex-shrink: 0;
}
.why-card h3 { font-family: 'Inter', sans-serif; font-size: 15px; font-weight: 600; margin-bottom: 4px; }
.why-card p  { font-size: 13px; color: var(--text-muted); }

/* ─── Review cards ──────────────────────────────────────────────── */
.reviews-bg { background: var(--green-dark); color: #fff; }
.reviews-header { text-align: center; margin-bottom: 44px; }
.reviews-header .badge { background: rgba(255,255,255,.15); color: #fff; margin-bottom: 12px; }
.reviews-header h2 { color: #fff; font-size: clamp(26px, 4vw, 40px); }
.reviews-header p  { color: rgba(255,255,255,.65); max-width: 440px; margin: 10px auto 0; }
.reviews-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 20px;
}
.review-card {
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius); padding: 22px;
}
.review-stars { color: #fbbf24; font-size: 16px; margin-bottom: 10px; }
.review-text { font-size: 14px; color: rgba(255,255,255,.85); margin-bottom: 16px; line-height: 1.65; }
.review-author { display: flex; align-items: center; gap: 10px; }
.review-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.2);
  display: flex; align-items: center; justify-content: center; font-size: 15px;
}
.review-name { font-size: 13px; font-weight: 600; color: #a5d6a7; }
.review-date { font-size: 11px; color: rgba(255,255,255,.45); }
.google-badge {
  text-align: center; margin-top: 36px;
  display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap;
}
.google-badge a {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2);
  color: #fff; padding: 10px 20px; border-radius: 100px; font-size: 13px; font-weight: 500;
  transition: background .2s;
}
.google-badge a:hover { background: rgba(255,255,255,.2); }

/* ─── Contact items ─────────────────────────────────────────────── */
.contact-item {
  display: flex; gap: 16px; align-items: flex-start;
}
.contact-item-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: #e8f5e9; color: var(--green-dark);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; flex-shrink: 0;
}
.contact-item-text strong { display: block; font-size: 13px; color: #374151; margin-bottom: 2px; text-transform: uppercase; letter-spacing: .4px; }
.contact-item-text span, .contact-item-text a { font-size: 15px; font-weight: 500; color: var(--green-dark); }
.contact-item-text a:hover { text-decoration: underline; }
.contact-item-text .muted { color: var(--text-muted); font-size: 13px; font-weight: 400; }

/* ─── CTA banner ────────────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
  color: #fff; padding: 64px 0; text-align: center;
}
.cta-banner h2 { font-size: clamp(24px, 4vw, 38px); color: #fff; margin-bottom: 12px; }
.cta-banner p  { color: rgba(255,255,255,.8); font-size: 16px; max-width: 480px; margin: 0 auto 28px; }
.cta-banner-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; }
.cta-banner .btn-outline { border-color: rgba(255,255,255,.6); color: #fff; }
.cta-banner .btn-outline:hover { border-color: #fff; }

/* ─── Stats row ─────────────────────────────────────────────────── */
.stats-row {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 40px;
}
.stat-item { text-align: center; }
.stat-item strong { display: block; font-size: 36px; font-weight: 700; color: var(--green-dark); font-family: 'Playfair Display', serif; }
.stat-item span   { font-size: 14px; color: var(--text-muted); }

/* ─── Blog cards ────────────────────────────────────────────────── */
.blog-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
}
.blog-card {
  border: 1px solid #e5e7eb; border-radius: var(--radius);
  overflow: hidden; transition: transform .2s, box-shadow .2s;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.blog-card-img {
  height: 180px; display: flex; align-items: center; justify-content: center;
  font-size: 72px; background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
}
.blog-card-body { padding: 20px; }
.blog-card-meta {
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
  font-size: 12px; color: var(--text-muted); margin-bottom: 10px;
}
.blog-card-cat {
  background: #e8f5e9; color: var(--green-dark);
  padding: 2px 10px; border-radius: 100px; font-size: 11px; font-weight: 600;
}
.blog-card h3 {
  font-family: 'Inter', sans-serif; font-size: 16px; font-weight: 600;
  line-height: 1.4; margin-bottom: 8px;
  color: #1f2937;
}
.blog-card h3 a:hover { color: var(--green-dark); }
.blog-card p { font-size: 13px; color: var(--text-muted); line-height: 1.6; margin-bottom: 14px; }
.blog-card-link {
  font-size: 13px; font-weight: 600; color: var(--green-dark);
  display: inline-flex; align-items: center; gap: 4px;
}
.blog-card-link:hover { text-decoration: underline; }

/* ─── Article (blog post) ───────────────────────────────────────── */
.article-layout {
  display: grid; grid-template-columns: 1fr 300px; gap: 48px; align-items: start;
}
.article-body { min-width: 0; }
.article-header { margin-bottom: 32px; }
.article-header h1 { font-size: clamp(26px, 4vw, 42px); margin-bottom: 12px; }
.article-meta {
  display: flex; align-items: center; flex-wrap: wrap; gap: 16px;
  font-size: 13px; color: var(--text-muted); margin-bottom: 20px;
}
.article-meta .author { display: flex; align-items: center; gap: 6px; font-weight: 500; color: #374151; }
.article-content h2 { font-size: 24px; margin: 36px 0 14px; color: var(--green-dark); }
.article-content h3 { font-size: 18px; font-family: 'Inter'; font-weight: 600; margin: 24px 0 10px; }
.article-content p  { font-size: 16px; color: #374151; margin-bottom: 16px; line-height: 1.75; }
.article-content ul, .article-content ol { padding-left: 24px; margin-bottom: 16px; }
.article-content li { font-size: 15px; color: #374151; margin-bottom: 6px; line-height: 1.7; }
.article-content blockquote {
  border-left: 4px solid var(--green-light); padding: 12px 20px;
  background: var(--cream); border-radius: 0 8px 8px 0; margin: 24px 0;
  font-style: italic; color: var(--text-muted);
}
.article-content .highlight-box {
  background: #e8f5e9; border-radius: var(--radius); padding: 20px 24px; margin: 24px 0;
  border-left: 4px solid var(--green-dark);
}
.article-content .highlight-box strong { color: var(--green-dark); }
.article-sidebar { position: sticky; top: 84px; }
.sidebar-card {
  background: var(--cream); border-radius: var(--radius); padding: 22px; margin-bottom: 20px;
  border: 1px solid #e5e7eb;
}
.sidebar-card h4 { font-family: 'Inter'; font-size: 14px; font-weight: 700; margin-bottom: 14px; text-transform: uppercase; letter-spacing: .5px; color: var(--green-dark); }
.sidebar-card .btn { width: 100%; justify-content: center; margin-top: 8px; }

/* ─── Plant cards ───────────────────────────────────────────────── */
.plant-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
}
.plant-card {
  background: #fff; border-radius: var(--radius); border: 1px solid #e5e7eb;
  overflow: hidden; transition: transform .2s, box-shadow .2s;
}
.plant-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.plant-card-img {
  height: 140px; display: flex; align-items: center; justify-content: center;
  font-size: 64px; background: linear-gradient(135deg, #e8f5e9, #d0f0c0);
}
.plant-card-body { padding: 16px; }
.plant-card-body h3 { font-family: 'Inter'; font-size: 15px; font-weight: 700; margin-bottom: 2px; }
.plant-card-body .hindi { font-size: 13px; color: var(--text-muted); margin-bottom: 10px; }
.plant-meta { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 10px; }
.plant-tag {
  font-size: 11px; padding: 3px 10px; border-radius: 100px; font-weight: 500;
}
.plant-tag-easy    { background: #dcfce7; color: #166534; }
.plant-tag-medium  { background: #fef9c3; color: #713f12; }
.plant-tag-hard    { background: #fee2e2; color: #991b1b; }
.plant-tag-sun     { background: #fff7ed; color: #9a3412; }
.plant-tag-shade   { background: #f0fdf4; color: #14532d; }
.plant-tag-water   { background: #eff6ff; color: #1e40af; }
.plant-price {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 10px; padding-top: 10px; border-top: 1px solid #f3f4f6;
}
.plant-price span { font-size: 14px; font-weight: 600; color: var(--green-dark); }
.plant-price a {
  font-size: 12px; font-weight: 600; background: var(--green-dark); color: #fff;
  padding: 5px 12px; border-radius: 100px; transition: background .15s;
}
.plant-price a:hover { background: var(--green-mid); }

/* ─── Filter tabs ───────────────────────────────────────────────── */
.filter-tabs {
  display: flex; flex-wrap: wrap; gap: 8px; justify-content: center;
  margin-bottom: 36px;
}
.filter-tab {
  padding: 9px 20px; border-radius: 100px; font-size: 14px; font-weight: 500;
  cursor: pointer; border: 2px solid #e5e7eb; background: #fff; color: #374151;
  transition: all .15s; font-family: 'Inter', sans-serif;
}
.filter-tab:hover   { border-color: var(--green-dark); color: var(--green-dark); }
.filter-tab.active  { background: var(--green-dark); border-color: var(--green-dark); color: #fff; }

/* ─── Process steps ─────────────────────────────────────────────── */
.steps-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 24px;
}
.step-card { text-align: center; padding: 28px 20px; }
.step-num {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--green-dark); color: #fff;
  font-size: 22px; font-weight: 700; font-family: 'Playfair Display', serif;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 16px;
}
.step-card h3 { font-family: 'Inter'; font-size: 16px; font-weight: 600; margin-bottom: 8px; }
.step-card p  { font-size: 14px; color: var(--text-muted); }

/* ─── FAQ ───────────────────────────────────────────────────────── */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  border: 1px solid #e5e7eb; border-radius: var(--radius); margin-bottom: 10px;
  overflow: hidden;
}
.faq-q {
  padding: 18px 20px; font-size: 15px; font-weight: 600;
  cursor: pointer; display: flex; justify-content: space-between; align-items: center;
  background: #fff; list-style: none; user-select: none;
}
.faq-q::after { content: '+'; font-size: 20px; font-weight: 400; color: var(--green-dark); }
.faq-item.open .faq-q::after { content: '−'; }
.faq-a {
  display: none; padding: 0 20px 18px; font-size: 14px; color: var(--text-muted); line-height: 1.7;
}
.faq-item.open .faq-a { display: block; }

/* ─── Timeline ──────────────────────────────────────────────────── */
.timeline { max-width: 640px; margin: 0 auto; position: relative; }
.timeline::before {
  content: ''; position: absolute; left: 20px; top: 0; bottom: 0;
  width: 2px; background: #e5e7eb;
}
.timeline-item { display: flex; gap: 24px; margin-bottom: 32px; position: relative; }
.timeline-dot {
  width: 42px; height: 42px; border-radius: 50%; background: var(--green-dark); color: #fff;
  display: flex; align-items: center; justify-content: center; font-size: 18px;
  flex-shrink: 0; z-index: 1;
}
.timeline-body { padding-top: 8px; }
.timeline-year { font-size: 12px; font-weight: 700; color: var(--green-mid); text-transform: uppercase; letter-spacing: .5px; }
.timeline-body h3 { font-family: 'Inter'; font-size: 16px; font-weight: 600; margin-bottom: 4px; }
.timeline-body p  { font-size: 14px; color: var(--text-muted); }

/* ─── Footer ────────────────────────────────────────────────────── */
footer {
  background: #111; color: rgba(255,255,255,.7);
  padding: 52px 0 24px;
}
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px; margin-bottom: 40px;
}
.footer-brand .logo-text span:first-child { color: #fff; font-size: 20px; }
.footer-brand .logo-text span:last-child  { color: rgba(255,255,255,.45); }
.footer-brand p { font-size: 14px; margin-top: 12px; color: rgba(255,255,255,.5); max-width: 260px; line-height: 1.7; }
.footer-col h4 {
  font-family: 'Inter'; font-size: 12px; font-weight: 700; color: #fff;
  letter-spacing: .7px; text-transform: uppercase; margin-bottom: 16px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-col li a, .footer-col li span { font-size: 14px; color: rgba(255,255,255,.5); }
.footer-col li a:hover { color: #a5d6a7; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1); padding-top: 20px;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px;
}
.footer-bottom p { font-size: 13px; }
.footer-bottom .heart { color: #ef4444; }

/* ─── Floating WhatsApp ─────────────────────────────────────────── */
.float-wa {
  position: fixed; bottom: 28px; right: 28px; z-index: 200;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; box-shadow: 0 4px 20px rgba(37,211,102,.4);
  transition: transform .2s, box-shadow .2s; text-decoration: none;
}
.float-wa:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,.5); }
.float-wa-tooltip {
  position: fixed; bottom: 94px; right: 28px; z-index: 200;
  background: #111; color: #fff;
  font-size: 12px; font-weight: 500; padding: 6px 12px; border-radius: 8px;
  white-space: nowrap; pointer-events: none; opacity: 0; transition: opacity .2s;
}
.float-wa:hover + .float-wa-tooltip { opacity: 1; }

/* ─── Responsive ────────────────────────────────────────────────── */
@media (max-width: 1000px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
  .article-layout { grid-template-columns: 1fr; }
  .article-sidebar { position: static; }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .section    { padding: 56px 0; }
  .footer-top { grid-template-columns: 1fr; }
  .trust-items { gap: 18px; }
  .page-hero  { padding: 48px 0 40px; }
}
