/* ════════════════════════════════════════
   SUCHITRAA PUBLICATION — styles.css
   ════════════════════════════════════════ */

/* ── Variables ── */
:root {
  /* Brand core — matched to SP circular logo */
  --primary:    #1E7A4E;   /* emerald green — navbars, headings, CTAs */
  --primary-dk: #0D4A2E;   /* deep green — hover states */
  --primary-md: #2E9E6A;   /* mid green — secondary elements */
  --primary-lt: #E8F5EE;   /* pale green — tints */

  /* Accent — from logo gold-bronze ring */
  --gold:       #A89040;   /* gold-bronze — tags, links, CTAs */
  --gold-lt:    #C8A84C;   /* light gold — hover */
  --lime:       #B8CC00;   /* yellow-lime — hero keyword highlight */

  /* Neutrals */
  --cream:      #F4FAF7;   /* green-tinted cream — alternate bg */
  --dark:       #071A0F;   /* deep dark green — footer */
  --text:       #1A2E22;   /* dark green-tinted body text */
  --muted:      #4A6558;   /* muted green — secondary text */
  --border:     rgba(30,122,78,0.14);

  /* Legacy aliases — keeps all existing CSS working */
  --navy:       #1E7A4E;
  --cobalt:     #2E9E6A;
  --sky:        #5BC28A;
  --amber:      #B8CC00;
  --amber-lt:   #C8A84C;

  /* Typography */
  --serif:  'Playfair Display', Georgia, serif;
  --sans:   'DM Sans', 'Helvetica Neue', Arial, sans-serif;

  /* Layout */
  --radius: 10px;
  --shadow: 0 8px 32px rgba(30,122,78,0.12);
}

/* ── Gold accent — aligned to SP logo gold-bronze ring (Fix 4) ── */
.section-tag          { color: #A89040; }
.pub-enq              { color: #A89040; }
.svc-link             { color: #A89040; }
.blog-read            { color: #2E9E6A; }
.nav-sub              { color: #A89040; letter-spacing: 3.5px; }
.foot-sub             { color: #C8A84C; }
.btn-gold             { background: #A89040; }
.btn-gold:hover       { background: #C8A84C; }
.hero-badge           { background: rgba(168,144,64,.16); border-color: rgba(168,144,64,.35); color: #C8A84C; }
.badge-dot            { background: #C8A84C; }
.value-dot            { background: #A89040; }
.author-note          { border-left-color: #A89040; }
.testi-stars          { color: #A89040; }
.svc-popular          { background: #A89040; }
.view-all             { color: #A89040; }

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--sans); color: var(--text); background: #fff; line-height: 1.75; overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--sans); }

/* ── Container ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.section-pad { padding: 100px 0; }
.bg-white  { background: #fff; }
.bg-cream  { background: var(--cream); }

/* ── Section common ── */
.section-tag {
  display: inline-block;
  font-size: 11px; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; color: var(--gold); margin-bottom: .75rem;
}
.section-title {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700; color: var(--navy); line-height: 1.2; margin-bottom: 1rem;
}
.section-sub { font-size: 16px; color: var(--muted); line-height: 1.85; max-width: 580px; }
.section-center { text-align: center; margin-bottom: 3rem; }
.section-center .section-sub { margin: 0 auto; }

/* ── Fade-up animation ── */
.fade-up { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.fade-up.in { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .1s; }
.delay-2 { transition-delay: .2s; }
.delay-3 { transition-delay: .3s; }
.delay-4 { transition-delay: .4s; }

/* ══════════════════════════════════
   NAVBAR
══════════════════════════════════ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: 68px; padding: 0 2.5rem;
  background: rgba(255,255,255,0.97);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  transition: box-shadow .3s;
}
.navbar.scrolled {
  box-shadow: 0 4px 28px rgba(12,68,124,0.09);
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo-img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; display: block; }
.nav-brand { display: flex; flex-direction: column; line-height: 1.1; }
.nav-name  { font-family: var(--serif); font-size: 15px; font-weight: 700; color: var(--navy); letter-spacing: .5px; }
.nav-sub   { font-size: 8.5px; letter-spacing: 3.5px; color: var(--gold); text-transform: uppercase; margin-top: 1px; }

.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a {
  font-size: 14px; font-weight: 500; color: var(--text);
  position: relative; padding-bottom: 3px; transition: color .2s;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 2px; background: var(--gold); border-radius: 2px; transition: width .25s;
}
.nav-links a:hover, .nav-links a.active { color: var(--navy); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.nav-cta {
  background: var(--navy); color: #fff; padding: 9px 22px;
  border-radius: 5px; font-size: 14px; font-weight: 600;
  transition: background .2s;
}
.nav-cta:hover { background: var(--cobalt); }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; padding: 6px;
}
.hamburger span { display: block; width: 22px; height: 2px; background: var(--navy); border-radius: 2px; transition: all .3s; }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

.mobile-drawer {
  display: none; flex-direction: column; gap: 1.25rem;
  position: fixed; top: 68px; left: 0; right: 0; z-index: 999;
  background: rgba(255,255,255,.97); border-bottom: 1px solid var(--border);
  padding: 1.5rem 2rem;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.mobile-drawer.open {
  display: flex;
  animation: slideDown .28s cubic-bezier(.4,0,.2,1);
}
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0); }
}
.mobile-drawer a { font-size: 15px; font-weight: 500; color: var(--text); }
.mobile-drawer .mob-cta {
  background: var(--navy); color: #fff;
  padding: 11px 18px; border-radius: 5px; text-align: center; font-weight: 600;
}

/* ══════════════════════════════════
   HERO
══════════════════════════════════ */
.hero {
  min-height: 100vh; background: var(--navy);
  display: flex; align-items: center;
  padding: 100px 2.5rem 70px;
  position: relative; overflow: hidden;
}
.hero-blob {
  position: absolute; border-radius: 50%; pointer-events: none;
}
.hero-blob1 {
  top: -140px; right: -200px; width: 640px; height: 640px;
  background: rgba(46,158,106,.38);
}
.hero-blob2 {
  bottom: -120px; left: -100px; width: 380px; height: 380px;
  background: rgba(168,144,64,.08);
}
.hero-inner {
  max-width: 1200px; margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
  position: relative; z-index: 1;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(186,117,23,.16); border: 1px solid rgba(239,159,39,.35);
  color: #FAC775; padding: 7px 18px; border-radius: 4px;
  font-size: 11.5px; letter-spacing: 2px; text-transform: uppercase;
  font-weight: 600; margin-bottom: 1.5rem;
}
.badge-dot {
  width: 7px; height: 7px; background: #FAC775; border-radius: 50%;
  animation: badgePulse 2s ease-in-out infinite;
}
@keyframes badgePulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .4; transform: scale(.75); }
}
.hero-h1 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4.2vw, 3.5rem);
  font-weight: 700; color: #fff; line-height: 1.18; margin-bottom: 1.25rem;
}
.hero-h1 em { font-style: normal; color: var(--amber); }
.hero-sub {
  font-size: 17px; color: rgba(255,255,255,.72);
  margin-bottom: 2rem; max-width: 500px; line-height: 1.85; font-weight: 300;
}
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }

.btn-gold {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold); color: #fff; padding: 13px 28px; border-radius: 5px;
  font-size: 15px; font-weight: 600; transition: background .2s, transform .15s;
}
.btn-gold:hover { background: var(--amber); transform: translateY(-2px); }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: #fff;
  padding: 12px 28px; border-radius: 5px;
  border: 1px solid rgba(255,255,255,.38);
  font-size: 15px; font-weight: 600; transition: border-color .2s, background .2s;
}
.btn-ghost:hover { border-color: #fff; background: rgba(255,255,255,.08); }

.hero-visual { display: flex; align-items: center; justify-content: center; }
.hero-ring {
  width: 340px; height: 340px; border-radius: 50%;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  animation: float 5s ease-in-out infinite;
}
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-16px); } }

/* ── Hero page-load stagger ── */
.hero-badge { animation: fadeSlideUp .6s ease .1s  both; }
.hero-h1    { animation: fadeSlideUp .6s ease .25s both; }
.hero-sub   { animation: fadeSlideUp .6s ease .4s  both; }
.hero-ctas  { animation: fadeSlideUp .6s ease .55s both; }

@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Hero scroll indicator ── */
.hero-scroll {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,.4); font-size: 10px; letter-spacing: 2.5px;
  text-transform: uppercase; animation: fadeSlideUp .6s ease 1s both;
  cursor: pointer; border: none; background: none; transition: color .2s;
}
.hero-scroll:hover { color: rgba(255,255,255,.7); }
.hero-scroll svg   { animation: bounceDown 1.8s ease-in-out infinite; }

@keyframes bounceDown {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(7px); }
}

/* ══════════════════════════════════
   STATS BAR
══════════════════════════════════ */
.stats-bar { background: var(--cream); border-bottom: 1px solid var(--border); padding: 2rem 0; }
.stats-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 2rem;
  display: grid; grid-template-columns: repeat(4,1fr); gap: 1rem; text-align: center;
}
.stat { position: relative; }
.stat:not(:last-child)::after {
  content: ''; position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  height: 44px; width: 1px; background: var(--border);
}
.stat-num { font-family: var(--serif); font-size: 2.2rem; font-weight: 700; color: var(--navy); }
.stat-num.stat-text { display: block; }
.stat-plus { color: var(--gold); font-size: 1.8rem; }
.stat-label { font-size: 13px; color: var(--muted); margin-top: 5px; font-weight: 500; }

/* ══════════════════════════════════
   ABOUT
══════════════════════════════════ */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.about-text p { font-size: 15.5px; color: var(--muted); line-height: 1.9; margin-bottom: 1.25rem; }
.values-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: .75rem; margin-top: 2rem; }
.value-pill {
  display: flex; align-items: center; gap: 8px;
  background: var(--cream); border: 1px solid var(--border);
  border-radius: 6px; padding: .6rem .9rem; font-size: 13px; font-weight: 600; color: var(--navy);
}
.value-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }

.about-cards { display: flex; flex-direction: column; gap: 1rem; }
.about-card { border-radius: var(--radius); padding: 1.75rem; border: 1px solid var(--border); }
.about-card.dark { background: var(--navy); border-color: var(--navy); }
.about-card.dark h3 { font-family: var(--serif); font-size: 1.15rem; color: #fff; margin-bottom: .6rem; }
.about-card.dark p  { font-size: 14px; color: rgba(255,255,255,.72); line-height: 1.75; }
.about-card.light  { background: var(--cream); }
.about-card.light h3 { font-family: var(--serif); font-size: 1.15rem; color: var(--navy); margin-bottom: .6rem; }
.about-card.light p  { font-size: 14px; color: var(--muted); line-height: 1.75; margin-bottom: 1rem; }
.about-card-icon { margin-bottom: 1rem; }

.audience-tags { display: flex; flex-wrap: wrap; gap: 7px; margin-top: .75rem; }
.aud-tag {
  font-size: 12px; font-weight: 600; color: var(--navy);
  background: rgba(12,68,124,.08); padding: 5px 12px; border-radius: 4px;
}

/* ══════════════════════════════════
   PUBLICATIONS
══════════════════════════════════ */
.pub-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  flex-wrap: wrap; gap: 1.5rem; margin-bottom: 2.5rem;
}
.filter-tabs { display: flex; gap: 8px; flex-wrap: wrap; }
.ftab {
  padding: 7px 18px; border-radius: 5px; font-size: 13px; font-weight: 600;
  border: 1px solid var(--border); background: #fff; color: var(--text);
  transition: all .2s;
}
.ftab.active, .ftab:hover { background: var(--navy); color: #fff; border-color: var(--navy); }

.pub-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.pub-card {
  background: #fff; border-radius: var(--radius); border: 1px solid var(--border);
  overflow: hidden; transition: transform .22s, box-shadow .22s;
}
.pub-card:hover { transform: translateY(-6px); box-shadow: 0 18px 52px rgba(12,68,124,.16); }
.pub-card[style*="display: none"] { display: none !important; }

.pub-cover {
  height: 176px; display: flex; align-items: center; justify-content: center;
  position: relative;
}
.pub-cat-badge {
  position: absolute; top: 12px; left: 12px;
  font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  padding: 4px 10px; border-radius: 3px;
  background: rgba(255,255,255,.2); color: #fff; backdrop-filter: blur(4px);
}
.cover-science     { background: linear-gradient(135deg, #1E7A4E 0%, #2E9E6A 100%); } /* JEE Physics — emerald green */
.cover-math        { background: linear-gradient(135deg, #993C1D 0%, #D85A30 100%); } /* JEE Maths — coral (keep) */
.cover-lang        { background: linear-gradient(135deg, #0F6E56 0%, #1D9E75 100%); } /* NEET Biology — teal green */
.cover-hist        { background: linear-gradient(135deg, #854F0B 0%, #BA7517 100%); } /* History — amber (keep) */
.cover-exam        { background: linear-gradient(135deg, #3C3489 0%, #7F77DD 100%); } /* NEET Physics — purple (keep) */
.cover-chem        { background: linear-gradient(135deg, #27500A 0%, #639922 100%); }
.cover-bio         { background: linear-gradient(135deg, #085041 0%, #1D9E75 100%); } /* NEET Chemistry — deep teal */
.cover-neet        { background: linear-gradient(135deg, #6B1A4B 0%, #C4458A 100%); }
.cover-cs          { background: linear-gradient(135deg, #222 0%, #555 100%); }
.cover-bio-featured{ background: linear-gradient(135deg, #0D5C3A 0%, #1E9E6A 100%); } /* Biology book — rich green */
.cover-cobalt      { background: linear-gradient(135deg, #0D5C3A 0%, #1E7A4E 100%); } /* JEE Chemistry — dark green */
.cover-sky         { background: linear-gradient(135deg, #1A8A55 0%, #2EB870 100%); } /* Pre-Foundation — bright green */
.cover-amber-grad  { background: linear-gradient(135deg, #8B4500 0%, #EF9F27 100%); } /* Pre-Foundation Maths — amber (keep) */
.cover-navy-teal   { background: linear-gradient(135deg, #0D4A2E 0%, #1E7A4E 100%); } /* Foundation — deep green */
.cover-navy-coral  { background: linear-gradient(135deg, #993C1D 0%, #D85A30 100%); } /* Foundation Maths — coral contrast */

/* Featured card */
.featured-card { border: 2px solid var(--gold); }
.featured-badge {
  position: absolute; bottom: 12px; right: 12px;
  font-size: 10px; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase;
  padding: 4px 10px; border-radius: 3px;
  background: var(--amber); color: #fff;
}

/* Locked card overlay */
.locked-card .pub-cover { position: relative; }
.lock-overlay {
  position: absolute; inset: 0;
  background: rgba(7,15,26,.60);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 8px; padding: 1rem;
}
.lock-overlay p {
  font-size: 11px; color: rgba(255,255,255,.85); text-align: center; line-height: 1.5;
  margin: 0;
}

.pub-body { padding: 1.25rem; }
.pub-title  { font-family: var(--serif); font-size: 15px; font-weight: 700; color: var(--navy); line-height: 1.35; margin-bottom: 5px; }
.pub-author { font-size: 12px; color: var(--muted); margin-bottom: 10px; }
.pub-desc   { font-size: 13px; color: var(--muted); line-height: 1.65; margin-bottom: 12px; }
.pub-foot   { display: flex; justify-content: space-between; align-items: center; padding-top: 10px; border-top: 1px solid var(--border); }
.pub-grade  { font-size: 11px; font-weight: 700; color: var(--cobalt); letter-spacing: .8px; text-transform: uppercase; }
.pub-enq    { font-size: 12px; font-weight: 700; color: var(--gold); }
.pub-enq:hover { text-decoration: underline; }

/* ══════════════════════════════════
   SERVICES
══════════════════════════════════ */
.svc-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.svc-card {
  padding: 2rem; border: 1px solid var(--border); border-radius: var(--radius);
  transition: border-color .2s, box-shadow .2s, transform .2s;
}
.svc-card:hover { border-color: var(--navy); box-shadow: 0 14px 44px rgba(12,68,124,.13); transform: translateY(-4px); }
.svc-icon {
  width: 52px; height: 52px; border-radius: var(--radius);
  background: rgba(12,68,124,.07);
  display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem;
}
.svc-title { font-family: var(--serif); font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: .6rem; }
.svc-desc  { font-size: 14px; color: var(--muted); line-height: 1.75; }
.svc-link  {
  display: inline-block; margin-top: 1.1rem;
  font-size: 12px; font-weight: 700; color: var(--gold);
  letter-spacing: 1px; text-transform: uppercase;
}
.svc-link:hover { text-decoration: underline; }
.svc-popular {
  position: absolute; top: -1px; right: 20px;
  background: var(--gold); color: #fff;
  font-size: 10px; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase;
  padding: 4px 12px; border-radius: 0 0 6px 6px;
}

/* ══════════════════════════════════
   TESTIMONIALS
══════════════════════════════════ */
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-top: 1rem; }
.testi-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius); padding: 2rem;
  position: relative;
  transition: transform .22s, box-shadow .22s;
}
.testi-card:hover { transform: translateY(-4px); box-shadow: 0 14px 44px rgba(12,68,124,.12); }
.testi-quote {
  font-family: var(--serif); font-size: 4rem; font-weight: 800;
  color: var(--navy); opacity: .1; line-height: 1;
  position: absolute; top: 1rem; left: 1.5rem;
}
.testi-text  { font-size: 14px; color: var(--muted); line-height: 1.8; margin-bottom: 1.5rem; padding-top: 1.5rem; }
.testi-author { display: flex; align-items: center; gap: 12px; margin-bottom: .75rem; }
.testi-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: rgba(12,68,124,.1); color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700; flex-shrink: 0;
}
.testi-name { font-size: 14px; font-weight: 600; color: var(--navy); margin-bottom: 2px; }
.testi-role { font-size: 12px; color: var(--muted); }
.testi-stars { color: var(--amber); font-size: 14px; letter-spacing: 2px; }

/* ══════════════════════════════════
   BLOG
══════════════════════════════════ */
.blog-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  flex-wrap: wrap; gap: 1.5rem; margin-bottom: 2.5rem;
}
.view-all { font-size: 14px; font-weight: 700; color: var(--gold); white-space: nowrap; }
.view-all:hover { text-decoration: underline; }

.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.blog-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; transition: transform .22s, box-shadow .22s;
}
.blog-card:hover { transform: translateY(-5px); box-shadow: 0 16px 48px rgba(12,68,124,.13); }
.blog-cover {
  height: 156px; display: flex; align-items: flex-end;
  padding: 12px; position: relative;
}
.blog-tag {
  font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  padding: 4px 10px; border-radius: 3px; background: rgba(255,255,255,.92); color: var(--navy);
}
.bcover-1 { background: linear-gradient(135deg, #1E7A4E 0%, #2E9E6A 100%); }
.bcover-2 { background: linear-gradient(135deg, #3C3489 0%, #7F77DD 100%); }
.bcover-3 { background: linear-gradient(135deg, #854F0B 0%, #EF9F27 100%); }

.blog-body { padding: 1.25rem; }
.blog-meta  { font-size: 12px; color: var(--muted); margin-bottom: .6rem; }
.blog-title { font-family: var(--serif); font-size: 16px; font-weight: 700; color: var(--navy); line-height: 1.4; margin-bottom: .6rem; }
.blog-excerpt { font-size: 13.5px; color: var(--muted); line-height: 1.7; margin-bottom: 1rem; }
.blog-read { font-size: 13px; font-weight: 700; color: var(--cobalt); }
.blog-read:hover { text-decoration: underline; }

/* ══════════════════════════════════
   CONTACT
══════════════════════════════════ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 5rem; align-items: start; }
.contact-info .section-sub { margin-bottom: 2.5rem; }

.ci-list { display: flex; flex-direction: column; gap: 1.75rem; margin-bottom: 2rem; }
.ci-item { display: flex; gap: 14px; align-items: flex-start; }
.ci-icon {
  width: 42px; height: 42px; border-radius: 8px; flex-shrink: 0;
  background: rgba(12,68,124,.07); display: flex; align-items: center; justify-content: center;
}
.ci-label { font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--muted); margin-bottom: 3px; }
.ci-value  { font-size: 15px; color: var(--navy); font-weight: 600; line-height: 1.5; }

.author-note {
  background: #fff; border-left: 3px solid var(--gold);
  border-radius: 0; padding: 1.1rem 1.4rem;
  font-size: 14px; color: var(--muted); line-height: 1.7;
}
.author-note strong { color: var(--navy); }

.contact-form-wrap { position: relative; }
.form-card {
  background: var(--cream); border-radius: 12px; padding: 2.5rem;
  border: 1px solid var(--border);
}
.form-title { font-family: var(--serif); font-size: 1.4rem; font-weight: 700; color: var(--navy); margin-bottom: 1.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.fg { margin-bottom: 1.1rem; }
.fg label { display: block; font-size: 12.5px; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.fg input, .fg select, .fg textarea {
  width: 100%; padding: 11px 14px;
  border: 1px solid #dde3ea; border-radius: 6px;
  font-size: 14px; font-family: var(--sans); color: var(--text);
  background: #fff; outline: none; transition: border-color .2s, box-shadow .2s;
}
.fg input:focus, .fg select:focus, .fg textarea:focus {
  border-color: var(--cobalt); box-shadow: 0 0 0 3px rgba(24,95,165,.1);
}
.fg textarea { height: 110px; resize: vertical; }
.form-btn {
  width: 100%; padding: 14px; background: var(--navy); color: #fff;
  border: none; border-radius: 6px; font-size: 15px; font-weight: 600;
  font-family: var(--sans); transition: background .2s, transform .15s; margin-top: .25rem;
}
.form-btn:hover { background: var(--cobalt); transform: translateY(-1px); }

.form-success {
  display: none; text-align: center; padding: 3rem 1rem;
  background: var(--cream); border-radius: 12px; border: 1px solid var(--border);
}
.form-success svg { margin-bottom: 1rem; }
.form-success h3 { font-family: var(--serif); font-size: 1.4rem; color: var(--navy); margin-bottom: .5rem; }
.form-success p  { font-size: 14.5px; color: var(--muted); }

/* ══════════════════════════════════
   FOOTER
══════════════════════════════════ */
.footer { background: var(--dark); color: rgba(255,255,255,.6); padding: 64px 0 28px; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem;
  padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,.07);
}
.foot-logo-wrap { display: flex; align-items: center; gap: 10px; margin-bottom: .85rem; }
.foot-logo-monogram {
  width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, #4CAF88, #8BC34A);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 15px; font-weight: 700; color: #fff;
  letter-spacing: .5px;
}
.foot-logo-img {
  width: 48px; height: 48px; border-radius: 50%; object-fit: cover; flex-shrink: 0;
}
.foot-name { font-family: var(--serif); font-size: 17px; color: #fff; letter-spacing: .5px; }
.foot-sub  { font-size: 8.5px; letter-spacing: 3.5px; color: var(--amber); text-transform: uppercase; margin-top: 2px; }
.foot-desc { font-size: 14px; color: rgba(255,255,255,.55); line-height: 1.85; }
.foot-social { display: flex; gap: 10px; margin-top: 1.25rem; }
.foot-social a {
  width: 34px; height: 34px; border-radius: 6px;
  background: rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.6); font-size: 13px; font-weight: 700; transition: background .2s, color .2s;
}
.foot-social a:hover { background: var(--gold); color: #fff; }

.foot-col h4 {
  font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,.35); margin-bottom: .85rem;
}
.foot-col li { margin-bottom: .55rem; }
.foot-col a { font-size: 14px; color: rgba(255,255,255,.6); transition: color .2s; }
.foot-col a:hover { color: var(--amber); }

.foot-bottom {
  margin-top: 1.5rem;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: .75rem; font-size: 13px;
}
.foot-bottom a { color: var(--amber); }

/* ══════════════════════════════════
   WHY CHOOSE US
══════════════════════════════════ */
.why-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-top: 3rem;
}
.why-card {
  padding: 1.75rem; border: 1px solid var(--border); border-radius: var(--radius);
  transition: border-color .2s, box-shadow .2s, transform .2s;
}
.why-card:hover { border-color: var(--navy); box-shadow: var(--shadow); transform: translateY(-4px); }
.why-icon {
  width: 48px; height: 48px; border-radius: var(--radius);
  background: rgba(12,68,124,.07);
  display: flex; align-items: center; justify-content: center; margin-bottom: 1rem;
}
.why-title { font-family: var(--serif); font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: .5rem; }
.why-desc  { font-size: 14px; color: var(--muted); line-height: 1.75; }

/* ══════════════════════════════════
   TEAM
══════════════════════════════════ */
.team-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-top: 3rem;
}
.team-card {
  padding: 2rem; border: 1px solid var(--border); border-radius: var(--radius);
  text-align: center;
  transition: border-color .2s, box-shadow .2s, transform .2s;
}
.team-card:hover { border-color: var(--navy); box-shadow: var(--shadow); transform: translateY(-4px); }
.team-avatar {
  width: 72px; height: 72px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 20px; font-weight: 700; color: #fff;
  margin: 0 auto 1rem; flex-shrink: 0;
}
.avatar-sc { background: rgba(30,122,78,.15); color: #1E7A4E; }
.avatar-dp { background: rgba(46,158,106,.15); color: #2E9E6A; }
.avatar-sa { background: rgba(168,144,64,.15); color: #A89040; }
.team-name { font-family: var(--serif); font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: 3px; }
.team-role { font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold); margin-bottom: .5rem; }
.team-qual { font-size: 12.5px; color: var(--muted); margin-bottom: .85rem; line-height: 1.55; }
.team-bio  { font-size: 13.5px; color: var(--muted); line-height: 1.75; text-align: left; }

/* ══════════════════════════════════
   RESPONSIVE
══════════════════════════════════ */
@media (max-width: 1024px) {
  .about-grid { gap: 3rem; }
  .contact-grid { gap: 3rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .navbar { padding: 0 1.5rem; }
  .hero { padding: 90px 1.5rem 60px; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .section-pad { padding: 72px 0; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .pub-grid, .svc-grid, .testi-grid, .blog-grid { grid-template-columns: repeat(2,1fr); }
  .why-grid, .team-grid { grid-template-columns: repeat(2,1fr); }
  .stats-inner { grid-template-columns: repeat(2,1fr); }
  .values-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 600px) {
  .pub-grid, .svc-grid, .testi-grid, .blog-grid { grid-template-columns: 1fr; }
  .why-grid, .team-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .pub-header { flex-direction: column; align-items: flex-start; }
  .blog-header { flex-direction: column; align-items: flex-start; }
  .footer { padding: 48px 0 24px; }
  .foot-bottom { flex-direction: column; text-align: center; }
  .hero-scroll { display: none; }
  .stat:not(:last-child)::after { display: none; }
  .back-top     { bottom: 1.25rem; right: 1.25rem; }
  .team-bio { text-align: center; }
}

/* ══════════════════════════════════
   FLOATING BUTTONS
══════════════════════════════════ */
/* Back to top */
.back-top {
  position: fixed; bottom: 1.75rem; right: 1.75rem; z-index: 900;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--navy); color: #fff; border: none;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  opacity: 0; transform: translateY(12px);
  transition: opacity .3s, transform .3s, background .2s;
  pointer-events: none;
}
.back-top.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.back-top:hover { background: var(--cobalt); }

/* ══════════════════════════════════
   KEYFRAMES
══════════════════════════════════ */
@keyframes shake {
  0%, 100% { transform: translateX(0); }
  20%       { transform: translateX(-6px); }
  40%       { transform: translateX(6px); }
  60%       { transform: translateX(-4px); }
  80%       { transform: translateX(4px); }
}

@keyframes filterFadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

.whatsapp-float{position:fixed;bottom:28px;right:28px;width:58px;height:58px;background:#25D366;border-radius:50%;display:flex;align-items:center;justify-content:center;z-index:9999;box-shadow:0 4px 20px rgba(37,211,102,.45);transition:transform .2s,box-shadow .2s;text-decoration:none;}
.whatsapp-float:hover{transform:scale(1.1);box-shadow:0 6px 28px rgba(37,211,102,.6);}
.whatsapp-float svg{width:30px;height:30px;fill:#fff;}
@media(max-width:600px){.whatsapp-float{bottom:20px;right:20px;width:52px;height:52px;}.whatsapp-float svg{width:26px;height:26px;}}
