/* ============================================
   india.bstrat.io — Global Stylesheet
   Brand: Saffron #E8651A | Charcoal #1A1A2E | Warm White #FBF8F3
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;900&family=DM+Sans:wght@300;400;500;600&display=swap');

:root {
  --saffron: #E8651A;
  --saffron-dark: #C4521A;
  --saffron-light: #FDF0E8;
  --charcoal: #1A1A2E;
  --charcoal-mid: #2D2D44;
  --warm-white: #FBF8F3;
  --warm-grey: #F0EDE8;
  --text-dark: #1A1A2E;
  --text-mid: #4A4A6A;
  --text-light: #8A8AAA;
  --border: #E5E2DC;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --max-width: 1140px;
  --radius: 8px;
  --shadow: 0 4px 24px rgba(26,26,46,0.10);
  --shadow-lg: 0 12px 48px rgba(26,26,46,0.16);
}

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

html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--warm-white);
  color: var(--text-dark);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* ---- TYPOGRAPHY ---- */
h1, h2, h3 { font-family: var(--font-display); line-height: 1.2; }
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 600; }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); font-weight: 600; }
p { font-size: 1.05rem; color: var(--text-mid); }
a { color: var(--saffron); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ---- LAYOUT ---- */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section-alt { background: var(--warm-grey); }
.section-dark { background: var(--charcoal); color: var(--warm-white); }
.section-dark p { color: rgba(251,248,243,0.75); }
.section-dark h2 { color: var(--warm-white); }

/* ---- NAVBAR ---- */
.navbar {
  background: var(--charcoal);
  position: sticky; top: 0; z-index: 1000;
  border-bottom: 3px solid var(--saffron);
}
.navbar-inner {
  max-width: var(--max-width);
  margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center;
  justify-content: space-between;
  height: 68px;
}
.navbar-logo {
  font-family: var(--font-display);
  font-size: 1.4rem; font-weight: 700;
  color: var(--warm-white);
  letter-spacing: -0.5px;
}
.navbar-logo span { color: var(--saffron); }
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a {
  color: rgba(251,248,243,0.85);
  font-size: 0.9rem; font-weight: 500;
  letter-spacing: 0.3px;
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--saffron); text-decoration: none; }
.nav-cta {
  background: var(--saffron);
  color: var(--warm-white) !important;
  padding: 8px 20px; border-radius: 4px;
  font-weight: 600 !important;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--saffron-dark) !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { width: 24px; height: 2px; background: var(--warm-white); border-radius: 2px; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 4px;
  font-family: var(--font-body);
  font-weight: 600; font-size: 1rem;
  cursor: pointer; border: none;
  transition: all 0.2s;
  text-decoration: none !important;
}
.btn-primary {
  background: var(--saffron);
  color: var(--warm-white);
}
.btn-primary:hover { background: var(--saffron-dark); transform: translateY(-1px); }
.btn-outline {
  border: 2px solid var(--saffron);
  color: var(--saffron);
  background: transparent;
}
.btn-outline:hover { background: var(--saffron); color: var(--warm-white); }
.btn-white {
  background: var(--warm-white);
  color: var(--charcoal);
}
.btn-white:hover { background: var(--warm-grey); }

/* ---- CARDS ---- */
.card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 36px;
  border-top: 3px solid var(--saffron);
}

/* ---- TESTIMONIALS ---- */
.testimonial {
  background: var(--charcoal);
  border-radius: var(--radius);
  padding: 36px;
  border-left: 4px solid var(--saffron);
}
.testimonial blockquote {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--warm-white);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 20px;
}
.testimonial cite {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--saffron);
  font-style: normal;
}
.testimonial cite span {
  display: block;
  color: rgba(251,248,243,0.65);
  font-weight: 400;
  margin-top: 2px;
}

/* ---- GRID ---- */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* ---- SECTION LABELS ---- */
.label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--saffron);
  margin-bottom: 12px;
}

/* ---- DIVIDER ---- */
.divider {
  width: 48px; height: 3px;
  background: var(--saffron);
  margin: 16px 0 28px;
}

/* ---- WHATSAPP FLOAT ---- */
.whatsapp-float {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 9999;
  background: #25D366;
  width: 58px; height: 58px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform 0.2s;
}
.whatsapp-float:hover { transform: scale(1.1); }
.whatsapp-float svg { width: 30px; height: 30px; fill: #fff; }

/* ---- BADGE ROW ---- */
.badge-row {
  display: flex; flex-wrap: wrap; gap: 12px;
  margin-top: 24px;
}
.badge {
  background: var(--saffron-light);
  border: 1px solid rgba(232,101,26,0.2);
  color: var(--saffron-dark);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 600;
}

/* ---- PRICING CARD ---- */
.pricing-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 40px 36px;
  border-top: 4px solid var(--saffron);
  text-align: center;
}
.pricing-card .price {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--charcoal);
  margin: 16px 0 4px;
}
.pricing-card .price-note {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 24px;
}
.pricing-card ul {
  list-style: none;
  text-align: left;
  margin-bottom: 32px;
}
.pricing-card ul li {
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
  color: var(--text-mid);
  display: flex; gap: 10px; align-items: flex-start;
}
.pricing-card ul li::before {
  content: "→";
  color: var(--saffron);
  font-weight: 700;
  flex-shrink: 0;
}

/* ---- STAT ROW ---- */
.stat-row { display: flex; flex-wrap: wrap; gap: 40px; }
.stat { text-align: center; }
.stat .number {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--saffron);
  line-height: 1;
}
.stat .label-text {
  font-size: 0.85rem;
  color: var(--text-mid);
  margin-top: 6px;
}

/* ---- BLOG GRID ---- */
.blog-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.blog-thumb {
  height: 180px;
  background: var(--charcoal);
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
}
.blog-thumb .thumb-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--warm-white);
  text-align: center;
  line-height: 1.4;
}
.blog-thumb-accent { border-top: 4px solid var(--saffron); }
.blog-body { padding: 24px; }
.blog-body h3 { font-size: 1.05rem; margin-bottom: 8px; }
.blog-body p { font-size: 0.9rem; color: var(--text-light); }
.blog-meta { font-size: 0.8rem; color: var(--text-light); margin-bottom: 8px; }
.blog-category {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--saffron);
  margin-bottom: 8px;
}

/* ---- FOOTER ---- */
footer {
  background: var(--charcoal);
  color: rgba(251,248,243,0.7);
  padding: 48px 0 28px;
  border-top: 3px solid var(--saffron);
}
.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto; padding: 0 24px;
}
.footer-top {
  display: flex; justify-content: space-between;
  align-items: flex-start; gap: 40px;
  margin-bottom: 40px;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 1.3rem; font-weight: 700;
  color: var(--warm-white);
}
.footer-logo span { color: var(--saffron); }
.footer-tagline { font-size: 0.85rem; margin-top: 6px; color: rgba(251,248,243,0.55); }
.footer-links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-links a { color: rgba(251,248,243,0.7); font-size: 0.9rem; }
.footer-links a:hover { color: var(--saffron); text-decoration: none; }
.footer-contact a { color: var(--saffron); font-size: 0.9rem; }
.footer-bottom {
  border-top: 1px solid rgba(251,248,243,0.1);
  padding-top: 20px;
  font-size: 0.82rem;
  color: rgba(251,248,243,0.4);
  display: flex; justify-content: space-between;
  flex-wrap: wrap; gap: 8px;
}

/* ---- MOBILE ---- */
@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; gap: 16px; }
  .nav-links.open {
    display: flex;
    position: absolute; top: 68px; left: 0; right: 0;
    background: var(--charcoal);
    padding: 24px;
    border-bottom: 2px solid var(--saffron);
  }
  .hamburger { display: flex; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .footer-top { flex-direction: column; }
  .footer-bottom { flex-direction: column; }
  .stat-row { justify-content: center; }
  .section { padding: 56px 0; }
}

/* ===== MOBILE OPTIMISATION ===== */
@media (max-width: 768px) {
  .hero, .page-hero { grid-template-columns: 1fr !important; }
  .hero-image, .page-hero > div:last-child { height: 260px !important; }
  .hero-content, .about-hero-content { padding: 4rem 5% 2.5rem !important; }
  .hero h1 { font-size: 1.9rem !important; }
  .hero-stats { gap: 1.5rem !important; flex-wrap: wrap; }
  .stat-num { font-size: 1.4rem !important; }
  .problem-grid, .story-grid, .about-teaser { grid-template-columns: 1fr !important; gap: 2rem !important; }
  .inertia-grid, .who-grid, .offers-grid, .testi-grid { grid-template-columns: 1fr !important; }
  .biz-grid, .edu-grid { grid-template-columns: 1fr !important; }
  section { padding: 3.5rem 5% !important; }
  .story { padding: 3.5rem 5% !important; }
  .businesses, .education, .about-teaser { padding: 3.5rem 5% !important; }
  .story-sticky { position: static !important; }
  .about-teaser img { height: 240px !important; }
  .cred-bar { flex-direction: column; gap: 0.8rem; padding: 1.5rem 5%; text-align: center; }
  .cred-sep { display: none !important; }
  nav { padding: 0 4%; }
  .nav-links { display: none; }
  .nav-links.open { display: flex; flex-direction: column; position: fixed; top: 70px; left: 0; right: 0; background: var(--warm-white); border-bottom: 1px solid var(--border); padding: 1.5rem 5%; gap: 1rem; z-index: 99; box-shadow: 0 8px 24px rgba(0,0,0,0.1); }
  .hamburger { display: flex !important; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 1.2rem; }
  .footer-links { gap: 1rem; }
  .hero-image-tag { left: 1rem; right: 1rem; max-width: none; }
  .offers-grid .offer-card { margin-bottom: 0; }
  .btn-primary, .btn-white { padding: 0.9rem 1.4rem; font-size: 0.9rem; }
  .section-title { font-size: 1.6rem !important; }
  h1 { font-size: 1.8rem !important; }
  .cta-section { padding: 3.5rem 5%; }
  .blog-grid { grid-template-columns: 1fr !important; }
  .contact-grid { grid-template-columns: 1fr !important; }
}
@media (max-width: 480px) {
  .hero h1 { font-size: 1.65rem !important; }
  .hero-stats { gap: 1.2rem; }
  .stat-num { font-size: 1.3rem !important; }
  .wa-float { bottom: 1.2rem; right: 1.2rem; width: 50px; height: 50px; }
  .wa-float svg { width: 24px; height: 24px; }
  .hero-image-tag { display: none; }
  .nav-logo { font-size: 1.2rem; }
}
