/* ══════════════════════════════════════════════════════════════
   SAHASRA POLITICAL SOLUTIONS — White & Gold Premium Theme
   ══════════════════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ── Shutter Intro ────────────────────────────────────────────── */
.shutter-overlay {
  position: fixed;
  inset: 0;
  z-index: 99999;
  overflow: hidden;
  pointer-events: all;
}

/* Black panels that tile the screen */
.shutter-panels {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  z-index: 1;
}
.shutter-panel {
  flex: 1;
  background: #000;
  transition: transform 0.75s cubic-bezier(0.77, 0, 0.18, 1);
}
.shutter-panel:nth-child(odd)  { transform-origin: top center; }
.shutter-panel:nth-child(even) { transform-origin: bottom center; }

/* All panels open simultaneously with tiny stagger */
.shutter-panels.open .shutter-panel                { transform: scaleY(0); }
.shutter-panels.open .shutter-panel:nth-child(1)   { transition-delay: 0.00s; }
.shutter-panels.open .shutter-panel:nth-child(2)   { transition-delay: 0.00s; }
.shutter-panels.open .shutter-panel:nth-child(3)   { transition-delay: 0.07s; }
.shutter-panels.open .shutter-panel:nth-child(4)   { transition-delay: 0.07s; }
.shutter-panels.open .shutter-panel:nth-child(5)   { transition-delay: 0.14s; }
.shutter-panels.open .shutter-panel:nth-child(6)   { transition-delay: 0.14s; }

/* Logo wrapper — sits above panels */
.shutter-logo-wrap {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 2;
  animation: shutterLogoReveal 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
@keyframes shutterLogoReveal {
  from { opacity: 0; transform: translateY(18px) scale(0.92); }
  to   { opacity: 1; transform: translateY(0)    scale(1); }
}
.shutter-logo-wrap.fade-out {
  animation: shutterLogoHide 0.5s ease forwards;
}
@keyframes shutterLogoHide {
  from { opacity: 1; transform: scale(1); }
  to   { opacity: 0; transform: scale(1.04); }
}

/* Glow ring behind logo */
.shutter-glow-ring {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.18) 0%, transparent 70%);
  animation: shutterPulse 2.4s ease-in-out infinite;
}
@keyframes shutterPulse {
  0%, 100% { transform: scale(1);    opacity: 0.6; }
  50%       { transform: scale(1.15); opacity: 1;   }
}

/* Logo image */
.shutter-logo-img {
  position: relative;
  width: 110px;
  height: 110px;
  object-fit: contain;
  border-radius: 14px;
  box-shadow:
    0 0 0 1px rgba(201,168,76,0.25),
    0 0 40px rgba(201,168,76,0.45),
    0 0 80px rgba(201,168,76,0.18);
  margin-bottom: 1.4rem;
  filter: brightness(1.05);
}

/* Gold divider */
.shutter-gold-line {
  width: 70px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #C9A84C 40%, #E8C56A 50%, #C9A84C 60%, transparent);
  margin-bottom: 1.1rem;
  opacity: 0.85;
}

/* Brand name */
.shutter-brand-name {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  color: #fff;
  letter-spacing: 0.04em;
  line-height: 1;
  margin-bottom: 0.2rem;
}
.shutter-brand-name span {
  background: linear-gradient(135deg, #C9A84C, #E8C56A, #C9A84C);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Brand subtitle */
.shutter-brand-sub {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: rgba(232,197,106,0.65);
  margin-bottom: 1rem;
}

/* Tagline */
.shutter-tagline {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}

/* After open: remove overlay entirely so it doesn't block clicks */
.shutter-overlay.done { display: none; }

:root {
  --white:        #FFFFFF;
  --cream:        #FDFAF4;
  --cream-mid:    #F7F1E3;
  --gold-deep:    #B8922A;
  --gold:         #C9A84C;
  --gold-light:   #E8C56A;
  --gold-pale:    #FDF3D9;
  --gold-glow:    rgba(201,168,76,0.22);
  --dark:         #1C1A14;
  --body-text:    #3D3826;
  --muted:        #7A7560;
  --light-muted:  #A89E85;
  --border:       rgba(184,146,42,0.28);
  --border-light: rgba(201,168,76,0.15);
  --shadow-sm:    0 2px 12px rgba(184,146,42,.10);
  --shadow-md:    0 8px 32px rgba(184,146,42,.14);
  --shadow-lg:    0 20px 60px rgba(184,146,42,.20);
  --section-pad:  3.5rem;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--white);
  color: var(--body-text);
  overflow-x: hidden;
  line-height: 1.7;
}

/* ── Utility ─────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.section-pad { padding: var(--section-pad) 0; }
.bg-dark { background: var(--cream); }
.mt-3 { margin-top: 1.5rem; }

.section-tag {
  display: inline-block;
  font-size: .74rem; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--gold-deep); background: var(--gold-pale);
  border: 1px solid var(--border);
  padding: .32rem .95rem; border-radius: 99px;
  margin-bottom: 1.2rem;
}
.section-tag.light { color: var(--gold-deep); background: rgba(253,243,217,.7); border-color: var(--border); }

.section-header { text-align: center; margin-bottom: 2.5rem; }
.section-header .section-tag { display: block; }

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900; line-height: 1.2;
  color: var(--dark);
}
.section-title.light { color: var(--dark); }
.section-title em { font-style: normal; color: var(--gold-deep); }

.section-subtitle { margin-top: 1rem; color: var(--muted); max-width: 600px; margin-left: auto; margin-right: auto; }

.gradient-text {
  background: linear-gradient(135deg, var(--gold-deep), var(--gold-light), #fff8e1);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

/* ── Buttons ─────────────────── */
.btn-primary, .btn-outline, .btn-outline-dark, .btn-outline-light {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .85rem 2rem; border-radius: 6px;
  font-weight: 600; font-size: .95rem; cursor: pointer;
  transition: all .3s ease; text-decoration: none; border: 2px solid transparent;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold-deep), var(--gold-light));
  color: var(--white); box-shadow: 0 4px 16px var(--gold-glow);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-outline { border: 2px solid rgba(255,255,255,.55); color: var(--white); }
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,.12); color: var(--white); }
.btn-outline-dark { border: 2px solid var(--border); color: var(--gold-deep); background: var(--white); }
.btn-outline-dark:hover { background: var(--gold-pale); border-color: var(--gold); }
.btn-outline-light { border: 2px solid var(--border); color: var(--gold-deep); background: var(--white); width: 100%; justify-content: center; margin-top: 1.5rem; }
.btn-outline-light:hover { background: var(--gold-pale); }
.btn-full { width: 100%; justify-content: center; margin-top: .5rem; }

/* ── Animations ──────────────── */
@keyframes fadeUp { from { opacity:0; transform:translateY(30px); } to { opacity:1; transform:translateY(0); } }
@keyframes float { 0%,100% { transform:translateY(0); } 50% { transform:translateY(-12px); } }
@keyframes shimmer { 0% { background-position:-200% center; } 100% { background-position:200% center; } }
@keyframes pulse-ring { 0% { box-shadow:0 0 0 0 var(--gold-glow); } 70% { box-shadow:0 0 0 20px transparent; } 100% { box-shadow:0 0 0 0 transparent; } }
@keyframes scroll-wheel { 0% { opacity:1; transform:translateY(0); } 80% { opacity:0; transform:translateY(8px); } 100% { opacity:0; } }
@keyframes ken-burns { 0% { transform:scale(1); } 100% { transform:scale(1.08); } }

.animate-fade-up { opacity:0; animation:fadeUp .8s ease forwards; }
.delay-1 { animation-delay:.15s; } .delay-2 { animation-delay:.3s; } .delay-3 { animation-delay:.45s; }

/* ── NAVBAR ──────────────────── */
.navbar {
  position: fixed; top:0; left:0; right:0; z-index:1000;
  padding: 1.2rem 0; transition: background .4s, padding .4s, box-shadow .4s;
}
.navbar.scrolled {
  background: rgba(255,255,255,0.97); padding: .75rem 0;
  box-shadow: 0 2px 24px rgba(184,146,42,.14); backdrop-filter: blur(12px);
}
.nav-container {
  max-width:1200px; margin:0 auto; padding:0 1.5rem;
  display:flex; align-items:center; justify-content:space-between;
}
.nav-logo { display:flex; align-items:center; gap:.5rem; text-decoration:none; font-weight:800; font-size:1.25rem; }
.logo-text { color:var(--white); }
.logo-accent { color:var(--gold-light); }
.navbar.scrolled .logo-text { color:var(--dark); }
.navbar.scrolled .logo-accent { color:var(--gold-deep); }
.logo-icon-svg { flex-shrink:0; }
.nav-links { display:flex; align-items:center; gap:2rem; list-style:none; }
.nav-links a { color:rgba(255,255,255,.88); text-decoration:none; font-size:.9rem; font-weight:500; transition:color .2s; }
.nav-links a:hover { color:var(--gold-light); }
.navbar.scrolled .nav-links a { color:var(--body-text); }
.navbar.scrolled .nav-links a:hover { color:var(--gold-deep); }
.nav-cta {
  background: linear-gradient(135deg, var(--gold-deep), var(--gold-light)) !important;
  color: var(--white) !important; padding:.5rem 1.3rem; border-radius:5px;
  font-weight:700 !important; box-shadow:0 3px 14px var(--gold-glow);
}
.hamburger { display:none; background:none; border:none; cursor:pointer; padding:.25rem; }
.hamburger span { display:block; width:24px; height:2px; background:var(--white); margin:5px 0; transition:all .3s; }
.navbar.scrolled .hamburger span { background:var(--dark); }

/* ── HERO ────────────────────── */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(28,6,9,0.82) 0%, rgba(46,34,8,0.76) 40%, rgba(61,46,10,0.80) 70%, rgba(28,6,9,0.86) 100%),
    url('https://images.unsplash.com/photo-1529107386315-e1a2ed48a620?w=1920&q=80&auto=format&fit=crop') center top / cover no-repeat;
}
.hero::after {
  content:''; position:absolute; inset:0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(201,168,76,.20) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 50%, rgba(184,146,42,.14) 0%, transparent 55%);
  pointer-events:none;
}
.hero-overlay {
  position:absolute; inset:0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C9A84C' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-particles { position:absolute; inset:0; overflow:hidden; }

/* Dome graphic */
.hero-dome {
  position:absolute; top:50%; left:50%;
  transform:translate(-50%,-58%);
  width:min(320px,55vw); z-index:1; pointer-events:none; opacity:.8;
}
.dome-svg { width:100%; height:auto; }

/* Crowd bottom */
.hero-crowd { position:absolute; bottom:0; left:0; right:0; pointer-events:none; z-index:1; }
.crowd-svg { width:100%; height:auto; display:block; }

.hero-content { position:relative; z-index:3; text-align:center; padding:8rem 1.5rem 4rem; max-width:900px; }
.hero-scroll-hint { position:absolute; bottom:2.5rem; left:50%; transform:translateX(-50%); display:flex; flex-direction:column; align-items:center; gap:.5rem; color:rgba(255,248,220,.35); font-size:.75rem; z-index:3; }

.hero-badge {
  display:inline-block;
  background:rgba(201,168,76,.15); border:1px solid rgba(201,168,76,.45);
  color:var(--gold-light); font-size:.78rem; font-weight:700;
  letter-spacing:.14em; text-transform:uppercase;
  padding:.4rem 1.2rem; border-radius:99px; margin-bottom:1.5rem;
}
.hero-title {
  font-family:'Playfair Display',serif;
  font-size:clamp(2.5rem,7vw,5.5rem); font-weight:900; line-height:1.08;
  margin-bottom:1.5rem; color:var(--white);
}
.hero-subtitle { color:rgba(255,248,220,.72); font-size:clamp(.95rem,1.5vw,1.15rem); margin-bottom:2.5rem; line-height:1.85; }
.hero-buttons { display:flex; gap:1rem; justify-content:center; flex-wrap:wrap; }
.scroll-mouse { width:22px; height:36px; border:2px solid rgba(201,168,76,.4); border-radius:11px; display:flex; justify-content:center; padding-top:5px; }
.scroll-wheel { width:4px; height:8px; background:var(--gold); border-radius:2px; animation:scroll-wheel 1.5s ease infinite; }

/* ── SECTION WAVE ────────────── */
.section-wave { line-height:0; background:var(--dark); }
.section-wave svg { display:block; width:100%; }

/* ── STATS BAR ───────────────── */
.stats-bar {
  background:linear-gradient(90deg, var(--gold-pale) 0%, #FFF8E7 50%, var(--gold-pale) 100%);
  border-top:1px solid var(--border); border-bottom:1px solid var(--border); padding:3rem 0;
}
.stats-container { max-width:1000px; margin:0 auto; padding:0 1.5rem; display:grid; grid-template-columns:repeat(4,1fr); gap:2rem; text-align:center; }
.stat-item { position:relative; }
.stat-item::after { content:''; position:absolute; right:0; top:50%; transform:translateY(-50%); width:1px; height:40px; background:var(--border); }
.stat-item:last-child::after { display:none; }
.stat-num { font-family:'Playfair Display',serif; font-size:2.8rem; font-weight:900; color:var(--gold-deep); line-height:1; }
.stat-suffix { font-size:1.6rem; color:var(--gold-deep); font-weight:700; }
.stat-label { display:block; font-size:.8rem; color:var(--muted); margin-top:.4rem; text-transform:uppercase; letter-spacing:.08em; }

/* ── IMPACT GALLERY ──────────── */
.impact-gallery { background:var(--white); padding:var(--section-pad) 0; }
.impact-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1.5rem; }
.impact-card {
  position:relative; border-radius:18px; overflow:hidden; height:300px;
  box-shadow:var(--shadow-md); border:1.5px solid var(--border-light);
  cursor:pointer;
}
.impact-card img {
  width:100%; height:100%; object-fit:cover; display:block;
  transition:transform .7s ease;
}
.impact-card:hover img { transform:scale(1.07); }
.impact-overlay {
  position:absolute; bottom:0; left:0; right:0;
  background:linear-gradient(to top, rgba(28,6,9,0.92) 0%, rgba(28,6,9,0.5) 55%, transparent 100%);
  padding:2rem 1.5rem 1.5rem;
}
.impact-overlay h3 { font-size:1.05rem; font-weight:700; color:var(--gold-light); margin-bottom:.35rem; font-family:'Playfair Display',serif; }
.impact-overlay p { font-size:.82rem; color:rgba(255,255,255,.72); line-height:1.5; }
.impact-tag {
  position:absolute; top:1rem; left:1rem;
  background:linear-gradient(135deg, var(--gold-deep), var(--gold-light));
  color:var(--white); font-size:.7rem; font-weight:800;
  padding:.28rem .8rem; border-radius:99px;
  letter-spacing:.09em; text-transform:uppercase;
  box-shadow:0 2px 10px var(--gold-glow);
}

/* ── ABOUT ───────────────────── */
.about { background:var(--white); }
.about-grid { display:grid; grid-template-columns:1fr 1fr; gap:5rem; align-items:center; }
.about-visual { position:relative; height:440px; }
.about-card-glow {
  position:absolute; width:300px; height:300px;
  background:radial-gradient(circle, rgba(201,168,76,.18) 0%, transparent 70%);
  top:50%; left:50%; transform:translate(-50%,-50%);
  border-radius:50%; animation:pulse-ring 3s ease infinite;
}
.about-image-wrapper {
  position:absolute; inset:20px;
  border:2px solid var(--border); border-radius:20px;
  overflow:hidden; box-shadow:var(--shadow-md);
  background:#1a1a1a;
}
.about-photo-img { width:100%; height:100%; object-fit:cover; display:block; filter:saturate(1.05) contrast(1.02); }
.about-photo-overlay {
  position:absolute; inset:0;
  background:linear-gradient(135deg, rgba(201,168,76,.08) 0%, transparent 50%);
  z-index:1; pointer-events:none;
}
.about-badge-float {
  position:absolute; bottom:-1.5rem; right:-1.5rem;
  background:linear-gradient(135deg, var(--gold-deep), var(--gold-light));
  color:var(--white); padding:1rem 1.5rem; border-radius:14px;
  display:flex; align-items:center; gap:.8rem;
  box-shadow:var(--shadow-lg); animation:float 3s ease infinite; z-index:2;
}
.about-badge-float strong { display:block; font-size:.9rem; font-weight:800; }
.about-badge-float small { font-size:.75rem; opacity:.8; }
.about-lead { font-size:1.1rem; color:var(--dark); margin-bottom:1rem; font-weight:600; }
.about-body { color:var(--muted); margin-bottom:2rem; }
.about-pillars { display:grid; grid-template-columns:1fr 1fr; gap:.75rem; margin-bottom:2rem; }
.pillar {
  display:flex; align-items:center; gap:.6rem;
  background:var(--gold-pale); border:1px solid var(--border-light);
  border-radius:8px; padding:.65rem 1rem;
  font-size:.85rem; font-weight:600; color:var(--dark); box-shadow:var(--shadow-sm);
}
.pillar-icon { color:var(--gold-deep); flex-shrink:0; }

/* ── SERVICES ────────────────── */
.services { position:relative; background:var(--cream); }
.services-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1.5rem; margin-bottom:2rem; }
.service-card {
  background:var(--white); border:1px solid var(--border-light); border-radius:14px;
  padding:2rem; transition:transform .3s, border-color .3s, box-shadow .3s;
  cursor:default; box-shadow:var(--shadow-sm);
}
.service-card:hover { transform:translateY(-6px); border-color:var(--gold); box-shadow:var(--shadow-lg); }
.service-icon-wrap {
  width:52px; height:52px; background:var(--gold-pale);
  border:1px solid var(--border); border-radius:12px;
  display:flex; align-items:center; justify-content:center; margin-bottom:1.2rem;
}
.service-icon { width:26px; height:26px; color:var(--gold-deep); display:block; }
.service-card h3 { font-size:1.05rem; font-weight:700; color:var(--dark); margin-bottom:.6rem; }
.service-card p { color:var(--muted); font-size:.88rem; margin-bottom:1rem; }
.service-list { list-style:none; display:flex; flex-direction:column; gap:.35rem; }
.service-list li { font-size:.82rem; color:var(--light-muted); padding-left:1.1rem; position:relative; }
.service-list li::before { content:'\2713'; position:absolute; left:0; color:var(--gold-deep); font-size:.7rem; top:.1rem; }

.deliverables-strip {
  background:var(--white); border:1px solid var(--border); border-radius:16px;
  padding:2.5rem; text-align:center; box-shadow:var(--shadow-sm);
}
.deliverables-grid { display:grid; grid-template-columns:repeat(5,1fr); gap:1.5rem; }
.deliverable-item { text-align:center; }
.del-icon { color:var(--gold-deep); }
.deliverable-item strong { display:block; font-size:.85rem; color:var(--gold-deep); margin-bottom:.35rem; font-weight:700; }
.deliverable-item p { font-size:.78rem; color:var(--muted); }

/* ── WEB SOLUTIONS ───────────── */
.websites { background:var(--white); }
.web-cards { display:grid; grid-template-columns:repeat(3,1fr); gap:1.5rem; margin-bottom:2rem; }
.web-card {
  background:var(--white); border:1.5px solid var(--border-light);
  border-radius:18px; padding:2rem; position:relative;
  transition:transform .3s, box-shadow .3s, border-color .3s; box-shadow:var(--shadow-sm);
}
.web-card:hover { transform:translateY(-6px); box-shadow:var(--shadow-lg); border-color:var(--gold); }
.web-card-featured {
  border-color:var(--gold);
  background:linear-gradient(160deg, var(--gold-pale) 0%, #FFF8E1 100%);
  box-shadow:var(--shadow-md);
}
.web-featured-badge {
  position:absolute; top:-14px; left:50%; transform:translateX(-50%);
  background:linear-gradient(135deg, var(--gold-deep), var(--gold-light));
  color:var(--white); font-size:.72rem; font-weight:800;
  letter-spacing:.1em; text-transform:uppercase;
  padding:.3rem 1rem; border-radius:99px; box-shadow:0 3px 10px var(--gold-glow);
}
.web-card-header { margin-bottom:1.5rem; }
.web-tier { font-size:.78rem; text-transform:uppercase; letter-spacing:.1em; color:var(--gold-deep); font-weight:700; margin-bottom:.5rem; }
.web-cta-label { font-family:'Playfair Display',serif; font-size:1.35rem; font-weight:900; color:var(--dark); margin-bottom:.3rem; line-height:1.3; }
.web-tagline { color:var(--muted); font-size:.85rem; margin-bottom:.9rem; }
.web-price-cta {
  display:inline-flex; align-items:center; gap:.4rem; font-size:.8rem; font-weight:700;
  color:var(--gold-deep); text-decoration:none; letter-spacing:.05em; text-transform:uppercase;
  border-bottom:1.5px solid rgba(184,146,42,.4); padding-bottom:2px; transition:color .2s, border-color .2s;
}
.web-price-cta:hover { color:var(--gold); border-color:var(--gold); }
.web-features { list-style:none; display:flex; flex-direction:column; gap:.6rem; margin-bottom:1.5rem; }
.web-features li { display:flex; align-items:center; gap:.6rem; font-size:.87rem; color:var(--body-text); }
.web-features li::before { content:'\2713'; color:var(--gold-deep); font-weight:700; width:16px; flex-shrink:0; }
.web-contact-strip {
  display:flex; align-items:center; justify-content:space-between; gap:1.5rem;
  background:linear-gradient(135deg, var(--gold-pale) 0%, #FFF9E8 100%);
  border:1.5px solid var(--border); border-radius:14px;
  padding:1.6rem 2rem; margin-top:2rem; flex-wrap:wrap; box-shadow:var(--shadow-sm);
}
.web-contact-strip-text { display:flex; align-items:center; gap:1rem; }
.web-contact-strip-icon { flex-shrink:0; color:var(--gold-deep); }
.web-contact-strip-text strong { display:block; color:var(--dark); font-size:1rem; margin-bottom:.25rem; font-weight:700; }
.web-contact-strip-text span { color:var(--muted); font-size:.87rem; }
.whatsapp-note {
  display:flex; align-items:center; gap:1rem;
  background:#F0FDF4; border:1px solid rgba(34,197,94,.25);
  border-radius:12px; padding:1.2rem 1.8rem;
  color:var(--body-text); font-size:.9rem; margin-top:1rem;
}

/* ── PRICING CTA ─────────────── */
.pricing-cta-inner {
  max-width:720px; margin:0 auto; text-align:center;
  background:var(--white); border:2px solid var(--border);
  border-radius:24px; padding:4rem 3rem; position:relative; overflow:hidden;
  box-shadow:var(--shadow-md);
}
.pricing-cta-inner::before {
  content:''; position:absolute; top:0; left:0; right:0; height:5px;
  background:linear-gradient(90deg, var(--gold-deep), var(--gold-light), var(--gold-deep));
  background-size:200% auto; animation:shimmer 3s linear infinite;
}
.pricing-cta-icon { display:block; margin:0 auto 1rem; color:var(--gold-deep); }
.pricing-cta-inner .section-tag { display:inline-block; margin-bottom:1rem; }
.pricing-cta-inner .section-title { margin-bottom:1.2rem; }
.pricing-cta-body { color:var(--muted); font-size:.97rem; line-height:1.8; margin-bottom:2rem; max-width:540px; margin-left:auto; margin-right:auto; }
.pricing-cta-perks { display:grid; grid-template-columns:1fr 1fr; gap:.7rem 2rem; text-align:left; max-width:500px; margin:0 auto 2.5rem; }
.perk-item { display:flex; align-items:center; gap:.6rem; font-size:.88rem; color:var(--body-text); }
.perk-icon { color:var(--gold-deep); font-weight:700; font-size:.9rem; flex-shrink:0; }
.pricing-cta-btn { font-size:1rem; padding:1rem 2.5rem; }
.pricing-cta-note { margin-top:1rem; font-size:.8rem; color:var(--muted); }

/* ── WHY US ──────────────────── */
.why-us { background:var(--cream); position:relative; overflow:hidden; }
.why-us::before {
  content:''; position:absolute; inset:0;
  background:url('https://images.unsplash.com/photo-1555848962-6e79363ec58f?w=1920&q=60&auto=format&fit=crop') center / cover no-repeat;
  opacity:.04; z-index:0;
}
.why-map-bg { position:absolute; right:-60px; top:50%; transform:translateY(-50%); width:400px; opacity:.5; pointer-events:none; z-index:0; }
.india-map-svg { width:100%; height:auto; }
.why-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1.5rem; position:relative; z-index:1; }
.why-card {
  padding:2rem; border:1.5px solid var(--border-light);
  border-radius:14px; background:var(--white);
  transition:border-color .3s, transform .3s, box-shadow .3s; box-shadow:var(--shadow-sm);
}
.why-card:hover { border-color:var(--gold); transform:translateY(-4px); box-shadow:var(--shadow-md); }
.why-number { font-family:'Playfair Display',serif; font-size:3rem; font-weight:900; color:rgba(184,146,42,.2); line-height:1; margin-bottom:.8rem; }
.why-card h3 { font-size:1rem; font-weight:700; color:var(--gold-deep); margin-bottom:.6rem; }
.why-card p { color:var(--muted); font-size:.87rem; }

/* ── CONTACT ─────────────────── */
.contact { background:var(--dark) !important; }
.contact .section-tag { color:var(--gold-light); background:rgba(201,168,76,.1); border-color:rgba(201,168,76,.3); }
.contact .section-title { color:var(--white); }
.contact .section-title em { color:var(--gold-light); }
.contact-grid { display:grid; grid-template-columns:1fr 1.3fr; gap:5rem; align-items:start; }
.contact-lead { color:rgba(255,255,255,.6); margin-bottom:2rem; font-size:.95rem; }
.contact-details { display:flex; flex-direction:column; gap:1.2rem; margin-bottom:2rem; }
.contact-item { display:flex; align-items:center; gap:1rem; }
.contact-icon { flex-shrink:0; color:var(--gold-light); }
.contact-item strong { display:block; font-size:.78rem; text-transform:uppercase; letter-spacing:.1em; color:var(--gold); margin-bottom:.2rem; }
.contact-item a { color:rgba(255,255,255,.8); text-decoration:none; font-size:.92rem; transition:color .2s; }
.contact-item a:hover { color:var(--gold-light); }
.social-links { display:flex; gap:.75rem; }
.social-link {
  width:40px; height:40px; background:rgba(255,255,255,.07);
  border:1px solid rgba(201,168,76,.25); border-radius:8px;
  display:flex; align-items:center; justify-content:center;
  color:rgba(255,255,255,.55); text-decoration:none; transition:all .3s;
}
.social-link svg { width:16px; height:16px; }
.social-link:hover { background:var(--gold-glow); border-color:var(--gold); color:var(--gold-light); }
.contact-form-wrap {
  background:var(--white); border:1.5px solid var(--border);
  border-radius:18px; padding:2.5rem; box-shadow:var(--shadow-md);
}
.contact-form h3 { font-size:1.3rem; font-weight:700; color:var(--dark); margin-bottom:1.5rem; }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:1rem; }
.form-group { display:flex; flex-direction:column; gap:.45rem; margin-bottom:1rem; }
.form-group label { font-size:.78rem; text-transform:uppercase; letter-spacing:.08em; color:var(--gold-deep); font-weight:600; }
.form-group input, .form-group select, .form-group textarea {
  background:var(--cream); border:1.5px solid rgba(184,146,42,.2);
  border-radius:7px; padding:.75rem 1rem;
  color:var(--dark); font-family:'Inter',sans-serif; font-size:.9rem;
  transition:border-color .2s, background .2s, box-shadow .2s; outline:none; width:100%;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color:var(--gold); background:var(--gold-pale);
  box-shadow:0 0 0 3px rgba(201,168,76,.12);
}
.form-group select option { background:var(--white); color:var(--dark); }
.form-group textarea { resize:vertical; min-height:100px; }

/* ── FOOTER ──────────────────── */
.footer { background:var(--dark); border-top:1px solid rgba(201,168,76,.2); padding:4rem 0 2rem; }
.footer-grid { display:grid; grid-template-columns:2fr 1fr 1fr 1.5fr; gap:3rem; margin-bottom:3rem; }
.footer .logo-text { color:var(--white); }
.footer .logo-accent { color:var(--gold-light); }
.footer-brand p { color:rgba(255,255,255,.4); font-size:.87rem; margin-top:1rem; max-width:280px; line-height:1.7; }
.footer-logo { margin-bottom:.5rem; }
.footer-links h4, .footer-contact h4 { color:var(--gold-light); font-size:.8rem; text-transform:uppercase; letter-spacing:.1em; margin-bottom:1.2rem; }
.footer-links ul { list-style:none; display:flex; flex-direction:column; gap:.55rem; }
.footer-links a { color:rgba(255,255,255,.45); text-decoration:none; font-size:.87rem; transition:color .2s; }
.footer-links a:hover { color:var(--gold-light); }
.footer-contact p { margin-bottom:.5rem; }
.footer-contact a { color:rgba(255,255,255,.45); text-decoration:none; font-size:.87rem; transition:color .2s; }
.footer-contact a:hover { color:var(--gold-light); }
.footer-social { margin-top:1rem; }
.footer-bottom {
  border-top:1px solid rgba(255,255,255,.07); padding-top:1.5rem;
  display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:.5rem;
}
.footer-bottom p { color:rgba(255,255,255,.28); font-size:.82rem; }

/* ── NAV DROPDOWN ────────────── */
.nav-dropdown { position:relative; }
.nav-dropdown-toggle { display:flex; align-items:center; gap:.3rem; cursor:pointer; }
.dropdown-arrow { transition:transform .25s ease; flex-shrink:0; }
.nav-dropdown:hover .dropdown-arrow { transform:rotate(180deg); }
.nav-dropdown-menu {
  display:none; list-style:none;
  position:absolute; top:calc(100% + .7rem); left:50%; transform:translateX(-50%);
  min-width:200px; background:var(--white);
  border:1px solid var(--border); border-radius:12px;
  box-shadow:0 12px 40px rgba(184,146,42,.18); padding:.5rem 0; z-index:1001;
}
.nav-dropdown-menu::before {
  content:''; position:absolute; top:-6px; left:50%; transform:translateX(-50%);
  width:12px; height:12px; background:var(--white);
  border-left:1px solid var(--border); border-top:1px solid var(--border);
  rotate:45deg;
}
.nav-dropdown:hover .nav-dropdown-menu { display:block; }
.nav-dropdown-menu li a {
  display:block; padding:.65rem 1.3rem;
  font-size:.86rem; color:var(--body-text) !important;
  font-weight:500; transition:background .18s, color .18s;
  border-radius:7px; margin:0 .35rem; text-decoration:none;
}
.nav-dropdown-menu li a:hover { background:var(--gold-pale); color:var(--gold-deep) !important; }

/* ── FOUNDER SECTION ─────────── */
.founder { background:var(--cream); }

/* ─ Bio wrap (photo + text) */
.founder-bio-wrap {
  display:grid; grid-template-columns:300px 1fr; gap:3rem;
  align-items:start; margin-bottom:0;
}

/* Photo column */
.founder-photo-col { display:flex; justify-content:center; }
.founder-photo-frame {
  position:relative; width:280px; flex-shrink:0;
}
.founder-photo-img {
  width:100%; aspect-ratio:3/4; object-fit:cover; object-position:top;
  border-radius:20px; display:block;
  border:3px solid var(--border);
  box-shadow:var(--shadow-lg);
}
.founder-photo-fallback {
  display:none; /* shown via onerror JS */
  width:100%; aspect-ratio:3/4; border-radius:20px;
  background:linear-gradient(145deg, var(--gold-deep), var(--gold-light));
  align-items:center; justify-content:center;
  font-family:'Playfair Display',serif; font-size:4rem; font-weight:900;
  color:var(--white); border:3px solid var(--border); box-shadow:var(--shadow-lg);
}
.founder-photo-badge {
  position:absolute; bottom:-1.2rem; left:50%; transform:translateX(-50%);
  display:flex; align-items:center; gap:.65rem; white-space:nowrap;
  background:linear-gradient(135deg, var(--gold-deep), var(--gold-light));
  color:var(--white); padding:.75rem 1.4rem; border-radius:12px;
  box-shadow:var(--shadow-lg); z-index:2;
}
.founder-photo-badge svg { flex-shrink:0; }
.founder-photo-badge strong { display:block; font-size:.88rem; font-weight:800; line-height:1.2; }
.founder-photo-badge small { font-size:.72rem; opacity:.85; }

/* Bio text column */
.founder-bio-col { padding-top:.5rem; }
.founder-bio-salutation {
  font-family:'Playfair Display',serif;
  font-size:clamp(1.8rem, 3.5vw, 2.6rem); font-weight:900;
  color:var(--dark); line-height:1.1; margin-bottom:.4rem;
}
.founder-bio-subtitle {
  font-size:.82rem; font-weight:600; letter-spacing:.05em;
  color:var(--gold-deep); text-transform:uppercase; margin-bottom:1.6rem;
}
.founder-bio-text {
  font-size:clamp(.88rem, 1.1vw, .97rem); color:var(--muted);
  line-height:1.95; margin-bottom:2rem;
  border-left:3px solid var(--gold); padding-left:1.4rem;
}
.founder-contact-row { display:flex; flex-wrap:wrap; gap:.6rem; margin-bottom:1.2rem; }
.founder-contact-chip {
  display:inline-flex; align-items:center; gap:.45rem;
  background:var(--white); border:1px solid var(--border);
  border-radius:99px; padding:.4rem 1rem;
  font-size:.78rem; font-weight:600; color:var(--dark);
  text-decoration:none; transition:border-color .2s, background .2s, color .2s;
  box-shadow:var(--shadow-sm);
}
.founder-contact-chip svg { color:var(--gold-deep); flex-shrink:0; }
.founder-contact-chip:hover { border-color:var(--gold); background:var(--gold-pale); color:var(--gold-deep); }
.founder-lang-row { display:flex; align-items:center; gap:.5rem; flex-wrap:wrap; margin-top:.5rem; }
.founder-lang-label { font-size:.82rem; font-weight:700; color:var(--dark); }
.founder-lang-chip {
  background:linear-gradient(135deg, var(--gold-deep), var(--gold-light));
  color:var(--white); border-radius:99px; padding:.22rem .85rem;
  font-size:.75rem; font-weight:700;
}

/* ─ Credentials grid */
.founder-creds-grid {
  display:grid; grid-template-columns:repeat(3,1fr); gap:1.8rem;
}
.founder-cred-card {
  background:var(--white); border:1.5px solid var(--border-light);
  border-radius:18px; padding:2rem 1.8rem;
  box-shadow:var(--shadow-sm); transition:box-shadow .3s, border-color .3s;
}
.founder-cred-card:hover { box-shadow:var(--shadow-md); border-color:var(--gold); }
.founder-cred-icon {
  width:48px; height:48px; background:var(--gold-pale);
  border:1px solid var(--border); border-radius:12px;
  display:flex; align-items:center; justify-content:center;
  margin-bottom:1.1rem; color:var(--gold-deep);
}
.founder-cred-title {
  font-family:'Playfair Display',serif; font-size:1.05rem; font-weight:700;
  color:var(--dark); margin-bottom:1.1rem;
}
.founder-cred-list { list-style:none; display:flex; flex-direction:column; gap:1rem; }
.founder-cred-list li { display:flex; flex-direction:column; gap:.15rem; }
.founder-cred-list li strong { font-size:.87rem; color:var(--dark); font-weight:700; }
.founder-cred-list li span { font-size:.81rem; color:var(--muted); line-height:1.5; }
.founder-cred-list li .cred-meta {
  font-size:.75rem; color:var(--gold-deep); font-weight:600;
}
.founder-skill-chips { display:flex; flex-wrap:wrap; gap:.4rem; margin-bottom:1.1rem; }
.founder-skill-chips span {
  background:var(--gold-pale); border:1px solid var(--border);
  border-radius:99px; padding:.22rem .75rem;
  font-size:.74rem; color:var(--dark); font-weight:600;
}
.founder-cert-list { list-style:none; display:flex; flex-direction:column; gap:.45rem; }
.founder-cert-list li {
  font-size:.8rem; color:var(--muted); padding-left:1.2rem; position:relative; line-height:1.4;
}
.founder-cert-list li::before { content:'✓'; position:absolute; left:0; color:var(--gold-deep); font-weight:700; top:0; }

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE — Full-site fluid layout for desktop, tablet & mobile
   ══════════════════════════════════════════════════════════════ */

/* ── Tablet (≤ 1100px) ─────────────────────────────────── */
@media (max-width: 1100px) {
  .founder-bio-wrap { grid-template-columns: 240px 1fr; gap:2.5rem; }
  .founder-photo-frame { width:220px; }
}

/* ── Tablet landscape (≤ 1024px) ──────────────────────── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .deliverables-grid { grid-template-columns: repeat(3, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .impact-grid { grid-template-columns: repeat(2, 1fr); }
  .founder-creds-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── Tablet portrait + large mobile (≤ 768px) ─────────── */
@media (max-width: 768px) {
  :root { --section-pad: 3.5rem; }

  /* Navbar mobile drawer */
  .nav-links {
    display: none; flex-direction: column;
    position: fixed; top: 0; right: 0; bottom: 0; width: min(300px, 85vw);
    background: rgba(255,255,255,.98); backdrop-filter: blur(20px);
    padding: 5rem 1.75rem 2rem; gap: 1.2rem; z-index: 999;
    transform: translateX(100%); transition: transform .3s ease;
    border-left: 1px solid var(--border); box-shadow: -8px 0 40px rgba(184,146,42,.12);
    overflow-y: auto;
  }
  .nav-links a { color: var(--body-text) !important; }
  .nav-links a:hover { color: var(--gold-deep) !important; }
  .nav-links.open { display: flex; transform: translateX(0); }
  .hamburger { display: block; z-index: 1000; position: relative; }

  /* Mobile dropdowns — inline expand on tap */
  .nav-dropdown-menu {
    position: static; transform: none;
    box-shadow: none; border: none; border-radius: 0;
    background: transparent; padding: .2rem 0 .2rem 1rem;
    display: none;
  }
  .nav-dropdown-menu::before { display: none; }
  .nav-dropdown.open .nav-dropdown-menu { display: block; }
  .nav-dropdown.open .dropdown-arrow { transform: rotate(180deg); }
  .nav-dropdown-menu li a { padding: .45rem .5rem; font-size: .85rem; margin: 0; }

  /* Layout stacks */
  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
  .about-visual { height: 260px; }
  .about-badge-float { right: .75rem; bottom: -.75rem; }
  .services-grid { grid-template-columns: 1fr; }
  .web-cards { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .stats-container { grid-template-columns: repeat(2,1fr); }
  .stat-item:nth-child(2)::after,
  .stat-item:nth-child(4)::after { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.8rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .deliverables-grid { grid-template-columns: repeat(2,1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .pricing-cta-perks { grid-template-columns: 1fr; }
  .web-contact-strip { flex-direction: column; text-align: center; }
  .impact-grid { grid-template-columns: 1fr; }
  .impact-card { height: 220px; }
  .hero-dome { width: min(200px, 65vw); }

  /* Founder mobile */
  .founder-bio-wrap { grid-template-columns: 1fr; gap: 2rem; }
  .founder-photo-col { justify-content: center; }
  .founder-photo-frame { width: min(260px, 70vw); }
  .founder-photo-badge { position: static; transform: none; margin-top: 1rem; justify-content: center; border-radius: 10px; }
  .founder-bio-col { padding-top: 0; }
  .founder-creds-grid { grid-template-columns: 1fr; }
  .founder-contact-row { flex-direction: column; }
  .founder-contact-chip { width: 100%; justify-content: center; }
}

/* ── Mobile (≤ 480px) ──────────────────────────────────── */
@media (max-width: 480px) {
  :root { --section-pad: 2.8rem; }
  .hero-title { font-size: clamp(1.9rem, 8vw, 2.4rem); }
  .hero-subtitle { font-size: .88rem; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .hero-buttons a { width: 100%; max-width: 280px; justify-content: center; }
  .stats-container { grid-template-columns: 1fr 1fr; }
  .deliverables-grid { grid-template-columns: 1fr; }
  .pricing-cta-inner { padding: 2.5rem 1.25rem; }
  .section-title { font-size: clamp(1.6rem, 6vw, 2.2rem); }
  .about-pillars { grid-template-columns: 1fr; }
  .nav-container { padding: 0 1rem; }
  .founder-bio-text { padding-left: 1rem; }
  .founder-cred-card { padding: 1.5rem 1.2rem; }
}
