/* ===== CSS CUSTOM PROPERTIES ===== */
:root {
  --saffron-50: #FFF3E0;
  --saffron-100: #FFE0B2;
  --saffron-300: #FFB74D;
  --saffron-500: #FF6B1A;
  --saffron-600: #F06000;
  --saffron-700: #E55A00;
  --saffron-900: #BF4800;

  --green-50: #E8F5E9;
  --green-400: #66BB6A;
  --green-500: #2E7D32;
  --green-700: #1B5E20;

  --gold-50: #FFF8E1;
  --gold-300: #FFD54F;
  --gold-500: #FFB300;
  --gold-700: #FF8F00;

  --neutral-50: #FAFAF7;
  --neutral-100: #F5F5F0;
  --neutral-200: #E8E8E3;
  --neutral-300: #D5D5D0;
  --neutral-400: #9E9E96;
  --neutral-500: #616158;
  --neutral-600: #3D3D35;
  --neutral-800: #1E1E1A;
  --neutral-900: #0F0F0C;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 999px;

  --shadow-sm: 0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  --shadow-md: 0 4px 16px rgba(0,0,0,.08);
  --shadow-lg: 0 8px 32px rgba(0,0,0,.10);
  --shadow-xl: 0 16px 48px rgba(0,0,0,.14);
  --shadow-glow: 0 8px 40px rgba(255,107,26,.25);

  --transition-fast: .2s cubic-bezier(.4,0,.2,1);
  --transition-smooth: .4s cubic-bezier(.4,0,.2,1);
  --transition-bounce: .5s cubic-bezier(.34,1.56,.64,1);
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--neutral-600);
  background: var(--neutral-50);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color var(--transition-fast); }
button { font-family: inherit; cursor: pointer; border: none; outline: none; }
ul { list-style: none; }
input, textarea { font-family: inherit; outline: none; }

::selection { background: var(--saffron-500); color: #fff; }
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--neutral-100); }
::-webkit-scrollbar-thumb { background: var(--saffron-300); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--saffron-500); }

/* ===== UTILITY ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-padding { padding: 100px 0; }
.text-gradient {
  background: linear-gradient(135deg, var(--saffron-500), var(--gold-500));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== ANIMATED BACKGROUND PATTERNS ===== */
.pattern-overlay {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(255,107,26,.04) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255,179,0,.04) 0%, transparent 50%),
    radial-gradient(circle at 60% 80%, rgba(46,125,50,.03) 0%, transparent 50%);
  pointer-events: none;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all var(--transition-smooth);
  background: #FFFAF4;
  box-shadow: 0 1px 0 rgba(0,0,0,.08);
}
.navbar.scrolled {
  background: #FFFAF4;
  box-shadow: 0 2px 24px rgba(0,0,0,.10);
  padding: 10px 0;
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-logo {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 2px 12px rgba(255,107,26,.2);
  transition: transform var(--transition-bounce);
}
.nav-logo:hover { transform: rotate(10deg) scale(1.05); }
.nav-brand-text {
  font-size: 22px;
  font-weight: 700;
  color: var(--neutral-800);
}
.nav-brand-text span { color: var(--saffron-500); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-links a {
  padding: 8px 20px;
  font-size: 14px;
  font-weight: 500;
  color: var(--neutral-500);
  border-radius: var(--radius-full);
  transition: all var(--transition-fast);
  position: relative;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--saffron-500);
  background: var(--saffron-50);
}
.nav-cta {
  padding: 10px 28px !important;
  background: var(--saffron-500) !important;
  color: #fff !important;
  font-weight: 600 !important;
  border-radius: var(--radius-full) !important;
  box-shadow: var(--shadow-glow);
  transition: all var(--transition-fast) !important;
}
.nav-cta:hover {
  background: var(--saffron-700) !important;
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(255,107,26,.35) !important;
}

/* Mobile Menu Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  padding: 8px;
  margin-right: -4px;
  z-index: 1001;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--neutral-800);
  border-radius: 2px;
  transition: all var(--transition-fast);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, var(--neutral-50) 0%, #fff 40%, var(--saffron-50) 100%);
}

/* Animated hero background */
.hero-bg-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .35;
  animation: orb-drift 12s ease-in-out infinite;
}
.hero-orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255,107,26,.22), transparent 70%);
  top: -15%; right: -8%;
  animation-duration: 14s;
}
.hero-orb-2 {
  width: 450px; height: 450px;
  background: radial-gradient(circle, rgba(255,179,0,.18), transparent 70%);
  bottom: -10%; left: 5%;
  animation-duration: 18s;
  animation-delay: -4s;
}
.hero-orb-3 {
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(46,125,50,.10), transparent 70%);
  top: 30%; left: 35%;
  animation-duration: 20s;
  animation-delay: -8s;
}
.hero-orb-4 {
  width: 250px; height: 250px;
  background: radial-gradient(circle, rgba(255,179,0,.12), transparent 70%);
  top: 10%; left: 15%;
  animation-duration: 16s;
  animation-delay: -2s;
}
@keyframes orb-drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(30px, -40px) scale(1.08); }
  50% { transform: translate(-20px, 20px) scale(.94); }
  75% { transform: translate(15px, 30px) scale(1.04); }
}

/* Floating particles */
.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-particle {
  position: absolute;
  border-radius: 50%;
  opacity: 0;
  animation: particle-float linear infinite;
}
.hero-particle:nth-child(1) { width: 6px; height: 6px; background: var(--saffron-300); left: 10%; animation-duration: 8s; animation-delay: 0s; }
.hero-particle:nth-child(2) { width: 4px; height: 4px; background: var(--gold-300); left: 25%; animation-duration: 10s; animation-delay: 1s; }
.hero-particle:nth-child(3) { width: 8px; height: 8px; background: var(--saffron-500); left: 40%; animation-duration: 7s; animation-delay: 2s; }
.hero-particle:nth-child(4) { width: 5px; height: 5px; background: var(--gold-500); left: 55%; animation-duration: 9s; animation-delay: .5s; }
.hero-particle:nth-child(5) { width: 3px; height: 3px; background: var(--green-400); left: 70%; animation-duration: 11s; animation-delay: 3s; }
.hero-particle:nth-child(6) { width: 7px; height: 7px; background: var(--saffron-300); left: 85%; animation-duration: 8.5s; animation-delay: 1.5s; }
.hero-particle:nth-child(7) { width: 4px; height: 4px; background: var(--gold-300); left: 15%; animation-duration: 12s; animation-delay: 4s; }
.hero-particle:nth-child(8) { width: 5px; height: 5px; background: var(--saffron-500); left: 60%; animation-duration: 9.5s; animation-delay: 2.5s; }
.hero-particle:nth-child(9) { width: 6px; height: 6px; background: var(--gold-500); left: 35%; animation-duration: 10.5s; animation-delay: 5s; }
.hero-particle:nth-child(10) { width: 3px; height: 3px; background: var(--green-400); left: 78%; animation-duration: 7.5s; animation-delay: .8s; }
.hero-particle:nth-child(11) { width: 5px; height: 5px; background: var(--saffron-300); left: 48%; animation-duration: 13s; animation-delay: 3.5s; }
.hero-particle:nth-child(12) { width: 4px; height: 4px; background: var(--gold-300); left: 92%; animation-duration: 8s; animation-delay: 6s; }
@keyframes particle-float {
  0%   { transform: translateY(100vh) rotate(0deg); opacity: 0; }
  10%  { opacity: .6; }
  90%  { opacity: .6; }
  100% { transform: translateY(-20vh) rotate(360deg); opacity: 0; }
}

/* Shimmer lines */
.hero-shimmer {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-shimmer::before,
.hero-shimmer::after {
  content: '';
  position: absolute;
  width: 200%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,179,0,.15), rgba(255,107,26,.1), transparent);
  animation: shimmer-slide 8s linear infinite;
}
.hero-shimmer::before {
  top: 30%;
  transform: rotate(-3deg);
  animation-duration: 10s;
}
.hero-shimmer::after {
  top: 65%;
  transform: rotate(2deg);
  animation-duration: 14s;
  animation-delay: -4s;
}
@keyframes shimmer-slide {
  0%   { transform: translateX(-50%) rotate(-3deg); }
  100% { transform: translateX(0%) rotate(-3deg); }
}

/* Decorative rangoli dots */
.hero-rangoli {
  position: absolute;
  z-index: 0;
  opacity: .06;
}
.hero-rangoli-1 {
  width: 300px; height: 300px;
  top: 8%; right: 5%;
  background: conic-gradient(from 0deg, var(--saffron-500), var(--gold-500), var(--green-500), var(--saffron-500));
  border-radius: 50%;
  animation: rangoli-spin 40s linear infinite;
}
.hero-rangoli-2 {
  width: 200px; height: 200px;
  bottom: 12%; left: 8%;
  background: conic-gradient(from 180deg, var(--gold-500), var(--saffron-500), var(--gold-500));
  border-radius: 50%;
  animation: rangoli-spin 30s linear infinite reverse;
}
@keyframes rangoli-spin {
  to { transform: rotate(360deg); }
}
.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding-top: 80px;
}
.hero-content { position: relative; z-index: 2; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: var(--green-50);
  color: var(--green-500);
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 24px;
  border: 1px solid rgba(46,125,50,.15);
  animation: fadeInUp .6s ease-out;
}
.hero-badge::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green-400);
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(1.5); }
}
.hero h1 {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  color: var(--neutral-900);
  line-height: 1.1;
  margin-bottom: 20px;
  animation: fadeInUp .6s ease-out .1s both;
}
.hero h1 .highlight {
  position: relative;
  display: inline-block;
}
.hero h1 .highlight::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  right: 0;
  height: 12px;
  background: linear-gradient(90deg, var(--saffron-300), var(--gold-300));
  opacity: .3;
  border-radius: 4px;
  z-index: -1;
}
.hero-description {
  font-size: 18px;
  color: var(--neutral-500);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 480px;
  animation: fadeInUp .6s ease-out .2s both;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp .6s ease-out .3s both;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 36px;
  background: linear-gradient(135deg, var(--saffron-500), var(--saffron-600));
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-glow);
  transition: all var(--transition-fast);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 44px rgba(255,107,26,.4);
  background: linear-gradient(135deg, var(--saffron-600), var(--saffron-700));
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 36px;
  background: #fff;
  color: var(--saffron-500);
  font-size: 16px;
  font-weight: 600;
  border-radius: var(--radius-full);
  border: 2px solid var(--saffron-500);
  transition: all var(--transition-fast);
}
.btn-secondary:hover {
  background: var(--saffron-50);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 48px;
  animation: fadeInUp .6s ease-out .4s both;
}
.hero-stat .stat-number {
  font-size: 32px;
  font-weight: 800;
  color: var(--neutral-800);
}
.hero-stat .stat-number span { color: var(--saffron-500); }
.hero-stat .stat-label {
  font-size: 13px;
  color: var(--neutral-400);
  font-weight: 500;
}

/* App Store Badges */
/* ── Hero flash text ───────────────────────── */
.hero-flash {
  display: inline-block;
  animation: hero-text-flash 2.8s ease-in-out infinite;
  will-change: opacity, text-shadow;
}
@keyframes hero-text-flash {
  0%, 100% {
    opacity: 1;
    text-shadow: none;
  }
  30% {
    opacity: 1;
    text-shadow:
      0 0 18px rgba(255,107,26,.70),
      0 0 40px rgba(255,179,0,.50),
      0 0 70px rgba(255,107,26,.30);
  }
  60% {
    opacity: 0.75;
    text-shadow: none;
  }
  80% {
    opacity: 1;
    text-shadow:
      0 0 12px rgba(255,107,26,.55),
      0 0 30px rgba(255,179,0,.40);
  }
}

.app-badges {
  display: flex;
  gap: 10px;
  flex-wrap: nowrap;
  margin-top: 32px;
  animation: fadeInUp .6s ease-out .5s both;
}
.app-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px 9px 12px;
  background: var(--neutral-900);
  color: #fff;
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
  border: 1.5px solid rgba(255,255,255,.1);
}
.app-badge:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  background: var(--neutral-800);
  border-color: rgba(255,255,255,.15);
}
.app-badge .ab-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.app-badge .ab-icon svg { width: 28px; height: 28px; }
.app-badge .ab-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.app-badge .ab-text .ab-small {
  font-size: 9px;
  font-weight: 400;
  opacity: .7;
  letter-spacing: .5px;
  text-transform: uppercase;
}
.app-badge .ab-text .ab-store {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -.2px;
}
@media (max-width: 480px) {
  .app-badges { gap: 8px; }
  .app-badge { padding: 8px 10px 8px 10px; gap: 6px; }
  .app-badge .ab-icon { width: 26px; height: 26px; }
  .app-badge .ab-icon svg { width: 22px; height: 22px; }
  .app-badge .ab-text .ab-small { font-size: 8px; }
  .app-badge .ab-text .ab-store { font-size: 12px; }
}

/* Footer app badges */
.footer-app-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 20px;
}
.footer-app-badges .app-badge {
  padding: 8px 18px 8px 12px;
  border-radius: 10px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
}
.footer-app-badges .app-badge:hover {
  background: rgba(255,255,255,.12);
  border-color: var(--saffron-500);
}
.footer-app-badges .app-badge .ab-icon svg { width: 24px; height: 24px; }
.footer-app-badges .app-badge .ab-text .ab-small { font-size: 8px; }
.footer-app-badges .app-badge .ab-text .ab-store { font-size: 14px; }

/* Hero Visual */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInRight .8s ease-out .2s both;
}
.hero-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 500px;
}
.hero-main-image {
  width: 100%;
  aspect-ratio: 1;
  border-radius: var(--radius-xl);
  object-fit: cover;
  box-shadow: var(--shadow-xl);
  position: relative;
  z-index: 2;
  background: linear-gradient(135deg, var(--saffron-50), var(--gold-50));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 120px;
  overflow: hidden;
}
/* Hero glow ring around logo image */
.hero-image-wrapper::before {
  content: '';
  position: absolute;
  width: 118%;
  height: 118%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  clip-path: polygon(
    50%  0%,    55.48%  8.36%, 62.94%  1.70%, 66.07% 11.20%,
    75%  6.70%, 75.57% 16.68%, 85.36% 14.64%, 83.32% 24.43%,
    93.30% 25%,  88.80% 33.93%, 98.30% 37.06%, 91.64% 44.52%,
    100% 50%,   91.64% 55.48%, 98.30% 62.94%, 88.80% 66.07%,
    93.30% 75%,  83.32% 75.57%, 85.36% 85.36%, 75.57% 83.32%,
    75% 93.30%,  66.07% 88.80%, 62.94% 98.30%, 55.48% 91.64%,
    50% 100%,   44.52% 91.64%, 37.06% 98.30%, 33.93% 88.80%,
    25% 93.30%,  24.43% 83.32%, 14.64% 85.36%, 16.68% 75.57%,
    6.70% 75%,   11.20% 66.07%,  1.70% 62.94%,  8.36% 55.48%,
    0%   50%,    8.36% 44.52%,   1.70% 37.06%,  11.20% 33.93%,
    6.70% 25%,   16.68% 24.43%, 14.64% 14.64%,  24.43% 16.68%,
    25%  6.70%,  33.93% 11.20%, 37.06%  1.70%,  44.52%  8.36%
  );
  background: linear-gradient(145deg, #fff176, #FFD600, #FF8F00, #FF6D00, #FF8F00, #FFD600, #fff176, #FFD600, #FF8F00, #fff176);
  opacity: 0.72;
  z-index: 1;
  animation: starburst-spin 50s linear infinite;
}
@keyframes starburst-spin {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}
@keyframes glow-rotate {
  to { transform: rotate(360deg); }
}

/* Decorative Blob */
.hero-blob {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,107,26,.06), transparent 70%);
  z-index: 0;
  top: -10%;
  right: -10%;
  animation: blob-move 8s ease-in-out infinite;
}

@keyframes blob-move {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(20px, -20px) scale(1.05); }
  66% { transform: translate(-10px, 10px) scale(.95); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}

/* ===== ABOUT ===== */
.about {
  position: relative;
  background: #fff;
}
.about .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-visual {
  position: relative;
}
.about-image-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.about-img {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 56px;
  transition: transform var(--transition-smooth);
}
.about-img:hover { transform: scale(1.03); }
.about-img:nth-child(1) { background: linear-gradient(135deg, var(--saffron-50), var(--saffron-100)); }
.about-img:nth-child(2) { background: linear-gradient(135deg, var(--green-50), #C8E6C9); transform: translateY(24px); }
.about-img:nth-child(3) { background: linear-gradient(135deg, var(--gold-50), #FFE082); transform: translateY(-24px); }
.about-img:nth-child(4) { background: linear-gradient(135deg, #F3E5F5, #CE93D8); }
.about-experience-badge {
  position: absolute;
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--saffron-500), var(--gold-500));
  color: #fff;
  padding: 16px 32px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-glow);
  text-align: center;
  z-index: 2;
}
.about-experience-badge .exp-num { font-size: 32px; font-weight: 800; line-height: 1; }
.about-experience-badge .exp-text { font-size: 12px; font-weight: 500; opacity: .9; }

.about-content .section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--saffron-500);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.about-content .section-label::before {
  content: '';
  width: 32px;
  height: 2px;
  background: var(--saffron-500);
  border-radius: 1px;
}
.about-content h2 {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 700;
  color: var(--neutral-800);
  line-height: 1.2;
  margin-bottom: 20px;
}
.about-content p {
  font-size: 16px;
  color: var(--neutral-500);
  line-height: 1.8;
  margin-bottom: 24px;
}
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}
.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: var(--neutral-50);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}
.about-feature:hover {
  background: var(--saffron-50);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.about-feature .feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.about-feature .feature-text h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--neutral-800);
  margin-bottom: 2px;
}
.about-feature .feature-text p {
  font-size: 12px;
  color: var(--neutral-400);
  margin-bottom: 0;
  line-height: 1.5;
}

/* ===== FOUNDER CARD (About Section) ===== */
.founder-card {
  background: #fff;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  text-align: center;
  position: relative;
  max-width: 360px;
  margin: 0 auto;
  border: 1px solid var(--neutral-200);
}
.founder-photo-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: linear-gradient(160deg, var(--saffron-50), var(--gold-50));
}
.founder-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  display: block;
  transition: transform var(--transition-smooth);
}
.founder-card:hover .founder-photo { transform: scale(1.03); }
.founder-info {
  padding: 20px 24px 16px;
  border-bottom: 1px solid var(--neutral-100);
}
.founder-name {
  font-size: 20px;
  font-weight: 700;
  color: var(--neutral-800);
  margin-bottom: 4px;
}
.founder-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--saffron-500);
  letter-spacing: .4px;
}
.founder-stats {
  display: flex;
  align-items: center;
  padding: 18px 24px;
}
.founder-stat { flex: 1; text-align: center; }
.founder-stat-divider {
  width: 1px;
  height: 40px;
  background: var(--neutral-200);
}
.fs-num {
  font-size: 28px;
  font-weight: 800;
  color: var(--saffron-500);
  line-height: 1;
}
.fs-label {
  font-size: 11px;
  color: var(--neutral-400);
  font-weight: 500;
  margin-top: 5px;
  line-height: 1.4;
}

/* ===== SERVICES SECTION ===== */
.services {
  background: linear-gradient(180deg, #fff 0%, var(--neutral-50) 100%);
  position: relative;
}
.services .section-header {
  text-align: center;
  margin-bottom: 56px;
}
.services .section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--saffron-500);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.services h2 {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 700;
  color: var(--neutral-800);
  line-height: 1.2;
}
.services .section-desc {
  font-size: 16px;
  color: var(--neutral-400);
  max-width: 500px;
  margin: 12px auto 0;
}
.services-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  align-items: stretch;
}

/* Service Cards */
.service-card {
  border-radius: var(--radius-xl);
  padding: 44px 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}
.service-card--event {
  background: linear-gradient(145deg, var(--neutral-900) 0%, #1a1208 100%);
  border: 1px solid rgba(255,179,0,.15);
}
.service-card--event::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(255,179,0,.10), transparent 70%);
  pointer-events: none;
}
.service-card--daily {
  background: linear-gradient(145deg, var(--saffron-50) 0%, var(--gold-50) 100%);
  border: 1px solid rgba(255,107,26,.12);
}
.service-card--daily::before {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(255,107,26,.08), transparent 70%);
  pointer-events: none;
}

.sc-icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  flex-shrink: 0;
}
.service-card--event .sc-icon-wrap { background: rgba(255,179,0,.12); border: 1px solid rgba(255,179,0,.2); }
.service-card--daily .sc-icon-wrap { background: rgba(255,107,26,.10); border: 1px solid rgba(255,107,26,.15); }

.sc-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.service-card--event .sc-label { color: var(--gold-300); }
.service-card--daily .sc-label { color: var(--saffron-500); }

.sc-title {
  font-size: 26px;
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
}
.service-card--event .sc-title { color: #fff; }
.service-card--daily .sc-title { color: var(--neutral-800); }

.sc-desc {
  font-size: 15px;
  line-height: 1.75;
  margin: 0;
}
.service-card--event .sc-desc { color: rgba(255,255,255,.60); }
.service-card--daily .sc-desc { color: var(--neutral-500); }

.sc-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.sc-list li {
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}
.service-card--event .sc-list li { color: rgba(255,255,255,.75); }
.service-card--daily .sc-list li { color: var(--neutral-600); }

.sc-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  font-size: 15px;
  font-weight: 600;
  width: fit-content;
  transition: all var(--transition-fast);
  margin-top: 8px;
  text-decoration: none;
}
.sc-cta--primary {
  background: linear-gradient(135deg, var(--gold-500), var(--saffron-500));
  color: #fff;
  box-shadow: 0 8px 28px rgba(255,107,26,.30);
}
.sc-cta--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(255,107,26,.45);
}
.sc-cta--secondary {
  background: var(--saffron-500);
  color: #fff;
  box-shadow: var(--shadow-glow);
}
.sc-cta--secondary:hover {
  background: var(--saffron-700);
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(255,107,26,.4);
}

/* Divider between two cards */
.services-divider {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 28px;
  gap: 12px;
}
.sd-line {
  flex: 1;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--neutral-300), transparent);
}
.sd-or {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--neutral-200);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  color: var(--neutral-400);
  text-transform: uppercase;
  letter-spacing: 1px;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}

@media (max-width: 900px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .services-divider {
    flex-direction: row;
    padding: 28px 0;
  }
  .sd-line {
    flex: 1;
    width: auto;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--neutral-300), transparent);
  }
  .service-card {
    padding: 36px 28px;
  }
  .service-card:hover { transform: none; }
}

/* ===== MONTHLY PACKAGES ===== */
.packages {
  background: linear-gradient(160deg, var(--neutral-900) 0%, #1a1208 60%, var(--neutral-800) 100%);
  position: relative;
  overflow: hidden;
}
.packages::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 10% 50%, rgba(255,107,26,.12) 0%, transparent 55%),
    radial-gradient(ellipse at 90% 20%, rgba(255,179,0,.10) 0%, transparent 50%),
    radial-gradient(ellipse at 60% 90%, rgba(46,125,50,.06) 0%, transparent 45%);
  pointer-events: none;
}
.packages .section-header { text-align: center; margin-bottom: 64px; position: relative; z-index: 1; }
.packages .section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gold-300);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.packages h2 {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}
.packages .section-desc { font-size: 16px; color: rgba(255,255,255,.5); max-width: 520px; margin: 12px auto 0; }

.packages-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}
.package-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  transition: all var(--transition-smooth);
  position: relative;
  display: flex;
  flex-direction: column;
}
.package-card:hover {
  transform: translateY(-10px);
  border-color: rgba(255,179,0,.3);
  box-shadow: 0 20px 60px rgba(0,0,0,.4), 0 0 0 1px rgba(255,179,0,.15);
  background: rgba(255,255,255,.07);
}
.package-card.featured {
  border-color: var(--gold-500);
  background: rgba(255,179,0,.06);
  box-shadow: 0 0 0 1px rgba(255,179,0,.25), 0 20px 60px rgba(255,107,26,.15);
}
.package-card .pkg-popular-tag {
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, var(--saffron-500), var(--gold-500));
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 20px;
  border-radius: 0 0 12px 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  white-space: nowrap;
}
.package-card .pkg-header {
  padding: 32px 24px 24px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.package-card.featured .pkg-header {
  padding-top: 44px;
}
.package-card .pkg-name {
  font-size: 19px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}
.package-card .pkg-tagline {
  font-size: 12px;
  line-height: 1.5;
}
.package-card .pkg-amount {
  font-size: 38px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
.package-card .pkg-amount sup { font-size: 18px; vertical-align: super; opacity: .85; }
.package-card .pkg-amount sub { font-size: 13px; font-weight: 400; opacity: .6; }
.package-card .pkg-features {
  padding: 20px 24px;
  flex: 1;
}
.package-card .pkg-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 14px;
  color: rgba(255,255,255,.7);
}
.package-card .pkg-feature:last-child { margin-bottom: 0; }
.package-card .pkg-feature .pf-check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(46,125,50,.2);
  border: 1px solid rgba(46,125,50,.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: var(--green-400);
  flex-shrink: 0;
  margin-top: 1px;
}
.package-card .pkg-cta {
  margin: 0 24px 24px;
  padding: 13px;
  text-align: center;
  border-radius: var(--radius-md);
  font-size: 15px;
  font-weight: 600;
  transition: all var(--transition-fast);
  cursor: pointer;
  display: block;
}
.package-card .pkg-cta.cta-outline {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.8);
}
.package-card .pkg-cta.cta-outline:hover {
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.4);
}
.package-card .pkg-cta.cta-gold {
  background: linear-gradient(135deg, var(--gold-500), var(--saffron-500));
  color: #fff;
  box-shadow: 0 8px 32px rgba(255,107,26,.3);
}
.package-card .pkg-cta.cta-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(255,107,26,.45);
}

.packages-note {
  text-align: center;
  margin-top: 40px;
  font-size: 14px;
  color: rgba(255,255,255,.35);
  position: relative;
  z-index: 1;
}
.packages-note span { color: var(--gold-300); font-weight: 500; }

@media (max-width: 1024px) {
  .packages-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}
@media (max-width: 768px) {
  .packages-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
}

/* ===== SPECIALTIES (Mini Menu) ===== */
.specialties {
  background: linear-gradient(180deg, var(--neutral-50) 0%, #fff 50%, var(--neutral-50) 100%);
  position: relative;
}
.specialties .section-header {
  text-align: center;
  margin-bottom: 60px;
}
.specialties .section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--saffron-500);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.specialties h2 {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 700;
  color: var(--neutral-800);
  line-height: 1.2;
}
.specialties .section-desc {
  font-size: 16px;
  color: var(--neutral-400);
  max-width: 500px;
  margin: 12px auto 0;
}
.specialties-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.specialty-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-smooth);
  position: relative;
}
.specialty-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.specialty-card .card-image {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 64px;
  position: relative;
  overflow: hidden;
}
.specialty-card:nth-child(1) .card-image { background: linear-gradient(135deg, #FFF3E0, #FFE0B2); }
.specialty-card:nth-child(2) .card-image { background: linear-gradient(135deg, #E8F5E9, #C8E6C9); }
.specialty-card:nth-child(3) .card-image { background: linear-gradient(135deg, #FFF8E1, #FFE082); }
.specialty-card:nth-child(4) .card-image { background: linear-gradient(135deg, #F3E5F5, #E1BEE7); }
.specialty-card:nth-child(5) .card-image { background: linear-gradient(135deg, #E0F2F1, #B2DFDB); }
.specialty-card:nth-child(6) .card-image { background: linear-gradient(135deg, #E8EAF6, #C5CAE9); }
.specialty-card:nth-child(7) .card-image { background: linear-gradient(135deg, #FCE4EC, #F8BBD0); }
.specialty-card:nth-child(8) .card-image { background: linear-gradient(135deg, #FFF3E0, #FFCC80); }
.specialty-card .card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 600;
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(8px);
  color: var(--saffron-700);
}
.specialty-card .card-body {
  padding: 20px;
}
.specialty-card .card-body h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--neutral-800);
  margin-bottom: 4px;
}
.specialty-card .card-body p {
  font-size: 13px;
  color: var(--neutral-400);
  line-height: 1.5;
}
.specialty-card .card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px 20px;
}
.specialty-card .card-price {
  font-size: 20px;
  font-weight: 700;
  color: var(--saffron-500);
}
.specialty-card .card-price span {
  font-size: 12px;
  color: var(--neutral-400);
  font-weight: 400;
}
.card-veg {
  width: 18px;
  height: 18px;
  border: 2px solid var(--green-500);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.card-veg::after {
  content: '';
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green-500);
}

/* ===== QUICK PAY ===== */
.quickpay {
  background: linear-gradient(150deg, #0F1923 0%, #1A2A1A 50%, #0D1A0D 100%);
  position: relative;
  overflow: hidden;
}
.quickpay::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,179,0,.08) 0%, transparent 70%);
  pointer-events: none;
}
.quickpay::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(46,125,50,.1) 0%, transparent 70%);
  pointer-events: none;
}
.quickpay-inner {
  display: flex;
  gap: 72px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.quickpay-content {
  flex: 1;
}
.quickpay-content .section-label { color: var(--gold-300); }
.quickpay-content h2 { color: #fff; }
.quickpay-tagline {
  color: rgba(255,255,255,.55);
  font-size: 16px;
  line-height: 1.7;
  margin: 16px 0 32px;
}
.qp-steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 36px;
}
.qp-step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.qp-step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--saffron-500), var(--gold-500));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.qp-step-text strong {
  display: block;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 3px;
}
.qp-step-text span {
  color: rgba(255,255,255,.45);
  font-size: 13px;
  line-height: 1.5;
}
.qp-apps {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.qp-apps-label {
  font-size: 12px;
  color: rgba(255,255,255,.35);
  font-weight: 500;
  margin-bottom: 10px;
}
.qp-app-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.05);
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,.75);
  backdrop-filter: blur(4px);
}
.qp-app-badge svg { width: 20px; height: 20px; }
.quickpay-card {
  flex-shrink: 0;
  background: #fff;
  border-radius: 28px;
  padding: 36px;
  text-align: center;
  box-shadow: 0 32px 80px rgba(0,0,0,.5), 0 0 0 1px rgba(255,255,255,.04);
  position: relative;
}
.qp-card-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: rgba(0,0,0,.35);
  text-transform: uppercase;
  margin-bottom: 20px;
}
.qp-qr-wrap {
  width: 220px;
  height: 220px;
  margin: 0 auto 20px;
  border-radius: 16px;
  overflow: hidden;
  border: 3px solid #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  position: relative;
}
.qp-qr-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.qp-logo-overlay {
  position: absolute;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: #fff;
  border: 2px solid #eee;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.qp-logo-overlay img {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  object-fit: cover;
}
.qp-upi-id {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #f8f4ee;
  border: 1px dashed #e0c88a;
  border-radius: 10px;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 600;
  color: #883d00;
  margin-bottom: 16px;
  cursor: pointer;
  transition: background .2s;
}
.qp-upi-id:hover { background: #f0e8d4; }
.qp-upi-copy {
  font-size: 11px;
  color: rgba(0,0,0,.35);
  margin-top: 0;
}
.qp-upi-copied {
  font-size: 11px;
  color: var(--green-500);
  font-weight: 600;
  display: none;
  margin-top: 0;
}
.qp-secure {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 14px;
  font-size: 11px;
  color: rgba(0,0,0,.3);
}
@media (max-width: 900px) {
  .quickpay-inner { flex-direction: column; gap: 48px; }
  .quickpay-card { width: 100%; max-width: 340px; margin: 0 auto; }
}

/* ===== GALLERY ===== */
.gallery {
  background: #fff;
  position: relative;
  overflow: hidden;
}
.gallery .section-header {
  text-align: center;
  margin-bottom: 60px;
}
.gallery .section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--saffron-500);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.gallery h2 {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 700;
  color: var(--neutral-800);
  line-height: 1.2;
}
.gallery .section-desc {
  font-size: 16px;
  color: var(--neutral-400);
  max-width: 500px;
  margin: 12px auto 0;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(3, 200px);
  gap: 16px;
}
.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  transition: all var(--transition-smooth);
}
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(15,15,12,.5) 100%);
  opacity: 0;
  transition: opacity var(--transition-fast);
}
.gallery-item:hover::after { opacity: 1; }
.gallery-item:hover { transform: scale(1.02); }
.gallery-item .gallery-caption {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  z-index: 1;
  transform: translateY(10px);
  opacity: 0;
  transition: all var(--transition-fast);
}
.gallery-item:hover .gallery-caption {
  transform: translateY(0);
  opacity: 1;
}
.gallery-item:nth-child(1) {
  grid-column: span 2;
  grid-row: span 2;
  background: linear-gradient(135deg, var(--saffron-50), var(--saffron-100));
  font-size: 80px;
}
.gallery-item:nth-child(2) { background: linear-gradient(135deg, var(--green-50), #C8E6C9); }
.gallery-item:nth-child(3) { background: linear-gradient(135deg, var(--gold-50), #FFE082); }
.gallery-item:nth-child(4) {
  grid-row: span 2;
  background: linear-gradient(135deg, #F3E5F5, #CE93D8);
  font-size: 64px;
}
.gallery-item:nth-child(5) { background: linear-gradient(135deg, #E0F2F1, #B2DFDB); }
.gallery-item:nth-child(6) { background: linear-gradient(135deg, #E8EAF6, #C5CAE9); }
.gallery-item:nth-child(7) {
  grid-column: span 2;
  background: linear-gradient(135deg, #FCE4EC, #F8BBD0);
}
.gallery-item:nth-child(8) { background: linear-gradient(135deg, var(--saffron-50), #FFCC80); }

/* Gallery items with real photos */
.gallery-item--photo {
  text-decoration: none;
  font-size: 0;
  padding: 0;
  background: var(--neutral-200);
}
.gallery-item--photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--transition-smooth);
}
.gallery-item--photo:hover img { transform: scale(1.06); }
.gallery-item--photo::after {
  z-index: 1;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,.40) 100%);
}

/* Gallery placeholder (no photos yet) */
.gallery-placeholder {
  text-align: center;
  padding: 60px 20px;
  background: var(--neutral-50);
  border-radius: var(--radius-xl);
  border: 2px dashed var(--neutral-200);
  margin-bottom: 32px;
}
.gallery-placeholder .gph-icon { font-size: 52px; margin-bottom: 12px; }
.gallery-placeholder p { font-size: 16px; color: var(--neutral-400); }

/* View All button row */
.gallery-view-all {
  text-align: center;
  margin-top: 40px;
}
.gallery-view-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 36px;
  background: transparent;
  border: 2px solid var(--saffron-500);
  color: var(--saffron-500);
  border-radius: var(--radius-full);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all var(--transition-fast);
}
.gallery-view-btn:hover {
  background: var(--saffron-500);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  background: linear-gradient(135deg, var(--neutral-900) 0%, var(--neutral-800) 100%);
  position: relative;
  overflow: hidden;
}
.testimonials::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,107,26,.08), transparent 70%);
}
.testimonials .section-header {
  text-align: center;
  margin-bottom: 60px;
}
.testimonials .section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--saffron-300);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.testimonials h2 {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: rgba(255,255,255,.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all var(--transition-smooth);
}
.testimonial-card:hover {
  background: rgba(255,255,255,.08);
  transform: translateY(-4px);
}
.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
  font-size: 16px;
}
.testimonial-text {
  font-size: 15px;
  color: rgba(255,255,255,.75);
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.testimonial-author-info .ta-name {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
}
.testimonial-author-info .ta-role {
  font-size: 12px;
  color: rgba(255,255,255,.45);
}

/* ===== CONTACT ===== */
.contact {
  position: relative;
  background: linear-gradient(180deg, var(--neutral-50) 0%, #fff 100%);
}
.contact .section-header {
  text-align: center;
  margin-bottom: 60px;
}
.contact .section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--saffron-500);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.contact h2 {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 700;
  color: var(--neutral-800);
  line-height: 1.2;
}
.contact .section-desc {
  font-size: 16px;
  color: var(--neutral-400);
  max-width: 500px;
  margin: 12px auto 0;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-card {
  display: flex;
  gap: 16px;
  padding: 24px;
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-fast);
  border: 1px solid transparent;
}
.contact-card:hover {
  border-color: var(--saffron-300);
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}
.contact-card .cc-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}
.contact-card .cc-icon.icon-phone { background: var(--green-50); }
.contact-card .cc-icon.icon-location { background: var(--saffron-50); }
.contact-card .cc-icon.icon-hours { background: var(--gold-50); }
.contact-card .cc-info h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--neutral-800);
  margin-bottom: 4px;
}
.contact-card .cc-info p {
  font-size: 14px;
  color: var(--neutral-500);
  line-height: 1.6;
}
.contact-card .cc-info a {
  color: var(--saffron-500);
  font-weight: 500;
}
.contact-card .cc-info a:hover {
  color: var(--saffron-700);
}

/* Contact Form */
.contact-form {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--neutral-200);
}
.contact-form h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--neutral-800);
  margin-bottom: 24px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--neutral-600);
  margin-bottom: 8px;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--neutral-200);
  border-radius: var(--radius-sm);
  background: var(--neutral-50);
  font-size: 14px;
  color: var(--neutral-800);
  transition: all var(--transition-fast);
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--saffron-500);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(255,107,26,.08);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--neutral-400);
}
.form-group textarea {
  resize: vertical;
  min-height: 120px;
}
.form-submit {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, var(--saffron-500), var(--saffron-600));
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-glow);
  transition: all var(--transition-fast);
}
.form-submit:hover {
  background: linear-gradient(135deg, var(--saffron-600), var(--saffron-700));
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(255,107,26,.3);
}

/* Map */
.contact-map {
  margin-top: 24px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 3px solid #fff;
}
.contact-map iframe {
  width: 100%;
  height: 220px;
  border: none;
  display: block;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--neutral-900);
  color: rgba(255,255,255,.6);
  padding: 80px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.footer-brand .footer-logo img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}
.footer-brand .footer-logo span {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
}
.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 20px;
}
.footer-socials {
  display: flex;
  gap: 10px;
}
.footer-socials a {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.6);
  font-size: 18px;
  transition: all var(--transition-fast);
}
.footer-socials a:hover {
  background: var(--saffron-500);
  color: #fff;
  transform: translateY(-2px);
}
.footer-col h4 {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 20px;
}
.footer-col ul li {
  margin-bottom: 10px;
}
.footer-col ul li a {
  font-size: 14px;
  transition: all var(--transition-fast);
}
.footer-col ul li a:hover {
  color: var(--saffron-300);
  transform: translateX(4px);
  display: inline-block;
}
.footer-col .footer-contact-item {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 14px;
}
.footer-col .footer-contact-item .fci-icon {
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 2px;
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  font-size: 13px;
}
.footer-bottom a:hover { color: var(--saffron-300); }

/* ===== SCROLL TO TOP ===== */
/* ===== WHATSAPP FAB ===== */
.wa-fab {
  position: fixed;
  bottom: 92px;
  right: 32px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.45);
  z-index: 999;
  transition: all var(--transition-fast);
  text-decoration: none;
}
.wa-fab:hover {
  transform: translateY(-4px) scale(1.07);
  box-shadow: 0 10px 32px rgba(37,211,102,.55);
}
.wa-fab-tooltip {
  position: absolute;
  right: 62px;
  background: #1a1a1a;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
  padding: 6px 12px;
  border-radius: 6px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s;
}
.wa-fab:hover .wa-fab-tooltip { opacity: 1; }
@keyframes wa-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(37,211,102,.5); }
  70%  { box-shadow: 0 0 0 14px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}
.wa-fab { animation: wa-pulse 2.5s infinite; }
.wa-fab:hover { animation: none; }

.scroll-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--saffron-500), var(--saffron-600));
  color: #fff;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-glow);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: all var(--transition-fast);
}
.scroll-top.visible {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.scroll-top:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 44px rgba(255,107,26,.4);
}

/* ===== SCROLL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all .7s cubic-bezier(.4, 0, .2, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: all .7s cubic-bezier(.4, 0, .2, 1);
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: all .7s cubic-bezier(.4, 0, .2, 1);
}
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero .container { grid-template-columns: 1fr; text-align: center; gap: 40px; }
  .hero-description { margin: 0 auto 36px; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { order: -1; }
  .hero-image-wrapper { max-width: 380px; margin: 0 auto; }

  .about .container { grid-template-columns: 1fr; gap: 60px; }
  .about-visual { max-width: 500px; margin: 0 auto; }

  .specialties-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 180px);
  }
  .gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
  .gallery-item:nth-child(4) { grid-row: span 1; }

  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid .testimonial-card:last-child { grid-column: span 2; }

  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .section-padding { padding: 72px 0; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(250,250,247,1);
    backdrop-filter: none;
    z-index: 1002;
    justify-content: center;
    align-items: center;
    gap: 16px;
    padding: 24px;
  }
  .nav-links.open a { font-size: 20px; padding: 12px 32px; }
  .nav-toggle { display: flex; z-index: 1003; margin-right: 15px; }

  .hero .container { padding-top: 100px; }
  .hero-stats { gap: 24px; flex-wrap: wrap; }
  .hero-stat .stat-number { font-size: 24px; }

  .about-image-grid { gap: 10px; }
  .about-features { grid-template-columns: 1fr; }

  .specialties-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .specialty-card .card-image { height: 160px; font-size: 48px; }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }
  .gallery-item { min-height: 160px; }
  .gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 1; }
  .gallery-item:nth-child(4) { grid-row: span 1; }
  .gallery-item:nth-child(7) { grid-column: span 2; }

  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonials-grid .testimonial-card:last-child { grid-column: span 1; }

  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 28px; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .section-padding { padding: 56px 0; }
  .hero h1 { font-size: 32px; }
  .hero-description { font-size: 15px; }
  .btn-primary, .btn-secondary { padding: 14px 28px; font-size: 14px; }
  .hero-actions { flex-direction: column; align-items: center; }

  .hero-image-wrapper { max-width: 280px; }
  .specialties-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item:nth-child(1),
  .gallery-item:nth-child(7) { grid-column: span 1; }
  .nav-brand-text { font-size: 18px; }
  .nav-logo { width: 40px; height: 40px; }
}


/* ===== SISTER BRAND BANNER ===== */
.sister-banner {
  background: linear-gradient(135deg, #1a0a00 0%, #2d1200 40%, #1a0a00 100%);
  border-top: 3px solid var(--saffron-500);
  border-bottom: 3px solid var(--saffron-500);
  padding: 48px 0;
  position: relative;
  overflow: hidden;
}
.sister-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(255,107,26,.15) 0%, transparent 65%);
  pointer-events: none;
}
.sister-banner--tiffin {
  background: linear-gradient(135deg, #001a00 0%, #00260a 40%, #001a00 100%);
  border-color: #43A047;
}
.sister-banner--tiffin::before {
  background: radial-gradient(ellipse at 30% 50%, rgba(67,160,71,.15) 0%, transparent 65%);
}
.sister-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.sb-left { flex: 1; min-width: 260px; }
.sb-tag {
  display: inline-block;
  background: rgba(255,107,26,.15);
  color: var(--saffron-300);
  border: 1px solid rgba(255,107,26,.3);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 12px;
}
.sister-banner--tiffin .sb-tag {
  background: rgba(67,160,71,.15);
  color: #81C784;
  border-color: rgba(67,160,71,.3);
}
.sb-left h3 {
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.2;
}
.sb-left h3 span {
  background: linear-gradient(135deg, var(--saffron-400), var(--gold-400));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.sister-banner--tiffin .sb-left h3 span {
  background: linear-gradient(135deg, #66BB6A, #A5D6A7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.sb-left p {
  color: rgba(255,255,255,.6);
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
}
.sb-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--saffron-500), var(--gold-500));
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 4px 20px rgba(255,107,26,.35);
  transition: transform .2s, box-shadow .2s;
  flex-shrink: 0;
}
.sb-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(255,107,26,.5); }
.sb-cta--green {
  background: linear-gradient(135deg, #2E7D32, #43A047);
  box-shadow: 0 4px 20px rgba(46,125,50,.35);
}
.sb-cta--green:hover { box-shadow: 0 8px 28px rgba(46,125,50,.5); }
@media (max-width: 640px) {
  .sister-banner { padding: 36px 0; }
  .sister-banner-inner { flex-direction: column; align-items: flex-start; }
  .sb-cta { width: 100%; justify-content: center; }
}

/* ===== MENU SECTION ===== */
.menu-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.menu-item-card {
  background: var(--surface-2, #1e1e2e);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.07);
  transition: transform .25s ease, box-shadow .25s ease;
}
.menu-item-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,.35);
}
.mic-img-wrap {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.mic-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.menu-item-card:hover .mic-img-wrap img { transform: scale(1.06); }
.mic-veg-dot {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 22px;
  height: 22px;
  background: #fff;
  border: 2px solid #1B5E20;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mic-veg-dot::after {
  content: '';
  width: 10px;
  height: 10px;
  background: #2E7D32;
  border-radius: 50%;
}
.mic-body {
  padding: 18px 20px 20px;
}
.mic-body h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--neutral-50, #fafafa);
  margin-bottom: 2px;
}
.mic-body h3 span {
  font-weight: 400;
  font-size: .88rem;
  opacity: .7;
}
.mic-tamil {
  font-size: .78rem;
  color: var(--saffron-400, #ff8c42);
  font-weight: 500;
  margin-bottom: 8px;
}
.mic-body p {
  font-size: .82rem;
  color: var(--neutral-400, #9ca3af);
  line-height: 1.6;
  margin-bottom: 14px;
}
.mic-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.mic-price {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--saffron-400, #ff8c42);
}
.mic-btn {
  background: var(--saffron-500, #FF6B1A);
  color: #fff;
  font-size: .78rem;
  font-weight: 600;
  padding: 7px 16px;
  border-radius: 20px;
  text-decoration: none;
  transition: background .2s;
  white-space: nowrap;
}
.mic-btn:hover { background: #e05500; }
@media (max-width: 640px) {
  .menu-cards-grid { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 16px; }
  .mic-img-wrap { height: 170px; }
}

/* ===== FOOTER FSSAI + LEGAL BAR ===== */
.footer-legal-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding: 16px 0;
  margin-top: 24px;
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
  margin-bottom: 16px;
}
.footer-fssai {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.fssai-label {
  background: #1B5E20;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 4px;
}
.fssai-num {
  color: rgba(255,255,255,.7);
  font-size: 12px;
  font-weight: 500;
}
.fssai-valid {
  color: rgba(255,255,255,.4);
  font-size: 11px;
}
.footer-policy-links {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
}
.footer-policy-links a {
  color: rgba(255,255,255,.5);
  text-decoration: none;
  transition: color .2s;
}
.footer-policy-links a:hover { color: var(--saffron-400); }
.footer-policy-links span { color: rgba(255,255,255,.2); }
@media (max-width: 600px) {
  .footer-legal-bar { flex-direction: column; align-items: flex-start; }
}

/* ===== POLICY PAGES ===== */
.policy-page { min-height: 60vh; }
.policy-wrap { max-width: 800px; margin: 0 auto; }
.policy-hero {
  text-align: center;
  margin-bottom: 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(0,0,0,.08);
}
.policy-hero h1 { font-size: clamp(28px, 4vw, 42px); margin: 8px 0 12px; color: var(--neutral-800); }
.policy-hero p { color: var(--neutral-500); font-size: 13px; }
.policy-body h2 {
  font-size: 18px;
  font-weight: 700;
  color: var(--saffron-600, #c44d00);
  margin: 36px 0 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255,107,26,.2);
}
.policy-body h3 {
  font-size: 13px;
  font-weight: 700;
  color: var(--neutral-700, #2a2a22);
  margin: 20px 0 8px;
  text-transform: uppercase;
  letter-spacing: .6px;
}
.policy-body p {
  color: var(--neutral-600);
  font-size: 14px;
  line-height: 1.85;
  margin-bottom: 14px;
}
.policy-body ul {
  padding-left: 20px;
  margin-bottom: 14px;
}
.policy-body ul li {
  color: var(--neutral-600);
  font-size: 14px;
  line-height: 1.85;
  margin-bottom: 6px;
}
.policy-body strong { color: var(--neutral-800); }
.policy-body a { color: var(--saffron-600, #c44d00); text-decoration: none; }
.policy-body a:hover { text-decoration: underline; }
.policy-highlight {
  background: rgba(255,107,26,.07);
  border-left: 3px solid var(--saffron-500);
  padding: 14px 18px;
  border-radius: 0 8px 8px 0;
  margin: 20px 0 28px;
  color: var(--neutral-700, #2a2a22);
  font-size: 14px;
  line-height: 1.7;
}
.policy-contact {
  background: rgba(0,0,0,.03);
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 12px;
  padding: 20px 24px;
  margin-top: 12px;
}
.policy-contact p {
  margin-bottom: 10px;
  font-size: 14px;
  line-height: 1.8;
  color: var(--neutral-600);
}
.policy-back {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(0,0,0,.08);
}
.policy-back a {
  color: var(--saffron-600, #c44d00);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: color .2s;
}
.policy-back a:hover { color: var(--saffron-500); }
