/* ============================================================
   NANDANVAN TEA – PREMIUM BRAND STYLESHEET
   Version: 1.0 | Author: Nandanvan Tea Design
   ============================================================ */

/* ============================================================
   1. CSS CUSTOM PROPERTIES (DESIGN TOKENS)
   ============================================================ */
:root {
  /* Brand Colors */
  --primary:        #1B4332;   /* Deep forest green */
  --primary-light:  #2D6A4F;   /* Lighter green */
  --primary-dark:   #0D2B1E;   /* Very dark green */
  --accent:         #C9A84C;   /* Gold / amber */
  --accent-light:   #E8C96A;   /* Light gold */
  --accent-dark:    #A07C30;   /* Dark gold */

  /* Background Colors */
  --bg-cream:       #F8F4EF;   /* Warm cream */
  --bg-light:       #FFFDF9;   /* Off white */
  --bg-dark:        #0D2B1E;   /* Dark section bg */
  --bg-section-alt: #F0EAE0;   /* Alt cream section */

  /* Text Colors */
  --text-dark:      #1A1A1A;
  --text-body:      #3D3D3D;
  --text-muted:     #7A7A7A;
  --text-light:     #E8E0D4;
  --text-white:     #FFFFFF;

  /* Tea Type Colors */
  --black-tea:      #8B1A1A;
  --green-tea:      #2D5A27;
  --chai-blend:     #C45C17;
  --white-tea:      #8E8E8E;
  --herbal:         #1A7A6A;
  --premium:        #A07C30;

  /* Shadows */
  --shadow-sm:      0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md:      0 6px 20px rgba(0, 0, 0, 0.12);
  --shadow-lg:      0 12px 40px rgba(0, 0, 0, 0.18);
  --shadow-xl:      0 20px 60px rgba(0, 0, 0, 0.25);
  --shadow-green:   0 8px 30px rgba(27, 67, 50, 0.3);

  /* Transitions */
  --transition-fast:   0.2s ease;
  --transition-base:   0.35s ease;
  --transition-slow:   0.6s ease;

  /* Spacing */
  --section-padding:   100px 20px;
  --section-padding-sm: 60px 20px;

  /* Typography */
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body:    'Lato', 'Helvetica Neue', sans-serif;

  /* Border Radius */
  --radius-sm:    6px;
  --radius-md:    12px;
  --radius-lg:    20px;
  --radius-xl:    32px;
  --radius-full:  999px;

  /* Navbar height */
  --nav-h: 80px;
}


/* ============================================================
   2. RESET & BASE STYLES
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-body);
  background-color: var(--bg-cream);
  color: var(--text-body);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: var(--font-body);
}

input {
  font-family: var(--font-body);
}

::selection {
  background: var(--accent);
  color: var(--text-white);
}


/* ============================================================
   3. TYPOGRAPHY UTILITIES
   ============================================================ */
.section-badge {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  padding: 6px 16px;
  border: 1.5px solid var(--accent);
  border-radius: var(--radius-full);
  margin-bottom: 16px;
}

.badge-gold {
  border-color: var(--accent);
  color: var(--accent-light);
}

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

.section-title em {
  font-style: italic;
  color: var(--primary);
}

.title-light {
  color: var(--text-white);
}

.title-light em {
  color: var(--accent-light);
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.8;
}

.subtitle-light {
  color: var(--text-light);
  opacity: 0.85;
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 60px;
  padding: 0 20px;
}

.section-header-light {
  color: var(--text-white);
}


/* ============================================================
   4. BUTTON STYLES
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 12px 26px;
  border-radius: var(--radius-full);
  border: 2px solid transparent;
  transition: all var(--transition-base);
  cursor: pointer;
  white-space: nowrap;
}

.btn-lg {
  font-size: 1rem;
  padding: 15px 34px;
}

.btn-gold {
  background: var(--accent);
  color: var(--primary-dark);
  border-color: var(--accent);
  box-shadow: 0 4px 18px rgba(201, 168, 76, 0.4);
}

.btn-gold:hover {
  background: var(--accent-light);
  border-color: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201, 168, 76, 0.55);
}

.btn-dealer {
  background: #25D366;
  color: #fff;
  border-color: #25D366;
  font-size: 0.88rem;
  padding: 10px 20px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  box-shadow: 0 4px 16px rgba(37,211,102,0.35);
}

.btn-dealer:hover {
  background: #1ebe5d;
  border-color: #1ebe5d;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,0.45);
}

.btn-dealer i { font-size: 1rem; }

.btn-outline-white {
  background: transparent;
  color: var(--text-white);
  border-color: rgba(255, 255, 255, 0.7);
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--text-white);
  transform: translateY(-2px);
}

.btn-tea {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  font-size: 0.85rem;
  padding: 10px 22px;
  border-radius: var(--radius-full);
  transition: all var(--transition-base);
  width: 100%;
  justify-content: center;
  margin-top: 14px;
}

.btn-tea:hover {
  background: var(--primary);
  color: var(--text-white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(27, 67, 50, 0.35);
}

.btn-newsletter {
  flex-shrink: 0;
}


/* ============================================================
   5. NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  transition: background var(--transition-base), box-shadow var(--transition-base);
  background: transparent;
}

.navbar.scrolled {
  background: var(--primary-dark);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-white);
  flex-shrink: 0;
  transition: opacity var(--transition-fast);
}

.nav-logo:hover { opacity: 0.85; }

.logo-icon {
  width: 38px;
  height: 38px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-dark);
  font-size: 0.9rem;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-white);
  line-height: 1;
}

.logo-text em {
  font-style: italic;
  color: var(--accent);
}

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

.nav-link {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: rgba(255, 255, 255, 0.85);
  position: relative;
  transition: color var(--transition-fast);
  padding-bottom: 4px;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
  transition: width var(--transition-base);
}

.nav-link:hover,
.nav-link.active {
  color: var(--accent-light);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text-white);
  border-radius: 2px;
  transition: all var(--transition-base);
  transform-origin: center;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}


/* ============================================================
   6. HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  /* Image is set directly in CSS — browser loads it with preload tag, no JS delay */
  background:
    linear-gradient(
      110deg,
      rgba(2, 14, 7, 0.82) 0%,
      rgba(3, 18, 9, 0.65) 30%,
      rgba(5, 22, 11, 0.38) 58%,
      rgba(3, 14, 7, 0.50) 100%
    ),
    url('images/hero-garden.jpg') center / cover no-repeat,
    #0c2a16; /* solid fallback while image loads */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: calc(var(--nav-h) + 40px) 20px 80px;
}

/* Warm sunlight glow through leaves */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 55% at 75% 45%, rgba(255, 210, 60, 0.10) 0%, transparent 60%),
    radial-gradient(ellipse 35% 35% at 80% 65%, rgba(255, 170, 30, 0.07) 0%, transparent 55%);
  pointer-events: none;
  z-index: 1;
}

/* Fade into page below */
.hero::after {
  display: none;
}

/* ---- Floating Leaves ---- */
.leaves-container {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 2;
}

.leaf {
  position: absolute;
  color: rgba(201, 168, 76, 0.32);
  animation: leafFloat linear infinite;
  font-size: 1.2rem;
}

.leaf-1 { left: 8%;  top: -5%;  font-size: 1.5rem; animation-duration: 14s; animation-delay: 0s; }
.leaf-2 { left: 22%; top: -8%;  font-size: 0.9rem; animation-duration: 18s; animation-delay: 2s; }
.leaf-3 { left: 55%; top: -5%;  font-size: 1.3rem; animation-duration: 16s; animation-delay: 4s; }
.leaf-4 { left: 75%; top: -6%;  font-size: 1rem;   animation-duration: 20s; animation-delay: 1s; }
.leaf-5 { left: 88%; top: -4%;  font-size: 1.6rem; animation-duration: 15s; animation-delay: 3s; }
.leaf-6 { left: 40%; top: -7%;  font-size: 0.8rem; animation-duration: 22s; animation-delay: 5s; }

@keyframes leafFloat {
  0%   { transform: translateY(0)      rotate(0deg)   translateX(0);   opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 0.7; }
  100% { transform: translateY(110vh)  rotate(360deg) translateX(40px); opacity: 0; }
}

/* ---- Hero Content Layout ---- */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
}

.hero-text {
  max-width: 600px;
  /* Start hidden — fades in after background image is ready */
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.hero-art {
  opacity: 0;
  transform: translateY(20px) scale(0.97);
  transition: opacity 0.9s ease 0.25s, transform 0.9s ease 0.25s;
}

/* Triggered by JS once image has loaded */
.hero.image-ready .hero-text {
  opacity: 1;
  transform: translateY(0);
}

.hero.image-ready .hero-art {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Fallback: if image never loads, reveal after 2s anyway */
.hero.image-timeout .hero-text,
.hero.image-timeout .hero-art {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1.5px solid rgba(201, 168, 76, 0.5);
  border-radius: var(--radius-full);
  padding: 6px 16px;
  margin-bottom: 24px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  font-weight: 900;
  color: var(--text-white);
  line-height: 1.15;
  margin-bottom: 22px;
}

.hero-title em {
  font-style: italic;
  color: var(--accent);
}

.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.8;
  margin-bottom: 36px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ---- Marketplace Badges (Hero) ---- */
.marketplace-strip {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.marketplace-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.60);
  white-space: nowrap;
}

.marketplace-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.mp-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 16px;
  border-radius: 8px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
  box-shadow: 0 2px 10px rgba(0,0,0,0.30);
}

.mp-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.40);
  filter: brightness(1.08);
}

.mp-amazon {
  background: #FF9900;
  color: #111;
}

.mp-amazon i {
  font-size: 1.35rem;
  line-height: 1;
}

.mp-flipkart {
  background: #2874F0;
  color: #fff;
}

.fk-logo {
  font-size: 1.25rem;
  font-weight: 900;
  font-style: italic;
  line-height: 1;
  letter-spacing: -1px;
}

.mp-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.mp-sub {
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0.75;
}

.mp-name {
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.01em;
}

/* ---- Marketplace Badges (Footer) ---- */
.footer-marketplace {
  margin-top: 20px;
}

.footer-mp-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 10px;
}

.footer-mp-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* Footer badges reuse .mp-badge, .mp-amazon, .mp-flipkart — no extra overrides needed */

/* ---- Real Tea Cup Photo ---- */
.hero-art {
  flex-shrink: 0;
  position: relative;
  z-index: 3;
}

.teacup-scene {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.teacup-img-wrap {
  position: relative;
  display: inline-block;
}

/* The actual tea cup photo */
.teacup-img {
  width: 420px;
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
  /* Rich multi-layer shadow for ultra-HD depth */
  filter:
    drop-shadow(0 4px 6px rgba(0,0,0,0.25))
    drop-shadow(0 12px 28px rgba(0,0,0,0.45))
    drop-shadow(0 30px 60px rgba(0,0,0,0.35));
  /* Gentle floating animation */
  animation: cupFloat 5s ease-in-out infinite;
  /* Slight sharpening via contrast */
  image-rendering: crisp-edges;
}

@keyframes cupFloat {
  0%,  100% { transform: translateY(0px)   rotate(0deg); }
  30%        { transform: translateY(-10px) rotate(0.4deg); }
  70%        { transform: translateY(-6px)  rotate(-0.3deg); }
}

/* Golden glow pool under the cup */
.cup-glow {
  position: absolute;
  bottom: -18px;
  left: 50%;
  transform: translateX(-50%);
  width: 65%;
  height: 28px;
  background: radial-gradient(ellipse, rgba(201,168,76,0.45) 0%, transparent 70%);
  filter: blur(10px);
  border-radius: 50%;
  animation: glowPulse 5s ease-in-out infinite;
}

@keyframes glowPulse {
  0%, 100% { opacity: 0.8; transform: translateX(-50%) scaleX(1);   }
  50%       { opacity: 1.0; transform: translateX(-50%) scaleX(1.12); }
}

/* Steam — positioned at the cup rim (top ~20% of the image) */
.steam-container {
  position: absolute;
  top: 16%;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 14px;
  align-items: flex-end;
  z-index: 4;
  pointer-events: none;
}

.steam {
  width: 6px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.70);
  filter: blur(2.5px);
  animation: steamRise 2.8s ease-in-out infinite;
}

.steam-1 { height: 35px; animation-delay: 0s;   }
.steam-2 { height: 50px; animation-delay: 0.7s; }
.steam-3 { height: 30px; animation-delay: 1.4s; }
.steam-4 { height: 42px; animation-delay: 2.1s; }

@keyframes steamRise {
  0%   { transform: translateY(0)    scaleX(1);    opacity: 0;   }
  15%  {                                            opacity: 0.8; }
  55%  { transform: translateY(-45px) scaleX(1.5); opacity: 0.4; }
  100% { transform: translateY(-90px) scaleX(0.5); opacity: 0;   }
}

/* ---- Scroll Down Arrow ---- */
.scroll-down {
  position: absolute;
  bottom: 140px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  color: rgba(255,255,255,0.55);
  font-size: 1.2rem;
  animation: bounceDown 2s ease-in-out infinite;
  transition: color var(--transition-fast);
}

.scroll-down:hover { color: var(--accent); }

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


/* ============================================================
   7. STATS BAR
   ============================================================ */
.stats-bar {
  background: var(--primary);
  padding: 0 20px;
  position: relative;
}

.stats-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 50px 40px;
  gap: 20px;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
}

.stat-icon {
  font-size: 1.8rem;
  color: var(--accent);
  margin-bottom: 4px;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--text-white);
  line-height: 1;
  display: inline;
}

.stat-suffix {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--accent);
  display: inline;
  margin-left: 2px;
}

.stat-label {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 4px;
}

.stats-wave {
  line-height: 0;
  overflow: hidden;
  margin-bottom: -2px; /* prevents 1px gap on some screens */
}

.stats-wave svg {
  display: block;
  width: 100%;
  height: 72px;
}

.stat-divider {
  width: 1px;
  height: 64px;
  background: rgba(255, 255, 255, 0.15);
  flex-shrink: 0;
}


/* ============================================================
   8. OUR STORY SECTION
   ============================================================ */
.story-section {
  padding: var(--section-padding);
  background: var(--bg-light);
  overflow: hidden;
}

.story-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* ---- Story Founder Image ---- */
.story-art {
  position: relative;
}

.story-founder-img-wrap {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
}

.story-founder-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.5s ease;
}

.story-founder-img-wrap:hover .story-founder-img {
  transform: scale(1.03);
}

.story-founder-badge {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background: var(--accent);
  color: var(--primary-dark);
  border-radius: 50%;
  width: 80px;
  height: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 1;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}

.badge-est {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.badge-year {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
}

.plantation-scene {
  width: 100%;
  max-width: 480px;
  height: 360px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-xl);
}

/* Sky */
.sky {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 55%;
  background: linear-gradient(180deg, #87CEEB 0%, #B8E4F2 60%, #D4EEE0 100%);
}

/* Sun */
.sun {
  position: absolute;
  top: 22px;
  right: 60px;
  width: 52px;
  height: 52px;
}

.sun::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle, #FFE066 40%, #FFC933 70%, transparent 100%);
}

.sun-rays {
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  background: repeating-conic-gradient(
    rgba(255, 220, 50, 0.35) 0deg 10deg,
    transparent 10deg 20deg
  );
  animation: sunSpin 12s linear infinite;
}

@keyframes sunSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* Clouds */
.cloud {
  position: absolute;
  height: 20px;
  background: rgba(255, 255, 255, 0.85);
  border-radius: var(--radius-full);
}

.cloud::before,
.cloud::after {
  content: '';
  position: absolute;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 50%;
}

.cloud-1 {
  top: 25px;
  left: 24px;
  width: 72px;
  animation: cloudDrift 20s linear infinite;
}

.cloud-1::before {
  width: 28px; height: 28px;
  top: -14px; left: 12px;
}

.cloud-1::after {
  width: 18px; height: 18px;
  top: -8px; left: 38px;
}

.cloud-2 {
  top: 46px;
  left: 50%;
  width: 54px;
  animation: cloudDrift 28s linear infinite 5s;
  opacity: 0.7;
}

.cloud-2::before {
  width: 22px; height: 22px;
  top: -10px; left: 8px;
}

.cloud-2::after {
  width: 16px; height: 16px;
  top: -6px; left: 28px;
}

@keyframes cloudDrift {
  0%   { transform: translateX(0); }
  50%  { transform: translateX(20px); }
  100% { transform: translateX(0); }
}

/* Hills */
.hills {
  position: absolute;
  bottom: 35%;
  left: 0; right: 0;
}

.hill {
  position: absolute;
  border-radius: 50% 50% 0 0;
}

.hill-back {
  width: 280px;
  height: 120px;
  background: linear-gradient(180deg, #3d8b5c 0%, #2d6a4f 100%);
  bottom: 0;
  left: -20px;
}

.hill-mid {
  width: 240px;
  height: 100px;
  background: linear-gradient(180deg, #2d6a4f 0%, #1f5040 100%);
  bottom: 0;
  right: 20px;
}

.hill-front {
  width: 320px;
  height: 80px;
  background: linear-gradient(180deg, #4a9a68 0%, #3d8050 100%);
  bottom: 0;
  left: 30px;
  z-index: 2;
}

/* Tea Rows */
.tea-rows {
  position: absolute;
  bottom: 28%;
  left: 0; right: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 0 20px;
}

.tea-row {
  display: flex;
  gap: 10px;
  justify-content: flex-start;
}

.bush {
  display: inline-block;
  width: 34px;
  height: 18px;
  background: linear-gradient(180deg, #5cb85c 0%, #3d8b3d 60%, #2d6a2d 100%);
  border-radius: 50% 50% 20% 20%;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

/* Tea Picker */
.tea-picker {
  position: absolute;
  bottom: 28%;
  right: 60px;
  z-index: 4;
}

.picker-body {
  width: 14px;
  height: 22px;
  background: #C45C17;
  border-radius: 4px 4px 2px 2px;
  margin: 0 auto;
}

.picker-head {
  width: 14px;
  height: 14px;
  background: #8B5E3C;
  border-radius: 50%;
  margin: 0 auto;
  margin-bottom: 1px;
}

.picker-basket {
  width: 20px;
  height: 14px;
  background: #A0522D;
  border-radius: 0 50% 50% 0;
  position: absolute;
  top: 8px;
  left: 12px;
}

/* Ground */
.ground {
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
  height: 32%;
  background: linear-gradient(180deg, #5a9e5a 0%, #4a7c4a 40%, #3d6b3d 100%);
  z-index: 1;
}

/* ---- Story Text ---- */
.story-text .section-badge {
  margin-bottom: 14px;
}

.story-lead {
  font-size: 1.12rem;
  color: var(--primary);
  font-weight: 400;
  font-style: italic;
  margin-bottom: 18px;
  line-height: 1.8;
}

.story-body {
  font-size: 0.97rem;
  color: var(--text-body);
  margin-bottom: 14px;
  line-height: 1.8;
}

.story-pillars {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.pillar {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.pillar-icon {
  width: 46px;
  height: 46px;
  min-width: 46px;
  background: var(--primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.1rem;
  box-shadow: 0 4px 12px rgba(27, 67, 50, 0.3);
}

.pillar-content h4 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 4px;
}

.pillar-content p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
}


/* ============================================================
   9. OUR TEAS SECTION
   ============================================================ */
.teas-section {
  padding: var(--section-padding);
  background: var(--bg-section-alt);
}

.teas-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding: 0 20px;
}

/* ---- Tea Card ---- */
.tea-card {
  background: var(--bg-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  display: flex;
  flex-direction: column;
}

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

/* ---- Product Image ---- */
.tea-tin {
  padding: 24px 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #f0ebe3;
  min-height: 220px;
  overflow: hidden;
}

.tea-product-img {
  width: 100%;
  max-height: 220px;
  object-fit: contain;
  transition: transform 0.4s ease;
  display: block;
}

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

.tin-body {
  width: 110px;
  height: 130px;
  position: relative;
  border-radius: 8px 8px 10px 10px;
  overflow: visible;
}

/* Cylindrical effect layers */
.tin-body::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 8px 8px 10px 10px;
}

.tin-highlight {
  position: absolute;
  top: 0; left: 0;
  width: 22px;
  height: 100%;
  background: linear-gradient(90deg, rgba(255,255,255,0.35) 0%, transparent 100%);
  border-radius: 8px 0 0 10px;
  z-index: 3;
  pointer-events: none;
}

.tin-shadow {
  position: absolute;
  top: 0; right: 0;
  width: 18px;
  height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(0,0,0,0.2) 100%);
  border-radius: 0 8px 10px 0;
  z-index: 3;
  pointer-events: none;
}

.tin-label {
  position: absolute;
  inset: 10px 6px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 1.5px solid rgba(255,255,255,0.4);
  border-radius: 4px;
  padding: 6px 4px;
}

.tin-brand {
  font-size: 0.44rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.9);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.tin-name {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 2px;
}

.tin-type {
  font-size: 0.52rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  margin-bottom: 4px;
}

.tin-ornament {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
}

.tin-lid {
  position: absolute;
  top: -8px;
  left: -5px;
  right: -5px;
  height: 16px;
  border-radius: 4px 4px 2px 2px;
  z-index: 4;
}

.tin-base {
  position: absolute;
  bottom: -6px;
  left: -3px;
  right: -3px;
  height: 10px;
  border-radius: 2px 2px 6px 6px;
  z-index: 4;
}

/* ---- Tin Color Themes ---- */

/* Assam Gold – Deep red */
.tin-assam .tin-body {
  background: linear-gradient(160deg, #c0392b 0%, #922b21 50%, #7b241c 100%);
}
.tin-assam .tin-lid,
.tin-assam .tin-base {
  background: linear-gradient(90deg, #a93226 0%, #7b241c 50%, #641e16 100%);
}

/* Himalayan Green – Forest green */
.tin-green .tin-body {
  background: linear-gradient(160deg, #27ae60 0%, #1e8449 50%, #1a6b3a 100%);
}
.tin-green .tin-lid,
.tin-green .tin-base {
  background: linear-gradient(90deg, #229954 0%, #1a6b3a 50%, #155a30 100%);
}

/* Royal Masala – Warm orange-brown */
.tin-masala .tin-body {
  background: linear-gradient(160deg, #e67e22 0%, #ca6f1e 50%, #a04000 100%);
}
.tin-masala .tin-lid,
.tin-masala .tin-base {
  background: linear-gradient(90deg, #ca6f1e 0%, #a04000 50%, #7e5109 100%);
}

/* White Mist – Silver-white */
.tin-white .tin-body {
  background: linear-gradient(160deg, #bdc3c7 0%, #95a5a6 50%, #797d7f 100%);
}
.tin-white .tin-label {
  border-color: rgba(255,255,255,0.6);
}
.tin-white .tin-lid,
.tin-white .tin-base {
  background: linear-gradient(90deg, #a6acaf 0%, #797d7f 50%, #616a6b 100%);
}
.tin-white .tin-name,
.tin-white .tin-brand,
.tin-white .tin-type { color: #2c3e50; }
.tin-white .tin-ornament { color: #2c3e50; }
.tin-white .tin-label { border-color: rgba(44,62,80,0.3); }

/* Tulsi Mint – Teal */
.tin-herbal .tin-body {
  background: linear-gradient(160deg, #17a589 0%, #148f77 50%, #0e6655 100%);
}
.tin-herbal .tin-lid,
.tin-herbal .tin-base {
  background: linear-gradient(90deg, #148f77 0%, #0e6655 50%, #0b5345 100%);
}

/* Darjeeling – Golden */
.tin-darjeeling .tin-body {
  background: linear-gradient(160deg, #d4ac0d 0%, #b7950b 50%, #9a7d0a 100%);
}
.tin-darjeeling .tin-lid,
.tin-darjeeling .tin-base {
  background: linear-gradient(90deg, #b7950b 0%, #9a7d0a 50%, #7d6608 100%);
}

/* ---- Card body text area ---- */
.tea-card-body {
  padding: 0 22px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.tea-type-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  margin-bottom: 10px;
  align-self: flex-start;
}

.badge-black   { background: rgba(139,26,26,0.12); color: var(--black-tea); }
.badge-green   { background: rgba(45,90,39,0.12);  color: var(--green-tea); }
.badge-chai    { background: rgba(196,92,23,0.12); color: var(--chai-blend); }
.badge-white   { background: rgba(142,142,142,0.15); color: var(--white-tea); }
.badge-herbal  { background: rgba(26,122,106,0.12); color: var(--herbal); }
.badge-premium { background: rgba(160,124,48,0.12); color: var(--premium); }

.tea-name {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
  line-height: 1.3;
}

.tea-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 14px;
  flex: 1;
}

.tea-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4px;
  gap: 8px;
  flex-wrap: wrap;
}

.pack-sizes {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--primary);
  background: rgba(27,67,50,0.07);
  padding: 6px 12px;
  border-radius: 50px;
  letter-spacing: 0.3px;
}

.pack-sizes i {
  color: var(--accent-dark);
  font-size: 0.85rem;
}

.brew-info {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 600;
}

.brew-info i {
  color: var(--accent-dark);
}

.strength-dots {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.72rem;
  color: var(--text-muted);
}

.strength-dots .label {
  margin-right: 2px;
  font-weight: 600;
}

.dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #ddd;
  border: 1.5px solid #ccc;
}

.dot.filled {
  background: var(--primary);
  border-color: var(--primary);
}


/* ============================================================
   10. TEA BLOGS SECTION
   ============================================================ */
/* HIDDEN — uncomment display line to re-enable */
.blogs-section {
  display: none;
  padding: var(--section-padding);
  background: var(--bg-cream);
}

.blogs-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  grid-template-rows: auto auto;
  gap: 28px;
}

.blog-card {
  background: var(--bg-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  display: flex;
  flex-direction: column;
}

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

.blog-featured {
  grid-row: 1 / 3;
}

/* Blog image headers (CSS gradient art) */
.blog-image {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.blog-featured .blog-image {
  height: 260px;
}

.blog-small .blog-image {
  height: 150px;
}

.blog-img-brewing {
  background: linear-gradient(135deg,
    #1a3a2a 0%, #2d6a4f 30%, #c9a84c 65%, #8B3A20 100%);
}

.blog-img-garden {
  background: linear-gradient(135deg,
    #2d6a4f 0%, #4a9a68 40%, #87CEEB 100%);
}

.blog-img-wellness {
  background: linear-gradient(135deg,
    #27ae60 0%, #a8e6cf 50%, #f0fff4 100%);
}

.blog-img-culture {
  background: linear-gradient(135deg,
    #C45C17 0%, #e67e22 40%, #f39c12 70%, #c9a84c 100%);
}

/* Decorative CSS pattern overlay on blog images */
.blog-img-brewing::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 60%, rgba(201,168,76,0.25) 0%, transparent 50%),
              radial-gradient(circle at 80% 20%, rgba(255,255,255,0.1) 0%, transparent 40%);
}

.blog-img-garden::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 80%, rgba(0,0,0,0.2) 0%, transparent 50%);
}

.blog-img-wellness::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 30%, rgba(255,255,255,0.2) 0%, transparent 60%);
}

.blog-img-culture::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 80%, rgba(0,0,0,0.15) 0%, transparent 60%);
}

.blog-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, transparent 100%);
}

.blog-category {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: var(--radius-full);
  color: #fff;
}

.cat-brewing  { background: rgba(139,58,32,0.85); }
.cat-origin   { background: rgba(45,106,79,0.85); }
.cat-wellness { background: rgba(39,174,96,0.85); }
.cat-culture  { background: rgba(196,92,23,0.85); }

.blog-body {
  padding: 20px 22px 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-meta {
  display: flex;
  gap: 16px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.blog-date,
.blog-read {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 600;
}

.blog-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.35;
  margin-bottom: 10px;
}

.blog-featured .blog-title {
  font-size: 1.35rem;
}

.blog-excerpt {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
  flex: 1;
}

.blog-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary);
  transition: gap var(--transition-fast), color var(--transition-fast);
  margin-top: auto;
}

.blog-link:hover {
  color: var(--accent-dark);
  gap: 10px;
}


/* ============================================================
   10b. WHY CHOOSE NANDANVAN SECTION
   ============================================================ */
.why-section {
  padding: var(--section-padding);
  background: var(--bg-cream);
  position: relative;
  overflow: hidden;
}

/* Subtle leaf watermark top-right */
.why-section::before {
  content: '\f06c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  top: -40px;
  right: -40px;
  font-size: 260px;
  color: rgba(27, 67, 50, 0.04);
  line-height: 1;
  pointer-events: none;
}

.why-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

.why-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  margin: 12px 0 8px;
}

.why-divider span {
  display: block;
  width: 60px;
  height: 1px;
  background: var(--accent);
}

.why-divider i { color: var(--accent); font-size: 0.85rem; }

/* Image wrapper — card style with hover depth */
.why-img-wrap {
  position: relative;
  display: inline-block;
  margin: 40px auto 0;
  border-radius: 20px;
  overflow: hidden;
  box-shadow:
    0 4px 12px rgba(0,0,0,0.06),
    0 16px 40px rgba(0,0,0,0.10),
    0 32px 72px rgba(0,0,0,0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  max-width: 100%;
}

.why-img-wrap:hover {
  transform: translateY(-6px);
  box-shadow:
    0 8px 20px rgba(0,0,0,0.08),
    0 24px 56px rgba(0,0,0,0.14),
    0 48px 96px rgba(0,0,0,0.10);
}

.why-img {
  display: block;
  width: 100%;
  max-width: 1000px;
  height: auto;
  border-radius: 20px;
}

/* Subtle gloss shine on hover */
.why-img-shine {
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: linear-gradient(
    135deg,
    rgba(255,255,255,0.12) 0%,
    transparent 50%,
    rgba(255,255,255,0.04) 100%
  );
  pointer-events: none;
}

/* CTA buttons below image */
.why-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 36px;
  flex-wrap: wrap;
}

.btn-primary-green {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: #fff;
  padding: 13px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(37,211,102,0.35);
}

.btn-primary-green:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,0.45);
}

.btn-outline-dark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.2s;
}

.btn-outline-dark:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}

/* ============================================================
   11. VISIT US SECTION
   ============================================================ */
.visit-section {
  padding: var(--section-padding);
  background: var(--primary-dark);
  position: relative;
  overflow: hidden;
}

.visit-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 80%, rgba(201,168,76,0.06) 0%, transparent 55%),
              radial-gradient(ellipse at 80% 20%, rgba(45,106,79,0.15) 0%, transparent 55%);
  pointer-events: none;
}

.visit-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.visit-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
  padding: 0 20px;
}

.visit-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.visit-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  transition: background var(--transition-base), border-color var(--transition-base);
}

.visit-card:hover {
  background: rgba(255,255,255,0.09);
  border-color: rgba(201,168,76,0.4);
}

.visit-card-icon {
  width: 44px;
  height: 44px;
  background: var(--accent);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-dark);
  font-size: 1.1rem;
  margin-bottom: 14px;
}

.visit-card h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 10px;
}

.visit-card p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
}

.visit-card p i {
  width: 16px;
  color: var(--accent);
  margin-right: 4px;
}

.social-links {
  display: flex;
  gap: 10px;
  margin-bottom: 8px;
}

.social-link {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.75);
  font-size: 0.85rem;
  transition: all var(--transition-base);
  border: 1px solid rgba(255,255,255,0.12);
}

.social-link:hover {
  background: var(--accent);
  color: var(--primary-dark);
  border-color: var(--accent);
  transform: translateY(-3px);
}

/* ---- CSS Map Placeholder ---- */
.map-placeholder {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 340px;
  border: 1px solid rgba(255,255,255,0.1);
  position: relative;
  display: flex;
  flex-direction: column;
}

.map-bg {
  flex: 1;
  background: #e8f0e8;
  position: relative;
  overflow: hidden;
}

/* Roads */
.map-road {
  position: absolute;
  background: #d4c5a9;
}

.map-road-h {
  left: 0; right: 0;
  top: 45%;
  height: 18px;
}

.map-road-v {
  top: 0; bottom: 0;
  left: 45%;
  width: 18px;
}

.map-road-d1 {
  width: 2px;
  height: 140%;
  background: #d4c5a9;
  top: -20%;
  left: 68%;
  transform: rotate(35deg);
  transform-origin: top;
}

/* Map blocks (buildings/areas) */
.map-block {
  position: absolute;
  background: #c8d8c8;
  border-radius: 3px;
}

.map-block-1 { top: 8%;  left: 5%;   width: 34%; height: 35%; background: #c0cfc0; }
.map-block-2 { top: 8%;  right: 5%;  width: 28%; height: 32%; background: #cad6ca; }
.map-block-3 { bottom: 8%; left: 5%; width: 28%; height: 30%; background: #c0cfc0; }
.map-block-4 { bottom: 8%; right: 8%;width: 22%; height: 25%; background: #cad6ca; }

/* Green area */
.map-green {
  position: absolute;
  background: #9abf8a;
  border-radius: var(--radius-md);
}

.map-green-1 {
  top: 55%;
  left: 50%;
  width: 26%;
  height: 28%;
}

/* Map Pin */
.map-pin {
  position: absolute;
  top: 38%;
  left: 43%;
  transform: translate(-50%, -100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 10;
}

.pin-icon {
  width: 36px;
  height: 36px;
  background: var(--primary);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.35);
  border: 2px solid var(--accent);
}

.pin-icon i {
  transform: rotate(45deg);
  color: var(--accent);
  font-size: 0.8rem;
}

.pin-pulse {
  position: absolute;
  top: 0; left: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(27,67,50,0.35);
  animation: pinPulse 2s ease-out infinite;
}

.pin-pulse-2 {
  animation-delay: 0.8s;
}

@keyframes pinPulse {
  0%   { transform: scale(1);   opacity: 0.8; }
  100% { transform: scale(3.2); opacity: 0; }
}

.map-label {
  padding: 10px 16px;
  background: var(--primary-dark);
  color: rgba(255,255,255,0.8);
  font-size: 0.8rem;
  font-weight: 600;
  text-align: center;
  letter-spacing: 0.04em;
}


/* ============================================================
   12. NEWSLETTER SECTION
   ============================================================ */
/* HIDDEN — uncomment display line to re-enable */
.newsletter-section {
  display: none;
  padding: 80px 20px;
  background: linear-gradient(135deg, var(--accent-dark) 0%, var(--accent) 50%, var(--accent-light) 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.newsletter-section::before {
  content: '';
  position: absolute;
  top: -60px; left: -60px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  pointer-events: none;
}

.newsletter-section::after {
  content: '';
  position: absolute;
  bottom: -80px; right: -40px;
  width: 260px; height: 260px;
  border-radius: 50%;
  background: rgba(0,0,0,0.07);
  pointer-events: none;
}

.newsletter-container {
  max-width: 680px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.newsletter-icon {
  font-size: 2.8rem;
  color: var(--primary-dark);
  margin-bottom: 16px;
  opacity: 0.85;
}

.newsletter-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 14px;
  line-height: 1.25;
}

.newsletter-title em {
  font-style: italic;
}

.newsletter-subtitle {
  font-size: 1rem;
  color: rgba(13,43,30,0.75);
  margin-bottom: 32px;
  line-height: 1.75;
}

.newsletter-form .form-group {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 14px;
}

.form-input {
  flex: 1;
  min-width: 180px;
  padding: 14px 20px;
  border: 2px solid rgba(13,43,30,0.2);
  border-radius: var(--radius-full);
  background: rgba(255,255,255,0.85);
  font-size: 0.95rem;
  color: var(--text-dark);
  outline: none;
  transition: border-color var(--transition-fast), background var(--transition-fast);
}

.form-input::placeholder {
  color: #888;
}

.form-input:focus {
  border-color: var(--primary);
  background: #fff;
}

.btn-newsletter {
  background: var(--primary);
  color: var(--text-white);
  border-color: var(--primary);
  flex-shrink: 0;
  padding: 14px 30px;
}

.btn-newsletter:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(13,43,30,0.4);
  color: var(--text-white);
}

.form-note {
  font-size: 0.78rem;
  color: rgba(13,43,30,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}


/* ============================================================
   WHATSAPP
   ============================================================ */

/* Floating button */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  background: #25D366;
  color: #fff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 6px 24px rgba(37,211,102,0.45);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.12);
  box-shadow: 0 10px 32px rgba(37,211,102,0.55);
}

.whatsapp-float-tooltip {
  position: absolute;
  right: 70px;
  background: #1a1a1a;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 600;
  white-space: nowrap;
  padding: 6px 12px;
  border-radius: 6px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  letter-spacing: 0.3px;
}

.whatsapp-float-tooltip::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: #1a1a1a;
  border-right: none;
}

.whatsapp-float:hover .whatsapp-float-tooltip {
  opacity: 1;
}

/* Inline WhatsApp button inside contact card */
.whatsapp-inline-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  background: #25D366;
  color: #fff;
  padding: 9px 18px;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
}

.whatsapp-inline-btn:hover {
  background: #1ebe5d;
  transform: translateY(-1px);
}

.whatsapp-inline-btn i { font-size: 1.1rem; }

/* Dealership note */
.dealership-note {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-top: 10px;
  background: rgba(201,168,76,0.12);
  border-left: 3px solid var(--accent);
  padding: 8px 12px;
  border-radius: 0 6px 6px 0;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.5;
}

.dealership-note i { color: var(--accent); margin-top: 2px; flex-shrink: 0; }

/* Clean phone/email links in visit card */
.visit-card a[href^="tel"],
.visit-card a[href^="mailto"] {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}

.visit-card a[href^="tel"]:hover,
.visit-card a[href^="mailto"]:hover { color: var(--accent); }

/* ============================================================
   13. FOOTER
   ============================================================ */
.footer {
  background: var(--primary-dark);
  padding: 70px 20px 0;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer-tagline {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.8;
  margin-bottom: 22px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.07);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  transition: all var(--transition-base);
  border: 1px solid rgba(255,255,255,0.1);
}

.footer-social a:hover {
  background: var(--accent);
  color: var(--primary-dark);
  border-color: var(--accent);
  transform: translateY(-3px);
}

.footer-heading {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1.5px solid rgba(201,168,76,0.35);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.footer-links a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition-fast), gap var(--transition-fast);
}

.footer-links a i {
  font-size: 0.62rem;
  color: var(--accent);
  transition: transform var(--transition-fast);
}

.footer-links a:hover {
  color: var(--accent-light);
  gap: 12px;
}

.footer-links a:hover i {
  transform: translateX(3px);
}

.footer-cert {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cert-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--accent);
  border: 1px solid rgba(201,168,76,0.35);
  border-radius: var(--radius-full);
  padding: 4px 12px;
}

.footer-bottom {
  padding: 24px 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

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

.footer-fssai {
  font-size: 0.75rem !important;
}


/* ============================================================
   14. SCROLL REVEAL ANIMATIONS
   ============================================================ */
.reveal-card {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal-card.revealed {
  opacity: 1;
  transform: translateY(0);
}


/* ============================================================
   15. RESPONSIVE – TABLET (max-width: 1024px)
   ============================================================ */
@media (max-width: 1024px) {
  :root {
    --section-padding: 70px 20px;
  }

  .nav-links { gap: 22px; }

  .hero-content { grid-template-columns: 1fr; text-align: center; }
  .hero-art { display: none; }
  .hero-buttons { justify-content: center; }
  .hero-subtitle br { display: none; }

  .stats-container { flex-wrap: wrap; gap: 32px; }
  .stat-divider { display: none; }

  .story-container { grid-template-columns: 1fr; gap: 50px; }
  .story-art { max-width: 100%; }
  .story-founder-img { height: 320px; }

  .teas-grid { grid-template-columns: repeat(2, 1fr); }

  .blogs-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .blog-featured { grid-row: auto; }

  .visit-content { grid-template-columns: 1fr; }
  .map-placeholder { height: 280px; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}


/* ============================================================
   16. RESPONSIVE – MOBILE (max-width: 768px)
   ============================================================ */
@media (max-width: 768px) {
  :root {
    --section-padding: 56px 16px;
    --nav-h: 68px;
  }

  /* Nav mobile */
  .nav-links {
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: var(--primary-dark);
    flex-direction: column;
    align-items: center;
    gap: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-base), padding var(--transition-base);
    z-index: 999;
    border-top: 1px solid rgba(255,255,255,0.1);
  }

  .nav-links.open {
    max-height: 400px;
    padding: 16px 0 20px;
  }

  .nav-links li {
    width: 100%;
    text-align: center;
  }

  .nav-link {
    display: block;
    padding: 14px 20px;
    font-size: 1rem;
  }

  .nav-link::after { display: none; }

  .hamburger { display: flex; }

  .nav-actions .btn-gold { display: none; }

  /* Hero */
  .hero-title { font-size: 2.2rem; }
  .hero-subtitle { font-size: 0.97rem; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .scroll-down { display: none; }

  /* Stats */
  .stats-container { grid-template-columns: 1fr 1fr; display: grid; }

  /* Teas */
  .teas-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }

  /* Visit */
  .visit-cards { grid-template-columns: 1fr; }

  /* Newsletter */
  .newsletter-form .form-group { flex-direction: column; }
  .form-input { min-width: unset; }
  .btn-newsletter { width: 100%; justify-content: center; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; }
  .footer-col.footer-brand { border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 24px; }
}


/* ============================================================
   17. RESPONSIVE – SMALL MOBILE (max-width: 480px)
   ============================================================ */
@media (max-width: 480px) {
  .section-title { font-size: 1.75rem; }
  .hero-title { font-size: 1.95rem; }
  .stats-container { grid-template-columns: 1fr 1fr; gap: 24px; }
  .stat-number { font-size: 2.2rem; }
  .stat-suffix { font-size: 1.8rem; }
  .blogs-grid { grid-template-columns: 1fr; }
  .nav-container { padding: 0 16px; }
}


/* ============================================================
   18. ACCESSIBILITY & FOCUS STYLES
   ============================================================ */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

.logo-img {
    height: 125px;
    width: 100px;
    object-fit: contain;
  }
.footer-logo-img {
    height: 56px;
  }
