/* ============================================================
   SATHEESH MILK AGENCY — Premium Design System
   Aesthetic: Luxury Dairy — Cream, Blue, Gold editorial feel
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&family=Outfit:wght@300;400;500;600;700&family=Noto+Sans+Tamil:wght@400;500;600;700&display=swap');

/* ── CSS VARIABLES ── */
:root {
  --cream-0:   #FFFEFA;
  --cream-1:   #FEF9ED;
  --cream-2:   #FAF3DB;
  --cream-3:   #F2E8C4;
  --blue-0:    #EBF4FF;
  --blue-1:    #C7DFFF;
  --blue-2:    #3B82F6;
  --blue-3:    #1D4ED8;
  --blue-4:    #1E3A5F;
  --navy:      #0F2340;
  --gold:      #C9962A;
  --gold-lt:   #FFF0C2;
  --white:     #FFFFFF;
  --slate-1:   #64748B;
  --slate-2:   #94A3B8;
  --green:     #22C55E;
  --green-dk:  #16A34A;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Outfit', sans-serif;
  --font-tamil:   'Noto Sans Tamil', sans-serif;

  --radius-sm:  10px;
  --radius-md:  18px;
  --radius-lg:  28px;
  --radius-xl:  40px;
  --radius-full: 9999px;

  --shadow-sm:  0 2px 12px rgba(15,35,64,0.06);
  --shadow-md:  0 6px 28px rgba(15,35,64,0.10);
  --shadow-lg:  0 16px 56px rgba(15,35,64,0.13);
  --shadow-blue:0 8px 32px rgba(59,130,246,0.20);
  --shadow-gold:0 8px 32px rgba(201,150,42,0.25);

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --spring:     0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--font-body);
  background: var(--cream-0);
  color: var(--navy);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--cream-1); }
::-webkit-scrollbar-thumb { background: var(--blue-1); border-radius: 99px; }
::-webkit-scrollbar-thumb:hover { background: var(--blue-2); }

/* ── TYPOGRAPHY SCALE ── */
.t-overline {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue-2);
}
.t-display {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.01em;
}
.t-subhead {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--slate-1);
  line-height: 1.7;
}
.t-tamil {
  font-family: var(--font-tamil);
}

/* ── UTILITY ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.section-pad { padding: 100px 0; }
.section-pad-lg { padding: 120px 0; }

.text-center { text-align: center; }

/* ── SECTION HEADER ── */
.section-header {
  max-width: 680px;
  margin: 0 auto 72px;
  text-align: center;
}
.section-header .t-overline { display: block; margin-bottom: 14px; }
.section-header .t-display  { font-size: clamp(2.4rem, 5vw, 3.6rem); margin-bottom: 18px; color: var(--navy); }
.section-header .t-subhead  { font-size: 1.05rem; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: none;
  outline: none;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--blue-3);
  color: var(--white);
  box-shadow: var(--shadow-blue);
}
.btn-primary:hover {
  background: var(--blue-4);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(59,130,246,0.30);
}
.btn-whatsapp {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(34,197,94,0.28);
}
.btn-whatsapp:hover {
  background: var(--green-dk);
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(34,197,94,0.36);
}
.btn-outline {
  background: transparent;
  color: var(--blue-3);
  border: 1.5px solid var(--blue-2);
}
.btn-outline:hover {
  background: var(--blue-0);
  transform: translateY(-2px);
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, #E8B84B 100%);
  color: var(--white);
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover { transform: translateY(-2px); opacity: 0.92; }

/* ── CARDS ── */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid rgba(15,35,64,0.06);
  overflow: hidden;
}
.card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

/* ── BADGE ── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 600;
}
.badge-blue  { background: var(--blue-0); color: var(--blue-3); border: 1px solid var(--blue-1); }
.badge-gold  { background: var(--gold-lt); color: var(--gold); border: 1px solid #F2D98A; }
.badge-green { background: #DCFCE7; color: var(--green-dk); border: 1px solid #BBF7D0; }

/* ============================================================
   NAVBAR
   ============================================================ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 24px;
  transition: var(--transition);
}
#navbar.scrolled {
  background: rgba(255,254,250,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(15,35,64,0.07), var(--shadow-sm);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-logo-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--blue-3) 0%, var(--blue-2) 100%);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-blue);
  flex-shrink: 0;
}
.nav-logo-icon svg { width: 24px; height: 24px; }
.nav-logo-text   { font-family: var(--font-display); font-size: 1.15rem; font-weight: 700; color: var(--navy); line-height: 1.1; }
.nav-logo-sub    { font-size: 0.7rem; color: var(--blue-2); font-weight: 500; letter-spacing: 0.04em; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--slate-1);
  transition: var(--transition);
}
.nav-links a:hover, .nav-links a.active {
  color: var(--blue-3);
  background: var(--blue-0);
}

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

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius-sm);
  border: none;
  background: transparent;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--navy);
  border-radius: 99px;
  transition: var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0;
  background: rgba(255,254,250,0.97);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(15,35,64,0.07);
  z-index: 999;
  padding: 16px 24px 24px;
  box-shadow: var(--shadow-lg);
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}
.mobile-menu.open {
  display: block;
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}
.mobile-menu a {
  display: block;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-weight: 500;
  color: var(--navy);
  transition: var(--transition);
}
.mobile-menu a:hover { background: var(--blue-0); color: var(--blue-3); }
.mobile-menu .mobile-ctas {
  display: flex; gap: 10px; margin-top: 12px; padding-top: 12px;
  border-top: 1px solid rgba(15,35,64,0.07);
}
.mobile-menu .mobile-ctas .btn { flex: 1; justify-content: center; }

/* ============================================================
   HERO
   ============================================================ */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--cream-0);
  padding-top: 72px;
}

/* Layered background */
.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}
.hero-bg-mesh {
  position: absolute;
  width: 900px; height: 900px;
  border-radius: 50%;
  top: -200px; right: -200px;
  background: radial-gradient(ellipse at center, rgba(193,214,255,0.45) 0%, rgba(235,244,255,0.2) 50%, transparent 75%);
  animation: driftBlob 12s ease-in-out infinite;
}
.hero-bg-mesh-2 {
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  bottom: -100px; left: -100px;
  background: radial-gradient(ellipse at center, rgba(250,243,219,0.7) 0%, transparent 70%);
  animation: driftBlob 15s ease-in-out infinite reverse;
}
.hero-bg-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(15,35,64,0.055) 1.5px, transparent 1.5px);
  background-size: 38px 38px;
  opacity: 0.7;
}
.hero-bg-lines {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 49.5%, rgba(59,130,246,0.04) 49.5%, rgba(59,130,246,0.04) 50.5%, transparent 50.5%);
  background-size: 80px 80px;
}

@keyframes driftBlob {
  0%,100% { transform: translate(0,0) scale(1); }
  33%      { transform: translate(30px,-20px) scale(1.05); }
  66%      { transform: translate(-15px,25px) scale(0.97); }
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  min-height: calc(100vh - 72px);
  padding-top: 40px;
  padding-bottom: 80px;
}

.hero-left { display: flex; flex-direction: column; gap: 0; }

.hero-eyebrow {
  margin-bottom: 22px;
  display: flex; align-items: center; gap: 10px;
  opacity: 0;
  animation: fadeUp 0.7s 0.2s forwards;
}
.eyebrow-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 3px rgba(34,197,94,0.2);
  animation: pulseGreen 2s ease-in-out infinite;
}
@keyframes pulseGreen {
  0%,100% { box-shadow: 0 0 0 3px rgba(34,197,94,0.2); }
  50%      { box-shadow: 0 0 0 7px rgba(34,197,94,0.1); }
}

.hero-title {
  opacity: 0;
  animation: fadeUp 0.8s 0.35s forwards;
  margin-bottom: 10px;
}
.hero-title .line-en {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 700;
  line-height: 1.0;
  color: var(--navy);
  display: block;
}
.hero-title .line-blue {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 700;
  line-height: 1.0;
  color: var(--blue-3);
  display: block;
  font-style: italic;
}
.hero-title .line-ta {
  font-family: var(--font-tamil);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 500;
  color: var(--slate-1);
  display: block;
  margin-top: 8px;
  line-height: 1.4;
}

.hero-tagline {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--slate-1);
  line-height: 1.6;
  margin: 20px 0 10px;
  opacity: 0;
  animation: fadeUp 0.8s 0.5s forwards;
}
.hero-tagline strong { color: var(--blue-3); font-weight: 600; }

.hero-trust {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeUp 0.8s 0.62s forwards;
}
.stars { display: flex; gap: 2px; }
.star-icon { color: var(--gold); font-size: 16px; }
.trust-text { font-size: 0.875rem; font-weight: 500; color: var(--slate-1); }
.trust-text strong { color: var(--navy); }

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 44px;
  opacity: 0;
  animation: fadeUp 0.8s 0.75s forwards;
}

.hero-stats {
  display: flex;
  gap: 36px;
  opacity: 0;
  animation: fadeUp 0.8s 0.9s forwards;
  padding-top: 32px;
  border-top: 1px solid rgba(15,35,64,0.08);
}
.stat-item { }
.stat-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--blue-3);
  line-height: 1;
}
.stat-label {
  font-size: 0.75rem;
  color: var(--slate-2);
  font-weight: 500;
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* Hero Right — visual */
.hero-right {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  opacity: 0;
  animation: fadeIn 1.1s 0.5s forwards;
}

.hero-visual {
  position: relative;
  width: 440px;
  height: 520px;
}

/* Outer decorative rings */
.hero-ring {
  position: absolute;
  border-radius: 50%;
  border: 1.5px dashed rgba(59,130,246,0.18);
  animation: spinSlow 20s linear infinite;
}
.hero-ring:nth-child(1) { inset: 0; }
.hero-ring:nth-child(2) {
  inset: 30px;
  border-color: rgba(201,150,42,0.15);
  animation-direction: reverse;
  animation-duration: 28s;
}

/* Central milk bottle illustration */
.hero-centerpiece {
  position: absolute;
  inset: 60px;
  background: linear-gradient(160deg, #FFFFFF 0%, var(--cream-1) 60%, var(--blue-0) 100%);
  border-radius: 50%;
  box-shadow: 0 30px 80px rgba(59,130,246,0.18), 0 0 0 1px rgba(255,255,255,0.8) inset;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  animation: heroFloat 5s ease-in-out infinite;
  overflow: hidden;
}
.hero-centerpiece::before {
  content: '';
  position: absolute;
  top: -40%;
  left: -40%;
  width: 80%;
  height: 80%;
  background: radial-gradient(circle, rgba(255,255,255,0.7) 0%, transparent 70%);
  border-radius: 50%;
}

@keyframes heroFloat {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-14px); }
}
@keyframes spinSlow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* SVG milk drop in center */
.hero-milk-svg { position: relative; z-index: 1; }

.hero-brand-label {
  position: relative; z-index: 1;
  text-align: center;
  margin-top: 10px;
}
.hero-brand-label .brand-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  display: block;
}
.hero-brand-label .brand-sub {
  font-size: 0.72rem;
  color: var(--blue-2);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* Floating info chips around center */
.hero-chip {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 10px 14px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(15,35,64,0.06);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--navy);
  white-space: nowrap;
  animation: heroFloat 5s ease-in-out infinite;
}
.hero-chip:nth-child(4) { top: 60px; right: -10px; animation-delay: 0.8s; }
.hero-chip:nth-child(5) { bottom: 90px; left: -20px; animation-delay: 1.5s; }
.hero-chip:nth-child(6) { top: 50%; right: -30px; animation-delay: 2.2s; }
.chip-icon {
  width: 28px; height: 28px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
}

/* Scroll cue */
.hero-scroll-cue {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  opacity: 0;
  animation: fadeIn 1s 1.8s forwards;
  cursor: pointer;
}
.scroll-mouse {
  width: 24px; height: 38px;
  border: 2px solid rgba(15,35,64,0.2);
  border-radius: 12px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 6px;
}
.scroll-wheel {
  width: 3px; height: 8px;
  background: var(--blue-2);
  border-radius: 99px;
  animation: scrollWheel 1.8s ease-in-out infinite;
}
@keyframes scrollWheel {
  0%   { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(12px); opacity: 0; }
}
.scroll-label {
  font-size: 0.65rem;
  color: var(--slate-2);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
}

/* ============================================================
   MARQUEE BAND
   ============================================================ */
.marquee-band {
  background: var(--navy);
  padding: 16px 0;
  overflow: hidden;
  position: relative;
}
.marquee-track {
  display: flex;
  gap: 48px;
  animation: marquee 22s linear infinite;
  width: max-content;
}
.marquee-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  white-space: nowrap;
}
.marquee-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--gold); }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   ABOUT
   ============================================================ */
#about {
  background: var(--white);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
#about::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 500px; height: 500px;
  background: radial-gradient(circle, var(--blue-0) 0%, transparent 70%);
  transform: translate(30%, -30%);
  pointer-events: none;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-visual {
  position: relative;
}
.about-main-card {
  background: linear-gradient(160deg, var(--blue-0) 0%, var(--cream-1) 100%);
  border-radius: var(--radius-xl);
  padding: 40px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(59,130,246,0.1);
}
.about-main-card::before {
  content: '';
  position: absolute;
  bottom: -30px; right: -30px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: rgba(201,150,42,0.08);
}
.about-logo-block {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}
.about-logo-icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, var(--blue-3), var(--blue-2));
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-blue);
  flex-shrink: 0;
}
.about-logo-icon span {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
}

.about-highlights {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.highlight-row {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.7);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.8);
  transition: var(--transition);
}
.highlight-row:hover {
  background: var(--white);
  box-shadow: var(--shadow-sm);
}
.hl-icon {
  width: 32px; height: 32px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
}
.hl-text { font-size: 0.875rem; font-weight: 500; color: var(--navy); }

/* Floating stat cards */
.about-stat-card {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(15,35,64,0.05);
}
.about-stat-card.card-years {
  top: -20px; right: -20px;
  text-align: center;
}
.about-stat-card.card-customers {
  bottom: -20px; left: -20px;
}
.stat-big { font-family: var(--font-display); font-size: 2rem; font-weight: 700; color: var(--blue-3); line-height: 1; }
.stat-tiny { font-size: 0.7rem; color: var(--slate-2); font-weight: 500; text-transform: uppercase; letter-spacing: 0.06em; margin-top: 2px; }

/* About text */
.about-content {}
.about-content .t-display { font-size: clamp(2rem, 4.5vw, 3.2rem); margin-bottom: 20px; }
.about-content .about-text {
  color: var(--slate-1);
  line-height: 1.8;
  font-size: 0.95rem;
  margin-bottom: 14px;
}
.about-address-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue-0);
  border: 1px solid var(--blue-1);
  border-radius: var(--radius-md);
  padding: 12px 18px;
  font-size: 0.85rem;
  color: var(--blue-4);
  font-weight: 500;
  margin-top: 20px;
}

/* ============================================================
   SNP DAIRY SECTION
   ============================================================ */
#snp-dairy {
  background: linear-gradient(160deg, var(--cream-1) 0%, var(--blue-0) 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.snp-bg-decor {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.snp-bg-circle {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(59,130,246,0.08) 0%, transparent 70%);
}
.snp-bg-circle.c1 { width: 600px; height: 600px; top: -100px; right: -100px; }
.snp-bg-circle.c2 { width: 400px; height: 400px; bottom: -80px; left: -80px; background: radial-gradient(circle, rgba(34,197,94,0.07) 0%, transparent 70%); }

.snp-hero-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(59,130,246,0.08);
  overflow: hidden;
  margin-bottom: 48px;
}
.snp-hero-top {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue-4) 60%, #1E4FA0 100%);
  padding: 48px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 36px;
  align-items: center;
}
.snp-brand-mark {
  width: 88px; height: 88px;
  background: linear-gradient(135deg, var(--blue-2) 0%, #60A5FA 100%);
  border-radius: var(--radius-lg);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
  flex-shrink: 0;
}
.snp-brand-mark-text {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.snp-brand-mark-sub {
  font-size: 0.58rem;
  color: rgba(255,255,255,0.7);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 2px;
}
.snp-hero-title { font-family: var(--font-display); font-size: 2.4rem; font-weight: 700; color: var(--white); }
.snp-hero-sub   { font-size: 0.95rem; color: rgba(255,255,255,0.65); margin-top: 6px; line-height: 1.6; }
.snp-franchise-badge {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  text-align: center;
  backdrop-filter: blur(10px);
}
.sfb-icon { font-size: 1.5rem; margin-bottom: 4px; }
.sfb-label { font-size: 0.72rem; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 0.08em; }
.sfb-value { font-size: 0.9rem; font-weight: 700; color: var(--white); margin-top: 2px; }

.snp-hero-body { padding: 40px 48px; }
.snp-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}
.snp-feature {
  background: var(--cream-0);
  border: 1px solid rgba(15,35,64,0.07);
  border-radius: var(--radius-md);
  padding: 20px;
  transition: var(--transition);
}
.snp-feature:hover {
  background: var(--blue-0);
  border-color: var(--blue-1);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.snp-feat-icon { font-size: 1.5rem; margin-bottom: 10px; }
.snp-feat-title { font-size: 0.9rem; font-weight: 600; color: var(--navy); margin-bottom: 4px; }
.snp-feat-desc  { font-size: 0.8rem; color: var(--slate-1); line-height: 1.5; }

.snp-products-strip { }
.snp-products-label { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--slate-2); margin-bottom: 12px; }
.snp-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.snp-tag {
  padding: 6px 14px;
  background: var(--white);
  border: 1px solid rgba(15,35,64,0.08);
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--navy);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.snp-tag:hover { background: var(--blue-0); border-color: var(--blue-1); color: var(--blue-3); }

.snp-cta-row {
  display: flex;
  gap: 12px;
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid rgba(15,35,64,0.07);
}

/* ============================================================
   SERVICES
   ============================================================ */
#services {
  background: var(--white);
  padding: 100px 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.service-card {
  background: var(--cream-0);
  border: 1px solid rgba(15,35,64,0.07);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  transition: var(--spring);
  cursor: default;
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  background: linear-gradient(90deg, var(--blue-3), var(--blue-2));
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}
.service-card:hover {
  background: var(--white);
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
  border-color: transparent;
}
.service-card:hover::after { transform: scaleX(1); }

.svc-icon-wrap {
  width: 52px; height: 52px;
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
  transition: var(--transition);
}
.service-card:hover .svc-icon-wrap { transform: scale(1.1) rotate(-5deg); }
.svc-title { font-size: 0.95rem; font-weight: 600; color: var(--navy); margin-bottom: 8px; }
.svc-desc  { font-size: 0.825rem; color: var(--slate-1); line-height: 1.6; }

/* ============================================================
   PRODUCTS
   ============================================================ */
#products {
  background: linear-gradient(180deg, var(--cream-0) 0%, var(--cream-1) 100%);
  padding: 100px 0;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.product-card {
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  cursor: default;
  transition: var(--spring);
  border: 1px solid rgba(15,35,64,0.06);
}
.product-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-lg);
}
.product-card .prod-tag {
  position: absolute;
  top: 16px; right: 16px;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-full);
}
.product-card .prod-emoji { font-size: 3.2rem; margin-bottom: 16px; display: block; }
.product-card .prod-name  {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.product-card .prod-desc  { font-size: 0.84rem; color: var(--slate-1); line-height: 1.6; }

.prod-decor {
  position: absolute;
  bottom: -20px; right: -20px;
  width: 100px; height: 100px;
  border-radius: 50%;
  opacity: 0.5;
  transition: var(--transition);
}
.product-card:hover .prod-decor { transform: scale(1.3); opacity: 0.7; }

/* ============================================================
   GALLERY
   ============================================================ */
#gallery {
  background: var(--white);
  padding: 100px 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(3, 230px);
  grid-template-areas:
    "hero hero a b"
    "hero hero a c"
    "d    d    e f";
  gap: 20px;
}

/* Hero + tile placement — storefront becomes the featured image */
.gallery-item.gi-hero { grid-area: hero; }
.gallery-item.gi-a    { grid-area: a; }
.gallery-item.gi-b    { grid-area: b; }
.gallery-item.gi-c    { grid-area: c; }
.gallery-item.gi-d    { grid-area: d; }
.gallery-item.gi-e    { grid-area: e; }
.gallery-item.gi-f    { grid-area: f; }

.gallery-item {
  border-radius: 22px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  border: 1px solid rgba(15,35,64,0.06);
  box-shadow: var(--shadow-sm);
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.34,1.2,0.64,1), box-shadow 0.35s ease;
}
.gallery-grid.visible .gallery-item { opacity: 1; transform: translateY(0); }
.gallery-grid.visible .gallery-item:nth-child(1) { transition-delay: 0.04s; }
.gallery-grid.visible .gallery-item:nth-child(2) { transition-delay: 0.11s; }
.gallery-grid.visible .gallery-item:nth-child(3) { transition-delay: 0.18s; }
.gallery-grid.visible .gallery-item:nth-child(4) { transition-delay: 0.25s; }
.gallery-grid.visible .gallery-item:nth-child(5) { transition-delay: 0.32s; }
.gallery-grid.visible .gallery-item:nth-child(6) { transition-delay: 0.39s; }
.gallery-grid.visible .gallery-item:nth-child(7) { transition-delay: 0.46s; }

.gallery-item:hover { box-shadow: var(--shadow-lg); z-index: 2; }

.gallery-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.4,0,0.2,1);
}
.gallery-item:hover img { transform: scale(1.06); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,35,64,0.68) 0%, rgba(15,35,64,0.12) 55%, transparent 78%);
  opacity: 0;
  transition: opacity 0.35s ease;
  display: flex;
  align-items: flex-end;
  padding: 22px;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.01em;
  transform: translateY(8px);
  transition: transform 0.35s ease;
}
.gallery-item:hover .gallery-overlay span { transform: translateY(0); }
.gallery-item.gi-hero .gallery-overlay span { font-size: 1.35rem; }

/* ============================================================
   DELIVERY
   ============================================================ */
#delivery {
  background: linear-gradient(160deg, var(--blue-0) 0%, var(--cream-0) 100%);
  padding: 100px 0;
}

.delivery-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }

.delivery-features { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.delivery-feat {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 22px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(15,35,64,0.05);
  transition: var(--transition);
}
.delivery-feat:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.df-icon {
  width: 44px; height: 44px;
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 12px;
}
.df-title { font-size: 0.9rem; font-weight: 600; color: var(--navy); margin-bottom: 5px; }
.df-desc  { font-size: 0.8rem; color: var(--slate-1); line-height: 1.5; }

.delivery-area-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 36px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(15,35,64,0.06);
}
.dac-header {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 24px;
}
.dac-icon {
  width: 44px; height: 44px;
  background: var(--blue-0);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
}
.dac-title { font-size: 1.1rem; font-weight: 700; color: var(--navy); }
.dac-sub   { font-size: 0.75rem; color: var(--slate-2); }

.area-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.area-pill {
  padding: 6px 12px;
  background: var(--blue-0);
  border: 1px solid var(--blue-1);
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--blue-3);
}

.notice-box {
  background: var(--gold-lt);
  border: 1px solid #F2D98A;
  border-radius: var(--radius-md);
  padding: 16px;
  margin-bottom: 20px;
}
.notice-box p:first-child { font-size: 0.85rem; font-weight: 600; color: #92660A; margin-bottom: 4px; }
.notice-box p:last-child  { font-size: 0.8rem; color: #A37719; line-height: 1.5; }
.delivery-ctas { display: flex; gap: 10px; }
.delivery-ctas .btn { flex: 1; justify-content: center; }

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
#why-us { background: var(--white); padding: 100px 0; }

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.why-card {
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: var(--spring);
  cursor: default;
  position: relative;
  overflow: hidden;
}
.why-card.standard {
  background: var(--cream-0);
  border: 1px solid rgba(15,35,64,0.07);
}
.why-card.featured {
  background: linear-gradient(145deg, var(--navy) 0%, var(--blue-4) 100%);
  color: var(--white);
  box-shadow: var(--shadow-lg);
}
.why-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.why-card.standard:hover { background: var(--white); }

.why-icon {
  width: 48px; height: 48px;
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 16px;
}
.why-card.standard .why-icon { background: var(--blue-0); }
.why-card.featured .why-icon { background: rgba(255,255,255,0.12); }

.why-title { font-size: 0.95rem; font-weight: 700; margin-bottom: 8px; }
.why-card.standard .why-title { color: var(--navy); }
.why-card.featured .why-title { color: var(--white); }

.why-desc { font-size: 0.82rem; line-height: 1.6; }
.why-card.standard .why-desc { color: var(--slate-1); }
.why-card.featured .why-desc { color: rgba(255,255,255,0.65); }

.why-card.featured::after {
  content: '';
  position: absolute;
  bottom: -20px; right: -20px;
  width: 80px; height: 80px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
}

/* ============================================================
   MAP SECTION
   ============================================================ */
#map-section { background: var(--cream-0); padding: 100px 0; }

.map-grid { display: grid; grid-template-columns: 380px 1fr; gap: 32px; align-items: start; }

.map-info-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(15,35,64,0.06);
}
.map-info-header {
  background: linear-gradient(135deg, var(--navy), var(--blue-4));
  padding: 28px;
  color: var(--white);
}
.mih-icon { font-size: 1.8rem; margin-bottom: 8px; }
.mih-title { font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; margin-bottom: 4px; }
.mih-sub   { font-size: 0.82rem; opacity: 0.65; }
.map-info-body { padding: 28px; }
.info-row {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(15,35,64,0.06);
}
.info-row:last-of-type { border-bottom: none; }
.ir-icon {
  width: 34px; height: 34px;
  background: var(--blue-0);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.ir-label { font-size: 0.7rem; color: var(--slate-2); text-transform: uppercase; letter-spacing: 0.08em; font-weight: 600; margin-bottom: 2px; }
.ir-value { font-size: 0.875rem; color: var(--navy); font-weight: 500; line-height: 1.5; }
.open-badge {
  display: inline-flex; align-items: center; gap: 5px;
  background: #DCFCE7; color: var(--green-dk);
  border: 1px solid #BBF7D0;
  border-radius: var(--radius-full);
  padding: 3px 10px;
  font-size: 0.72rem;
  font-weight: 700;
}
.map-ctas { display: flex; flex-direction: column; gap: 10px; margin-top: 24px; }
.map-ctas .btn { justify-content: center; }

.map-embed-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(15,35,64,0.06);
  background: var(--blue-0);
}
.map-embed-wrap iframe { display: block; width: 100%; height: 480px; border: none; }
.map-embed-footer {
  background: var(--white);
  padding: 14px 20px;
  display: flex; align-items: center; justify-content: space-between;
}
.map-embed-footer span { font-size: 0.8rem; color: var(--slate-1); }
.map-embed-footer a { font-size: 0.8rem; font-weight: 600; color: var(--blue-3); }

/* ============================================================
   CONTACT
   ============================================================ */
#contact {
  background: linear-gradient(160deg, var(--cream-1) 0%, var(--blue-0) 100%);
  padding: 100px 0;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}
.contact-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(15,35,64,0.06);
  display: flex; flex-direction: column;
  transition: var(--spring);
}
.contact-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.cc-icon {
  width: 48px; height: 48px;
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 16px;
}
.cc-type  { font-size: 0.7rem; color: var(--slate-2); text-transform: uppercase; letter-spacing: 0.1em; font-weight: 600; margin-bottom: 4px; }
.cc-value { font-size: 0.9rem; font-weight: 600; color: var(--navy); margin-bottom: 4px; word-break: break-all; }
.cc-sub   { font-size: 0.78rem; color: var(--slate-2); margin-bottom: 18px; flex: 1; }
.cc-btn   { display: inline-flex; align-items: center; justify-content: center; gap: 6px; padding: 10px; border-radius: var(--radius-sm); font-size: 0.8rem; font-weight: 600; transition: var(--transition); cursor: pointer; border: none; }

.hours-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue-3) 100%);
  border-radius: var(--radius-xl);
  padding: 52px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hours-banner::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
}
.hours-banner::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -40px;
  width: 250px; height: 250px;
  border-radius: 50%;
  background: rgba(255,255,255,0.03);
}
.hb-icon   { font-size: 2.4rem; margin-bottom: 12px; position: relative; z-index: 1; }
.hb-title  { font-family: var(--font-display); font-size: 2.4rem; font-weight: 700; color: var(--white); position: relative; z-index: 1; }
.hb-time   { font-size: 1.15rem; color: rgba(255,255,255,0.75); margin-top: 6px; font-weight: 500; position: relative; z-index: 1; }
.hb-sub    { font-size: 0.85rem; color: rgba(255,255,255,0.45); margin-top: 4px; position: relative; z-index: 1; }
.hb-btns   { display: flex; justify-content: center; gap: 14px; margin-top: 28px; position: relative; z-index: 1; }
.btn-white { background: var(--white); color: var(--blue-3); font-weight: 600; }
.btn-white:hover { background: var(--blue-0); transform: translateY(-2px); }

/* ============================================================
   FOOTER
   ============================================================ */
#footer {
  background: var(--navy);
  color: rgba(255,255,255,0.65);
  padding: 64px 0 0;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }

.footer-brand {}
.footer-logo {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 16px;
}
.footer-logo-icon {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--blue-2), #60A5FA);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.footer-logo-text  { font-family: var(--font-display); font-size: 1.05rem; font-weight: 700; color: var(--white); line-height: 1.1; }
.footer-logo-tamil { font-family: var(--font-tamil); font-size: 0.75rem; color: rgba(255,255,255,0.4); }
.footer-desc  { font-size: 0.85rem; line-height: 1.7; max-width: 280px; margin-bottom: 20px; }
.footer-franchise-pill {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(59,130,246,0.15);
  border: 1px solid rgba(59,130,246,0.25);
  border-radius: var(--radius-full);
  padding: 6px 14px;
  font-size: 0.76rem;
  color: rgba(255,255,255,0.75);
  font-weight: 500;
}
.fp-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green); animation: pulseGreen 2s ease-in-out infinite; }

.footer-col-title {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--white);
  margin-bottom: 18px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  transition: var(--transition);
}
.footer-links a:hover { color: var(--white); }

.footer-contact-list { display: flex; flex-direction: column; gap: 12px; }
.footer-contact-item {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: 0.84rem;
  color: rgba(255,255,255,0.55);
}
.fci-icon { opacity: 0.5; flex-shrink: 0; margin-top: 1px; }
.footer-contact-item a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-copy { font-size: 0.8rem; color: rgba(255,255,255,0.35); }
.footer-badge { font-size: 0.8rem; color: rgba(255,255,255,0.35); }

/* ============================================================
   FLOATING WHATSAPP
   ============================================================ */
.wa-float {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 500;
}
.wa-btn {
  width: 58px; height: 58px;
  background: var(--green);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(34,197,94,0.4);
  cursor: pointer;
  transition: var(--spring);
  position: relative;
}
.wa-btn:hover { transform: scale(1.12); box-shadow: 0 10px 36px rgba(34,197,94,0.5); }
.wa-btn svg { width: 28px; height: 28px; fill: white; }
.wa-ring {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(34,197,94,0.4);
  animation: waRing 2.5s ease-out infinite;
}
@keyframes waRing {
  0%   { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.6); opacity: 0; }
}
.wa-tooltip {
  position: absolute;
  right: 68px; top: 50%;
  transform: translateY(-50%);
  background: var(--navy);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  box-shadow: var(--shadow-md);
}
.wa-tooltip::after {
  content: '';
  position: absolute;
  right: -5px; top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-left-color: var(--navy);
  border-right: none;
}
.wa-float:hover .wa-tooltip { opacity: 1; }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.92); }
  to   { opacity: 1; transform: scale(1); }
}

/* Scroll-triggered reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1), transform 0.7s cubic-bezier(0.4,0,0.2,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }
.reveal-delay-7 { transition-delay: 0.7s; }
.reveal-delay-8 { transition-delay: 0.8s; }

/* ============================================================
   OFFICIAL BRANDING — LOGO INTEGRATION
   Icon containers now host the official logo image instead of the
   placeholder SVG mark. Backgrounds are neutralized to white so the
   logo's own artwork reads cleanly regardless of container context.
   ============================================================ */
.nav-logo-icon {
  background: var(--white);
  border: 1px solid rgba(15,35,64,0.08);
  box-shadow: 0 2px 10px rgba(15,35,64,0.08);
  overflow: hidden;
}
.nav-logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 3px;
}

.footer-logo-icon {
  background: var(--white);
  overflow: hidden;
}
.footer-logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 3px;
}

.about-logo-icon {
  background: var(--white);
  border: 1px solid rgba(15,35,64,0.08);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.about-logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 5px;
}

/* ============================================================
   OFFICIAL BRANDING — BANNER SECTION
   ============================================================ */
.brand-banner-section {
  background: var(--cream-0);
  padding: 56px 0 0;
}
.brand-banner-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(15,35,64,0.06);
  line-height: 0;
}
.brand-banner-img {
  display: block;
  width: 100%;
  height: auto;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .services-grid  { grid-template-columns: repeat(2, 1fr); }
  .why-grid       { grid-template-columns: repeat(2, 1fr); }
  .contact-cards  { grid-template-columns: repeat(2, 1fr); }
  .footer-grid    { grid-template-columns: 1fr 1fr; gap: 32px; }
  .map-grid       { grid-template-columns: 1fr; }
  .map-embed-wrap iframe { height: 360px; }
  .snp-features-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .hero-inner { grid-template-columns: 1fr; padding-top: 20px; }
  .hero-right { display: none; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-stat-card { display: none; }
  .delivery-grid  { grid-template-columns: 1fr; }
  .snp-hero-top   { grid-template-columns: auto 1fr; }
  .snp-franchise-badge { display: none; }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
    grid-template-areas:
      "hero hero"
      "b    c"
      "a    d"
      "e    f";
    gap: 16px;
  }
  .gallery-item { aspect-ratio: 1 / 1; }
  .gallery-item.gi-hero { aspect-ratio: 16 / 10; }
  .products-grid  { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .section-pad, .section-pad-lg { padding: 72px 0; }
  .section-header { margin-bottom: 48px; }
  .brand-banner-section { padding: 36px 0 0; }
  .brand-banner-card { border-radius: var(--radius-lg); }
  .hero-stats { gap: 24px; }
  .services-grid  { grid-template-columns: 1fr; }
  .why-grid       { grid-template-columns: 1fr; }
  .contact-cards  { grid-template-columns: 1fr; }
  .footer-grid    { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom  { flex-direction: column; gap: 6px; text-align: center; }
  .snp-hero-top   { padding: 28px; grid-template-columns: 1fr; }
  .snp-hero-body  { padding: 24px; }
  .snp-features-grid { grid-template-columns: 1fr; }
  .hours-banner   { padding: 36px 24px; }
  .hb-btns        { flex-direction: column; }
  .products-grid  { grid-template-columns: 1fr; }
  .delivery-features { grid-template-columns: 1fr; }
  .gallery-grid   { grid-template-columns: 1fr 1fr; gap: 12px; }
}
