/* ==========================================
   MAHADEV DAIRY – Main Stylesheet
   ========================================== */

/* Global overflow fix */
html, body {
  max-width: 100%;
  overflow-x: hidden;
}

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;800&family=Poppins:wght@300;400;500;600;700&display=swap');

/* ── CSS Custom Properties ── */
:root {
  --cream:      #FFF8EE;
  --warm-white: #FFFDF7;
  --gold:       #D4A017;
  --gold-light: #F0C84A;
  --gold-dark:  #A8790A;
  --brown:      #6B4226;
  --green:      #4A7C59;
  --green-light:#7BB88F;
  --text-dark:  #2C1A0E;
  --text-mid:   #5C3D2E;
  --text-light: #9A7B6A;
  --white:      #FFFFFF;
  --shadow-sm:  0 4px 12px rgba(107,66,38,.10);
  --shadow-md:  0 8px 32px rgba(107,66,38,.15);
  --shadow-lg:  0 20px 60px rgba(107,66,38,.20);
  --radius-sm:  8px;
  --radius-md:  16px;
  --radius-lg:  28px;
  --transition: 0.35s cubic-bezier(0.25,0.8,0.25,1);
}

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

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

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

img { max-width: 100%; display: block; }

a { text-decoration: none; color: inherit; }

ul { list-style: none; }

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 10px; }

/* ── Utility ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-tag {
  display: inline-block;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold-dark);
  background: linear-gradient(135deg, #F9ECC8, #FAEBD1);
  border: 1px solid rgba(212,160,23,.3);
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 14px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 2.9rem);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.25;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--text-light);
  max-width: 580px;
  line-height: 1.8;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-size: .95rem;
  font-weight: 600;
  padding: 15px 36px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 6px 24px rgba(212,160,23,.4);
  letter-spacing: .02em;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(212,160,23,.5);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--gold-dark);
  font-family: 'Poppins', sans-serif;
  font-size: .95rem;
  font-weight: 600;
  padding: 14px 34px;
  border-radius: 50px;
  border: 2px solid var(--gold);
  cursor: pointer;
  transition: var(--transition);
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-3px);
}

/* ══════════════════════════════════════════
   TOP MARQUEE
══════════════════════════════════════════ */
.top-marquee {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1001;
  background: linear-gradient(90deg, #1a5c2e 0%, #2d7a3a 40%, #1e6b32 70%, #1a5c2e 100%);
  color: #fff;
  padding: 9px 0;
  overflow: hidden;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  border-bottom: 1px solid rgba(255,255,255,.18);
  box-shadow: 0 2px 12px rgba(0,0,0,.18);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-slide 40s linear infinite;
}

.top-marquee:hover .marquee-track {
  animation-play-state: paused;
}

.marquee-content {
  white-space: nowrap;
  padding: 0 30px;
  flex-shrink: 0;
}

@keyframes marquee-slide {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ══════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════ */
#navbar {
  position: fixed;
  top: 38px; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all .4s ease;
}

#navbar.scrolled {
  background: rgba(255,253,247,.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(107,66,38,.12);
  padding: 12px 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Header logo image */
.header-logo-img {
  height: 38px;
  width: auto;
  max-width: 150px;
  object-fit: contain;
  display: block;
  transition: opacity .25s;
}

.header-logo-img:hover { opacity: .85; }

@media (max-width: 768px) {
  .header-logo-img { height: 30px; max-width: 120px; }
}

/* Keep these for footer backward compat */
.logo-icon {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 4px 16px rgba(212,160,23,.35);
  flex-shrink: 0;
}

.logo-text {
  display: flex; flex-direction: column;
  line-height: 1.1;
}

.logo-text span:first-child {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-dark);
}

.logo-text span:last-child {
  font-size: .68rem;
  font-weight: 500;
  color: var(--gold-dark);
  letter-spacing: .08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-size: .9rem;
  font-weight: 500;
  color: var(--text-mid);
  position: relative;
  transition: color .25s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform .3s;
}

.nav-links a:hover { color: var(--gold-dark); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-cta { margin-left: 8px; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1100;
}

.hamburger span {
  display: block;
  width: 26px; height: 3px;
  background: var(--text-dark);
  border-radius: 3px;
  transition: all .35s;
}

.hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(255,253,247,.97);
  backdrop-filter: blur(20px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--text-dark);
  transition: color .25s;
}

.mobile-menu a:hover { color: var(--gold); }

/* ══════════════════════════════════════════
   HERO SECTION
══════════════════════════════════════════ */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255,252,240,.95) 0%, rgba(255,248,230,.88) 50%, rgba(255,240,200,.7) 100%);
  z-index: 1;
}

.hero-bg-image {
  position: absolute;
  inset: 0;
  background-image: url('images/hero_banner.png');
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.hero-decor {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 0;
  pointer-events: none;
}

.hero-decor-1 {
  width: 600px; height: 600px;
  top: -150px; right: -100px;
  background: radial-gradient(circle, rgba(240,200,74,.25) 0%, transparent 70%);
}

.hero-decor-2 {
  width: 400px; height: 400px;
  bottom: -100px; left: -80px;
  background: radial-gradient(circle, rgba(74,124,89,.15) 0%, transparent 70%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
  padding: 120px 0 80px;
}

.hero-content { max-width: 580px; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 22px;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px; height: 2px;
  background: var(--green);
  border-radius: 2px;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 5.5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.12;
  color: var(--text-dark);
  margin-bottom: 24px;
}

.hero-title .highlight {
  color: var(--gold-dark);
  position: relative;
  display: inline-block;
}

.hero-title .highlight::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
  opacity: .5;
}

.hero-desc {
  font-size: 1.05rem;
  color: var(--text-mid);
  margin-bottom: 38px;
  line-height: 1.9;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 36px;
  margin-top: 50px;
  padding-top: 36px;
  border-top: 1px solid rgba(212,160,23,.2);
}

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

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-dark);
  line-height: 1;
}

.stat-label {
  font-size: .78rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-top: 4px;
}

/* Hero image side */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-img-frame {
  position: relative;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}

.hero-img-main {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  height: 520px;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-14px); }
}

.hero-badge {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 14px 20px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 12px;
  animation: float 6s ease-in-out infinite 2s;
}

.hero-badge-1 {
  bottom: 40px; left: -30px;
}

.hero-badge-2 {
  top: 50px; right: -30px;
}

.badge-icon { font-size: 1.8rem; }

.badge-text strong {
  display: block;
  font-size: .85rem;
  font-weight: 700;
  color: var(--text-dark);
}

.badge-text span {
  font-size: .72rem;
  color: var(--text-light);
}

.cow-sticker {
  position: absolute;
  width: 100px;
  bottom: -20px; right: 10px;
  animation: wiggle 3s ease-in-out infinite;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,.15));
}

@keyframes wiggle {
  0%, 100% { transform: rotate(-5deg); }
  50%       { transform: rotate(5deg); }
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: bounce 2s ease-in-out infinite;
  cursor: pointer;
}

.scroll-indicator span {
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-light);
}

.scroll-arrow {
  width: 28px; height: 28px;
  border-right: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: rotate(45deg);
  border-radius: 2px;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* ══════════════════════════════════════════
   ABOUT SECTION
══════════════════════════════════════════ */
#about {
  padding: 100px 0;
  background: var(--warm-white);
  position: relative;
  overflow: hidden;
}

#about::before {
  content: '';
  position: absolute;
  top: -100px; left: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(240,200,74,.1) 0%, transparent 70%);
  pointer-events: none;
}

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

.about-image-stack {
  position: relative;
}

.about-img-main {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  height: 480px;
}

.about-img-secondary {
  position: absolute;
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  border: 5px solid var(--white);
  bottom: -24px; right: -24px;
}

.about-years-badge {
  position: absolute;
  top: 24px; left: -24px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  text-align: center;
  box-shadow: var(--shadow-md);
}

.about-years-badge strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1;
}

.about-years-badge span {
  font-size: .72rem;
  letter-spacing: .06em;
  opacity: .9;
}

.about-content { }

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}

.feature-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #FFF8EE, #FFF3DC);
  border: 1px solid rgba(212,160,23,.2);
  border-radius: 12px;
  padding: 12px 16px;
  transition: var(--transition);
}

.feature-pill:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
  border-color: var(--gold-light);
}

.feature-pill .pill-icon { font-size: 1.3rem; }

.feature-pill span:last-child {
  font-size: .85rem;
  font-weight: 500;
  color: var(--text-mid);
}

/* ══════════════════════════════════════════
   PRODUCTS SECTION
══════════════════════════════════════════ */
#products {
  padding: 100px 0;
  background: var(--cream);
  position: relative;
}

.products-header { text-align: center; margin-bottom: 64px; }
.products-header .section-subtitle { margin: 0 auto; }

.products-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.product-card {
  background: var(--warm-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(212,160,23,.12);
  transition: var(--transition);
  position: relative;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.product-img-wrap {
  position: relative;
  overflow: hidden;
  height: 300px;
}

.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}

.product-card:hover .product-img-wrap img { transform: scale(1.06); }

.product-badge-overlay {
  position: absolute;
  top: 18px; right: 18px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  border-radius: 50px;
  padding: 6px 18px;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .05em;
}

.product-body { padding: 36px; }

.product-icon { font-size: 2.2rem; margin-bottom: 10px; }

.product-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 14px;
}

.product-desc {
  font-size: .95rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 24px;
}

.product-benefits {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .88rem;
  color: var(--text-mid);
}

.benefit-check {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--green-light));
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: .7rem;
  flex-shrink: 0;
}

/* ══════════════════════════════════════════
   WHY CHOOSE US
══════════════════════════════════════════ */
#why-us {
  padding: 100px 0;
  background: linear-gradient(135deg, #2C1A0E 0%, #4A2E1A 50%, #6B4226 100%);
  position: relative;
  overflow: hidden;
}

#why-us::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(212,160,23,.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(240,200,74,.1) 0%, transparent 50%);
  pointer-events: none;
}

.why-header {
  text-align: center;
  margin-bottom: 64px;
}

.why-header .section-title { color: var(--white); }
.why-header .section-subtitle { color: rgba(255,255,255,.65); margin: 0 auto; }
.why-header .section-tag {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.2);
  color: var(--gold-light);
}

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

.why-card {
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: 40px 30px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.why-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 .4s;
}

.why-card:hover {
  transform: translateY(-8px);
  background: rgba(255,255,255,.1);
  box-shadow: 0 20px 60px rgba(0,0,0,.3);
}

.why-card:hover::before { transform: scaleX(1); }

/* Why-Us: Image Cards */
.why-img-wrap {
  position: relative;
  width: 100%;
  height: 180px;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 20px;
}

.why-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}

.why-card:hover .why-img-wrap img {
  transform: scale(1.07);
}

.why-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.why-card p {
  font-size: .88rem;
  color: rgba(255,255,255,.65);
  line-height: 1.8;
}

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

.gallery-header { text-align: center; margin-bottom: 56px; }
.gallery-header .section-subtitle { margin: 0 auto; }

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

.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.gallery-item:first-child {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
  display: block;
}

.gallery-item:first-child { height: 440px; }
.gallery-item:not(:first-child) { height: 210px; }

.gallery-item:hover img { transform: scale(1.06); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(44,26,14,.7) 0%, transparent 50%);
  opacity: 0;
  transition: opacity .4s;
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-overlay span {
  color: var(--white);
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .05em;
}

.gallery-sticker-wrap {
  text-align: center;
  margin-top: 40px;
}

.gallery-sticker-wrap img {
  height: 120px;
  width: auto;
  margin: 0 auto;
  animation: wiggle 4s ease-in-out infinite;
  filter: drop-shadow(0 6px 16px rgba(0,0,0,.18));
}

/* ══════════════════════════════════════════
   CONTACT SECTION
══════════════════════════════════════════ */
#contact {
  padding: 100px 0;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

#contact::before {
  content: '';
  position: absolute;
  bottom: -150px; right: -150px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,160,23,.1) 0%, transparent 70%);
  pointer-events: none;
}

.contact-header { text-align: center; margin-bottom: 64px; }
.contact-header .section-subtitle { margin: 0 auto; }

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

.contact-info { }

.contact-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.contact-info p {
  font-size: .95rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 32px;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 22px;
  background: var(--warm-white);
  border-radius: var(--radius-md);
  border: 1px solid rgba(212,160,23,.15);
  transition: var(--transition);
}

.contact-item:hover {
  border-color: var(--gold);
  transform: translateX(6px);
  box-shadow: var(--shadow-sm);
}

.contact-item-icon {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  color: var(--white);
  flex-shrink: 0;
}

.contact-item-text strong {
  display: block;
  font-size: .8rem;
  font-weight: 600;
  color: var(--text-light);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 2px;
}

.contact-item-text span {
  font-size: .95rem;
  color: var(--text-dark);
  font-weight: 500;
}

/* Contact Form */
.contact-form-wrap {
  background: var(--warm-white);
  border-radius: var(--radius-lg);
  padding: 44px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(212,160,23,.12);
}

.contact-form-wrap h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 28px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.form-group label {
  font-size: .82rem;
  font-weight: 600;
  color: var(--text-mid);
  letter-spacing: .04em;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid rgba(212,160,23,.25);
  border-radius: var(--radius-sm);
  font-family: 'Poppins', sans-serif;
  font-size: .92rem;
  color: var(--text-dark);
  background: var(--cream);
  transition: all .25s;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: #FFFEF9;
  box-shadow: 0 0 0 3px rgba(212,160,23,.12);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-light); }

.form-submit { width: 100%; justify-content: center; font-size: 1rem; padding: 16px; }

.form-success {
  display: none;
  text-align: center;
  padding: 20px;
  background: linear-gradient(135deg, rgba(74,124,89,.1), rgba(123,184,143,.1));
  border: 1.5px solid var(--green-light);
  border-radius: var(--radius-md);
  color: var(--green);
  font-weight: 600;
  margin-top: 16px;
}

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
footer {
  background: linear-gradient(135deg, #1A0F06, #2C1A0E);
  color: rgba(255,255,255,.75);
  padding: 60px 0 30px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand .logo-text span:first-child { color: var(--white); }
.footer-brand .logo-text span:last-child { color: var(--gold-light); }

.footer-brand p {
  font-size: .88rem;
  color: rgba(255,255,255,.55);
  line-height: 1.8;
  margin-top: 18px;
  max-width: 280px;
}

.footer-col h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-col ul { display: flex; flex-direction: column; gap: 10px; }

.footer-col ul a {
  font-size: .88rem;
  color: rgba(255,255,255,.55);
  transition: color .25s;
}

.footer-col ul a:hover { color: var(--gold-light); }

/* Footer Logo Image */
.footer-logo-link {
  display: inline-block;
  margin-bottom: 4px;
}

.footer-logo-img {
  height: 80px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  border-radius: 10px;
  filter: brightness(1.05);
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.social-link {
  width: 40px; height: 40px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  color: rgba(255,255,255,.7);
  transition: var(--transition);
  cursor: pointer;
}

.social-link:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p { font-size: .82rem; color: rgba(255,255,255,.4); }

.footer-bottom a { color: var(--gold-light); }


/* ══════════════════════════════════════════
   STICKY FLOATING BUTTONS
══════════════════════════════════════════ */
.sticky-btn {
  position: fixed;
  bottom: 24px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 22px;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-size: .88rem;
  font-weight: 600;
  color: var(--white);
  text-decoration: none;
  box-shadow: 0 6px 28px rgba(0,0,0,.28);
  z-index: 900;
  transition: transform .3s ease, box-shadow .3s ease;
  cursor: pointer;
  white-space: nowrap;
}

.sticky-btn svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.sticky-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,.32);
}

/* WhatsApp = green */
.sticky-whatsapp {
  background: linear-gradient(135deg, #25D366, #128C7E);
}

/* Call = gold/brown */
.sticky-call {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
}

/* Desktop: only one WhatsApp button, bottom-right */
.sticky-btn.sticky-whatsapp:not(.sticky-mobile-right) {
  right: 24px;
}

/* Mobile-specific buttons: hidden by default on desktop */
.sticky-mobile-left,
.sticky-mobile-right {
  display: none;
}

@media (max-width: 768px) {
  /* Hide the desktop WhatsApp button on mobile */
  #sticky-whatsapp-btn {
    display: none !important;
  }

  /* Show mobile-only buttons */
  .sticky-mobile-left {
    display: inline-flex;
    left: 16px;
    right: auto;
    bottom: 20px;
    padding: 12px 18px;
    font-size: .82rem;
  }

  .sticky-mobile-right {
    display: inline-flex;
    right: 16px;
    left: auto;
    bottom: 20px;
    padding: 12px 18px;
    font-size: .82rem;
  }
}

/* ══════════════════════════════════════════
   ANIMATIONS – Fade in on scroll
══════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Stagger delay helpers */
.delay-1 { transition-delay: .1s; }
.delay-2 { transition-delay: .2s; }
.delay-3 { transition-delay: .3s; }
.delay-4 { transition-delay: .4s; }
.delay-5 { transition-delay: .5s; }

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
/* ══════════════════════════════════════════
   RESPONSIVE BREAKPOINTS
══════════════════════════════════════════ */

@media (max-width: 1024px) {
  .hero-inner         { grid-template-columns: 1fr; gap: 50px; padding-top: 130px; }
  .hero-visual        { display: none; }
  .about-inner        { grid-template-columns: 1fr; gap: 50px; }
  .about-image-stack  { max-width: 500px; margin: 0 auto; }
  .contact-inner      { grid-template-columns: 1fr; }
  .footer-inner       { grid-template-columns: 1fr 1fr; }
  .why-grid           { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  /* Navbar */
  .nav-links, .nav-cta  { display: none; }
  .hamburger            { display: flex; }

  /* Hero – image on top, content below */
  .hero-inner           { padding-top: 90px; padding-bottom: 80px; gap: 28px; }
  .hero-visual          { display: flex; order: -1; } /* image pehle */
  .hero-content         { order: 1; }                 /* content baad mein */
  .hero-img-main        { height: 260px; border-radius: 20px; animation: none; }
  .hero-badge           { display: none; }            /* floating badges hide */
  .cow-sticker          { display: none; }            /* sticker hide */
  .hero-img-frame       { max-width: 100%; }

  /* Hero text */
  .hero-title           { font-size: 2rem; }
  .hero-desc            { font-size: .92rem; }
  .hero-stats           { gap: 16px; flex-wrap: wrap; }
  .hero-actions         { flex-direction: column; align-items: flex-start; gap: 12px; }
  .btn-primary,
  .btn-outline          { width: 100%; justify-content: center; }
  .hero-inner           { padding-top: 110px; padding-bottom: 100px; }

  /* About */
  .about-img-secondary  { width: 140px; height: 140px; right: -10px; bottom: -10px; }
  .about-years-badge    { left: -10px; }
  .about-features       { grid-template-columns: 1fr; }

  /* Products */
  .products-grid        { grid-template-columns: 1fr; }
  .product-body         { padding: 24px 20px; }

  /* Why Us */
  .why-grid             { grid-template-columns: 1fr; }
  .why-card             { padding: 0 0 24px; }
  .why-img-wrap         { height: 200px; border-radius: 14px 14px 0 0; }
  .why-card h3          { padding: 0 20px; font-size: 1.05rem; }
  .why-card p           { padding: 0 20px; }

  /* Gallery */
  .gallery-grid                        { grid-template-columns: 1fr 1fr; }
  .gallery-item:first-child            { grid-column: span 2; height: 220px; }
  .gallery-item:not(:first-child)      { height: 140px; }

  /* Contact */
  .form-row             { grid-template-columns: 1fr; }
  .contact-form-wrap    { padding: 24px 16px; }
  .contact-inner        { gap: 36px; }

  /* Footer */
  .footer-inner         { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom        { flex-direction: column; text-align: center; }
  .footer-logo-img      { height: 64px; }

  /* Section spacing */
  #about, #products, #why-us, #gallery, #contact { padding: 72px 0; }

  /* Prevent hero stats overflow */
  .stat-number          { font-size: 1.6rem; }
}

@media (max-width: 480px) {
  .container            { padding: 0 14px; }

  /* Hero */
  .hero-title           { font-size: 1.75rem; }
  .hero-stats           { gap: 14px; }
  .stat-number          { font-size: 1.4rem; }

  /* Gallery – single column */
  .gallery-grid                   { grid-template-columns: 1fr; }
  .gallery-item:first-child       { grid-column: span 1; height: 200px; }
  .gallery-item:not(:first-child) { height: 160px; }

  /* Section titles */
  .section-title        { font-size: 1.7rem; }

  /* Why us image */
  .why-img-wrap         { height: 170px; }

  /* Product card */
  .product-body         { padding: 20px 16px; }
  .product-name         { font-size: 1.5rem; }

  /* About badge offset fix */
  .about-years-badge    { left: 0; top: 14px; }
  .about-img-secondary  { display: none; }

  /* Contact items */
  .contact-item         { padding: 14px 14px; }
  .contact-item-icon    { width: 40px; height: 40px; font-size: 1rem; }

  /* Footer */
  .footer-inner         { gap: 24px; }
  .footer-logo-img      { height: 56px; }

  /* Section spacing */
  #about, #products, #why-us, #gallery, #contact { padding: 56px 0; }
}
