/* 
   Fresher Essentials - Premium Homepage CSS
   Designed with an elegant, warm, editorial aesthetic.
   Typography: Cormorant Garamond (headings), Inter (body), Poppins (buttons)
*/

/* --- CSS Variables & Theme --- */
:root {
  /* Colors */
  --bg-warm-ivory: #FFFDF8;
  --bg-cream: #F6F1E9;
  --bg-forest-green: #2F6B4F;
  --bg-forest-green-dark: #1F4A36;
  --bg-mango-gold: #F8C94C;
  --bg-mango-gold-light: #FDF4D9;
  --bg-botanical-green: #EDF8F1;
  --bg-peach: #FFE8D6;
  --bg-pomegranate: #FCE7E8;
  --text-charcoal: #2B2B2B;
  --text-muted: #666666;
  --text-white: #FFFFFF;
  --text-cream: #F6F1E9;
  --border-light: #EBE5DC;
  
  /* Fonts */
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', sans-serif;
  --font-btn: 'Poppins', sans-serif;

  /* Spacing & Transitions */
  --transition-smooth: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  --transition-fast: all 0.25s ease;
  --container-width: 1200px;
}

/* --- Resets & Base Styles --- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  background-color: var(--bg-warm-ivory);
  color: var(--text-charcoal);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 500;
  line-height: 1.2;
}

p {
  font-size: 1rem;
  color: var(--text-charcoal);
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

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

/* --- Layout & Utilities --- */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.container-fluid {
  width: 100%;
}

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

.section-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--bg-forest-green);
  margin-bottom: 1rem;
  position: relative;
}

.section-tag::after {
  content: '';
  display: block;
  width: 30px;
  height: 1px;
  background-color: var(--bg-forest-green);
  margin-top: 0.25rem;
}

.section-tag.light {
  color: var(--bg-mango-gold);
}

.section-tag.light::after {
  background-color: var(--bg-mango-gold);
}

.section-header {
  margin-bottom: 4rem;
}

.section-title {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-btn);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 1rem 2.25rem;
  border-radius: 50px;
  transition: var(--transition-smooth);
  cursor: pointer;
  border: 1px solid transparent;
}

.btn-primary {
  background-color: var(--bg-forest-green);
  color: var(--text-white);
}

.btn-primary:hover {
  background-color: var(--bg-forest-green-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(47, 107, 79, 0.15);
}

.btn-secondary {
  background-color: transparent;
  color: var(--text-charcoal);
  border-color: var(--text-charcoal);
}

.btn-secondary:hover {
  background-color: var(--text-charcoal);
  color: var(--text-white);
  transform: translateY(-2px);
}

.btn-secondary.light {
  color: var(--text-white);
  border-color: var(--text-white);
}

.btn-secondary.light:hover {
  background-color: var(--text-white);
  color: var(--text-charcoal);
}

/* --- Sticky Navbar --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(255, 253, 248, 0.01);
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  border-bottom: 1px solid transparent;
  transition: var(--transition-smooth);
  padding: 1.5rem 0;
}

/* Scrolled state (JS sets .scrolled class) */
.navbar.scrolled {
  background-color: rgba(255, 253, 248, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(47, 107, 79, 0.05);
  padding: 0.85rem 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.02);
}

.navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.nav-logo {
  height: 48px;
  width: auto;
  transition: var(--transition-smooth);
}

.navbar.scrolled .nav-logo {
  height: 40px;
}

.nav-menu {
  display: flex;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 769px) {
  .nav-menu {
    background: rgba(255, 253, 248, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(43, 43, 43, 0.08);
    padding: 0.5rem 2.25rem;
    border-radius: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  }
}
}

.nav-item {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--text-charcoal);
  opacity: 0.85;
  position: relative;
  padding: 0.5rem 0;
}

.nav-item:hover {
  opacity: 1;
  color: var(--bg-forest-green);
}

.nav-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--bg-forest-green);
  transition: var(--transition-fast);
}

.nav-item:hover::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.btn-nav {
  padding: 0.65rem 1.5rem;
  font-size: 0.75rem;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 6px;
  padding: 4px;
}

.mobile-menu-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background-color: var(--text-charcoal);
  transition: var(--transition-fast);
}

/* --- Section 1: Hero (Fullscreen Background Redesign) --- */
.hero.hero-fullscreen {
  background-image: url('Fresher-hero-Image.png');
  background-size: cover;
  background-position: center;
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 140px;
  padding-bottom: 80px;
  overflow: hidden;
}


.hero-fullscreen-container {
  position: relative;
  z-index: 3;
  width: 100%;
}

.hero-fullscreen-content {
  max-width: 620px;
  position: relative;
  z-index: 4;
  background: rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 3.5rem;
  border-radius: 28px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.hero-fullscreen-content .hero-tagline {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--bg-mango-gold);
  margin-bottom: 1.5rem;
}

.hero-fullscreen-content .hero-title {
  font-size: 5rem;
  font-weight: 300;
  line-height: 1.05;
  margin-bottom: 2rem;
  color: var(--text-white);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-fullscreen-content .hero-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  font-family: var(--font-body);
  line-height: 1.6;
  margin-bottom: 2.5rem;
  font-weight: 300;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

/* Button overrides for dark background */
.hero-fullscreen-content .btn-secondary {
  border-color: rgba(255, 255, 255, 0.6);
  color: #ffffff;
}

.hero-fullscreen-content .btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: #ffffff;
}

/* Floating background assets */
.floating-fruit {
  position: absolute;
  pointer-events: none;
  z-index: 2;
  opacity: 0.85;
  mix-blend-mode: multiply;
  mask-image: radial-gradient(circle, rgba(0,0,0,1) 50%, rgba(0,0,0,0) 95%);
  -webkit-mask-image: radial-gradient(circle, rgba(0,0,0,1) 50%, rgba(0,0,0,0) 95%);
}

.f-mango {
  width: 180px;
  top: 18%;
  right: 8%;
  animation: floatMango 14s ease-in-out infinite alternate;
}

.f-guava {
  width: 150px;
  bottom: 12%;
  left: 5%;
  animation: floatGuava 16s ease-in-out infinite alternate;
}

.f-pom {
  width: 120px;
  top: 12%;
  left: 48%;
  animation: floatPom 12s ease-in-out infinite alternate;
}

@keyframes floatMango {
  0% { transform: translateY(0) rotate(0deg); }
  100% { transform: translateY(-40px) rotate(15deg); }
}

@keyframes floatGuava {
  0% { transform: translateY(0) rotate(0deg); }
  100% { transform: translateY(-30px) rotate(-20deg); }
}

@keyframes floatPom {
  0% { transform: translateY(0) scale(1); }
  100% { transform: translateY(25px) scale(1.08); }
}

.hero-container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 4rem;
  position: relative;
  z-index: 3;
}

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

.hero-tagline {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--bg-forest-green);
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: 5rem;
  font-weight: 300;
  line-height: 1.05;
  margin-bottom: 2rem;
  color: var(--text-charcoal);
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-muted);
  font-family: var(--font-body);
  line-height: 1.6;
  margin-bottom: 2.5rem;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  gap: 1.5rem;
}

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

.hero-composition {
  position: relative;
  width: 100%;
  height: 550px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.hero-bottle-wrap {
  position: absolute;
  bottom: 20px;
  transition: var(--transition-smooth);
}

.hero-bottle {
  height: 440px;
  width: auto;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.08));
  transition: var(--transition-smooth);
}

/* Staggered overlapping bottles */
.bottle-left {
  left: 50%;
  margin-left: -180px;
  z-index: 10;
  animation: floatBottleLeft 8s ease-in-out infinite alternate;
}

.bottle-center {
  left: 50%;
  margin-left: -75px;
  z-index: 20;
  animation: floatBottleCenter 7s ease-in-out infinite alternate;
}

.bottle-right {
  left: 50%;
  margin-left: 30px;
  z-index: 10;
  animation: floatBottleRight 9s ease-in-out infinite alternate;
}

/* Floating labels on hover */
.bottle-label-tag {
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--bg-warm-ivory);
  color: var(--text-charcoal);
  border: 1px solid var(--border-light);
  padding: 0.4rem 1rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 20px;
  opacity: 0;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: var(--transition-fast);
}

.hero-bottle-wrap:hover {
  z-index: 30;
}

.hero-bottle-wrap:hover .hero-bottle {
  transform: scale(1.08) translateY(-15px);
  filter: drop-shadow(0 30px 50px rgba(0, 0, 0, 0.12));
}

.hero-bottle-wrap:hover .bottle-label-tag {
  opacity: 1;
  bottom: -5px;
}

/* Shadow beneath composition */
.bottle-shadows {
  position: absolute;
  bottom: 0px;
  width: 90%;
  height: 30px;
  left: 5%;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

@keyframes floatBottleLeft {
  0% { transform: translateY(0px) rotate(-1deg); }
  100% { transform: translateY(-15px) rotate(1deg); }
}

@keyframes floatBottleCenter {
  0% { transform: translateY(0px); }
  100% { transform: translateY(-20px); }
}

@keyframes floatBottleRight {
  0% { transform: translateY(0px) rotate(1deg); }
  100% { transform: translateY(-12px) rotate(-1deg); }
}

/* --- Section 2: Brand Introduction --- */
.brand-intro {
  padding: 120px 0;
  background-color: var(--bg-cream);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1.1fr 1.3fr;
  gap: 6rem;
  align-items: flex-start;
}

.intro-heading {
  font-size: 3.5rem;
  font-weight: 300;
  line-height: 1.15;
  color: var(--text-charcoal);
}

.intro-p-large {
  font-size: 1.35rem;
  font-family: var(--font-heading);
  line-height: 1.6;
  color: var(--bg-forest-green);
  margin-bottom: 2rem;
}

.intro-p-normal {
  color: var(--text-muted);
  font-weight: 300;
  margin-bottom: 3rem;
  font-size: 1rem;
}

.intro-badges {
  display: flex;
  gap: 3rem;
  border-top: 1px solid var(--border-light);
  padding-top: 2.5rem;
}

.intro-badge {
  display: flex;
  flex-direction: column;
}

.badge-num {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--text-charcoal);
  line-height: 1;
}

.badge-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

/* --- Section 3: Why Choose Fresher Essentials --- */
.why-choose {
  padding: 120px 0;
  background-color: var(--bg-warm-ivory);
}

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

.why-card {
  background-color: var(--bg-warm-ivory);
  border: 1px solid var(--border-light);
  border-radius: 24px;
  padding: 3rem 2.5rem;
  transition: var(--transition-smooth);
}

.why-card:hover {
  transform: translateY(-8px);
  background-color: var(--bg-cream);
  border-color: transparent;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.03);
}

.why-icon-wrap {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background-color: var(--bg-botanical-green);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  color: var(--bg-forest-green);
  transition: var(--transition-smooth);
}

.why-icon {
  width: 28px;
  height: 28px;
}

.why-card:hover .why-icon-wrap {
  background-color: var(--bg-forest-green);
  color: var(--text-white);
}

.why-card-title {
  font-size: 1.65rem;
  margin-bottom: 1rem;
  color: var(--text-charcoal);
}

.why-card-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.6;
}

/* --- Section 4: Featured Flavours --- */
.featured-flavours {
  background-color: var(--bg-warm-ivory);
}

.flavour-row {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
  border-bottom: 1px solid var(--border-light);
}

.flavour-row:last-child {
  border-bottom: none;
}

.flavour-bg-color {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.15;
  z-index: 1;
}

/* Customize row background tones */
.flavour-mango .flavour-bg-color { background-color: var(--bg-mango-gold); }
.flavour-guava .flavour-bg-color { background-color: var(--bg-botanical-green); opacity: 0.4; }
.flavour-pomegranate .flavour-bg-color { background-color: var(--bg-pomegranate); }

.flavour-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 6rem;
  position: relative;
  z-index: 2;
}

.flavour-image-column {
  display: flex;
  justify-content: center;
  align-items: center;
}

.flavour-visual {
  position: relative;
  width: 100%;
  max-width: 400px;
  height: 480px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.flavour-bottle {
  height: 420px;
  width: auto;
  z-index: 2;
  filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.08));
  transition: var(--transition-smooth);
}

.flavour-decor-fruit {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  mix-blend-mode: multiply;
  transition: var(--transition-smooth);
}

.m-decor {
  width: 160px;
  bottom: 10%;
  left: -10%;
}

.g-decor {
  width: 140px;
  top: 10%;
  right: -5%;
}

.p-decor {
  width: 120px;
  bottom: 15%;
  right: -10%;
}

/* Hover effect on flavor bottles */
.flavour-visual:hover .flavour-bottle {
  transform: scale(1.05) translateY(-10px) rotate(2deg);
  filter: drop-shadow(0 25px 40px rgba(0, 0, 0, 0.12));
}

.flavour-visual:hover .flavour-decor-fruit {
  transform: scale(1.1) rotate(-15deg);
}

.flavour-tag {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--bg-forest-green);
  display: block;
  margin-bottom: 1rem;
}

.flavour-title {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  color: var(--text-charcoal);
}

.flavour-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  font-weight: 300;
  margin-bottom: 2.5rem;
}

.flavour-specs {
  border-top: 1px solid rgba(43, 43, 43, 0.1);
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.spec-group {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.spec-label {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-charcoal);
  width: 140px;
}

.spec-tags {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.spec-tag-item {
  background-color: var(--bg-warm-ivory);
  border: 1px solid var(--border-light);
  padding: 0.4rem 1rem;
  border-radius: 30px;
  font-size: 0.8rem;
  color: var(--text-charcoal);
  font-weight: 400;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.02);
}

/* --- Section 5: Why 26% Fruit Pulp Matters --- */
.why-pulp {
  padding: 120px 0;
  background-color: var(--bg-forest-green);
  color: var(--text-white);
  overflow: hidden;
}

.pulp-container-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pulp-text {
  text-align: center;
  max-width: 750px;
  margin-bottom: 6rem;
}

.pulp-heading {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  color: var(--text-cream);
}

.pulp-description {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 300;
}

.pulp-infographic {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  gap: 4rem;
  width: 100%;
}

.infographic-column {
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
}

.info-point h4 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--bg-mango-gold);
}

.info-point p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 300;
  line-height: 1.6;
}

.left-info {
  text-align: right;
}

.right-info {
  text-align: left;
}

/* Glass fill visualizer */
.infographic-center-visual {
  display: flex;
  justify-content: center;
  position: relative;
  height: 380px;
}

.glass-fill-meter {
  position: relative;
  width: 140px;
  height: 320px;
  border: 4px solid rgba(255, 255, 255, 0.6);
  border-top: none;
  border-radius: 0 0 40px 40px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.glass-fill-meter::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(255,255,255,0.15) 0%, transparent 30%, rgba(255,255,255,0.05) 70%, rgba(255,255,255,0.2) 100%);
  pointer-events: none;
  z-index: 5;
}

.liquid-juice {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 75%;
  background: linear-gradient(to top, #E2722C, #F4934C);
  z-index: 1;
}

.liquid-fill {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(to top, #AD4A14, #CE5B1D);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  border-top: 2px dashed rgba(255, 255, 255, 0.4);
}

.fill-percentage {
  font-family: var(--font-btn);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  font-weight: 600;
  color: var(--text-white);
  z-index: 3;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

/* Pulsing pulp particles */
.pulp-bubbles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.pulp-bubbles span {
  position: absolute;
  display: block;
  width: 6px;
  height: 6px;
  background-color: rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  bottom: -10px;
  animation: bubbleUp 6s infinite ease-in-out;
}

.pulp-bubbles span:nth-child(1) { left: 10%; width: 4px; height: 4px; animation-delay: 0s; animation-duration: 4s; }
.pulp-bubbles span:nth-child(2) { left: 30%; width: 6px; height: 6px; animation-delay: 1.5s; animation-duration: 5s; }
.pulp-bubbles span:nth-child(3) { left: 55%; width: 5px; height: 5px; animation-delay: 0.7s; animation-duration: 6s; }
.pulp-bubbles span:nth-child(4) { left: 75%; width: 3px; height: 3px; animation-delay: 2.2s; animation-duration: 3.5s; }
.pulp-bubbles span:nth-child(5) { left: 85%; width: 6px; height: 6px; animation-delay: 3s; animation-duration: 4.5s; }

@keyframes bubbleUp {
  0% { transform: translateY(0) scale(1); opacity: 0; }
  20% { opacity: 0.8; }
  90% { opacity: 0.8; }
  100% { transform: translateY(-120px) scale(0.5); opacity: 0; }
}

/* --- Section 6: Premium Quality Process --- */
.process {
  padding: 120px 0;
  background-color: var(--bg-cream);
  border-bottom: 1px solid var(--border-light);
}

.process-timeline {
  display: flex;
  margin-top: 6rem;
  position: relative;
}

.process-step {
  flex: 1;
  padding: 0 1.5rem;
  position: relative;
  transition: var(--transition-smooth);
}

.step-number {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  color: rgba(47, 107, 79, 0.15);
  line-height: 1;
  margin-bottom: 1.5rem;
  transition: var(--transition-smooth);
}

.step-line {
  position: absolute;
  top: 1.5rem;
  left: calc(1.5rem + 70px);
  width: calc(100% - 70px);
  height: 1px;
  background-color: var(--border-light);
  z-index: 1;
}

.process-step:last-child .step-line {
  display: none;
}

.step-content {
  position: relative;
  z-index: 2;
}

.step-title {
  font-size: 1.45rem;
  margin-bottom: 0.75rem;
  color: var(--text-charcoal);
  transition: var(--transition-smooth);
}

.step-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.6;
}

/* Interactive step states */
.process-step:hover {
  transform: translateY(-5px);
}

.process-step:hover .step-number {
  color: var(--bg-forest-green);
  transform: scale(1.1);
}

.process-step:hover .step-title {
  color: var(--bg-forest-green);
}

/* --- Section 7: Lifestyle Section --- */
.lifestyle {
  background-color: var(--bg-warm-ivory);
}

.lifestyle-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  min-height: 650px;
}

.lifestyle-image-panel {
  background-size: cover;
  background-position: center;
  position: relative;
  padding: 4rem;
  display: flex;
  align-items: flex-end;
}



.lifestyle-bottle-overlay {
  display: flex;
  align-items: center;
  gap: 2rem;
  z-index: 2;
  position: relative;
}

.lifestyle-inline-bottle {
  height: 260px;
  width: auto;
  filter: brightness(0.95) contrast(1.02) saturate(1.02) drop-shadow(0 2px 3px rgba(0,0,0,0.45)) drop-shadow(0 12px 24px rgba(0,0,0,0.25));
  transition: var(--transition-smooth);
}

.overlay-glass-card {
  background: rgba(255, 253, 248, 0.75);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 1.5rem 2rem;
  border-radius: 16px;
  max-width: 280px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.overlay-glass-card h4 {
  font-size: 1.25rem;
  color: var(--text-charcoal);
  margin-bottom: 0.5rem;
}

.overlay-glass-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.lifestyle-text-panel {
  background-color: var(--bg-cream);
  padding: 6rem;
  display: flex;
  align-items: center;
}

.lifestyle-text-content {
  max-width: 480px;
}

.lifestyle-heading {
  font-size: 3.5rem;
  margin-bottom: 2rem;
  color: var(--text-charcoal);
  line-height: 1.1;
}

.lifestyle-p {
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 3rem;
}

.lifestyle-quotes blockquote {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--bg-forest-green);
  border-left: 2px solid var(--bg-forest-green);
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.lifestyle-quotes cite {
  display: block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-charcoal);
  font-style: normal;
}

/* --- Section 8: Newsletter --- */
.newsletter {
  padding: 120px 0;
  background-color: var(--bg-warm-ivory);
}

.newsletter-card {
  background-color: var(--bg-forest-green);
  color: var(--text-white);
  border-radius: 32px;
  padding: 5rem;
  box-shadow: 0 20px 50px rgba(47, 107, 79, 0.12);
}

.newsletter-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: center;
}

.newsletter-title {
  font-size: 3.5rem;
  color: var(--text-cream);
  margin-bottom: 1.5rem;
}

.newsletter-subtitle {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 300;
  margin-bottom: 3rem;
  line-height: 1.6;
}

.newsletter-contact-info p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.newsletter-contact-info strong {
  color: var(--bg-mango-gold);
}

.newsletter-form-container {
  width: 100%;
}

.subscribe-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row {
  display: flex;
  flex-direction: column;
}

.form-row.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  position: relative;
}

.form-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.5rem;
}

.form-input {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 1rem 1.25rem;
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-white);
  transition: var(--transition-fast);
  outline: none;
}

.form-input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.form-input:focus {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: var(--bg-mango-gold);
  box-shadow: 0 0 0 4px rgba(248, 201, 76, 0.15);
}

select.form-input {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='white'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.25rem center;
  background-size: 1rem;
  padding-right: 3rem;
}

select.form-input option {
  background-color: var(--bg-forest-green-dark);
  color: var(--text-white);
}

.checkbox-group {
  flex-direction: row;
  align-items: flex-start;
  gap: 0.75rem;
}

.form-checkbox {
  width: 18px;
  height: 18px;
  accent-color: var(--bg-mango-gold);
  cursor: pointer;
  margin-top: 3px;
}

.form-checkbox-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 300;
  line-height: 1.4;
  cursor: pointer;
}

.btn-submit {
  width: 100%;
  margin-top: 1rem;
  background-color: var(--bg-mango-gold);
  color: var(--text-charcoal);
}

.btn-submit:hover {
  background-color: #E2B33E;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(248, 201, 76, 0.2);
}

/* Error States */
.form-input.error {
  border-color: #E76E6E;
  background-color: rgba(231, 110, 110, 0.05);
}

.error-msg {
  display: none;
  color: #E76E6E;
  font-size: 0.75rem;
  font-weight: 500;
  margin-top: 0.25rem;
}

.block-error {
  text-align: left;
  margin-top: 0.5rem;
  width: 100%;
}

.success-message {
  display: none;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px dashed var(--bg-mango-gold);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  margin-top: 1.5rem;
  animation: fadeIn 0.5s ease forwards;
}

.success-message h4 {
  font-size: 1.5rem;
  color: var(--bg-mango-gold);
  margin-bottom: 0.5rem;
}

.success-message p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
}

/* --- Section 9: Premium CTA --- */
.premium-cta {
  padding: 120px 0;
  background-color: var(--bg-cream);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  position: relative;
}

.cta-heading {
  font-size: 4.5rem;
  line-height: 1.1;
  color: var(--text-charcoal);
  margin-bottom: 1.5rem;
}

.cta-subheading {
  font-size: 1.25rem;
  color: var(--text-muted);
  font-weight: 300;
  margin-bottom: 3rem;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

/* --- Section 10: Large Premium Footer --- */
.footer {
  background-color: var(--bg-warm-ivory);
  padding: 100px 0 50px 0;
  color: var(--text-charcoal);
  border-top: 1px solid var(--border-light);
}

.footer-container {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 4rem;
  margin-bottom: 6rem;
}

.footer-logo {
  height: 52px;
  width: auto;
  margin-bottom: 2rem;
}

.footer-brand-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.6;
  max-width: 320px;
}

.footer-title {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-charcoal);
  margin-bottom: 2rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-links a {
  font-size: 0.95rem;
  color: var(--text-muted);
  font-weight: 300;
}

.footer-links a:hover {
  color: var(--bg-forest-green);
  transform: translateX(4px);
}

.footer-info {
  font-size: 0.95rem;
  color: var(--text-muted);
  font-weight: 300;
  margin-bottom: 0.75rem;
  line-height: 1.5;
}

.footer-bottom {
  border-top: 1px solid var(--border-light);
  padding-top: 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-socials {
  display: flex;
  gap: 2.5rem;
}

.footer-socials a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
}

.footer-socials a:hover {
  color: var(--bg-forest-green);
}

.social-icon {
  width: 18px;
  height: 18px;
}

.copyright {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 300;
}

/* --- Scroll Animation Triggers (JS Observer) --- */
.scroll-trigger {
  opacity: 0;
  transition: opacity 1.2s cubic-bezier(0.25, 1, 0.5, 1), transform 1.2s cubic-bezier(0.25, 1, 0.5, 1);
}

.fade-in-up {
  transform: translateY(40px);
}

.fade-in-left {
  transform: translateX(-40px);
}

.fade-in-right {
  transform: translateX(40px);
}

.scroll-trigger.animated {
  opacity: 1;
  transform: translate(0) scale(1);
}

/* Delay classes */
.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; }

/* Custom Hero Entry Keyframes */
.hero-content.fade-in-up {
  opacity: 0;
  transform: translateY(50px);
  animation: heroTextEntry 1.2s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

.hero-visual-wrapper.fade-in-up {
  opacity: 0;
  transform: translateY(50px);
  animation: heroTextEntry 1.2s cubic-bezier(0.25, 1, 0.5, 1) 0.3s forwards;
}

@keyframes heroTextEntry {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* --- Responsive Media Queries --- */

/* Responsive at 1024px (Tablets / Laptops) */
@media (max-width: 1024px) {
  .hero-title { font-size: 4rem; }
  .hero-container { gap: 2rem; }
  .hero-composition { height: 480px; }
  .hero-bottle { height: 360px; }
  
  .intro-grid { gap: 3rem; }
  .intro-heading { font-size: 2.8rem; }
  
  .why-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  
  .flavour-grid { gap: 3rem; }
  .flavour-title { font-size: 2.8rem; }
  
  .pulp-infographic { grid-template-columns: 1fr; gap: 3rem; }
  .left-info { text-align: left; }
  .infographic-center-visual { height: 340px; }
  .glass-fill-meter { height: 280px; }
  
  .process-timeline { flex-direction: column; gap: 3rem; }
  .step-line { display: none; }
  .process-step { padding: 0; }
  
  .lifestyle-layout { grid-template-columns: 1fr; }
  .lifestyle-text-panel { padding: 4rem 2rem; }
  
  .newsletter-grid { grid-template-columns: 1fr; gap: 3rem; }
  .newsletter-card { padding: 3rem; }
  
  .footer-container { grid-template-columns: 1fr 1fr; gap: 3rem; }
}

/* Responsive at 768px (Mobile Landscapes / Large Portrait) */
@media (max-width: 768px) {
  .navbar-container { padding: 0 1.5rem; }
  .nav-menu {
    display: none; /* JS will toggle menu */
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--bg-warm-ivory);
    border-bottom: 1px solid var(--border-light);
    flex-direction: column;
    gap: 0;
    padding: 1rem 0;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
  }
  .nav-menu.open {
    display: flex;
  }
  .nav-item {
    padding: 1rem 2rem;
    border-bottom: 1px solid rgba(43,43,43,0.05);
  }
  .nav-item::after { display: none; }
  .mobile-menu-toggle { display: flex; }
  
  .hero.hero-fullscreen {
    min-height: auto;
    padding-top: 130px;
    padding-bottom: 70px;
    background-position: 45% center;
  }
  .hero-fullscreen-content {
    margin: 0 auto;
    padding: 2.25rem 2rem;
    border-radius: 20px;
    text-align: center;
    max-width: 540px;
  }
  .hero-fullscreen-content .hero-title {
    font-size: 3rem;
    margin-bottom: 1.25rem;
  }
  .hero-fullscreen-content .hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 1.75rem;
  }
  .hero-fullscreen-content .hero-tagline {
    margin-bottom: 1rem;
  }
  .hero-fullscreen-content .hero-actions {
    justify-content: center;
  }
  
  .intro-grid { grid-template-columns: 1fr; gap: 3rem; }
  .intro-badges { justify-content: space-between; }
  
  .why-grid { grid-template-columns: 1fr; }
  
  .flavour-grid { grid-template-columns: 1fr; text-align: center; }
  .alt-row .flavour-grid {
    display: flex;
    flex-direction: column-reverse;
  }
  .flavour-visual { margin: 0 auto; height: 380px; }
  .flavour-bottle { height: 320px; }
  .flavour-specs { align-items: center; }
  .spec-group { flex-direction: column; gap: 0.5rem; align-items: center; }
  .spec-label { width: auto; }
  .spec-tags { justify-content: center; }
  
  .pulp-heading { font-size: 2.8rem; }
  
  .lifestyle-image-panel { padding: 2rem; min-height: 400px; }
  .lifestyle-inline-bottle { height: 200px; }
  .lifestyle-heading { font-size: 2.5rem; }
  
  .newsletter-card { padding: 2rem 1.5rem; }
  .newsletter-title { font-size: 2.5rem; }
  .form-row.split { grid-template-columns: 1fr; gap: 1.5rem; }
  
  .cta-heading { font-size: 3rem; }
  .cta-actions { flex-direction: column; align-items: center; width: 100%; }
  .cta-actions .btn { width: 100%; max-width: 320px; }
  
  .footer-container { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-bottom { flex-direction: column; gap: 1.5rem; text-align: center; }
}

/* Screen widths below 480px */
@media (max-width: 480px) {
  .hero-fullscreen-content {
    padding: 1.5rem;
    border-radius: 16px;
  }
  .hero-fullscreen-content .hero-title {
    font-size: 2.2rem;
  }
  .hero-fullscreen-content .hero-subtitle {
    font-size: 0.95rem;
  }
  .hero-fullscreen-content .hero-actions {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  .hero-fullscreen-content .hero-actions .btn {
    width: 100%;
  }
  
  .intro-heading { font-size: 2.2rem; }
  .intro-badges { flex-direction: column; gap: 1.5rem; }
  
  .flavour-title { font-size: 2.2rem; }
  .pulp-heading { font-size: 2.2rem; }
  
  .newsletter-title { font-size: 2rem; }
  .newsletter-card { border-radius: 16px; }
  
  .cta-heading { font-size: 2.2rem; }
  .cta-subheading { font-size: 1.1rem; }
}
