/* =====================================================
   R.S. BHUTADA GROCERY SHOP — MAIN STYLESHEET
   Palette: Wheat Gold #C6A75E | Earth Brown #5C3A21
            Fresh Green #3E6B35 | Cream White #F8F4E8
   ===================================================== */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --gold: #C6A75E;
  --gold-d: #A8893E;
  --brown: #5C3A21;
  --green: #3E6B35;
  --green-d: #2D4F27;
  --cream: #F8F4E8;
  --cream-d: #EDE7D0;
  --dark: #1A120B;
  --text: #2E1B0E;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --display: 'Playfair Display', Georgia, serif;
  --sans: 'Inter', system-ui, sans-serif;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ─────────────────────────────────────────────────── */
/*  CINEMATIC INTRO OVERLAY                           */
/* ─────────────────────────────────────────────────── */
#intro-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #0a0704;
  overflow: hidden;
  transition: opacity 1.2s var(--ease-out), visibility 1.2s;
}

#intro-overlay.fade-out {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* Canvas fills the overlay */
#shutter-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── Light Rays ── */
#light-rays {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 1.5s ease;
}

#light-rays.visible {
  opacity: 1;
}

.ray {
  position: absolute;
  top: -10%;
  left: 50%;
  width: 3px;
  height: 120%;
  background: linear-gradient(to bottom, rgba(255, 220, 100, 0.55), transparent);
  transform-origin: top center;
  filter: blur(8px);
  animation: rayWave 4s ease-in-out infinite alternate;
}

.ray:nth-child(1) {
  transform: rotate(-30deg) translateX(-320px);
  animation-delay: 0s;
}

.ray:nth-child(2) {
  transform: rotate(-15deg) translateX(-160px);
  animation-delay: 0.3s;
}

.ray:nth-child(3) {
  transform: rotate(0deg) translateX(0px);
  animation-delay: 0.6s;
  width: 5px;
}

.ray:nth-child(4) {
  transform: rotate(15deg) translateX(160px);
  animation-delay: 0.2s;
}

.ray:nth-child(5) {
  transform: rotate(30deg) translateX(320px);
  animation-delay: 0.5s;
}

@keyframes rayWave {
  0% {
    opacity: 0.4;
    filter: blur(8px);
  }

  100% {
    opacity: 0.9;
    filter: blur(5px);
  }
}

/* ── Intro Logo — pinned TOP CENTER ── */
#intro-logo {
  position: absolute;
  top: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(-20px) scale(0.9);
  z-index: 10;
  opacity: 0;
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}

#intro-logo.visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0) scale(1);
}

#intro-logo img {
  width: 140px;
  height: 140px;
  object-fit: contain;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  padding: 12px;
  box-shadow: 0 0 60px rgba(198, 167, 94, 0.5), 0 8px 40px rgba(0, 0, 0, 0.4);
  animation: logoFloat 3.5s ease-in-out infinite;
}

@keyframes logoFloat {

  0%,
  100% {
    transform: translateY(0px) rotate(-0.5deg);
  }

  50% {
    transform: translateY(-8px) rotate(0.5deg);
  }
}

/* ── Bottom scrim gradient ── */
#intro-overlay::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 65%;
  background: linear-gradient(to top,
      rgba(10, 7, 4, 0.97) 0%,
      rgba(10, 7, 4, 0.85) 30%,
      rgba(10, 7, 4, 0.5) 60%,
      transparent 100%);
  pointer-events: none;
  z-index: 8;
}

/* ── Bottom content wrapper ── */
#intro-text {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
  text-align: center;
  color: #fff;
  padding: 2rem 1.5rem 2.5rem;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
  /* Prevent overflow on all devices */
  box-sizing: border-box;
  width: 100%;
  overflow: hidden;
}

#intro-text.visible {
  opacity: 1;
  transform: translateY(0);
}

.intro-since {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.4rem;
}

.intro-headline {
  font-family: var(--display);
  font-size: clamp(1.2rem, 3vw, 2rem);
  font-weight: 800;
  line-height: 1.2;
  color: #fff;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.7);
  margin-bottom: 0;
}

/* Show full headline on desktop, short on mobile */
.headline-desktop {
  display: inline;
}

.headline-mobile {
  display: none;
}

.intro-sub {
  font-size: clamp(0.85rem, 2vw, 1.05rem);
  color: rgba(255, 255, 255, 0.82);
  max-width: 520px;
  margin: 0 auto 2rem;
  line-height: 1.6;
}

/* ── Wheat Particles ── */
#wheat-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 5;
}

.particle {
  position: absolute;
  font-size: 1.4rem;
  opacity: 0;
  animation: floatParticle 6s ease-in-out infinite;
}

.particle:nth-child(1) {
  left: 8%;
  top: 20%;
  animation-delay: 0s;
  animation-duration: 7s;
}

.particle:nth-child(2) {
  left: 20%;
  top: 70%;
  animation-delay: 1s;
  animation-duration: 8s;
}

.particle:nth-child(3) {
  left: 35%;
  top: 40%;
  animation-delay: 2s;
  animation-duration: 6s;
}

.particle:nth-child(4) {
  left: 60%;
  top: 80%;
  animation-delay: 0.5s;
  animation-duration: 9s;
}

.particle:nth-child(5) {
  left: 75%;
  top: 30%;
  animation-delay: 1.5s;
  animation-duration: 7s;
}

.particle:nth-child(6) {
  left: 85%;
  top: 60%;
  animation-delay: 3s;
  animation-duration: 8s;
}

.particle:nth-child(7) {
  left: 50%;
  top: 15%;
  animation-delay: 2.5s;
  animation-duration: 6s;
}

.particle:nth-child(8) {
  left: 90%;
  top: 85%;
  animation-delay: 0.8s;
  animation-duration: 9s;
}

@keyframes floatParticle {
  0% {
    opacity: 0;
    transform: translateY(20px) rotate(0deg);
  }

  20% {
    opacity: 0.6;
  }

  80% {
    opacity: 0.4;
  }

  100% {
    opacity: 0;
    transform: translateY(-60px) rotate(25deg);
  }
}

/* ── CTA Buttons (Intro) — inherit parent fade ── */
#intro-ctas {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 1rem;
  /* NO separate opacity animation — parent #intro-text controls visibility */
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
  white-space: nowrap;
}

.cta-btn:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  filter: brightness(1.08);
}

.cta-btn:active {
  transform: scale(0.97);
}

.cta-call {
  background: var(--gold);
  color: var(--dark);
}

.cta-whatsapp {
  background: #25D366;
  color: #fff;
}

.cta-directions {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(8px);
}

/* ── Scroll Indicator ── */
#scroll-indicator {
  display: none !important;
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity 0.8s ease 1s;
}

#scroll-indicator.visible {
  opacity: 1;
}

.scroll-dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: scrollBounce 1.8s ease-in-out infinite;
}

@keyframes scrollBounce {

  0%,
  100% {
    transform: translateY(0);
    opacity: 1;
  }

  50% {
    transform: translateY(8px);
    opacity: 0.4;
  }
}

/* ─────────────────────────────────────────────────── */
/*  STICKY NAV + HAMBURGER MENU                       */
/* ─────────────────────────────────────────────────── */
#main-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: rgba(248, 244, 232, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(198, 167, 94, 0.25);
  transform: translateY(-100%);
  transition: transform 0.5s var(--ease-out);
  box-shadow: 0 2px 20px rgba(92, 58, 33, 0.08);
}

#main-nav.visible {
  transform: translateY(0);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.6rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.nav-logo img {
  height: 44px;
  width: 44px;
  object-fit: contain;
}

/* ── Hamburger Button ── */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
  -webkit-tap-highlight-color: transparent;
}

.ham-line {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--brown);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}

.hamburger.active .ham-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active .ham-line:nth-child(2) {
  opacity: 0;
}

.hamburger.active .ham-line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ── Nav Links (Desktop) ── */
.nav-links {
  display: flex;
  list-style: none;
  gap: 1.5rem;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--brown);
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--green);
}

.nav-mobile-cta {
  display: none;
}

.nav-cta {
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.5rem 1.25rem;
  background: var(--gold);
  color: var(--dark);
  border-radius: 50px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(198, 167, 94, 0.4);
}

/* ── Mobile Nav Overlay ── */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(26, 18, 11, 0.5);
  z-index: 998;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.nav-overlay.active {
  display: block;
  opacity: 1;
}

/* ─────────────────────────────────────────────────── */
/*  MAIN CONTENT                                      */
/* ─────────────────────────────────────────────────── */
#main-content {
  padding-top: 0;
}

/* ── Section Reveal ── */
.reveal-section {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}

.reveal-section.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ── Common Section Labels ── */
.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--green);
  background: rgba(62, 107, 53, 0.1);
  padding: 0.3rem 1rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}

.section-label.light {
  color: var(--gold);
  background: rgba(198, 167, 94, 0.15);
}

.section-title {
  font-family: var(--display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--brown);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-title.light {
  color: #fff;
}

.section-sub {
  font-size: 1rem;
  color: rgba(92, 58, 33, 0.7);
  max-width: 500px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
  text-align: center;
}

/* ─────────────────────────────────────────────────── */
/*  ABOUT SECTION                                     */
/* ─────────────────────────────────────────────────── */
.about-section {
  padding: 6rem 1.5rem;
  background: linear-gradient(135deg, #faf7ef 0%, var(--cream) 100%);
  position: relative;
  overflow: hidden;
}

.about-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C6A75E' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.about-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-left {
  position: relative;
}

.grain-bg {
  position: absolute;
  inset: -20px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(198, 167, 94, 0.12), rgba(62, 107, 53, 0.08));
  z-index: 0;
}

.about-shop-img {
  position: relative;
  z-index: 1;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(92, 58, 33, 0.25);
  aspect-ratio: 4/3;
}

.about-shop-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 8s ease;
}

.about-shop-img:hover img {
  transform: scale(1.05);
}

.since-badge {
  position: absolute;
  bottom: -1rem;
  right: -1rem;
  z-index: 2;
  background: var(--gold);
  color: var(--dark);
  font-family: var(--display);
  font-size: 1rem;
  font-weight: 700;
  padding: 0.75rem 1.25rem;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(198, 167, 94, 0.3);
  animation: badgePulse 3s ease-in-out infinite;
}

@keyframes badgePulse {

  0%,
  100% {
    box-shadow: 0 8px 24px rgba(198, 167, 94, 0.3);
  }

  50% {
    box-shadow: 0 8px 40px rgba(198, 167, 94, 0.6);
  }
}


.about-text {
  font-size: 1rem;
  line-height: 1.85;
  color: rgba(92, 58, 33, 0.8);
  margin-bottom: 2rem;
}

.trust-badges {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.badge {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: #fff;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--brown);
  box-shadow: 0 2px 12px rgba(92, 58, 33, 0.08);
  border: 1px solid rgba(198, 167, 94, 0.2);
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.badge.revealed {
  opacity: 1;
  transform: translateX(0);
}

.badge-icon {
  color: var(--green);
  font-size: 1rem;
  flex-shrink: 0;
}

/* ─────────────────────────────────────────────────── */
/*  MARQUEE STRIP                                     */
/* ─────────────────────────────────────────────────── */
.marquee-strip {
  background: linear-gradient(90deg, var(--green) 0%, var(--green-d) 100%);
  padding: 0.9rem 0;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  gap: 0;
  animation: marquee 22s linear infinite;
  width: max-content;
}

.marquee-track span {
  padding: 0 2.5rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  white-space: nowrap;
}

.marquee-track span::after {
  content: '·';
  margin-left: 2.5rem;
  color: var(--gold);
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ─────────────────────────────────────────────────── */
/*  SHARBATI GEHU SECTION                            */
/* ─────────────────────────────────────────────────── */
.gehu-section {
  position: relative;
  padding: 7rem 1.5rem;
  background: linear-gradient(160deg, #1A120B 0%, #2E1B0E 50%, #3A2210 100%);
  overflow: hidden;
}

.gehu-bg-blur {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 80% 50%, rgba(198, 167, 94, 0.12), transparent),
    radial-gradient(ellipse 40% 80% at 20% 70%, rgba(62, 107, 53, 0.1), transparent);
  pointer-events: none;
}

.gehu-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.gp {
  position: absolute;
  font-size: 1.6rem;
  opacity: 0.15;
  animation: floatParticle 7s ease-in-out infinite;
}

.gp:nth-child(1) {
  left: 5%;
  top: 20%;
  animation-delay: 0s;
}

.gp:nth-child(2) {
  left: 90%;
  top: 30%;
  animation-delay: 1.5s;
}

.gp:nth-child(3) {
  left: 15%;
  top: 75%;
  animation-delay: 3s;
}

.gp:nth-child(4) {
  left: 80%;
  top: 70%;
  animation-delay: 0.8s;
}

.gp:nth-child(5) {
  left: 45%;
  top: 10%;
  animation-delay: 2.2s;
}

.gp:nth-child(6) {
  left: 60%;
  top: 85%;
  animation-delay: 1s;
}

.gehu-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.gehu-img-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.gehu-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg,
      transparent 0%,
      rgba(255, 255, 255, 0.08) 40%,
      rgba(255, 255, 255, 0.15) 50%,
      transparent 60%);
  z-index: 2;
  animation: shineMove 4s ease-in-out infinite;
}

@keyframes shineMove {
  0% {
    background-position: -200% center;
    opacity: 0;
  }

  20% {
    opacity: 1;
  }

  80% {
    opacity: 1;
  }

  100% {
    background-position: 200% center;
    opacity: 0;
  }
}

.gehu-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: zoomSlow 12s ease-in-out infinite alternate;
}

@keyframes zoomSlow {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.08);
  }
}

.gold-tag {
  display: inline-block;
  background: linear-gradient(90deg, var(--gold), #e8c87a);
  color: var(--dark);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.4rem 1.1rem;
  border-radius: 50px;
  margin-bottom: 1.25rem;
  box-shadow: 0 4px 20px rgba(198, 167, 94, 0.4);
  animation: goldPulse 2.5s ease-in-out infinite;
}

@keyframes goldPulse {

  0%,
  100% {
    box-shadow: 0 4px 20px rgba(198, 167, 94, 0.4);
  }

  50% {
    box-shadow: 0 4px 40px rgba(198, 167, 94, 0.7);
  }
}

.gehu-title {
  font-family: var(--display);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 0.5rem;
}

.shine-text {
  background: linear-gradient(90deg, #C6A75E, #F0D080, #C6A75E);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: textShine 3s linear infinite;
}

@keyframes textShine {
  0% {
    background-position: 0% center;
  }

  100% {
    background-position: 200% center;
  }
}

.gehu-sub {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.07em;
  margin-bottom: 1.25rem;
}

.gehu-desc {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.gehu-stats {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
}

.gstat {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.gstat strong {
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}

.gstat span {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.gehu-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: #25D366;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  padding: 0.9rem 2rem;
  border-radius: 50px;
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.gehu-cta:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 14px 40px rgba(37, 211, 102, 0.5);
}

/* ─────────────────────────────────────────────────── */
/*  PRODUCTS SECTION                                  */
/* ─────────────────────────────────────────────────── */
.products-section {
  padding: 6rem 1.5rem;
  background: var(--cream-d);
  text-align: center;
}

.products-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.product-card {
  background: #fff;
  border-radius: 18px;
  padding: 2.2rem 1.5rem;
  box-shadow: 0 4px 24px rgba(92, 58, 33, 0.07);
  border: 1px solid rgba(198, 167, 94, 0.15);
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s ease, border-color 0.35s ease;
  cursor: default;
  opacity: 0;
  transform: translateY(30px);
  animation: cardReveal 0.7s var(--ease-out) var(--delay, 0s) forwards;
}

.product-card.revealed {
  opacity: 1;
  transform: translateY(0);
}

.product-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 50px rgba(92, 58, 33, 0.15);
  border-color: var(--gold);
}

.product-icon {
  font-size: 2.8rem;
  margin-bottom: 1rem;
  display: inline-block;
  animation: iconBob 3s ease-in-out infinite;
  animation-delay: var(--delay, 0s);
}

@keyframes iconBob {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-5px);
  }
}

.product-card h3 {
  font-family: var(--display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--brown);
  margin-bottom: 0.5rem;
}

.product-card p {
  font-size: 0.85rem;
  color: rgba(92, 58, 33, 0.65);
  line-height: 1.6;
}

/* ─────────────────────────────────────────────────── */
/*  TRUST SECTION                                     */
/* ─────────────────────────────────────────────────── */
.trust-section {
  position: relative;
  padding: 7rem 1.5rem;
  background: linear-gradient(160deg, #3E6B35 0%, #2D4F27 50%, #1E3519 100%);
  text-align: center;
  overflow: hidden;
}

.trust-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.trust-particles span {
  position: absolute;
  font-size: 2rem;
  opacity: 0.07;
  animation: floatParticle 9s ease-in-out infinite;
}

.trust-particles span:nth-child(1) {
  left: 5%;
  top: 15%;
  animation-delay: 0s;
}

.trust-particles span:nth-child(2) {
  left: 85%;
  top: 20%;
  animation-delay: 2s;
}

.trust-particles span:nth-child(3) {
  left: 10%;
  top: 80%;
  animation-delay: 4s;
}

.trust-particles span:nth-child(4) {
  left: 90%;
  top: 75%;
  animation-delay: 1s;
}

.trust-inner {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.stars-row {
  display: flex;
  justify-content: center;
  gap: 0.3rem;
  margin-bottom: 1.5rem;
}

.star {
  font-size: 1.8rem;
  color: var(--gold);
  opacity: 0;
  transform: scale(0.5);
  transition: opacity 0.5s ease, transform 0.5s ease;
  transition-delay: var(--d, 0s);
}

.trust-section.revealed .star {
  opacity: 1;
  transform: scale(1);
}

.trust-quote {
  font-family: var(--serif);
  font-size: clamp(1.1rem, 2.5vw, 1.6rem);
  font-style: italic;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 3rem;
}

.trust-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-bottom: 3.5rem;
}

.tstat {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.tstat strong {
  font-family: var(--display);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}

.tstat span {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.25rem;
}

.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  text-align: left;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 1.5rem;
  backdrop-filter: blur(8px);
  transition: transform 0.3s ease, background 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.12);
}

.testimonial-card p {
  font-family: var(--serif);
  font-size: 0.95rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.75;
  margin-bottom: 0.75rem;
}

.testimonial-card span {
  font-size: 0.78rem;
  color: var(--gold);
  font-weight: 600;
}

/* ─────────────────────────────────────────────────── */
/*  CONTACT SECTION                                   */
/* ─────────────────────────────────────────────────── */
.contact-section {
  padding: 6rem 1.5rem;
  background: var(--cream);
}

.contact-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  text-align: left;
  margin-top: 2.5rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.info-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: #fff;
  padding: 1.1rem 1.25rem;
  border-radius: 12px;
  box-shadow: 0 2px 16px rgba(92, 58, 33, 0.06);
  border: 1px solid rgba(198, 167, 94, 0.15);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.info-card:hover {
  transform: translateX(4px);
  box-shadow: 0 6px 24px rgba(92, 58, 33, 0.12);
}

.info-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.info-card h4 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-d);
  margin-bottom: 0.25rem;
}

.info-card p,
.info-card a {
  font-size: 0.95rem;
  color: var(--brown);
  line-height: 1.55;
}

.info-card a {
  font-weight: 600;
}

.info-card a:hover {
  color: var(--green);
  text-decoration: underline;
}

.info-card em {
  font-style: normal;
  color: var(--green);
  font-weight: 500;
}

.contact-cta-row {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

.contact-cta-row .cta-directions {
  background: rgba(92, 58, 33, 0.08);
  color: var(--brown);
  border: 1px solid rgba(92, 58, 33, 0.2);
}

.map-wrap {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 48px rgba(92, 58, 33, 0.15);
}

.map-pin-anim {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 2rem;
  z-index: 2;
  animation: pinDrop 1.5s ease-out forwards;
  opacity: 0;
  transform: translateY(-20px);
}

@keyframes pinDrop {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }

  60% {
    opacity: 1;
    transform: translateY(4px);
  }

  80% {
    transform: translateY(-4px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.contact-section.revealed .map-pin-anim {
  animation-delay: 0.5s;
}

#shop-map {
  display: block;
}

/* ─────────────────────────────────────────────────── */
/*  FOOTER                                            */
/* ─────────────────────────────────────────────────── */
.footer {
  background: var(--dark);
  padding: 3.5rem 1.5rem 2rem;
  text-align: center;
}

.footer-inner {
  max-width: 500px;
  margin: 0 auto;
}

.footer-logo {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin: 0 auto 1rem;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  padding: 8px;
}

.footer-name {
  font-family: var(--display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 0.25rem;
}

.footer-addr {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 1.25rem;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.footer-links a {
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-copy {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.3);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1.25rem;
}



/* ─────────────────────────────────────────────────── */
/*  MOBILE STICKY CTA BAR (Redesigned - Wheat Gold)  */
/* ─────────────────────────────────────────────────── */
#mobile-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9998;
  background: linear-gradient(135deg, rgba(30, 20, 10, 0.98), rgba(26, 18, 11, 0.99));
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0.5rem 0.6rem;
  padding-bottom: calc(0.5rem + env(safe-area-inset-bottom));
  border-top: 2px solid rgba(198, 167, 94, 0.35);
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.4);
}

.sticky-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  min-height: 52px;
  padding: 0.5rem;
  border-radius: 12px;
  text-align: center;
  transition: transform 0.15s ease, background 0.15s ease;
  -webkit-tap-highlight-color: transparent;
}

.sticky-icon {
  font-size: 1.3rem;
  line-height: 1;
}

.sticky-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.sticky-btn:active {
  transform: scale(0.93);
}

.sticky-call {
  background: linear-gradient(135deg, rgba(198, 167, 94, 0.15), rgba(198, 167, 94, 0.08));
  color: var(--gold);
}

.sticky-wa {
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.15), rgba(37, 211, 102, 0.08));
  color: #25D366;
}

.sticky-dir {
  background: linear-gradient(135deg, rgba(62, 107, 53, 0.15), rgba(62, 107, 53, 0.08));
  color: #7dc96f;
}

/* ═══════════════════════════════════════════════════ */
/*  RESPONSIVE: TABLET (max-width: 900px)             */
/* ═══════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .about-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .gehu-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .trust-stats {
    gap: 2rem;
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* ── Hamburger visible on tablet ── */
  .hamburger {
    display: flex;
  }

  .nav-cta {
    display: none;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    height: 100dvh;
    background: var(--cream);
    flex-direction: column;
    padding: 5rem 1.5rem 2rem;
    gap: 0;
    z-index: 1000;
    box-shadow: -8px 0 40px rgba(0, 0, 0, 0.2);
    transition: right 0.35s var(--ease-out);
    overflow-y: auto;
  }

  .nav-links.open {
    right: 0;
  }

  .nav-links li {
    border-bottom: 1px solid rgba(198, 167, 94, 0.15);
  }

  .nav-links a {
    display: block;
    padding: 1rem 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    min-height: 48px;
    display: flex;
    align-items: center;
  }

  .nav-mobile-cta {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-bottom: none !important;
  }

  .nav-mobile-cta .cta-btn {
    justify-content: center;
    padding: 0.9rem 1.5rem;
    font-size: 0.95rem;
    min-height: 48px;
  }

  /* ── Mobile Sticky CTA visible ── */
  #mobile-sticky-cta {
    display: flex;
    gap: 0.4rem;
  }

  #main-content {
    padding-bottom: 80px;
  }

  .gehu-stats {
    flex-wrap: wrap;
    gap: 1.25rem;
  }
}

/* ═══════════════════════════════════════════════════ */
/*  RESPONSIVE: MOBILE (max-width: 600px)             */
/* ═══════════════════════════════════════════════════ */
@media (max-width: 600px) {

  /* ── Base font size for readability ── */
  body {
    font-size: 16px;
  }

  /* ── Tighter section padding ── */
  .about-section,
  .gehu-section,
  .products-section,
  .trust-section,
  .contact-section,
  .why-best-section,
  .seo-content-section,
  .faq-section {
    padding: 3rem 1rem;
  }

  /* ── Section titles smaller ── */
  .section-title {
    font-size: clamp(1.5rem, 6vw, 2rem);
  }

  .section-sub {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
  }

  /* ── Products grid ── */
  .products-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }

  .product-card {
    padding: 1.5rem 1rem;
  }

  .product-card h3 {
    font-size: 1rem;
  }

  .product-card p {
    font-size: 0.8rem;
  }

  /* ── Trust stats ── */
  .trust-stats {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
  }

  .tstat strong {
    font-size: 2rem;
  }

  /* ── Why grid ── */
  .why-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .why-card {
    padding: 1.5rem 1.25rem;
  }

  .why-card p {
    font-size: 0.88rem;
    line-height: 1.7;
  }

  /* ── SEO content sections ── */
  .seo-content-body p {
    font-size: 0.92rem;
    line-height: 1.75;
  }

  /* ── Contact section ── */
  .contact-cta-row {
    flex-direction: column;
  }

  .contact-cta-row .cta-btn {
    justify-content: center;
    min-height: 48px;
  }

  .since-badge {
    bottom: 0.5rem;
    right: 0.5rem;
    font-size: 0.85rem;
    padding: 0.5rem 1rem;
  }

  /* ── FAQ mobile ── */
  .faq-question {
    font-size: 0.88rem;
    padding: 1rem 1rem;
    gap: 0.75rem;
  }

  .faq-answer {
    padding: 0 1rem 1rem;
  }

  .faq-answer p {
    font-size: 0.88rem;
  }

  /* ── Footer ── */
  .footer-seo-links {
    gap: 0.4rem 0.75rem;
  }

  .footer {
    padding: 2.5rem 1rem 1.5rem;
  }

  /* ── Intro overlay mobile ── */
  #intro-text {
    padding: 1.25rem 1rem 1.5rem;
    /* Add space above sticky CTA bar */
    padding-bottom: calc(1.5rem + 70px);
    /* Dark gradient for readability */
    background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.4) 60%, transparent 100%);
  }

  /* Swap headline: hide long, show short */
  .headline-desktop {
    display: none;
  }

  .headline-mobile {
    display: inline;
  }

  /* Hide 3rd button — sticky bar already has Directions */
  .intro-directions {
    display: none;
  }

  .intro-headline {
    font-size: clamp(1.15rem, 5.5vw, 1.5rem);
    line-height: 1.25;
    margin-bottom: 0.5rem;
    word-break: break-word;
  }

  .intro-since {
    font-size: 0.6rem;
    letter-spacing: 0.18em;
    margin-bottom: 0.35rem;
  }

  #intro-logo {
    top: 1.5rem;
  }

  #intro-logo img {
    width: 80px;
    height: 80px;
    padding: 6px;
  }

  #intro-ctas {
    flex-direction: row;
    align-items: stretch;
    gap: 0.5rem;
    margin-top: 0.75rem;
  }

  .cta-btn {
    justify-content: center;
    padding: 0.75rem 1rem;
    font-size: 0.82rem;
    min-height: 48px;
    white-space: nowrap;
    flex: 1;
  }

  /* ── Gehu section mobile ── */
  .gehu-title {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
  }

  .gehu-desc {
    font-size: 0.92rem;
    line-height: 1.7;
  }

  .gstat strong {
    font-size: 1.6rem;
  }

  .gehu-cta {
    width: 100%;
    justify-content: center;
    padding: 0.85rem 1.5rem;
    min-height: 48px;
  }

  /* ── Testimonial cards ── */
  .testimonial-card {
    padding: 1.25rem;
  }

  .testimonial-card p {
    font-size: 0.88rem;
    line-height: 1.65;
  }

  /* ── Map ── */
  #shop-map {
    height: 280px;
  }

  .map-wrap {
    border-radius: 12px;
  }

  /* ── About text ── */
  .about-text {
    font-size: 0.92rem;
    line-height: 1.75;
  }

  .trust-badges {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .badge {
    padding: 0.65rem 0.85rem;
    font-size: 0.82rem;
  }
}

/* ═══════════════════════════════════════════════════ */
/*  RESPONSIVE: SMALL MOBILE (max-width: 400px)       */
/* ═══════════════════════════════════════════════════ */
@media (max-width: 400px) {
  .products-grid {
    grid-template-columns: 1fr;
  }

  .trust-stats {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }

  .nav-links {
    width: 100%;
    right: -100%;
  }

  .nav-links.open {
    right: 0;
  }
}

/* ═══════════════════════════════════════════════════ */
/*  REDUCE ANIMATIONS (Accessibility + Performance)   */
/* ═══════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .marquee-track {
    animation: none;
  }

  html {
    scroll-behavior: auto;
  }
}

/* ── Reduce heavy effects on mobile for performance ── */
@media (max-width: 768px) {
  .ray {
    display: none;
  }

  .gehu-particles,
  .trust-particles {
    display: none;
  }

  .gehu-shine {
    animation: none;
  }

  .gehu-img {
    animation: none;
  }

  .product-icon {
    animation: none;
  }

  .since-badge {
    animation: none;
  }

  .gold-tag {
    animation: none;
  }

  #intro-logo img {
    animation: none;
  }

  .about-shop-img img {
    transition: none;
  }

  .why-card:hover {
    transform: none;
  }

  .product-card:hover {
    transform: none;
  }
}

/* ─────────────────────────────────────────────────── */
/*  WHY BEST SECTION                                  */
/* ─────────────────────────────────────────────────── */
.why-best-section {
  padding: 6rem 1.5rem;
  background: linear-gradient(160deg, #faf7ef 0%, #f5f0e0 50%, var(--cream) 100%);
  position: relative;
  overflow: hidden;
}

.why-best-section::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(198, 167, 94, 0.12), transparent 70%);
  pointer-events: none;
}

.why-best-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 1rem;
  text-align: left;
}

.why-card {
  background: #fff;
  border-radius: 18px;
  padding: 2rem 1.5rem;
  box-shadow: 0 4px 24px rgba(92, 58, 33, 0.07);
  border: 1px solid rgba(198, 167, 94, 0.15);
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s ease, border-color 0.35s ease;
  position: relative;
  overflow: hidden;
}

.why-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--green));
  opacity: 0;
  transition: opacity 0.35s ease;
}

.why-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 50px rgba(92, 58, 33, 0.15);
  border-color: var(--gold);
}

.why-card:hover::after {
  opacity: 1;
}

.why-icon {
  font-size: 2.4rem;
  margin-bottom: 0.75rem;
  display: inline-block;
}

.why-card h3 {
  font-family: var(--display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--brown);
  margin-bottom: 0.6rem;
}

.why-card p {
  font-size: 0.9rem;
  color: rgba(92, 58, 33, 0.7);
  line-height: 1.75;
}

/* ─────────────────────────────────────────────────── */
/*  SEO CONTENT SECTIONS (Kirana, Jalna)              */
/* ─────────────────────────────────────────────────── */
.seo-content-section {
  padding: 5rem 1.5rem;
  background: var(--cream);
}

.seo-content-section.alt {
  background: linear-gradient(135deg, #faf7ef 0%, var(--cream-d) 100%);
}

.seo-content-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.seo-content-body {
  text-align: left;
  margin-top: 1.5rem;
}

.seo-content-body p {
  font-size: 1rem;
  line-height: 1.9;
  color: rgba(92, 58, 33, 0.8);
  margin-bottom: 1.25rem;
}

.seo-content-body p:last-child {
  margin-bottom: 0;
}

.seo-content-body a {
  color: var(--green);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(62, 107, 53, 0.3);
  transition: text-decoration-color 0.2s ease;
}

.seo-content-body a:hover {
  text-decoration-color: var(--green);
}

.seo-content-body strong {
  color: var(--brown);
}

/* ─────────────────────────────────────────────────── */
/*  FAQ SECTION                                       */
/* ─────────────────────────────────────────────────── */
.faq-section {
  padding: 6rem 1.5rem;
  background: linear-gradient(160deg, #1A120B 0%, #2E1B0E 50%, #3A2210 100%);
  position: relative;
  overflow: hidden;
}

.faq-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 50% at 20% 30%, rgba(198, 167, 94, 0.06), transparent),
    radial-gradient(ellipse 50% 50% at 80% 70%, rgba(62, 107, 53, 0.05), transparent);
  pointer-events: none;
}

.faq-inner {
  max-width: 850px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.faq-section .section-title {
  color: #fff;
}

.faq-section .section-sub {
  color: rgba(255, 255, 255, 0.6);
}

.faq-section .section-label {
  color: var(--gold);
  background: rgba(198, 167, 94, 0.15);
}

.faq-list {
  text-align: left;
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  overflow: hidden;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.faq-item:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(198, 167, 94, 0.2);
}

.faq-item[open] {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(198, 167, 94, 0.3);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  list-style: none;
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  transition: color 0.2s ease;
  user-select: none;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question::marker {
  display: none;
  content: '';
}

.faq-question:hover {
  color: var(--gold);
}

.faq-toggle {
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform 0.3s ease;
  line-height: 1;
  width: 24px;
  text-align: center;
}

.faq-item[open] .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 1.5rem 1.25rem 1.5rem;
  animation: faqSlideIn 0.3s ease;
}

@keyframes faqSlideIn {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.faq-answer p {
  font-size: 0.92rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.7);
}

.faq-answer strong {
  color: var(--gold);
  font-weight: 600;
}

.faq-answer a {
  color: var(--gold);
  text-decoration: underline;
  text-decoration-color: rgba(198, 167, 94, 0.3);
}

.faq-answer a:hover {
  text-decoration-color: var(--gold);
}

/* ─────────────────────────────────────────────────── */
/*  FOOTER SEO LINKS & TAGLINE                       */
/* ─────────────────────────────────────────────────── */
.footer-tagline {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 0.4rem;
  letter-spacing: 0.05em;
}

.footer-seo-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1rem;
  margin-top: 1rem;
  margin-bottom: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-seo-links a {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  transition: color 0.2s;
}

.footer-seo-links a:hover {
  color: var(--gold);
}

/* ─────────────────────────────────────────────────── */
/*  RESPONSIVE — NEW SECTIONS                        */
/* ─────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .why-grid {
    grid-template-columns: 1fr;
  }

  .why-best-section,
  .seo-content-section,
  .faq-section {
    padding: 4rem 1.25rem;
  }

  .faq-question {
    font-size: 0.88rem;
    padding: 1rem 1.25rem;
  }

  .faq-answer {
    padding: 0 1.25rem 1rem;
  }

  .footer-seo-links {
    gap: 0.4rem 0.75rem;
  }
}