:root {
    --maroon: #8B0000;
    --maroon-dark: #5a0000;
    --maroon-light: #a31515;
    --gold: #D4AF37;
    --gold-light: #e8cc6a;
    --gold-dark: #b8941f;
    --cream: #FFF8E7;
    --cream-dark: #f5ecd0;
    --brown: #3E2723;
    --brown-light: #6d4c41;
    --white: #ffffff;
    --text-dark: #2c1a10;
    --shadow: 0 8px 40px rgba(139,0,0,0.15);
    --shadow-gold: 0 4px 20px rgba(212,175,55,0.3);
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Cormorant Garamond', serif;
    background: var(--cream);
    color: var(--brown);
    overflow-x: hidden;
  }

  /* ── ORNAMENTAL PATTERN ── */
  .ornament { color: var(--gold); font-size: 1.2rem; letter-spacing: 4px; }
  .divider {
    display: flex; align-items: center; gap: 12px; margin: 0 auto;
    justify-content: center;
  }
  .divider::before, .divider::after {
    content: ''; flex: 1; max-width: 80px;
    height: 1px; background: linear-gradient(90deg, transparent, var(--gold));
  }
  .divider::after { background: linear-gradient(90deg, var(--gold), transparent); }

  /* ── NAV ── */
  nav {
    position: fixed; top: 0; width: 100%; z-index: 1000;
    background: rgba(90,0,0,0.97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(212,175,55,0.3);
    transition: all 0.4s ease;
  }
  nav.scrolled {
    background: rgba(58,0,0,0.99);
    box-shadow: 0 4px 30px rgba(0,0,0,0.4);
  }
  .nav-inner {
    max-width: 1200px; margin: 0 auto;
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 20px; height: 94px;
  }

  /* .balaji-center{
    margin:0 20px;
} */

  .balaji-center img{
      height:80px;
      width:auto;
      border-radius:50%;
      /* background:#fff; */
      padding:3px;
      box-shadow:0 0 15px rgba(212,175,55,0.5);
  }

  .mobile-balaji{ 
      display:none;
  }

  .mobile-balaji img{
      height:70px;
      width:auto;
      /* display:block; */
      margin:0 auto;
  }

  /* .nav-inner{
    max-width:1200px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    position:relative;
  }
  .nav-left{
    flex:1;
  }
  .nav-center{
      position:absolute;
      left:50%;
      transform:translateX(-50%);
  }
  .nav-center img{
      height:80px;
      width:80px;
      display:block;
  }
  .nav-right{
      flex:1;
      display:flex;
      justify-content:flex-end;
      align-items:center;
  } */

  .nav-logo {
    display: flex; align-items: center; gap: 10px; text-decoration: none;
  }
  .nav-logo img{
    height: 80px;
    width: auto;
    display: block;
    object-fit: contain;
}
  .nav-logo-icon {
    width: 40px; height: 40px; background: var(--gold);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 18px; font-weight: 900; color: var(--maroon-dark);
    font-family: 'Playfair Display', serif;
    box-shadow: 0 0 12px rgba(212,175,55,0.5);
  }
  .nav-logo-text { display: flex; flex-direction: column; line-height: 1; }
  .nav-logo-text span:first-child {
    font-family: 'Playfair Display', serif;
    color: var(--gold); font-size: 0.85rem; font-weight: 700; letter-spacing: 1px;
  }
  .nav-logo-text span:last-child {
    color: rgba(255,255,255,0.6); font-size: 0.6rem; letter-spacing: 2px;
  }
  .nav-links {
    display: flex; align-items:center; 
    justify-content:center; gap: 32px; list-style: none;
  }
  .nav-links a {
    color: rgba(255,255,255,0.8); text-decoration: none;
    font-family: 'Cormorant Garamond', serif; font-size: 18px; font-weight: 600; letter-spacing: 1px;
    transition: color 0.3s; position: relative;
  }
  .nav-links a::after {
    content: ''; position: absolute; bottom: -4px; left: 0;
    width: 0; height: 1px; background: var(--gold);
    transition: width 0.3s ease;
  }
  .nav-links a:hover,
  .nav-links a.active { color: var(--gold); }
  .nav-links a:hover::after,
  .nav-links a.active::after { width: 100%; }
  .nav-cta {
    background: var(--gold); color: var(--maroon-dark);
    border: none; padding: 12px 20px; border-radius: 30px;
    font-family: 'Playfair Display', serif; font-weight: 700; font-size: 0.85rem;
    cursor: pointer; text-decoration: none; letter-spacing: 0.5px;
    transition: all 0.3s; box-shadow: 0 0 15px rgba(212,175,55,0.4);
  }
  .nav-cta:hover,
  .nav-cta.active { background: var(--gold-light); transform: translateY(-2px); }

  .hamburger {
    display: none; flex-direction: column; gap: 5px;
    cursor: pointer; padding: 4px;
  }
  .hamburger span {
    width: 24px; height: 2px; background: var(--gold);
    transition: all 0.3s; display: block;
  }


  /* banner */
  .banner-title{
    font-family:'Playfair Display',serif;
    color:var(--cream);
    font-size:clamp(2rem,5vw,3.5rem);
    margin-top:8px;
  }

  /* ── HERO ── */
  #home {
    min-height: 100vh; position: relative; overflow: hidden;
    display: flex; align-items: center;
    background: linear-gradient(135deg, var(--maroon-dark) 0%, #6b0000 40%, #3a0000 100%);
  }
  .hero-pattern {
    position: absolute; inset: 0;
    background-image:
      radial-gradient(circle at 20% 50%, rgba(212,175,55,0.08) 0%, transparent 50%),
      radial-gradient(circle at 80% 20%, rgba(212,175,55,0.06) 0%, transparent 40%),
      repeating-linear-gradient(45deg, transparent, transparent 60px, rgba(212,175,55,0.02) 60px, rgba(212,175,55,0.02) 61px);
  }
  .hero-mandala {
    position: absolute; right: -100px; top: 50%; transform: translateY(-50%);
    width: 600px; height: 600px; opacity: 0.06;
    background: radial-gradient(circle, var(--gold) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 6s ease-in-out infinite;
  }
  @keyframes pulse { 0%,100%{transform:translateY(-50%) scale(1)} 50%{transform:translateY(-50%) scale(1.1)} }

  .hero-content {
    position: relative; z-index: 2; max-width: 1200px;
    margin: 0 auto; padding: 100px 20px 60px;
    display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
  }
  .hero-text .badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(212,175,55,0.15); border: 1px solid rgba(212,175,55,0.4);
    padding: 6px 16px; border-radius: 30px;
    color: var(--gold); font-size: 0.75rem; letter-spacing: 3px;
    margin-bottom: 20px; text-transform: uppercase;
    animation: fadeInUp 0.8s ease both;
  }
  .hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.8rem, 6vw, 5rem);
    color: var(--cream); line-height: 1.05;
    animation: fadeInUp 0.8s 0.2s ease both;
  }
  .hero-title .gold { color: var(--gold); display: block; }
  .hero-sub {
    color: rgba(255,255,255,0.7); font-size: 1.1rem;
    margin: 16px 0 8px; letter-spacing: 0.5px; line-height: 1.6;
    animation: fadeInUp 0.8s 0.3s ease both;
  }
  .hero-specialty {
    color: var(--gold-light); font-size: 1rem; font-style: italic;
    margin-bottom: 32px; letter-spacing: 1px;
    animation: fadeInUp 0.8s 0.4s ease both;
  }
  .hero-btns {
    display: flex; gap: 16px; flex-wrap: wrap;
    animation: fadeInUp 0.8s 0.5s ease both;
  }
  .btn-primary {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--maroon-dark); padding: 14px 32px; border-radius: 50px;
    font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1rem;
    text-decoration: none; border: none; cursor: pointer;
    box-shadow: 0 4px 20px rgba(212,175,55,0.4);
    transition: all 0.3s; letter-spacing: 0.5px;
  }
  .btn-primary:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(212,175,55,0.5); }
  .btn-outline {
    background: transparent; color: var(--gold);
    border: 1.5px solid var(--gold); padding: 14px 32px; border-radius: 50px;
    font-family: 'Playfair Display', serif; font-weight: 600; font-size: 1rem;
    text-decoration: none; cursor: pointer;
    transition: all 0.3s; letter-spacing: 0.5px;
  }
  .btn-outline:hover { background: rgba(212,175,55,0.1); transform: translateY(-3px); }

  .hero-visual {
    display: flex; justify-content: center; align-items: center;
    animation: fadeInRight 1s 0.3s ease both;
  }
  .hero-plate {
    width: 380px; height: 380px; border-radius: 50%;
    background: linear-gradient(135deg, rgba(212,175,55,0.2), rgba(212,175,55,0.05));
    border: 2px solid rgba(212,175,55,0.4);
    display: flex; align-items: center; justify-content: center;
    position: relative; box-shadow: 0 0 60px rgba(212,175,55,0.2);
  }
  @keyframes spin-slow { from{transform:rotate(0deg)} to{transform:rotate(360deg)} }
  /* .hero-plate::before {
    content: '';
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    border: 1.5px dashed rgba(212,175,55,0.4);
    animation: spin-slow 20s linear infinite;
    pointer-events: none;
  } */
  .hero-plate::after {
    content: '';
    position: absolute;
    inset: -20px;
    border-radius: 50%;
    border: 1px solid rgba(212,175,55,0.15);
    pointer-events: none;
  }
  .hero-plate-inner {
    width: 340px; height: 340px; border-radius: 50%;
    background: radial-gradient(circle, rgba(212,175,55,0.15) 0%, transparent 70%);
    border: 1px dashed rgba(212,175,55,0.3);
    display: flex; align-items: center; justify-content: center;
    font-size: 80px; flex-direction: column; gap: 4px;
    transition: transform 0.5s ease;
  }
  /* .hero-plate:hover .hero-plate-inner {
    transform: scale(1.04);
  } */
  .hero-sweets-emoji { font-size: 60px; filter: drop-shadow(0 0 20px rgba(212,175,55,0.5)); }
  .hero-label {
    font-family: 'Playfair Display', serif; color: var(--gold);
    font-size: 0.7rem; letter-spacing: 3px; text-transform: uppercase;
  }
  .floating-badge {
    position: absolute; background: var(--gold);
    color: var(--maroon-dark); padding: 8px 16px; border-radius: 30px;
    font-family: 'Playfair Display', serif; font-weight: 700; font-size: 0.75rem;
    box-shadow: var(--shadow-gold);
    animation: float 3s ease-in-out infinite;
  }
  .floating-badge:nth-child(2) { top: 20px; right: -20px; animation-delay: 0s; }
  .floating-badge:nth-child(3) { bottom: 40px; left: -30px; animation-delay: 1s; }
  @keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }

  @keyframes fadeInUp { from{opacity:0;transform:translateY(30px)} to{opacity:1;transform:translateY(0)} }
  @keyframes fadeInRight { from{opacity:0;transform:translateX(30px)} to{opacity:1;transform:translateX(0)} }

  /* ── SECTIONS ── */
  section { padding: 80px 20px; }
  .container { max-width: 1200px; margin: 0 auto; }
  .section-header { text-align: center; margin-bottom: 60px; }
  .section-header-2{margin-bottom: 40px;}
  .section-tag {
    display: inline-block; color: var(--gold); font-size: 0.75rem;
    letter-spacing: 4px; text-transform: uppercase; margin-bottom: 12px;
  }
  .section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    color: var(--maroon); line-height: 1.2; margin-bottom: 16px;
  }
  .section-desc {
    color: var(--brown-light); font-size: 1.05rem; max-width: 600px;
    margin: 0 auto; line-height: 1.7;
  }

  /* ── WHY CHOOSE US ── */
  #why { background: var(--cream-dark); }
  .features-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    /* gap: 20px; */
    gap: 24px;
  }
  .feature-card {
    background: var(--white); border-radius: 16px;
    /* padding: 36px 18px; text-align: center; */
    padding: 36px 28px; text-align: center;
    border: 1px solid rgba(212,175,55,0.2);
    box-shadow: 0 4px 20px rgba(139,0,0,0.06);
    transition: all 0.4s ease; position: relative; overflow: hidden;
  }
  .feature-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    transform: scaleX(0); transition: transform 0.4s ease;
  }
  .feature-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
  .feature-card:hover::before { transform: scaleX(1); }
  .feature-icon {
    width: 140px; height: 140px; border-radius: 50%;
    background: linear-gradient(135deg, rgba(139,0,0,0.08), rgba(212,175,55,0.15));
    display: flex; align-items: center; justify-content: center;
    font-size: 28px; margin: 0 auto 20px;
    border: 1px solid rgba(212,175,55,0.3);
  }
  .feature-title {
    font-family: 'Playfair Display', serif; font-size: 1.2rem;
    color: var(--maroon); margin-bottom: 10px;
  }
  .feature-desc { color: var(--brown-light); font-size: 0.95rem; line-height: 1.6; }

  /* ── PRODUCTS ── */
  #products { background: var(--cream); }
  .products-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 28px;
  }
  .product-card {
    background: var(--white); border-radius: 20px; overflow: hidden;
    box-shadow: 0 4px 20px rgba(139,0,0,0.08);
    border: 1px solid rgba(212,175,55,0.15);
    transition: all 0.4s ease;
  }
  .product-card:hover { transform: translateY(-10px); box-shadow: 0 16px 50px rgba(139,0,0,0.15); }
  /* .product-img {
    height: 200px;
    display: flex; align-items: center; justify-content: center;
    font-size: 64px; position: relative; overflow: hidden;
  } */

  .product-img{
    height:250px;
    overflow:hidden;
    position:relative;
}

.product-img img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    transition:0.4s ease;
}

.product-card:hover .product-img img{
    transform:scale(1.08);
}

  .product-img::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(139,0,0,0.15));
  }
  .product-body { padding: 24px; }
  .product-name {
    font-family: 'Playfair Display', serif; font-size: 1.2rem;
    color: var(--maroon); margin-bottom: 8px;
  }
  .product-desc { color: var(--brown-light); font-size: 0.9rem; line-height: 1.6; margin-bottom: 20px; }
  .product-btns { display: flex; gap: 10px; }
  .btn-inquiry {
    flex: 1; background: var(--maroon); color: var(--gold);
    border: none; padding: 10px; border-radius: 8px;
    font-family: 'Playfair Display', serif; font-size: 0.85rem; font-weight: 600;
    cursor: pointer; transition: all 0.3s; text-align: center; text-decoration: none;
    display: flex; align-items: center; justify-content: center; gap: 6px;
  }
  .btn-inquiry:hover { background: var(--maroon-light); }
  .btn-wa {
    background: #25d366; color: white;
    border: none; padding: 10px 14px; border-radius: 8px;
    cursor: pointer; transition: all 0.3s; font-size: 16px;
    text-decoration: none; display: flex; align-items: center;
  }
  .btn-wa:hover { background: #1eb859; }

  /* Product image backgrounds */
  .pi-1 { background: linear-gradient(135deg, #fff3e0, #ffe0b2); }
  .pi-2 { background: linear-gradient(135deg, #fce4ec, #f8bbd0); }
  .pi-3 { background: linear-gradient(135deg, #f3e5f5, #e1bee7); }
  .pi-4 { background: linear-gradient(135deg, #e8f5e9, #c8e6c9); }
  .pi-5 { background: linear-gradient(135deg, #fff8e1, #ffecb3); }
  .pi-6 { background: linear-gradient(135deg, #fbe9e7, #ffccbc); }
  .pi-7 { background: linear-gradient(135deg, #e8eaf6, #c5cae9); }
  .pi-8 { background: linear-gradient(135deg, #fff3e0, #ffe0b2); }
  .pi-9 { background: linear-gradient(135deg, #fce4ec, #f8bbd0); }
  .pi-10 { background: linear-gradient(135deg, #f3e5f5, #e1bee7); }
  .pi-11 { background: linear-gradient(135deg, #e8f5e9, #c8e6c9); }
  .pi-12 { background: linear-gradient(135deg, #fff8e1, #ffecb3); }
  .pi-13 { background: linear-gradient(135deg, #fbe9e7, #ffccbc); }
  .pi-14 { background: linear-gradient(135deg, #e8eaf6, #c5cae9); }
  .pi-15 { background: linear-gradient(135deg, #fff3e0, #ffe0b2); }
  .pi-16 { background: linear-gradient(135deg, #fce4ec, #f8bbd0); }
    

  /* ── DELIVERY ── */
  #delivery { background: linear-gradient(135deg, var(--maroon-dark), #6b0000); }
  #delivery .section-title { color: var(--cream); }
  #delivery .section-tag { color: var(--gold-light); }
  .locations-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 16px; margin-bottom: 40px;
  }
  .location-card {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(212,175,55,0.3);
    border-radius: 16px; padding: 24px 16px; text-align: center;
    transition: all 0.3s; backdrop-filter: blur(10px);
  }
  .location-card:hover {
    background: rgba(212,175,55,0.15); transform: translateY(-5px);
    border-color: var(--gold);
  }
  .location-icon { font-size: 36px; margin-bottom: 12px; display: block; }
  .location-name {
    font-family: 'Playfair Display', serif; color: var(--cream);
    font-size: 1rem; font-weight: 600;
  }
  .all-india-banner {
    background: linear-gradient(90deg, transparent, rgba(212,175,55,0.2), transparent);
    border: 1px solid rgba(212,175,55,0.4); border-radius: 50px;
    padding: 16px 32px; text-align: center;
    font-family: 'Playfair Display', serif; color: var(--gold);
    font-size: 1.2rem; letter-spacing: 2px;
  }

  /* ── STATS ── */
  #stats { background: var(--cream-dark); }
  .stats-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
  }
  .stat-card {
    text-align: center; padding: 32px 20px;
    background: var(--white); border-radius: 16px;
    box-shadow: 0 4px 20px rgba(139,0,0,0.06);
    border-bottom: 3px solid var(--gold);
    transition: transform 0.3s;
  }
  .stat-card:hover { transform: translateY(-5px); }
  .stat-num {
    font-family: 'Playfair Display', serif; font-size: 2.8rem;
    color: var(--maroon); font-weight: 900; line-height: 1;
    margin-bottom: 8px;
  }
  .stat-label { color: var(--brown); font-size: 0.9rem; letter-spacing: 1px; }

  /* ── TESTIMONIALS ── */
  #testimonials { background: var(--cream); }
  .reviews-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
  }
  .review-card {
    background: var(--white); border-radius: 16px; padding: 28px;
    border: 1px solid rgba(212,175,55,0.2);
    box-shadow: 0 4px 20px rgba(139,0,0,0.06);
    position: relative;
  }
  .review-card::before {
    content: '"'; position: absolute; top: 16px; right: 24px;
    font-family: 'Playfair Display', serif; font-size: 5rem;
    color: rgba(212,175,55,0.2); line-height: 1;
  }
  .stars { color: var(--gold); font-size: 1rem; margin-bottom: 12px; letter-spacing: 2px; }
  .review-text { color: var(--brown); font-size: 1rem; line-height: 1.7; font-style: italic; margin-bottom: 16px; }
  .reviewer { display: flex; align-items: center; gap: 12px; }
  .reviewer-avatar {
    width: 44px; height: 44px; border-radius: 50%;
    background: linear-gradient(135deg, var(--maroon), var(--maroon-light));
    display: flex; align-items: center; justify-content: center;
    color: var(--gold); font-family: 'Playfair Display', serif; font-weight: 700;
    font-size: 1.1rem;
  }
  .reviewer-name { font-family: 'Playfair Display', serif; color: var(--maroon); font-size: 1rem; }
  .reviewer-loc { color: var(--brown-light); font-size: 0.8rem; }

  /* ── CTA ── */
  #cta {
    background: linear-gradient(135deg, var(--maroon-dark) 0%, #4a0000 100%);
    text-align: center; padding: 100px 20px;
    position: relative; overflow: hidden;
  }
  #cta::before {
    content: ''; position: absolute;
    inset: 0; background: repeating-linear-gradient(
      45deg, transparent, transparent 40px,
      rgba(212,175,55,0.03) 40px, rgba(212,175,55,0.03) 41px
    );
  }
  .cta-content { position: relative; z-index: 2; }
  .cta-title {
    font-family: 'Playfair Display', serif; color: var(--cream);
    font-size: clamp(2rem, 5vw, 3.5rem); margin-bottom: 16px;
  }
  .cta-gold { color: var(--gold); }
  .cta-sub { color: rgba(255,255,255,0.7); font-size: 1.1rem; margin-bottom: 40px; }
  .cta-phone {
    font-family: 'Playfair Display', serif; color: var(--gold);
    font-size: 2rem; display: block; margin-bottom: 32px;
    text-decoration: none; transition: all 0.3s;
  }
  .cta-phone:hover { color: var(--gold-light); text-shadow: 0 0 20px rgba(212,175,55,0.5); }

  /* ── ABOUT ── */
  #about { background: var(--cream-dark); }
  .about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
  .about-visual {
    position: relative; display: flex; justify-content: center;
  }
  .about-circle {
    width: 280px; height: 280px; border-radius: 50%;
    background: linear-gradient(135deg, rgba(139,0,0,0.1), rgba(212,175,55,0.2));
    border: 2px solid rgba(212,175,55,0.4);
    display: flex; align-items: center; justify-content: center;
    flex-direction: column; gap: 8px; text-align: center; padding: 40px;
    box-shadow: 0 0 50px rgba(212,175,55,0.15);
  }
  .about-circle-emoji { font-size: 64px; }
  .about-circle-text {
    font-family: 'Playfair Display', serif; color: var(--maroon);
    font-size: 1rem; font-weight: 600;
  }
  .about-text .section-header { text-align: left; }
  .about-text .section-header .divider { justify-content: flex-start; }
  .about-text .section-header .divider::before { display: none; }
  .about-story { color: var(--brown); line-height: 1.8; font-size: 1.05rem; margin-bottom: 24px; }
  .values-list { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 24px; }
  .value-item {
    display: flex; align-items: center; gap: 10px;
    color: var(--maroon); font-size: 0.95rem;
  }
  .value-dot { width: 8px; height: 8px; background: var(--gold); border-radius: 50%; flex-shrink: 0; }

  /* ── CONTACT ── */
  #contact { background: var(--cream); }
  .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
  .contact-info h3 {
    font-family: 'Playfair Display', serif; color: var(--maroon);
    font-size: 1.8rem; margin-bottom: 24px;
  }
  .contact-item {
    display: flex; align-items: flex-start; gap: 16px;
    margin-bottom: 24px; padding: 20px;
    background: var(--white); border-radius: 12px;
    border: 1px solid rgba(212,175,55,0.2);
    box-shadow: 0 2px 10px rgba(139,0,0,0.05);
  }
  .contact-icon {
    width: 44px; height: 44px; background: linear-gradient(135deg, var(--maroon), var(--maroon-light));
    border-radius: 10px; display: flex; align-items: center; justify-content: center;
    font-size: 18px; flex-shrink: 0;
  }
  .contact-label { color: var(--brown-light); font-size: 0.8rem; letter-spacing: 1px; }
  .contact-value { color: var(--maroon); font-size: 1rem; font-weight: 600; }
  .contact-form { background: var(--white); border-radius: 20px; padding: 36px; box-shadow: var(--shadow); }
  .contact-form h3 {
    font-family: 'Playfair Display', serif; color: var(--maroon);
    font-size: 1.5rem; margin-bottom: 24px;
  }
  .form-group { margin-bottom: 20px; }
  .form-group label { display: block; color: var(--brown); font-size: 0.85rem; margin-bottom: 6px; letter-spacing: 0.5px; }
  .form-group input, .form-group select, .form-group textarea {
    width: 100%; padding: 12px 16px;
    border: 1.5px solid rgba(212,175,55,0.3); border-radius: 10px;
    background: var(--cream); color: var(--brown);
    font-family: 'Cormorant Garamond', serif; font-size: 1rem;
    outline: none; transition: border-color 0.3s;
  }
  .form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: var(--gold); background: var(--white);
  }
  .form-group textarea { resize: vertical; min-height: 100px; }
  .form-group input.field-error,
  .form-group select.field-error,
  .form-group textarea.field-error {
    border-color: var(--maroon);
    background: #fff5f1;
  }
  .form-error {
    display: none;
    color: var(--maroon);
    font-size: 0.88rem;
    font-weight: 600;
    line-height: 1.4;
    margin: -6px 0 14px;
  }
  .form-error.active {
    display: block;
  }
  .btn-submit {
    width: 100%; background: linear-gradient(135deg, var(--maroon), var(--maroon-light));
    color: var(--gold); border: none; padding: 14px;
    border-radius: 50px; font-family: 'Playfair Display', serif;
    font-size: 1.05rem; font-weight: 600; letter-spacing: 1px;
    cursor: pointer; transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(139,0,0,0.3);
  }
  .btn-submit:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(139,0,0,0.4); }

  /* ── FOOTER ── */
  footer {
    background: var(--brown); color: rgba(255,255,255,0.7);
    padding: 60px 20px 20px;
  }
  .footer-grid {
    display: grid; grid-template-columns: 2fr 1fr 1fr;
    gap: 40px; margin-bottom: 40px;
  }
  .footer-brand-logo {
    display: flex; align-items: center; gap: 12px; margin-bottom: 10px;
  }

  /* .footer-brand-logo{
    display:flex;
    align-items:center;
    gap:15px;
    } */
    .footer-logo{
        width:100px;
        height:100px;
        object-fit:contain;
    }

  .footer-brand-logo .logo-circle {
    width: 48px; height: 48px; background: var(--gold); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Playfair Display', serif; font-weight: 900;
    color: var(--maroon-dark); font-size: 20px;
  }
  .footer-brand-name {
    font-family: 'Playfair Display', serif; color: var(--gold);
    font-size: 1.1rem; font-weight: 700;
  }
  .footer-tagline { color: rgba(255,255,255,0.4); font-size: 0.75rem; letter-spacing: 2px; }
  .footer-desc { font-size: 0.9rem; line-height: 1.7; max-width: 280px; }
  .footer-heading {
    font-family: 'Playfair Display', serif; color: var(--gold);
    font-size: 16px; margin-bottom: 20px; letter-spacing: 1px;
  }
  .footer-links { list-style: none; }
  .footer-links li { margin-bottom: 10px; }
  .footer-links a {
    color: rgba(255,255,255,0.6); text-decoration: none;
    font-size: 16px; transition: color 0.3s; display: flex; align-items: center; gap: 6px;
  }
  .footer-links a::before { content: '›'; color: var(--gold); }
  .footer-links a:hover { color: var(--gold); }
  .footer-contact p { font-size: 16px; margin-bottom: 10px; display: flex; align-items: flex-start; gap: 8px; }
  .footer-divider { border-color: rgba(255,255,255,0.1); margin-bottom: 20px; }
  .footer-bottom {
    display: flex; justify-content: space-between; align-items: center;
    font-size: 16px; color: rgba(255,255,255,0.4); flex-wrap: wrap; gap: 10px;
  }
  .footer-gold { color: var(--gold); }

  /* ── WHATSAPP FLOAT ── */
  .wa-float {
    position: fixed; bottom: 24px; right: 24px; z-index: 999;
    width: 58px; height: 58px; background: #25d366;
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 0; line-height: 1;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    text-decoration: none; transition: all 0.3s;
    animation: wa-pulse 2s ease-in-out infinite;
  }
  .wa-float i {
    font-size: 28px;
    color: #fff;
    line-height: 1;
  }
  .wa-float:hover { transform: scale(1.1); box-shadow: 0 8px 30px rgba(37,211,102,0.6); }
  @keyframes wa-pulse {
    0%,100%{box-shadow:0 4px 20px rgba(37,211,102,0.4)}
    50%{box-shadow:0 4px 30px rgba(37,211,102,0.7)}
  }

  /* ── POPUP ── */
  .popup-overlay {
    display: none; position: fixed; inset: 0; z-index: 2000;
    background: rgba(0,0,0,0.7); backdrop-filter: blur(4px);
    align-items: center; justify-content: center; padding: 20px;
  }
  .popup-overlay.active { display: flex; }
  .popup {
    background: var(--white); border-radius: 20px;
    padding: 36px; width: 100%; max-width: 480px;
    position: relative; box-shadow: 0 20px 60px rgba(0,0,0,0.4);
    animation: popIn 0.4s cubic-bezier(0.34,1.56,0.64,1) both;
  }
  @keyframes popIn { from{opacity:0;transform:scale(0.8)} to{opacity:1;transform:scale(1)} }
  .popup-close {
    position: absolute; top: 16px; right: 16px;
    width: 32px; height: 32px; border-radius: 50%;
    background: var(--cream-dark); border: none; cursor: pointer;
    font-size: 16px; display: flex; align-items: center; justify-content: center;
    color: var(--brown); transition: all 0.2s;
  }
  .popup-close:hover { background: var(--maroon); color: var(--gold); }
  .popup-title {
    font-family: 'Playfair Display', serif; color: var(--maroon);
    font-size: 1.5rem; margin-bottom: 6px;
  }
  .popup-sub { color: var(--brown-light); font-size: 0.9rem; margin-bottom: 24px; }

  /* ── MOBILE NAV ── */
  .mobile-menu {
    display: none; position: fixed; inset: 0; z-index: 999;
    background: var(--maroon-dark); flex-direction: column;
    align-items: center; justify-content: center; gap: 24px;
  }
  .mobile-menu.active { display: flex; }
  .mobile-menu a {
    color: var(--cream); text-decoration: none;
    font-family: 'Playfair Display', serif; font-size: 1.3rem;
    transition: color 0.3s;
  }
  .mobile-menu a:hover,
  .mobile-menu a.active { color: var(--gold); }
  .mobile-menu-close {
    position: absolute; top: 20px; right: 20px;
    background: none; border: none; color: var(--gold);
    font-size: 28px; cursor: pointer;
  }

  /* ── SCROLL ANIMATION ── */
  .reveal {
    opacity: 1; transform: translateY(30px);
    transition: all 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
  .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; }

  /* ── RESPONSIVE ── */
  @media(max-width:768px) {
    .nav-links, .nav-cta { display: none; }
    .hamburger { display: flex; }
    .hero-content { grid-template-columns: 1fr; text-align: center; gap: 40px; padding-top: 90px; }
    .hero-btns { justify-content: center; }
    .hero-visual { order: -1; }
    .hero-plate { width: 220px; height: 220px; }
    .hero-plate-inner { width: 190px; height: 190px; }
    .hero-sweets-emoji { font-size: 44px; }
    .about-grid { grid-template-columns: 1fr; }
    .about-text .section-header { text-align: center; }
    .about-visual { margin-bottom: 0; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .floating-badge { display: none; }
  }
  @media(max-width:480px) {
    section { padding: 60px 16px; }
    .products-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
  }

  /* ── GOLD SHIMMER ── */
  .gold-shimmer {
    background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
    background-size: 200%;
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s linear infinite;
  }
  @keyframes shimmer { from{background-position:200%} to{background-position:-200%} }

  /* Page sections */
  .page-section { display: none; }
  .page-section.active { display: block; }

  /* ══════════════════════════════════════════
   TABLER ICONS — append these to style.css
   ══════════════════════════════════════════ */

/* ── NAV CTA icon spacing ── */
.nav-cta i {
  font-size: 14px;
  vertical-align: -2px;
  margin-right: 5px;
}

/* ── Mobile menu close button ── */
.mobile-menu-close i {
  font-size: 28px;
  line-height: 1;
}

/* ── Location icon (delivery section) ── */
/* Overrides font-size since we're using <i> instead of emoji now */
.location-icon {
  font-size: 36px;          /* inherits to <i> via font-size */
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
  line-height: 1;
}

.location-icon i {
  font-size: 36px;
  color: var(--gold);
}

/* ── Stat heart icon ── */
.stat-heart-icon {
  font-size: 2.4rem;
  color: var(--maroon);
  vertical-align: -4px;
}

/* ── Footer contact icons ── */
.footer-contact-icon {
  font-size: 16px;
  color: var(--gold);
  vertical-align: -2px;
  margin-right: 8px;
  flex-shrink: 0;
}

.footer-contact p {
  display: flex;
  align-items: center;   /* vertically center icon + text */
}

/* ── WhatsApp float — icon color ── */
/* (sizing handled in main .wa-float rule above) */

/* ── Popup close button ── */
.popup-close i {
  font-size: 16px;
  line-height: 1;
  pointer-events: none;
}

/* ── btn-primary / btn-outline icon alignment ── */
.btn-primary i,
.btn-outline i {
  vertical-align: -2px;
  line-height: 1;
}

/* ── reviewer-loc icon ── */
.reviewer-loc i {
  color: var(--gold-dark);
}

/* ── All-India banner icons ── */
.all-india-banner i {
  color: var(--gold);
  vertical-align: -3px;
}





/* ══════════════════════════════════════════════
   ✦ Our Specialities — spec-badges
══════════════════════════════════════════════ */
.spec-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
  margin-bottom: 8px;
}
.spec-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(212,175,55,0.10);
  border: 1px solid rgba(212,175,55,0.30);
  color: var(--gold);
  font-size: 13px;
  font-weight: 500;
  padding: 6px 16px;
  border-radius: 50px;
  letter-spacing: 0.3px;
}
.spec-badge i { font-size: 14px; }


/* ══════════════════════════════════════════════
   ✦ We Deliver To — premium image cards
══════════════════════════════════════════════ */
.delivery-cards-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-bottom: 36px;
}

.delivery-card {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(212,175,55,0.18);
  background: rgba(255,255,255,0.04);
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.delivery-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212,175,55,0.55);
}

/* Image area */
.delivery-card-img {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
}
.delivery-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.delivery-card:hover .delivery-card-img img {
  transform: scale(1.07);
}

/* Dark gradient overlay */
.delivery-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.55) 100%);
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 10px;
}

/* Top-right badge on image */
.delivery-card-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(212,175,55,0.85);
  color: #1a1200;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 30px;
}
.delivery-card-badge i { font-size: 11px; }

/* Text below image */
.delivery-card-body {
  padding: 14px 14px 16px;
  text-align: center;
}
.delivery-loc-icon {
  font-size: 20px;
  color: var(--gold);
  display: block;
  margin-bottom: 5px;
}

svg.delivery-loc-icon {
  width: 22px;
  height: 22px;
  margin-left: auto;
  margin-right: auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.delivery-loc-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 3px;
  font-family: 'Playfair Display', serif;
}
.delivery-loc-note {
  font-size: 11px;
  color: rgba(255,255,255,0.60);
  letter-spacing: 0.3px;
}

/* Responsive */
@media (max-width: 900px) {
  .delivery-cards-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 580px) {
  .delivery-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}


/* ══════════════════════════════════════════════
   ✦ Our Legacy — stat icon wrap
══════════════════════════════════════════════ */
.stat-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(212,175,55,0.12);
  border: 1px solid rgba(212,175,55,0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  font-size: 22px;
  color: var(--gold);
  animation: iconFloat 3s ease-in-out infinite;
}
.stat-card:nth-child(2) .stat-icon-wrap { animation-delay: 0.35s; }
.stat-card:nth-child(3) .stat-icon-wrap { animation-delay: 0.70s; }
.stat-card:nth-child(4) .stat-icon-wrap { animation-delay: 1.05s; }

@keyframes iconFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-5px); }
}

/* ══════════════════════════════════════════
   ABOUT PAGE ICONS — append to style.css
   (after the existing Tabler icon rules)
   ══════════════════════════════════════════ */

/* ── About circle — replaces emoji ── */
.about-circle-icon {
  font-size: 52px;
  color: var(--maroon);
  margin-bottom: 8px;
  display: block;
  line-height: 1;
}

/* ── Mission stat cards icon wrap ── */
.about-mission-icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(139,0,0,0.07);
  border: 1px solid rgba(139,0,0,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.about-mission-icon {
  font-size: 28px;
  color: var(--maroon);
  line-height: 1;
}

/* ── Owner card ── */
.owner-card {
  max-width: 400px;
  margin: 24px auto 0;
  background: var(--white);
  border-radius: 20px;
  padding: 40px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(212,175,55,0.2);
  text-align: center;
}

.owner-avatar {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--maroon), var(--maroon-light));
  border-radius: 50%;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.owner-avatar-icon {
  font-size: 36px;
  color: var(--gold);
  line-height: 1;
}

.owner-name {
  font-family: 'Playfair Display', serif;
  color: var(--maroon);
  font-size: 1.5rem;
  margin-bottom: 4px;
}

.owner-title {
  color: var(--brown-light);
  font-size: 0.9rem;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.owner-btn {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
/* ══════════════════════════════════════════
   ABOUT PAGE — Image Visual
   Replace existing .about-circle styles
   ══════════════════════════════════════════ */

/* Outer wrapper — same size as old .about-circle */
.about-img-wrap {
  position: relative;
  width: 320px;
  height: 320px;
  margin: 0 auto;
}

/* The circular image */
.about-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
  border: 3px solid rgba(212,175,55,0.5);
  box-shadow:
    0 0 0 8px rgba(212,175,55,0.08),
    0 0 50px rgba(212,175,55,0.2),
    0 8px 40px rgba(139,0,0,0.2);
  transition: transform 0.5s ease;
}

.about-img-wrap:hover .about-img {
  transform: scale(1.04);
}

/* Slow rotating ring around the image */
.about-img-wrap::before {
  content: '';
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 1.5px dashed rgba(212,175,55,0.4);
  animation: spin-slow 20s linear infinite;
  pointer-events: none;
}

/* Second static outer ring */
.about-img-wrap::after {
  content: '';
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  border: 1px solid rgba(212,175,55,0.15);
  pointer-events: none;
}

/* Floating badges — same style as hero */
.about-img-badge {
  position: absolute;
  background: var(--gold);
  color: var(--maroon-dark);
  padding: 8px 16px;
  border-radius: 30px;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 0.75rem;
  box-shadow: 0 4px 20px rgba(212,175,55,0.4);
  white-space: nowrap;
  letter-spacing: 0.3px;
  animation: float 3s ease-in-out infinite;
}

/* Top-right badge */
.about-img-badge:not(.about-img-badge--bottom) {
  top: 16px;
  right: -24px;
  animation-delay: 0s;
}

/* Bottom-left badge */
.about-img-badge--bottom {
  bottom: 24px;
  left: -24px;
  animation-delay: 1.2s;
}

/* Responsive */
@media (max-width: 768px) {
  .about-img-wrap {
    width: 240px;
    height: 240px;
  }
  /* .about-img-badge {
    display: none; 
  } */
}

/* ═══════════════════════════════════════════════════════
   LEGACY / STATS SECTION  —  #stats-legacy
   All class names are prefixed with "legacy-" or "lcard"
   so there is ZERO conflict with existing .stat-card rules
   ═══════════════════════════════════════════════════════ */

#stats-legacy {
  background: var(--cream-dark);
  padding: 80px 20px;
}

/* ── Container ── */
.legacy-container {
  max-width: 1100px;
  margin: 0 auto;
}

/* ── Section header ── */
.legacy-header {
  text-align: center;
  margin-bottom: 52px;
}

.legacy-tag {
  display: inline-block;
  color: var(--gold-dark);
  font-size: 0.72rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.legacy-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--maroon);
  line-height: 1.2;
}

.legacy-desc {
  color: var(--brown-light);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 560px;
  margin: 12px auto 0;
}

/* ── Grid — 4 cards joined together ── */
.legacy-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(212,175,55,0.35);
  box-shadow: 0 8px 40px rgba(139,0,0,0.1);
}

/* ── Individual card ── */
.lcard {
  background: var(--white);
  padding: 40px 24px 36px;
  text-align: center;
  position: relative;
  border-right: 1px solid rgba(212,175,55,0.25);
  transition: all 0.35s ease;
  overflow: hidden;
}

.lcard:last-child {
  border-right: none;
}

/* Gold top-bar that slides in on hover */
.lcard::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.lcard:hover {
  background: var(--cream);
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(139,0,0,0.1);
  z-index: 1;
}

.lcard:hover::before {
  transform: scaleX(1);
}

/* ── Icon circle ── */
.lcard-icon-wrap {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: rgba(139,0,0,0.06);
  border: 1.5px solid rgba(139,0,0,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: all 0.35s ease;
}

.lcard:hover .lcard-icon-wrap {
  background: rgba(139,0,0,0.1);
  border-color: rgba(139,0,0,0.3);
}

.lcard-icon-wrap i {
  font-size: 28px;
  color: var(--maroon);
  line-height: 1;
}

/* ── Number / stat value ── */
.lcard-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.6rem;
  font-weight: 900;
  color: var(--maroon);
  line-height: 1;
  margin-bottom: 6px;
}

.lcard-num span {
  font-size: 1.6rem;
}

/* Delivery count — smaller font to fit */
.lcard-num--pan {
  font-size: 2rem;
  padding-top: 6px;
}

/* Heart icon as the "number" */
.lcard-num--heart i {
  font-size: 2.2rem;
  color: var(--maroon);
  vertical-align: -4px;
}

/* ── Gold divider line ── */
.lcard-divider {
  width: 32px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 14px auto;
}

/* ── Label ── */
.lcard-label {
  color: var(--brown);
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  margin-bottom: 6px;
}

/* ── Sub-label ── */
.lcard-sub {
  color: var(--brown-light);
  font-size: 0.82rem;
  letter-spacing: 0.5px;
  font-style: italic;
  opacity: 0.9;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .legacy-grid {
    grid-template-columns: repeat(2, 1fr);
    border-radius: 16px;
  }

  /* Re-add internal borders for 2-col layout */
  .lcard:nth-child(2) {
    border-right: none;
  }
  .lcard:nth-child(1),
  .lcard:nth-child(2) {
    border-bottom: 1px solid rgba(212,175,55,0.25);
  }

  .lcard-num {
    font-size: 2.2rem;
  }
}

@media (max-width: 420px) {
  .legacy-grid {
    grid-template-columns: 1fr 1fr;
  }
  .lcard {
    padding: 28px 16px 24px;
  }
  .lcard-icon-wrap {
    width: 54px;
    height: 54px;
  }
  .lcard-icon-wrap i {
    font-size: 22px;
  }
}
/* ══════════════════════════════════════════════
   ✦ COLOR & CONTRAST FIXES
══════════════════════════════════════════════ */

/* Form placeholder text — clearly visible */
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--brown-light);
  opacity: 0.7;
}

/* Select option text — always dark */
.form-group select option {
  color: var(--text-dark);
  background: var(--white);
}

/* Contact info label — uppercase, readable */
.contact-label {
  color: var(--brown-light);
  font-size: 0.78rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 3px;
}

/* Contact value — maroon, strong */
.contact-value {
  color: var(--maroon);
  font-size: 1rem;
  font-weight: 600;
}

/* Stat card secondary label on about page — readable */
.stat-card .stat-label:last-child {
  color: var(--brown-light);
  font-size: 0.88rem;
}

/* Legacy tag — more visible gold */
.legacy-tag {
  color: var(--gold-dark);
}

/* about-story text — strong readable brown */
.about-story {
  color: var(--text-dark);
}

/* review-text — clear dark */
.review-text {
  color: var(--brown);
}

/* Delivery section-desc override already handled inline;
   ensure .section-desc on white bg is readable */
/* .section-desc {
  color: var(--brown-light);
}

#prasad-delivery {
  background: linear-gradient(180deg, var(--cream), var(--cream-dark));
}

.prasad-wrap {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(300px, 1.1fr);
  gap: 44px;
  align-items: center;
}

.prasad-poster img {
  width: 100%;
  max-height: 720px;
  object-fit: contain;
  display: block;
  border-radius: 8px;
  box-shadow: 0 22px 60px rgba(74, 0, 0, 0.18);
}

.prasad-content .section-header,
.prasad-content {
  text-align: left;
}

.prasad-content .section-title {
  margin: 10px 0 14px;
}

.prasad-content .section-desc {
  margin: 0 0 24px;
  max-width: 560px;
}

.prasad-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  max-width: 560px;
  margin-bottom: 16px;
}

.prasad-list div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 13px 14px;
  border: 1px solid rgba(128, 0, 0, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.58);
}

.prasad-list span {
  color: var(--brown);
  font-weight: 600;
}

.prasad-list strong {
  color: var(--maroon);
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
}

.prasad-note {
  color: var(--brown-light);
  font-size: 0.95rem;
  margin-bottom: 28px;
}

.prasad-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.prasad-actions .btn-outline {
  color: var(--maroon);
  border-color: rgba(128, 0, 0, 0.35);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

@media (max-width: 820px) {
  .prasad-wrap {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .prasad-content,
  .prasad-content .section-header {
    text-align: center;
  }

  .prasad-content .section-desc,
  .prasad-list {
    margin-left: auto;
    margin-right: auto;
  }

  .prasad-actions {
    justify-content: center;
  }
}

@media (max-width: 520px) {
  .prasad-list {
    grid-template-columns: 1fr;
  }

  .prasad-poster img {
    max-height: none;
  }
} */


/* Value items on about page */
.value-item {
  color: var(--maroon);
  font-weight: 500;
}

/* Owner title */
.owner-title {
  color: var(--brown-light);
}

/* Footer desc — slightly brighter */
.footer-desc {
  color: rgba(255,255,255,0.65);
  font-size: 0.rem;
  line-height: 1.75;
}

/* Footer contact links readable */
.footer-contact p {
  color: rgba(255,255,255,0.65);
}

/* WhatsApp btn in contact-info — correct green icon */
.contact-info .btn-primary i.ti-brand-whatsapp {
  color: #fff;
  font-size: 17px;
}

/* Btn-wa (WhatsApp square button on product cards) — consistent size */
.btn-wa {
  width: 42px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.btn-wa i {
  font-size: 20px;
  color: #fff;
  line-height: 1;
}



/* deliver  */
.service-hero{
  background:linear-gradient(135deg,var(--maroon-dark),#6b0000);
  padding:80px 20px;
  text-align:center;
}
.service-hero p{
  color:rgba(255,255,255,0.7);
  font-size:1.05rem;
  margin-top:12px;
}

.svc-section{padding:72px 24px;background:#fff8e7}

.svc-header{text-align:center;margin-bottom:48px}
.svc-tag{display:inline-block;color:#b8941f;font-size:0.72rem;letter-spacing:4px;text-transform:uppercase;margin-bottom:10px}
.svc-title{font-family:'Playfair Display',serif;font-size:2.2rem;color:#8B0000;margin-bottom:10px}
.svc-title span{color:#D4AF37}
.svc-desc{color:#6d4c41;font-size:1rem;max-width:580px;margin:0 auto}

.svc-mantra{
  text-align:center;
  font-family:'Playfair Display',serif;
  color:#8B0000;font-size:0.85rem;letter-spacing:2px;
  margin-bottom:36px;opacity:0.7
}

/* ── Product list pills ── */
.svc-products{
  display:flex;flex-wrap:wrap;justify-content:center;
  gap:10px;margin-bottom:22px
}
.svc-pill{
  display:inline-flex;align-items:center;gap:6px;
  background:#fff;border:1px solid rgba(212,175,55,0.45);
  border-radius:30px;padding:7px 16px;
  font-size:0.9rem;color:#3E2723;
  box-shadow:0 2px 8px rgba(139,0,0,0.06)
}
.svc-pill i{font-size:14px;color:#D4AF37}

.svc-trust-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 0 auto 42px;
}

.svc-trust-row div {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 38px;
  padding: 9px 15px;
  border-radius: 8px;
  background: rgba(139,0,0,0.055);
  border: 1px solid rgba(139,0,0,0.12);
  color: var(--maroon);
  font-size: 0.9rem;
  font-weight: 600;
}

.svc-trust-row i {
  color: var(--gold-dark);
  font-size: 17px;
}

/* ── Pricing cards ── */
.svc-cards{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(140px,1fr));
  gap:12px;margin-bottom:28px
}
.svc-card{
  background:#fff;border-radius:16px;
  border:1px solid rgba(212,175,55,0.3);
  overflow:hidden;
  box-shadow:0 4px 20px rgba(139,0,0,0.07);
  transition:transform 0.3s,box-shadow 0.3s
}
.svc-card:hover{transform:translateY(-5px);box-shadow:0 10px 28px rgba(139,0,0,0.14)}
.svc-card-head{
  background:linear-gradient(135deg,#8B0000,#a31515);
  padding:16px 12px 14px;text-align:center
}
.svc-card-icon{font-size:24px;color:#D4AF37;margin-bottom:6px;display:block;line-height:1}
.svc-card-city{
  font-family:'Playfair Display',serif;
  color:#FFF8E7;font-size:1rem;font-weight:700;letter-spacing:0.5px
}
.svc-card-sub{color:rgba(255,248,231,0.65);font-size:13px;letter-spacing:1px;margin-top:2px}
.svc-card-body{padding:18px 12px 16px;text-align:center}
.svc-card-price{
  font-family:'Playfair Display',serif;
  font-size:1.7rem;font-weight:900;color:#8B0000;line-height:1
}
.svc-card-price span{font-size:1rem}
.svc-card-divider{
  width:28px;height:1px;
  background:linear-gradient(90deg,transparent,#D4AF37,transparent);
  margin:10px auto
}
.svc-card-weight{color:#6d4c41;font-size:15px;font-style:italic}

/* ── Note row ── */
.svc-note{
  text-align:center;padding:14px 20px;
  background:rgba(139,0,0,0.05);
  border:1px solid rgba(139,0,0,0.12);
  border-radius:10px;margin-bottom:40px;
  color:#5a0000;font-size:0.9rem;font-style:italic
}
.svc-note i{font-size:14px;vertical-align:-2px;margin-right:6px;color:#D4AF37}

/* ── 56 Bhog banner ── */
.svc-bhog{
  background:linear-gradient(135deg,#8B0000,#5a0000);
  border-radius:18px;padding:28px 32px;
  display:flex;align-items:center;gap:28px;
  flex-wrap:wrap;
}
.svc-bhog-text{flex:1;min-width:200px}
.svc-bhog-label{
  color:rgba(255,248,231,0.65);font-size:0.72rem;
  letter-spacing:3px;text-transform:uppercase;margin-bottom:6px
}
.svc-bhog-title{
  font-family:'Playfair Display',serif;
  color:#D4AF37;font-size:1.4rem;margin-bottom:6px
}
.svc-bhog-desc{color:rgba(255,255,255,0.7);font-size:0.9rem;line-height:1.6}
.svc-bhog-cta{
  display:inline-flex;align-items:center;gap:8px;
  background:#D4AF37;color:#5a0000;
  padding:12px 24px;border-radius:50px;
  font-family:'Playfair Display',serif;font-weight:700;
  font-size:0.9rem;text-decoration:none;
  white-space:nowrap;flex-shrink:0;
  box-shadow:0 4px 16px rgba(212,175,55,0.35)
}

/* ── Footer mantra ── */
.svc-footer-mantra{
  text-align:center;margin-top:36px;
  font-family:'Playfair Display',serif;
  color:#8B0000;font-size:1.05rem;letter-spacing:1px;
  padding-top:28px;
  border-top:1px solid rgba(212,175,55,0.3)
}

/* Sawamani service */
#sawamani-service{
  background:var(--cream);
  padding:80px 20px;
}
.sawamani-grid{
  display:grid;
  grid-template-columns:minmax(280px,0.92fr) minmax(300px,1.08fr);
  gap:48px;
  align-items:center;
}
.sawamani-media img{
  width:100%;
  display:block;
  border-radius:8px;
  box-shadow:0 22px 58px rgba(74,0,0,0.16);
}
.sawamani-content{
  text-align:left;
}
.sawamani-content .section-title{
  margin:10px 0 14px;
}
.sawamani-content .section-desc{
  margin:0 0 24px;
  max-width:600px;
}
.sawamani-points{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:12px;
  margin:0 0 30px;
}
.sawamani-points div{
  display:flex;
  align-items:center;
  gap:10px;
  min-height:54px;
  padding:13px 14px;
  border:1px solid rgba(128,0,0,0.12);
  border-radius:8px;
  background:rgba(255,255,255,0.64);
  color:var(--brown);
  font-weight:600;
}
.sawamani-points i{
  color:var(--gold);
  font-size:20px;
  flex-shrink:0;
}
.sawamani-actions{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
}
.sawamani-actions .btn-outline{
  color:var(--maroon);
  border-color:rgba(128,0,0,0.35);
  display:inline-flex;
  align-items:center;
  gap:8px;
}

@media(max-width:820px){
  .sawamani-grid{
    grid-template-columns:1fr;
    gap:30px;
  }
  .sawamani-content{
    text-align:center;
  }
  .sawamani-content .section-desc{
    margin-left:auto;
    margin-right:auto;
  }
  .sawamani-actions{
    justify-content:center;
  }
}

@media(max-width:540px){
  .svc-section,
  #sawamani-service{
    padding:60px 16px;
  }
  .sawamani-points{
    grid-template-columns:1fr;
  }
  .svc-bhog{
    padding:24px 20px;
  }
  .svc-bhog-cta{
    width:100%;
    justify-content:center;
  }
}

/* Single Sawamani service page */
.sawamani-svc {
  background:
    radial-gradient(circle at top left, rgba(212, 175, 55, 0.18), transparent 34%),
    linear-gradient(180deg, var(--cream), #fff8e7);
}

.sawamani-svc-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(320px, 1.05fr);
  gap: 48px;
  align-items: center;
}

.sawamani-svc-media img {
  width: 100%;
  display: block;
  border-radius: 8px;
  box-shadow: 0 22px 60px rgba(74, 0, 0, 0.16);
}

.sawamani-svc-content {
  text-align: left;
}

.sawamani-svc-content .svc-title {
  margin-bottom: 14px;
  text-align: left;
}

.sawamani-svc-content .svc-desc {
  margin: 0 0 22px;
  max-width: 620px;
}

.sawamani-svc-content .svc-mantra {
  text-align: left;
  margin: 0 0 26px;
}

.sawamani-svc-points {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 24px;
  margin-bottom: 24px;
}

.sawamani-svc-points div {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid rgba(128, 0, 0, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.62);
  color: var(--brown);
  line-height: 1.5;
}

.sawamani-svc-points i {
  color: var(--gold);
  font-size: 19px;
  margin-top: 2px;
  flex-shrink: 0;
}

.sawamani-svc-products {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 22px;
}

.sawamani-svc-products span {
  padding: 7px 13px;
  border-radius: 999px;
  border: 1px solid rgba(212, 175, 55, 0.45);
  background: #fff;
  color: var(--brown);
  font-size: 0.9rem;
  box-shadow: 0 2px 8px rgba(139, 0, 0, 0.05);
}

.sawamani-svc-note {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 14px 16px;
  border-radius: 8px;
  background: rgba(139, 0, 0, 0.06);
  color: var(--maroon);
  font-style: italic;
  margin-bottom: 28px;
}

.sawamani-svc-note i {
  color: var(--gold);
  margin-top: 2px;
}

.sawamani-svc-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.sawamani-svc-actions .btn-outline {
  color: var(--maroon);
  border-color: rgba(128, 0, 0, 0.35);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

@media(max-width:860px) {
  .sawamani-svc-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .sawamani-svc-content,
  .sawamani-svc-content .svc-mantra {
    text-align: center;
  }

  .sawamani-svc-content .svc-desc {
    margin-left: auto;
    margin-right: auto;
  }

  .sawamani-svc-actions,
  .sawamani-svc-products {
    justify-content: center;
  }
}

@media(max-width:520px) {
  .sawamani-svc-points div,
  .sawamani-svc-note {
    text-align: left;
  }
}



#home{
    position: relative;
    flex-direction: column; /* if not already */
}

.hero-top-line{
    width: 100%;
    text-align: center;
    color: var(--gold);
    font-size: 15px;
    letter-spacing: 2px;
    padding-top: 50px;
    z-index: 2;
}

