/* BloomSource India — shared styles */

:root {
  --green-900: #0d3b2e;
  --green-700: #16594a;
  --green-600: #1c7a5e;
  --green-500: #229268;
  --gold-500: #c9a24b;
  --gold-600: #b58c33;
  --ink-900: #12201c;
  --ink-700: #3c4a45;
  --ink-500: #6b7c75;
  --paper-0: #ffffff;
  --paper-50: #f7f8f4;
  --paper-100: #eef1ea;
  --line: #dfe4dc;
  --shadow: 0 10px 30px rgba(13, 59, 46, 0.08);
  --radius: 14px;
  --maxw: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Segoe UI", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
  color: var(--ink-900);
  background: var(--paper-0);
  line-height: 1.6;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

ul { margin: 0; padding: 0; list-style: none; }

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

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-600);
  margin-bottom: 12px;
}

h1, h2, h3, h4 {
  font-family: "Georgia", "Times New Roman", serif;
  color: var(--green-900);
  line-height: 1.2;
  margin: 0 0 16px;
}

h1 { font-size: clamp(2rem, 4.5vw, 3.1rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); }
h3 { font-size: 1.25rem; }

p { margin: 0 0 16px; color: var(--ink-700); }

.section {
  padding: 88px 0;
}

.section-tight { padding: 56px 0; }

.section-alt {
  background: var(--paper-50);
}

.section-dark {
  background: linear-gradient(160deg, var(--green-900), var(--green-700));
  color: #eaf3ef;
}

.section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4 { color: #ffffff; }
.section-dark p { color: #cfe3da; }
.section-dark .eyebrow { color: #d8bb6a; }

.section-header {
  max-width: 720px;
  margin: 0 auto 48px;
  text-align: center;
}

.section-header p { margin: 0; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
}

.btn-primary {
  background: var(--gold-500);
  color: var(--green-900);
}
.btn-primary:hover { background: var(--gold-600); transform: translateY(-2px); }

.btn-outline {
  border-color: rgba(255,255,255,0.6);
  color: #ffffff;
}
.btn-outline:hover { background: rgba(255,255,255,0.12); transform: translateY(-2px); }

.btn-dark {
  border-color: var(--green-900);
  color: var(--green-900);
}
.btn-dark:hover { background: var(--green-900); color: #fff; transform: translateY(-2px); }

.btn-row { display: flex; flex-wrap: wrap; gap: 16px; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Georgia", serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--green-900);
}

.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--green-600), var(--green-900));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-500);
  font-size: 1.1rem;
  flex: none;
}

.brand small {
  display: block;
  font-family: system-ui, sans-serif;
  font-weight: 500;
  font-size: 0.66rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-500);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink-700);
  padding: 8px 0;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--green-700);
  border-bottom-color: var(--gold-500);
}

.nav-cta { display: flex; align-items: center; gap: 18px; }

.nav-cta .btn { padding: 10px 22px; font-size: 0.88rem; }
.nav-cta .btn-outline { border-color: var(--green-700); color: var(--green-700); }
.nav-cta .btn-outline:hover { background: var(--green-700); color: #fff; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--green-900);
  display: block;
}

/* Hero */
.hero {
  position: relative;
  padding: 96px 0 100px;
  background:
    radial-gradient(1100px 500px at 85% -10%, rgba(201,162,75,0.18), transparent 60%),
    linear-gradient(160deg, var(--green-900), var(--green-700) 60%, var(--green-600));
  color: #ffffff;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -160px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  border: 60px solid rgba(255,255,255,0.06);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero h1 { color: #ffffff; }
.hero p.lead { font-size: 1.15rem; color: #d9ebe3; max-width: 560px; }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 40px;
}

.hero-stat {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 12px;
  padding: 16px;
}

.hero-stat strong {
  display: block;
  font-size: 1.6rem;
  font-family: Georgia, serif;
  color: var(--gold-500);
}

.hero-stat span {
  font-size: 0.8rem;
  color: #cfe3da;
}

.hero-card {
  background: #ffffff;
  color: var(--ink-900);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.25);
}

.hero-card h3 { margin-bottom: 6px; }
.hero-card .muted { color: var(--ink-500); font-size: 0.85rem; margin-bottom: 20px; }

.hero-card-list li {
  display: flex;
  gap: 12px;
  padding: 10px 0;
  border-top: 1px solid var(--line);
  font-size: 0.92rem;
}
.hero-card-list li:first-child { border-top: none; }

.check {
  flex: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--green-600);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
}

/* Pillars / cards grid */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  height: 100%;
}

.card-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--paper-100);
  color: var(--green-700);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 20px;
}

.card ul.tick-list { margin-top: 16px; }
.tick-list li {
  display: flex;
  gap: 10px;
  padding: 6px 0;
  font-size: 0.93rem;
  color: var(--ink-700);
}
.tick-list li::before {
  content: "";
  flex: none;
  width: 8px;
  height: 8px;
  margin-top: 7px;
  border-radius: 50%;
  background: var(--gold-500);
}

.card .btn { margin-top: 20px; }

/* Process steps */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  counter-reset: step;
}

.step {
  position: relative;
  padding: 28px 20px 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  top: -18px;
  left: 20px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--green-900);
  color: var(--gold-500);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Georgia, serif;
}

/* Stats bar */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stats-bar strong {
  display: block;
  font-family: Georgia, serif;
  font-size: 2rem;
  color: var(--gold-500);
}
.stats-bar span { font-size: 0.85rem; color: var(--ink-500); }
.section-dark .stats-bar span { color: #cfe3da; }

/* Testimonial / quote */
.quote-block {
  background: var(--paper-100);
  border-left: 4px solid var(--gold-500);
  border-radius: 10px;
  padding: 28px 32px;
  font-family: Georgia, serif;
  font-size: 1.15rem;
  color: var(--green-900);
}

/* Timeline (about) */
.timeline {
  border-left: 3px solid var(--line);
  padding-left: 28px;
  display: grid;
  gap: 28px;
}
.timeline-item { position: relative; }
.timeline-item::before {
  content: "";
  position: absolute;
  left: -34px;
  top: 4px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold-500);
  border: 3px solid var(--paper-0);
  box-shadow: 0 0 0 2px var(--gold-500);
}

/* Table (services comparison) */
.table-wrap { overflow-x: auto; }
table.compare {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
table.compare th, table.compare td {
  padding: 16px 18px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  font-size: 0.93rem;
}
table.compare th { background: var(--green-900); color: #fff; font-family: Georgia, serif; }
table.compare tr:last-child td { border-bottom: none; }
table.compare td strong { color: var(--green-900); }

/* CTA band */
.cta-band {
  background: linear-gradient(135deg, var(--green-700), var(--green-900));
  color: #fff;
  border-radius: 20px;
  padding: 56px;
  text-align: center;
}
.cta-band h2 { color: #fff; }
.cta-band p { color: #d9ebe3; max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-band .btn-row { justify-content: center; }

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.info-list li {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.info-list li:last-child { border-bottom: none; }
.info-list .card-icon { width: 44px; height: 44px; font-size: 1.1rem; margin-bottom: 0; }
.info-list strong { display: block; color: var(--green-900); }
.info-list span { font-size: 0.92rem; color: var(--ink-500); }

form.contact-form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 18px;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink-700);
  margin-bottom: 6px;
}

input, select, textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--ink-900);
  background: var(--paper-50);
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--green-600);
  background: #fff;
}

textarea { resize: vertical; min-height: 110px; }

.form-note {
  font-size: 0.8rem;
  color: var(--ink-500);
}

#form-status {
  font-size: 0.9rem;
  font-weight: 600;
  min-height: 1.2em;
}
#form-status.ok { color: var(--green-700); }

/* Map placeholder */
.map-embed {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.map-embed iframe { width: 100%; height: 320px; border: 0; display: block; }

/* Footer */
.site-footer {
  background: var(--ink-900);
  color: #cbd6d1;
  padding: 64px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .brand { color: #fff; }
.footer-brand p { color: #9fb0aa; font-size: 0.9rem; margin-top: 14px; }
.site-footer h4 {
  color: #fff;
  font-family: system-ui, sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.site-footer ul li { margin-bottom: 10px; }
.site-footer a { color: #9fb0aa; font-size: 0.92rem; }
.site-footer a:hover { color: var(--gold-500); }
.footer-bottom {
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
  color: #7d8d87;
}

/* Page hero (inner pages) */
.page-hero {
  background: linear-gradient(160deg, var(--green-900), var(--green-700));
  color: #fff;
  padding: 72px 0 64px;
  text-align: center;
}
.page-hero h1 { color: #fff; }
.page-hero p { color: #d9ebe3; max-width: 620px; margin: 0 auto; }
.breadcrumb {
  font-size: 0.82rem;
  color: #b9d3c7;
  margin-bottom: 14px;
}
.breadcrumb a { color: #b9d3c7; text-decoration: underline; }

/* Legal / value note boxes */
.note-box {
  background: #fff7e6;
  border: 1px solid #ecd9a6;
  border-radius: 10px;
  padding: 20px 24px;
  font-size: 0.9rem;
  color: #6b5216;
}

/* Responsive */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .grid-3, .steps { grid-template-columns: repeat(2, 1fr); }
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .nav-links, .nav-cta .btn-dark-wrap { display: none; }
  .nav-toggle { display: flex; }
  .nav-links.open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 24px;
    gap: 14px;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
  }
  .grid-3, .grid-2, .steps, .stats-bar, .footer-grid, .form-row { grid-template-columns: 1fr; }
  .cta-band { padding: 40px 24px; }
  .section { padding: 64px 0; }
}
