/* ============================================================
   KRUSHITIRTH PUBLIC WEBSITE — website.css
   Scoped with ws- prefix so it never conflicts with CI admin
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;900&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --ws-soil:       #2C1A0E;
  --ws-leaf:       #276B3A;
  --ws-leaf-lt:    #3D9A55;
  --ws-leaf-pale:  #E8F5EC;
  --ws-wheat:      #E9C46A;
  --ws-sky:        #F4FAF6;
  --ws-white:      #FFFFFF;
  --ws-muted:      #6B7B74;
  --ws-border:     #C8E0CE;
  --ws-text:       #1E2D24;
}

/* ── RESET (scoped) ── */
.site-nav *, .site-nav *::before, .site-nav *::after,
.site-footer *, .site-footer *::before, .site-footer *::after,
[class^="ws-"] *, [class^="ws-"]*::before, [class^="ws-"]*::after
{ box-sizing: border-box; margin: 0; padding: 0; }

body { font-family: 'Inter', sans-serif; background: #fff; color: var(--ws-text); -webkit-font-smoothing: antialiased; }

/* ── NAV ── */
.site-nav {
  position: sticky; top: 0; z-index: 500;
  background: rgba(255,255,255,.97); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--ws-border);
  transition: box-shadow .2s;
}
.site-nav.scrolled { box-shadow: 0 2px 16px rgba(0,0,0,.07); }
.nav-inner {
  max-width: 1160px; margin: 0 auto;
  display: flex; align-items: center; gap: 8px;
  padding: 0 24px; height: 64px;
}
.nav-brand { display: flex; align-items: center; gap: 10px; text-decoration: none; margin-right: auto; }
.nav-logo { width: 36px; height: 36px; border-radius: 9px; }
.nav-brand-name { font-family: 'Playfair Display', serif; font-size: 1.3rem; color: var(--ws-leaf); font-weight: 700; }
.nav-links { display: flex; list-style: none; gap: 2px; align-items: center; }
.nav-links a { display: block; padding: 7px 13px; border-radius: 7px; text-decoration: none; color: var(--ws-text); font-size: .875rem; font-weight: 500; transition: background .15s, color .15s; }
.nav-links a:hover, .nav-links a.active { background: var(--ws-leaf-pale); color: var(--ws-leaf); }
.nav-links a.active { font-weight: 700; }
.nav-cta { background: var(--ws-leaf); color: #fff; padding: 8px 18px; border-radius: 8px; font-size: .85rem; font-weight: 600; text-decoration: none; white-space: nowrap; transition: background .15s; margin-left: 6px; }
.nav-cta:hover { background: #1E5228; }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-hamburger span { width: 22px; height: 2px; background: var(--ws-text); border-radius: 2px; }

/* ── FOOTER ── */
.site-footer { background: var(--ws-soil); color: rgba(255,255,255,.7); padding: 52px 24px 24px; }
.footer-inner { max-width: 1160px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 36px; }
.footer-brand-name { font-family: 'Playfair Display', serif; color: var(--ws-wheat); font-size: 1.2rem; margin-bottom: 10px; }
.footer-brand p { font-size: .83rem; line-height: 1.72; max-width: 220px; }
.footer-col h4 { color: #fff; font-size: .75rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; margin-bottom: 14px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 9px; }
.footer-col a { color: rgba(255,255,255,.6); text-decoration: none; font-size: .84rem; transition: color .15s; }
.footer-col a:hover { color: var(--ws-wheat); }
.footer-bottom { max-width: 1160px; margin: 30px auto 0; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.1); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; font-size: .78rem; color: rgba(255,255,255,.35); }

/* ── UTILITIES ── */
.ws-section { padding: 76px 24px; }
.ws-section-inner { max-width: 1160px; margin: 0 auto; }
.ws-sky { background: var(--ws-sky); }
.ws-eyebrow { font-size: .74rem; letter-spacing: .14em; text-transform: uppercase; color: var(--ws-leaf); font-weight: 700; margin-bottom: 10px; display: block; }
.ws-section-title { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem,3vw,2.6rem); color: var(--ws-soil); margin-bottom: 12px; }
.ws-section-sub { color: var(--ws-muted); font-size: 1rem; line-height: 1.72; max-width: 560px; margin-bottom: 0; }
.ws-btn-wheat { display: inline-block; background: var(--ws-wheat); color: var(--ws-soil); padding: 13px 28px; border-radius: 9px; font-weight: 700; font-size: .95rem; text-decoration: none; transition: filter .15s; }
.ws-btn-wheat:hover { filter: brightness(1.07); }
.ws-btn-outline { display: inline-block; border: 2px solid rgba(255,255,255,.5); color: #fff; padding: 11px 26px; border-radius: 9px; font-weight: 600; font-size: .95rem; text-decoration: none; transition: background .15s; }
.ws-btn-outline:hover { background: rgba(255,255,255,.1); }
.ws-breadcrumb { font-size: .78rem; color: var(--ws-muted); margin-bottom: 14px; display: block; }
.ws-breadcrumb a { color: var(--ws-leaf); text-decoration: none; }

/* ── HERO ── */
.ws-hero { background: linear-gradient(140deg,#14331E 0%,#1E5228 45%,#276B3A 78%,#3D9A55 100%); padding: 90px 24px 70px; min-height: 88vh; display: flex; align-items: center; }
.ws-hero-inner { max-width: 1160px; margin: 0 auto; display: flex; align-items: center; gap: 56px; flex-wrap: wrap; width: 100%; }
.ws-hero-text { flex: 1; min-width: 280px; }
.ws-eyebrow.light, .ws-hero .ws-eyebrow { color: rgba(255,255,255,.75); }
.ws-hero-title { font-family: 'Playfair Display', serif; font-size: clamp(2.4rem,5vw,4rem); color: #fff; line-height: 1.14; margin-bottom: 20px; letter-spacing: -.02em; }
.ws-accent { color: var(--ws-wheat); display: block; }
.ws-hero-desc { font-size: 1.05rem; color: rgba(255,255,255,.8); line-height: 1.75; margin-bottom: 34px; max-width: 480px; }
.ws-hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.ws-hero-visual { display: flex; flex-direction: column; align-items: center; gap: 16px; flex-shrink: 0; }
.ws-hero-icon { width: 156px; height: 156px; border-radius: 34px; box-shadow: 0 28px 56px rgba(0,0,0,.38); }
.ws-hero-badge { background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.22); border-radius: 12px; padding: 12px 18px; text-align: center; backdrop-filter: blur(6px); }
.ws-badge-num { font-family: 'Playfair Display', serif; font-size: 1.75rem; color: var(--ws-wheat); font-weight: 700; line-height: 1; }
.ws-badge-label { font-size: .7rem; color: rgba(255,255,255,.65); margin-top: 3px; }

/* ── STATS BAR ── */
.ws-stats-bar { background: var(--ws-soil); padding: 26px 24px; }
.ws-stats-inner { max-width: 1160px; margin: 0 auto; display: flex; justify-content: space-around; flex-wrap: wrap; gap: 16px; }
.ws-stat { text-align: center; }
.ws-stat-num { font-family: 'Playfair Display', serif; font-size: 1.85rem; color: var(--ws-wheat); font-weight: 700; }
.ws-stat-label { font-size: .74rem; color: rgba(255,255,255,.5); margin-top: 2px; letter-spacing: .05em; text-transform: uppercase; }

/* ── FEATURES GRID ── */
.ws-feat-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; margin-top: 48px; }
.ws-feat-card { background: #fff; border: 1px solid var(--ws-border); border-radius: 14px; padding: 26px 22px; transition: box-shadow .18s,transform .18s; }
.ws-feat-card:hover { box-shadow: 0 10px 28px rgba(39,107,58,.11); transform: translateY(-3px); }
.ws-feat-icon { font-size: 1.9rem; display: block; margin-bottom: 13px; }
.ws-feat-title { font-weight: 700; font-size: 1rem; color: var(--ws-soil); margin-bottom: 7px; }
.ws-feat-desc { font-size: .86rem; color: var(--ws-muted); line-height: 1.68; }
.ws-feat-link { display: inline-block; margin-top: 12px; font-size: .82rem; color: var(--ws-leaf); font-weight: 600; text-decoration: none; }
.ws-feat-link:hover { text-decoration: underline; }

/* ── CTA BAND ── */
.ws-cta-band { background: linear-gradient(120deg,var(--ws-leaf),#1E5228); padding: 68px 24px; text-align: center; }
.ws-cta-band h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.7rem,3vw,2.5rem); color: #fff; margin-bottom: 12px; }
.ws-cta-band p { color: rgba(255,255,255,.78); font-size: 1rem; margin-bottom: 28px; }

/* ── PAGE HERO ── */
.ws-page-hero { padding: 56px 24px 46px; border-bottom: 1px solid var(--ws-border); }
.ws-page-hero-inner { max-width: 1160px; margin: 0 auto; }
.ws-page-title { font-family: 'Playfair Display', serif; font-size: clamp(1.9rem,4vw,2.9rem); color: var(--ws-soil); line-height: 1.18; margin-bottom: 14px; }
.ws-page-sub { color: var(--ws-muted); font-size: 1rem; line-height: 1.72; max-width: 560px; }

/* ── FEATURES FULL ── */
.ws-feat-full-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; }
.ws-feat-full-card { background: #fff; border: 1px solid var(--ws-border); border-radius: 15px; padding: 28px 24px; transition: box-shadow .18s,transform .18s; }
.ws-feat-full-card:hover { box-shadow: 0 10px 28px rgba(39,107,58,.1); transform: translateY(-3px); }
.ws-feat-full-icon { width: 50px; height: 50px; background: var(--ws-leaf-pale); border-radius: 13px; display: flex; align-items: center; justify-content: center; font-size: 1.45rem; margin-bottom: 14px; }
.ws-feat-full-title { font-weight: 700; font-size: 1rem; color: var(--ws-soil); margin-bottom: 8px; }
.ws-feat-full-desc { font-size: .87rem; color: var(--ws-muted); line-height: 1.72; }
.ws-tags { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 14px; }
.ws-tag { background: var(--ws-leaf-pale); color: var(--ws-leaf); font-size: .72rem; font-weight: 600; padding: 3px 10px; border-radius: 20px; }
.ws-highlight-strip { background: linear-gradient(120deg,#1E5228,#276B3A); color: #fff; border-radius: 16px; padding: 34px 30px; margin-top: 44px; display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.ws-highlight-text h3 { font-family: 'Playfair Display', serif; font-size: 1.4rem; margin-bottom: 8px; }
.ws-highlight-text p { font-size: .9rem; color: rgba(255,255,255,.8); line-height: 1.65; }
.ws-highlight-text { flex: 1; min-width: 200px; }

/* ── DOWNLOAD ── */
.ws-download-hero { background: linear-gradient(140deg,#14331E,#1E5228,#276B3A); padding: 80px 24px; text-align: center; min-height: 420px; display: flex; align-items: center; justify-content: center; }
.ws-download-hero-inner { max-width: 680px; }
.ws-dh-title { font-family: 'Playfair Display', serif; font-size: clamp(2rem,5vw,3.2rem); color: #fff; margin: 14px 0; }
.ws-dh-desc { color: rgba(255,255,255,.78); font-size: 1rem; line-height: 1.72; margin-bottom: 34px; }
.ws-store-badges { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.ws-store-badge { display: inline-flex; align-items: center; gap: 12px; background: rgba(255,255,255,.12); border: 1.5px solid rgba(255,255,255,.3); color: #fff; padding: 13px 24px; border-radius: 12px; text-decoration: none; font-weight: 600; font-size: .92rem; transition: background .15s,transform .1s; }
.ws-store-badge:hover { background: rgba(255,255,255,.22); transform: translateY(-2px); }
.ws-store-sub { font-size: .65rem; opacity: .72; letter-spacing: .04em; display: block; margin-bottom: 2px; }
.ws-steps-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; margin-top: 42px; }
.ws-step-card { background: #fff; border: 1px solid var(--ws-border); border-radius: 14px; padding: 26px 20px; text-align: center; }
.ws-step-num { width: 42px; height: 42px; background: var(--ws-leaf); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'Playfair Display', serif; font-size: 1.15rem; font-weight: 700; margin: 0 auto 14px; }
.ws-step-title { font-weight: 700; font-size: .97rem; color: var(--ws-soil); margin-bottom: 7px; }
.ws-step-desc { font-size: .84rem; color: var(--ws-muted); line-height: 1.65; }
.ws-requirements { background: #fff; border: 1px solid var(--ws-border); border-radius: 13px; padding: 26px 28px; margin-top: 40px; display: flex; gap: 28px; flex-wrap: wrap; }
.ws-req-item { display: flex; align-items: flex-start; gap: 10px; font-size: .88rem; color: var(--ws-text); }
.ws-req-item span { font-size: 1.25rem; flex-shrink: 0; }

/* ── PRIVACY ── */
.ws-policy-wrap { max-width: 860px; margin: 0 auto; }
.ws-policy-badge { display: inline-block; background: var(--ws-leaf-pale); border: 1px solid var(--ws-border); border-radius: 7px; padding: 7px 14px; font-size: .78rem; color: var(--ws-leaf); font-weight: 600; margin-bottom: 32px; }
.ws-toc { background: var(--ws-sky); border: 1px solid var(--ws-border); border-radius: 12px; padding: 22px 26px; margin-bottom: 36px; }
.ws-toc h3 { font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--ws-muted); margin-bottom: 12px; }
.ws-toc ol { padding-left: 18px; }
.ws-toc li { margin-bottom: 6px; }
.ws-toc a { font-size: .88rem; color: var(--ws-leaf); text-decoration: none; }
.ws-toc a:hover { text-decoration: underline; }
.ws-policy-block { margin-bottom: 34px; padding-bottom: 34px; border-bottom: 1px solid var(--ws-border); }
.ws-policy-block:last-child { border-bottom: none; }
.ws-policy-heading { display: flex; align-items: center; gap: 10px; font-family: 'Playfair Display', serif; font-size: 1.2rem; color: var(--ws-soil); margin-bottom: 12px; }
.ws-num { background: var(--ws-leaf); color: #fff; width: 28px; height: 28px; border-radius: 7px; display: inline-flex; align-items: center; justify-content: center; font-family: 'Inter', sans-serif; font-size: .8rem; font-weight: 700; flex-shrink: 0; }
.ws-policy-body { font-size: .9rem; color: #444; line-height: 1.82; }
.ws-policy-body ul { padding-left: 20px; margin: 8px 0; }
.ws-policy-body li { margin-bottom: 7px; }
.ws-policy-body p { margin-bottom: 8px; }
.ws-policy-body a { color: var(--ws-leaf); }
.ws-policy-body code { background: var(--ws-leaf-pale); padding: 1px 6px; border-radius: 4px; font-size: .85em; }
.ws-contact-note { background: var(--ws-leaf-pale); border: 1.5px solid var(--ws-border); border-radius: 11px; padding: 18px 22px; display: flex; gap: 14px; }
.ws-cn-icon { font-size: 1.4rem; flex-shrink: 0; }
.ws-policy-custom { font-size: .9rem; color: #444; line-height: 1.82; }

/* ── CONTACT ── */
.ws-contact-layout { max-width: 1160px; margin: 0 auto; display: grid; grid-template-columns: 1fr 400px; gap: 48px; }
.ws-contact-info h2 { font-family: 'Playfair Display', serif; font-size: 1.45rem; color: var(--ws-soil); margin-bottom: 12px; }
.ws-contact-info > p { font-size: .9rem; color: var(--ws-muted); line-height: 1.72; margin-bottom: 24px; }
.ws-reason-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; margin-bottom: 28px; }
.ws-reason-card { background: #fff; border: 1px solid var(--ws-border); border-radius: 10px; padding: 12px 14px; font-size: .82rem; color: var(--ws-text); cursor: pointer; transition: background .15s,border-color .15s; display: flex; align-items: center; gap: 8px; }
.ws-reason-card:hover { background: var(--ws-leaf-pale); border-color: var(--ws-leaf); }
.ws-reason-card.selected { background: var(--ws-leaf-pale); border-color: var(--ws-leaf); font-weight: 600; color: var(--ws-leaf); }
.ws-info-cards { display: flex; flex-direction: column; gap: 12px; }
.ws-info-card { background: #fff; border: 1px solid var(--ws-border); border-radius: 11px; padding: 16px 18px; display: flex; align-items: flex-start; gap: 12px; }
.ws-ic-icon { font-size: 1.3rem; flex-shrink: 0; margin-top: 2px; }
.ws-ic-label { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--ws-muted); margin-bottom: 3px; }
.ws-ic-val { font-size: .9rem; font-weight: 600; color: var(--ws-soil); }
.ws-ic-sub { font-size: .76rem; color: var(--ws-muted); margin-top: 2px; }
.ws-form-box { background: #fff; border: 1px solid var(--ws-border); border-radius: 18px; padding: 32px 28px; box-shadow: 0 4px 24px rgba(0,0,0,.05); }
.ws-form-box h3 { font-family: 'Playfair Display', serif; font-size: 1.3rem; color: var(--ws-soil); margin-bottom: 4px; }
.ws-form-subtitle { font-size: .83rem; color: var(--ws-muted); margin-bottom: 22px; }
.ws-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.ws-form-group { display: flex; flex-direction: column; gap: 5px; margin-bottom: 16px; }
.ws-form-group label { font-size: .82rem; font-weight: 700; color: var(--ws-soil); }
.ws-form-group input, .ws-form-group select, .ws-form-group textarea { border: 1.5px solid var(--ws-border); border-radius: 8px; padding: 10px 13px; font-size: .9rem; font-family: 'Inter', sans-serif; color: var(--ws-text); background: #fff; outline: none; transition: border-color .18s,box-shadow .18s; width: 100%; }
.ws-form-group input:focus, .ws-form-group select:focus, .ws-form-group textarea:focus { border-color: var(--ws-leaf); box-shadow: 0 0 0 3px rgba(39,107,58,.1); }
.ws-form-group textarea { resize: vertical; }
.ws-deletion-notice { background: #FFF8E1; border: 1.5px solid #FFD54F; border-radius: 10px; padding: 13px 15px; font-size: .83rem; color: #6D4C00; line-height: 1.65; margin-bottom: 16px; }
.ws-form-submit { background: var(--ws-leaf); color: #fff; border: none; padding: 13px; border-radius: 9px; font-size: .95rem; font-weight: 700; cursor: pointer; width: 100%; font-family: 'Inter', sans-serif; transition: background .15s,transform .1s; }
.ws-form-submit:hover { background: #1E5228; transform: translateY(-1px); }
.ws-form-success { background: #E8F5E9; border: 1.5px solid #A5D6A7; border-radius: 10px; padding: 18px 20px; color: #2E7D32; font-size: .92rem; font-weight: 600; text-align: center; margin-bottom: 20px; line-height: 1.6; }
.ws-form-error { background: #FFEBEE; border: 1.5px solid #FFCDD2; border-radius: 10px; padding: 14px 18px; color: #C62828; font-size: .88rem; margin-bottom: 16px; }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .ws-feat-grid { grid-template-columns: 1fr 1fr; }
  .ws-feat-full-grid { grid-template-columns: 1fr; }
  .ws-contact-layout { grid-template-columns: 1fr; padding: 0 20px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .ws-steps-grid { grid-template-columns: 1fr; }
}
@media (max-width: 700px) {
  .ws-hero { padding: 60px 20px 48px; min-height: auto; }
  .ws-hero-inner { flex-direction: column; text-align: center; }
  .ws-hero-btns { justify-content: center; }
  .ws-hero-visual { flex-direction: row; }
  .ws-feat-grid { grid-template-columns: 1fr; }
  .ws-form-row { grid-template-columns: 1fr; }
  .ws-reason-cards { grid-template-columns: 1fr; }
  .nav-links { display: none; flex-direction: column; position: fixed; top: 64px; left: 0; right: 0; background: #fff; border-bottom: 1px solid var(--ws-border); padding: 10px 16px; gap: 4px; box-shadow: 0 8px 24px rgba(0,0,0,.1); z-index: 499; }
  .nav-links.open { display: flex; }
  .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .ws-page-hero { padding: 36px 20px 30px; }
  .ws-section { padding: 52px 20px; }
  footer, .site-footer { padding: 36px 20px 20px; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .ws-highlight-strip { flex-direction: column; }
}
