@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

/* ==========================================
   CSS VARIABLES & DESIGN TOKENS
   ========================================== */
:root {
  --color-green-dark: #002F6C;   /* Deep Navy Blue */
  --color-green-medium: #003D99; /* Supporting Blue */
  --color-green-light: #DC2626;  /* Crimson Red Branding */
  --color-gold: #FFB800;         /* Golden Yellow Accents */
  --color-gold-hover: #E5A500;
  --color-cream: #FFFFFF;        /* Pure Clean White Canvas */
  --color-cream-dark: #F3F5F9;   /* Clinical Secondary Light Grey */
  --color-charcoal: #2B2B2B;
  --color-white: #FFFFFF;
  --color-white-translucent: rgba(255, 255, 255, 0.9);
  
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease;
  
  --header-height-normal: 90px;
  --header-height-scrolled: 70px;
  
  --shadow-subtle: 0 4px 20px rgba(27, 67, 50, 0.05);
  --shadow-medium: 0 10px 30px rgba(27, 67, 50, 0.1);
  
  --container-width: 1200px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  background-color: var(--color-cream);
  color: var(--color-charcoal);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  color: var(--color-green-dark);
  font-weight: 700;
}

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

ul {
  list-style: none;
}

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

.container {
  width: 100%;
  max-width: var(--container-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

/* ==========================================
   HEADER & NAVBAR
   ========================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height-normal);
  display: flex;
  align-items: center;
  z-index: 1000;
  background-color: var(--color-white); /* Solid white by default for subpages */
  box-shadow: var(--shadow-subtle);
  border-bottom: 1px solid rgba(0, 47, 108, 0.06);
  transition: var(--transition-smooth);
}

/* Scrolled Header Styling */
.header.scrolled {
  height: var(--header-height-scrolled);
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-medium);
  border-bottom: 1px solid rgba(0, 47, 108, 0.08);
}

/* Homepage-specific header override (transparent on load, solid on scroll) */
.home-page .header {
  background-color: transparent;
  box-shadow: none;
  border-bottom: none;
}

.home-page .header.scrolled {
  height: var(--header-height-scrolled);
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-subtle);
  border-bottom: 1px solid rgba(0, 47, 108, 0.08);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  text-decoration: none !important;
}

.logo-img {
  height: 50px;
  width: auto;
  object-fit: contain;
  transition: var(--transition-smooth);
}

.header.scrolled .logo-img {
  height: 38px;
}

.logo:hover .logo-img {
  transform: scale(1.05) rotate(-2deg);
}

/* Nav Links - Desktop */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-link {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 500;
  color: var(--color-green-dark);
  position: relative;
  padding: 6px 0;
  letter-spacing: 0.5px;
}

/* Subtle line hover effect */
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-gold);
  transition: var(--transition-smooth);
}

.nav-link:hover {
  color: var(--color-gold);
}

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

.nav-link.active {
  color: var(--color-gold);
}

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

/* CTA button in navbar */
.nav-cta {
  background-color: var(--color-green-dark);
  color: var(--color-cream);
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  border: 1px solid var(--color-green-dark);
  box-shadow: var(--shadow-subtle);
}

.nav-cta:hover {
  background-color: var(--color-gold);
  border-color: var(--color-gold);
  color: var(--color-green-dark);
  transform: translateY(-2px);
}

/* Mobile Toggle Hamburger Button */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1010;
}

.hamburger-box {
  width: 24px;
  height: 18px;
  display: block;
  position: relative;
}

.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
  width: 24px;
  height: 2px;
  background-color: var(--color-green-dark);
  position: absolute;
  border-radius: 4px;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.3s ease;
}

.hamburger-inner {
  top: 50%;
  transform: translateY(-50%);
}

.hamburger-inner::before {
  content: '';
  top: -8px;
}

.hamburger-inner::after {
  content: '';
  bottom: -8px;
}

/* Hamburger active transformation */
.hamburger.active .hamburger-inner {
  background-color: transparent;
}

.hamburger.active .hamburger-inner::before {
  transform: rotate(45deg) translate(5px, 6px);
}

.hamburger.active .hamburger-inner::after {
  transform: rotate(-45deg) translate(5px, -6px);
}

/* Mobile Nav Drawer overlay */
.mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(27, 67, 50, 0.4);
  backdrop-filter: blur(4px);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.mobile-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Mobile Nav Drawer */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -320px;
  width: 320px;
  height: 100vh;
  background-color: var(--color-white);
  z-index: 999;
  padding: 100px 40px 40px 40px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  box-shadow: -5px 0 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  overflow-y: auto;
}

.mobile-nav.active {
  transform: translateX(-320px);
}

.mobile-nav-menu {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.mobile-nav-link {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--color-green-dark);
  transition: var(--transition-fast);
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  color: var(--color-gold);
  padding-left: 8px;
}

.mobile-nav-cta {
  margin-top: 20px;
  background-color: var(--color-green-dark);
  color: var(--color-cream);
  padding: 14px 28px;
  border-radius: 50px;
  text-align: center;
  font-weight: 600;
  font-size: 16px;
  box-shadow: var(--shadow-subtle);
  border: 1px solid var(--color-green-dark);
}

.mobile-nav-cta:hover {
  background-color: var(--color-gold);
  border-color: var(--color-gold);
  color: var(--color-green-dark);
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
  background-color: var(--color-green-dark);
  color: rgba(250, 246, 239, 0.85); /* Translucent cream */
  padding: 80px 0 30px 0;
  border-top: 3px solid var(--color-gold);
  font-size: 15px;
}

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

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

.footer-brand .logo {
  color: var(--color-cream);
  font-size: 28px;
  margin-bottom: 5px;
}

.footer-brand .logo span {
  color: var(--color-gold);
}

.footer-tagline {
  line-height: 1.7;
  max-width: 320px;
  font-weight: 300;
  font-style: italic;
}

.footer-title {
  font-family: var(--font-serif);
  color: var(--color-gold);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 5px;
  position: relative;
  padding-bottom: 10px;
}

.footer-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background-color: var(--color-gold);
}

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

.footer-link {
  transition: var(--transition-fast);
  width: fit-content;
}

.footer-link:hover {
  color: var(--color-gold);
  transform: translateX(4px);
}

.footer-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-info-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  line-height: 1.5;
}

.footer-info-item i {
  color: var(--color-gold);
  font-size: 16px;
  margin-top: 4px;
}

.footer-socials {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50px;
  background-color: rgba(250, 246, 239, 0.1);
  color: var(--color-cream);
  font-size: 16px;
  transition: var(--transition-smooth);
  border: 1px solid rgba(250, 246, 239, 0.15);
}

.social-icon:hover {
  background-color: var(--color-gold);
  color: var(--color-green-dark);
  transform: translateY(-3px);
  border-color: var(--color-gold);
}

/* Footer Bottom Bar */
.footer-bottom {
  border-top: 1px solid rgba(250, 246, 239, 0.1);
  padding-top: 30px;
  text-align: center;
  font-size: 13px;
  color: rgba(250, 246, 239, 0.6);
  line-height: 1.8;
}

.footer-bottom a {
  color: var(--color-gold);
  font-weight: 500;
}

.footer-bottom a:hover {
  color: var(--color-cream);
  text-decoration: underline;
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-color: var(--color-white); /* Pure clean white packaging match */
  /* Grid lines background style */
  background-image: linear-gradient(rgba(0, 47, 108, 0.02) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(0, 47, 108, 0.02) 1px, transparent 1px);
  background-size: 50px 50px;
  color: var(--color-charcoal);
  padding-top: var(--header-height-normal);
  overflow: hidden;
}

/* Glowing blur orbs matching packaging accents */
.hero::before {
  content: '';
  position: absolute;
  top: -10%;
  right: -10%;
  width: 50vw;
  height: 50vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 47, 108, 0.03) 0%, transparent 70%);
  filter: blur(50px);
  z-index: 1;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -10%;
  left: -10%;
  width: 40vw;
  height: 40vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(220, 38, 38, 0.03) 0%, transparent 70%);
  filter: blur(50px);
  z-index: 1;
  pointer-events: none;
}

/* Background Leaf/Drop Floating Animations */
.hero-deco-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.floating-square {
  position: absolute;
  border: 2px solid currentColor;
  opacity: 0.15;
  border-radius: 4px;
  pointer-events: none;
  animation: floatSquare 10s ease-in-out infinite alternate;
}

.floating-sq-1 {
  width: 40px;
  height: 40px;
  color: var(--color-green-light); /* Red */
  top: 15%;
  left: 5%;
  transform: rotate(15deg);
  animation-duration: 8s;
}

.floating-sq-2 {
  width: 25px;
  height: 25px;
  color: var(--color-gold); /* Yellow */
  bottom: 20%;
  left: 42%;
  transform: rotate(-10deg);
  animation-duration: 11s;
}

.floating-sq-3 {
  width: 50px;
  height: 50px;
  color: var(--color-green-dark); /* Navy/Blue */
  top: 12%;
  right: 8%;
  transform: rotate(45deg);
  animation-duration: 14s;
}

.floating-sq-4 {
  width: 30px;
  height: 30px;
  color: #10B981; /* Green */
  bottom: 12%;
  left: 12%;
  transform: rotate(30deg);
  animation-duration: 9s;
}

.floating-sq-5 {
  width: 35px;
  height: 35px;
  color: var(--color-gold); /* Yellow */
  top: 35%;
  right: 42%;
  transform: rotate(-25deg);
  animation-duration: 13s;
}

@keyframes floatSquare {
  0% {
    transform: translateY(0) rotate(var(--rot-start, 0deg));
  }
  100% {
    transform: translateY(-25px) rotate(var(--rot-end, 360deg));
  }
}

.hero .container {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 50px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.hero-subtitle {
  font-family: var(--font-sans);
  color: var(--color-green-light); /* Red Packaging Accent */
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: 1px solid rgba(220, 38, 38, 0.15);
  padding: 6px 14px;
  border-radius: 50px;
  display: inline-block;
  background-color: rgba(220, 38, 38, 0.03);
  align-self: flex-start;
}

.hero-title {
  font-size: clamp(38px, 5vw, 56px);
  color: var(--color-green-dark); /* Navy Branding */
  line-height: 1.15;
  font-family: var(--font-serif);
}

.hero-description {
  font-size: clamp(16px, 1.8vw, 18px);
  color: var(--color-charcoal);
  opacity: 0.85;
  font-weight: 400;
  max-width: 600px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  margin-top: 10px;
}

.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.5px;
  transition: var(--transition-smooth);
  cursor: pointer;
  text-align: center;
}

.btn-primary {
  background-color: var(--color-gold);
  color: var(--color-green-dark);
  border: 1px solid var(--color-gold);
  box-shadow: 0 4px 15px rgba(201, 162, 39, 0.2);
}

.btn-primary:hover {
  background-color: var(--color-gold-hover);
  border-color: var(--color-gold-hover);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(201, 162, 39, 0.4);
}

.btn-secondary {
  background-color: transparent;
  color: var(--color-cream);
  border: 1.5px solid rgba(250, 246, 239, 0.4);
}

.btn-secondary:hover {
  border-color: var(--color-cream);
  background-color: rgba(250, 246, 239, 0.08);
  transform: translateY(-3px);
}

.hero-products-showcase {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

.hero-product-card {
  display: flex;
  align-items: center;
  background-color: var(--color-white);
  border-radius: 16px;
  padding: 16px;
  border: 1px solid rgba(0, 47, 108, 0.06);
  box-shadow: 0 4px 15px rgba(0, 47, 108, 0.02);
  transition: var(--transition-smooth);
  cursor: pointer;
  text-decoration: none !important;
}

.hero-product-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 15px 30px rgba(0, 47, 108, 0.08);
  border-color: rgba(220, 38, 38, 0.15); /* Crimson red active */
}

.hero-product-card-img {
  width: 80px;
  height: 80px;
  border-radius: 10px;
  overflow: hidden;
  background-color: var(--color-cream-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
  flex-shrink: 0;
}

.hero-product-card-img img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.08));
  transition: var(--transition-smooth);
}

.hero-product-card:hover .hero-product-card-img img {
  transform: scale(1.1);
}

.hero-product-card-info {
  margin-left: 15px;
  flex-grow: 1;
}

.hero-product-card-badge {
  display: inline-block;
  padding: 3px 8px;
  border-radius: 50px;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.hero-product-card-badge.bestseller {
  background-color: rgba(220, 38, 38, 0.08);
  color: var(--color-green-light); /* Red */
}

.hero-product-card-badge.travel {
  background-color: rgba(0, 47, 108, 0.08);
  color: var(--color-green-dark); /* Navy */
}

.hero-product-card-badge.combo {
  background-color: rgba(255, 184, 0, 0.08);
  color: #B27B00; /* Gold */
}

.hero-product-card-title {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 700;
  color: var(--color-green-dark);
  margin-bottom: 2px;
}

.hero-product-card-price {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-green-light); /* Red */
}

.hero-product-card-arrow {
  font-size: 16px;
  color: rgba(0, 47, 108, 0.2);
  transition: var(--transition-smooth);
  margin-left: 10px;
}

.hero-product-card:hover .hero-product-card-arrow {
  color: var(--color-green-light); /* Red */
  transform: translateX(5px);
}

/* ==========================================
   TRUST STRIP
   ========================================== */
.trust-strip {
  background-color: var(--color-cream-dark);
  padding: 40px 0;
  border-bottom: 1px solid rgba(45, 106, 79, 0.08);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

.trust-icon-box {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background-color: rgba(27, 67, 50, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-green-dark);
  font-size: 22px;
  border: 1px solid rgba(27, 67, 50, 0.08);
  flex-shrink: 0;
}

.trust-text-box {
  display: flex;
  flex-direction: column;
}

.trust-number {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 700;
  color: var(--color-green-dark);
  line-height: 1.2;
}

.trust-label {
  font-size: 13px;
  color: var(--color-charcoal);
  opacity: 0.8;
  font-weight: 500;
}

/* ==========================================
   SECTION HEADER COMMON
   ========================================== */
.section-header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 60px auto;
}

.section-tagline {
  color: var(--color-gold);
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 2px;
  margin-bottom: 10px;
  display: block;
}

.section-title {
  font-size: clamp(28px, 4vw, 40px);
  color: var(--color-green-dark);
  line-height: 1.2;
}

.section-header p {
  margin-top: 15px;
  color: var(--color-charcoal);
  opacity: 0.75;
}

/* ==========================================
   PRODUCTS OVERVIEW
   ========================================== */
.products-section {
  padding: 100px 0;
  background-color: var(--color-cream);
}

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

.product-card {
  background-color: var(--color-white);
  border-radius: 16px;
  padding: 30px;
  border: 1px solid rgba(45, 106, 79, 0.05);
  box-shadow: var(--shadow-subtle);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-medium);
  border-color: rgba(201, 162, 39, 0.2);
}

.product-card-img-wrapper {
  height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  width: 100%;
}

.product-card-img-wrapper img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 8px 16px rgba(27, 67, 50, 0.08));
  transition: var(--transition-smooth);
}

.product-card:hover .product-card-img-wrapper img {
  transform: scale(1.05);
}

/* Combo product custom double image design */
.combo-image-wrapper {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  position: relative;
  width: 100%;
  height: 100%;
}

.combo-img-oil {
  max-height: 90% !important;
  z-index: 2;
  transform: translateX(10px);
}

.combo-img-rollon {
  max-height: 70% !important;
  z-index: 3;
  transform: translateX(-15px) translateY(-5px);
}

.product-card-title {
  font-size: 22px;
  color: var(--color-green-dark);
  margin-bottom: 8px;
}

.product-card-subtitle {
  font-size: 13px;
  color: var(--color-gold);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.product-card-description {
  font-size: 14px;
  color: var(--color-charcoal);
  opacity: 0.8;
  line-height: 1.5;
  margin-bottom: 25px;
  flex-grow: 1;
}

.product-card-btn {
  background-color: transparent;
  color: var(--color-green-dark);
  border: 1px solid var(--color-green-dark);
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
}

.product-card:hover .product-card-btn {
  background-color: var(--color-green-dark);
  color: var(--color-cream);
}

/* ==========================================
   HOW IT WORKS
   ========================================== */
.how-it-works {
  padding: 100px 0;
  background-color: var(--color-cream-dark);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  position: relative;
}

.step-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}

.step-icon-box {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background-color: var(--color-white);
  color: var(--color-green-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  box-shadow: var(--shadow-subtle);
  border: 1px solid rgba(45, 106, 79, 0.05);
  margin-bottom: 25px;
  transition: var(--transition-smooth);
}

.step-card:hover .step-icon-box {
  background-color: var(--color-green-dark);
  color: var(--color-cream);
  transform: rotate(10deg) scale(1.05);
}

.step-number {
  position: absolute;
  top: -5px;
  right: -5px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: var(--color-gold);
  color: var(--color-green-dark);
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(201, 162, 39, 0.3);
}

.step-title {
  font-size: 22px;
  color: var(--color-green-dark);
  margin-bottom: 12px;
}

.step-description {
  font-size: 15px;
  color: var(--color-charcoal);
  opacity: 0.8;
  max-width: 280px;
}

/* Steps connectors for desktop */
.step-connector {
  position: absolute;
  top: 45px;
  width: 25%;
  height: 1px;
  border-top: 2px dashed rgba(45, 106, 79, 0.2);
  z-index: 1;
}

.step-connector-1 {
  left: 21%;
}

.step-connector-2 {
  left: 54%;
}

/* ==========================================
   BENEFITS SECTION (ALTERNATING ROWS)
   ========================================== */
.benefits {
  padding: 100px 0;
  background-color: var(--color-cream);
}

.benefit-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 80px;
  align-items: center;
  margin-bottom: 100px;
}

.benefit-row:last-child {
  margin-bottom: 0;
}

.benefit-row.reverse {
  direction: rtl;
}

.benefit-row.reverse .benefit-content {
  direction: ltr; /* Reset text direction */
}

.benefit-image-box {
  background-color: var(--color-white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-medium);
  border: 1px solid rgba(45, 106, 79, 0.05);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px;
}

.benefit-image-box img {
  border-radius: 12px;
  max-height: 400px;
  object-fit: contain;
}

.benefit-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.benefit-title {
  font-size: clamp(26px, 3.5vw, 34px);
  color: var(--color-green-dark);
}

.benefit-description {
  color: var(--color-charcoal);
  opacity: 0.8;
  font-size: 16px;
  line-height: 1.7;
}

.benefit-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 10px;
}

.benefit-list-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  color: var(--color-green-dark);
}

.benefit-list-item i {
  color: var(--color-gold);
  font-size: 16px;
}

/* ==========================================
   TESTIMONIALS SECTION (SLIDER CAROUSEL)
   ========================================== */
.testimonials {
  padding: 100px 0;
  background-color: var(--color-cream-dark);
  overflow: hidden;
}

.carousel-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  padding: 20px 0 50px 0;
}

.carousel-wrapper {
  overflow: hidden;
  width: 100%;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  width: 300%; /* 3 slides */
}

.testimonial-card {
  width: 33.333%; /* 1 slide width */
  flex-shrink: 0;
  background-color: var(--color-white);
  border-radius: 20px;
  padding: 50px 40px;
  box-shadow: var(--shadow-medium);
  border: 1px solid rgba(45, 106, 79, 0.04);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
}

.testimonial-stars {
  color: var(--color-gold);
  font-size: 18px;
}

.testimonial-quote {
  font-family: var(--font-serif);
  font-size: clamp(18px, 2.5vw, 24px);
  color: var(--color-green-dark);
  font-style: italic;
  line-height: 1.5;
  font-weight: 500;
}

.testimonial-user {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.testimonial-name {
  font-weight: 600;
  font-size: 16px;
  color: var(--color-charcoal);
}

.testimonial-role {
  font-size: 13px;
  color: var(--color-green-medium);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
}

/* Slider Pagination Dots */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(45, 106, 79, 0.2);
  border: none;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.carousel-dot.active {
  background-color: var(--color-gold);
  width: 28px;
  border-radius: 10px;
}

/* ==========================================
   AMAZON CTA BANNER
   ========================================== */
.amazon-banner {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--color-green-dark) 0%, var(--color-green-medium) 100%);
  color: var(--color-cream);
  text-align: center;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(250, 246, 239, 0.1);
}

.amazon-banner-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  position: relative;
  z-index: 2;
}

.amazon-banner-title {
  font-size: clamp(26px, 4vw, 42px);
  color: var(--color-cream);
  max-width: 700px;
  line-height: 1.25;
}

.amazon-banner-text {
  font-size: 16px;
  color: rgba(250, 246, 239, 0.85);
  max-width: 500px;
}

.amazon-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background-color: #FF9900; /* Amazon Yellow */
  color: #111111;
  padding: 15px 35px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 15px;
  box-shadow: 0 4px 15px rgba(255, 153, 0, 0.25);
  transition: var(--transition-smooth);
  border: 1px solid #FF9900;
}

.amazon-btn:hover {
  background-color: #FFB83D;
  border-color: #FFB83D;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 153, 0, 0.4);
}

.amazon-btn i {
  font-size: 18px;
}

/* ==========================================
   PAGE HERO BANNER (INTERNAL PAGES)
   ========================================== */
.page-hero {
  position: relative;
  height: 300px;
  background-color: var(--color-white); /* Pure clean white */
  background-image: linear-gradient(rgba(0, 47, 108, 0.02) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(0, 47, 108, 0.02) 1px, transparent 1px);
  background-size: 50px 50px;
  color: var(--color-charcoal);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: var(--header-height-normal);
  overflow: hidden;
  border-bottom: 1px solid rgba(0, 47, 108, 0.06);
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 47, 108, 0.03) 0%, transparent 70%);
  filter: blur(30px);
  z-index: 1;
  pointer-events: none;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(220, 38, 38, 0.03) 0%, transparent 70%);
  filter: blur(30px);
  z-index: 1;
  pointer-events: none;
}

.page-hero .container {
  position: relative;
  z-index: 2;
}

.page-hero-title {
  font-size: clamp(36px, 5vw, 54px);
  color: var(--color-green-dark); /* Deep Navy Blue */
  margin-bottom: 12px;
  font-family: var(--font-serif);
}

.page-hero-subtitle {
  font-family: var(--font-sans);
  color: var(--color-green-light); /* Crimson Red */
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* ==========================================
   PRODUCT CARDS LISTING ENHANCEMENTS
   ========================================== */
.product-price-box {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
}

.price-original {
  text-decoration: line-through;
  color: var(--color-charcoal);
  opacity: 0.45;
  font-size: 15px;
}

.price-active {
  color: var(--color-green-light); /* Crimson Red Branding */
  font-size: 24px;
  font-weight: 700;
}

.product-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background-color: var(--color-gold);
  color: var(--color-green-dark);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 10px rgba(201, 162, 39, 0.15);
  z-index: 10;
  border: 1px solid rgba(250, 246, 239, 0.2);
}

/* ==========================================
   PRODUCT DETAIL PAGES LAYOUT
   ========================================== */
.product-detail-section {
  padding: 180px 0 80px 0;
  background-color: var(--color-white);
  background-image: linear-gradient(rgba(0, 47, 108, 0.01) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(0, 47, 108, 0.01) 1px, transparent 1px);
  background-size: 50px 50px;
  position: relative;
  overflow: hidden;
}

.product-detail-section::before {
  content: '';
  position: absolute;
  top: 5%;
  right: 5%;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 47, 108, 0.02) 0%, transparent 70%);
  filter: blur(40px);
  z-index: 1;
  pointer-events: none;
}

.product-detail-section::after {
  content: '';
  position: absolute;
  bottom: 5%;
  left: 5%;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(220, 38, 38, 0.02) 0%, transparent 70%);
  filter: blur(40px);
  z-index: 1;
  pointer-events: none;
}

.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: start;
  position: relative;
  z-index: 2;
}

/* Gallery Styling */
.product-gallery {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: sticky;
  top: 110px;
}

.gallery-main {
  background: radial-gradient(circle, rgba(0, 47, 108, 0.04) 0%, rgba(220, 38, 38, 0.02) 100%);
  border-radius: 20px;
  border: 1px solid rgba(0, 47, 108, 0.08);
  height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: var(--shadow-medium);
  position: relative;
}

.gallery-main img {
  max-width: 85%;
  max-height: 85%;
  object-fit: contain;
  filter: drop-shadow(0 15px 35px rgba(0, 47, 108, 0.08));
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Zoom effect on hover */
.gallery-main:hover img {
  transform: scale(1.15) rotate(2deg);
}

.gallery-thumbs {
  display: flex;
  gap: 15px;
}

.thumb-box {
  flex: 1;
  height: 100px;
  background-color: var(--color-white);
  border-radius: 12px;
  border: 2px solid transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 47, 108, 0.02);
  transition: var(--transition-smooth);
  padding: 10px;
  overflow: hidden;
}

.thumb-box img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  opacity: 0.65;
  transition: var(--transition-fast);
}

.thumb-box:hover {
  border-color: rgba(0, 47, 108, 0.2);
  transform: translateY(-3px);
}

.thumb-box:hover img {
  opacity: 1;
}

.thumb-box.active {
  border-color: var(--color-green-light); /* Red active border */
  box-shadow: 0 8px 18px rgba(220, 38, 38, 0.12);
  transform: translateY(-3px);
}

.thumb-box.active img {
  opacity: 1;
}

/* Right Side specs */
.product-info-box {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.product-detail-title {
  font-size: clamp(28px, 4vw, 38px);
  color: var(--color-green-dark);
  line-height: 1.25;
  font-family: var(--font-serif);
}

.product-detail-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}

.product-detail-rating .stars {
  color: var(--color-gold);
}

.product-detail-rating .count {
  color: var(--color-charcoal);
  opacity: 0.6;
}

.product-detail-tagline {
  font-family: var(--font-serif);
  font-size: 18px;
  color: var(--color-green-medium);
  font-style: italic;
  line-height: 1.5;
}

.details-trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-top: 10px;
}

.details-trust-card {
  background-color: var(--color-white);
  border-radius: 12px;
  padding: 16px;
  border: 1px solid rgba(0, 47, 108, 0.05);
  box-shadow: 0 4px 10px rgba(0, 47, 108, 0.01);
  display: flex;
  align-items: center;
  gap: 12px;
  transition: var(--transition-smooth);
}

.details-trust-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-medium);
  border-color: rgba(220, 38, 38, 0.15); /* Red border focus */
}

.details-trust-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: rgba(220, 38, 38, 0.06); /* soft red */
  color: var(--color-green-light); /* Red */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
  transition: var(--transition-smooth);
}

.details-trust-card:hover .details-trust-icon {
  background-color: var(--color-green-light);
  color: var(--color-white);
}

.details-trust-info h5 {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 700;
  color: var(--color-green-dark);
  margin-bottom: 2px;
}

.details-trust-info p {
  font-size: 11px;
  color: var(--color-charcoal);
  opacity: 0.65;
  line-height: 1.3;
}

.usage-instruction-box {
  background-color: var(--color-white);
  padding: 24px;
  border-radius: 16px;
  border: 1px solid rgba(0, 47, 108, 0.05);
  box-shadow: var(--shadow-subtle);
}

.usage-instruction-box h4 {
  font-family: var(--font-sans);
  font-size: 13px;
  text-transform: uppercase;
  color: var(--color-green-dark);
  margin-bottom: 20px;
  letter-spacing: 1px;
  font-weight: 700;
}

.timeline-stepper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  padding: 10px 0;
}

.timeline-stepper::before {
  content: '';
  position: absolute;
  top: 24px;
  left: 15%;
  right: 15%;
  height: 2px;
  background-image: linear-gradient(to right, var(--color-gold) 50%, transparent 50%);
  background-size: 8px 2px;
  z-index: 1;
}

.stepper-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  flex: 1;
  position: relative;
  z-index: 2;
  text-align: center;
}

.stepper-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--color-white);
  border: 2px solid var(--color-gold);
  color: var(--color-green-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 4px 10px rgba(255, 184, 0, 0.15);
  transition: var(--transition-smooth);
}

.stepper-step:hover .stepper-num {
  background-color: var(--color-green-light); /* Red hover */
  border-color: var(--color-green-light);
  color: var(--color-white);
  transform: scale(1.1);
}

.stepper-text {
  font-family: var(--font-sans);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--color-green-dark);
  max-width: 120px;
  line-height: 1.4;
}

.ingredients-box {
  font-size: 13.5px;
  line-height: 1.6;
  padding: 15px 20px;
  background-color: var(--color-cream-dark);
  border-radius: 10px;
  border: 1px dashed rgba(0, 47, 108, 0.15);
}

.ingredients-box strong {
  color: var(--color-green-dark);
}

.amazon-buy-container {
  margin-top: 10px;
}

/* Shiny Premium Glare Button Effect */
.amazon-btn {
  position: relative;
  overflow: hidden;
}

.amazon-btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -50%;
  width: 25%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0) 100%);
  transform: skewX(-25deg);
  animation: buttonShine 4s infinite ease-in-out;
}

@keyframes buttonShine {
  0% {
    left: -150%;
  }
  50%, 100% {
    left: 150%;
  }
}

/* Cascade reveal for details elements */
.product-info-box > * {
  opacity: 0;
  animation: revealUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.product-info-box > *:nth-child(1) { animation-delay: 0.1s; }
.product-info-box > *:nth-child(2) { animation-delay: 0.2s; }
.product-info-box > *:nth-child(3) { animation-delay: 0.3s; }
.product-info-box > *:nth-child(4) { animation-delay: 0.4s; }
.product-info-box > *:nth-child(5) { animation-delay: 0.5s; }
.product-info-box > *:nth-child(6) { animation-delay: 0.6s; }
.product-info-box > *:nth-child(7) { animation-delay: 0.7s; }
.product-info-box > *:nth-child(8) { animation-delay: 0.8s; }

@keyframes revealUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==========================================
   FAQ ACCORDION SECTION
   ========================================== */
.faq-section {
  padding: 80px 0;
  background-color: var(--color-cream-dark);
  border-top: 1px solid rgba(45, 106, 79, 0.08);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-title {
  text-align: center;
  font-size: clamp(26px, 3.5vw, 34px);
  margin-bottom: 50px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Premium styled details element */
details.faq-item {
  background-color: var(--color-white);
  border-radius: 12px;
  box-shadow: var(--shadow-subtle);
  border: 1px solid rgba(45, 106, 79, 0.05);
  transition: var(--transition-smooth);
}

details.faq-item[open] {
  box-shadow: var(--shadow-medium);
  border-color: rgba(201, 162, 39, 0.15);
}

summary.faq-question {
  padding: 24px;
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 600;
  color: var(--color-green-dark);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  outline: none;
}

/* Remove default summary arrow in Webkit */
summary.faq-question::-webkit-details-marker {
  display: none;
}

summary.faq-question::after {
  content: '\f078'; /* FontAwesome angle-down */
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 14px;
  color: var(--color-gold);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

details.faq-item[open] summary.faq-question::after {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 24px 24px 24px;
  font-size: 15px;
  color: var(--color-charcoal);
  opacity: 0.85;
  line-height: 1.6;
  border-top: 1px solid rgba(45, 106, 79, 0.03);
  padding-top: 15px;
}

/* ==========================================
   RELATED PRODUCTS SECTION
   ========================================== */
.related-section {
  padding: 80px 0 100px 0;
  background-color: var(--color-cream);
  border-top: 1px solid rgba(45, 106, 79, 0.08);
}

.related-title {
  text-align: center;
  margin-bottom: 50px;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 800px;
  margin: 0 auto;
}

@media (max-width: 992px) {
  .product-detail-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 40px !important;
  }
  .product-gallery {
    position: relative !important;
    top: auto !important;
    height: auto !important;
    display: flex !important;
    flex-direction: column !important;
    margin-bottom: 120px !important;
  }
  .gallery-main {
    height: 340px !important;
  }
  .thumb-box {
    height: 80px !important;
  }
  .related-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }
}

/* ==========================================
   ABOUT PAGE LAYOUT STYLES
   ========================================== */
.about-section {
  padding: 140px 0 100px 0;
  background-color: var(--color-cream);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.about-content h3 {
  font-size: clamp(26px, 3.5vw, 34px);
  color: var(--color-green-dark);
  margin-bottom: 20px;
}

.about-content p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-charcoal);
  opacity: 0.85;
  margin-bottom: 20px;
}

.about-content p:last-child {
  margin-bottom: 0;
}

.about-image-box {
  background-color: var(--color-white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-medium);
  border: 1px solid rgba(45, 106, 79, 0.05);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px;
  position: relative;
}

.about-image-box img {
  max-height: 400px;
  object-fit: contain;
  filter: drop-shadow(0 15px 30px rgba(27, 67, 50, 0.12));
}

/* Company Section & Values Cards */
.company-section {
  padding: 100px 0;
  background-color: var(--color-cream-dark);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.value-card {
  background-color: var(--color-white);
  border-radius: 16px;
  padding: 40px 30px;
  text-align: center;
  border: 1px solid rgba(45, 106, 79, 0.04);
  box-shadow: var(--shadow-subtle);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-medium);
  border-color: rgba(201, 162, 39, 0.15);
}

.value-card-icon {
  width: 75px;
  height: 75px;
  border-radius: 50%;
  background-color: rgba(45, 106, 79, 0.06);
  color: var(--color-green-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  transition: var(--transition-smooth);
}

.value-card:hover .value-card-icon {
  background-color: var(--color-green-dark);
  color: var(--color-cream);
  transform: rotate(10deg);
}

.value-card-title {
  font-family: var(--font-serif);
  font-size: 22px;
  color: var(--color-green-dark);
  font-weight: 600;
}

.value-card-text {
  font-size: 14.5px;
  color: var(--color-charcoal);
  opacity: 0.8;
  line-height: 1.6;
}

/* Vision / Mission Side-by-side Blocks */
.vision-mission-section {
  padding: 100px 0;
  background-color: var(--color-cream);
}

.vision-mission-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.vision-mission-card {
  background-color: var(--color-white);
  border-radius: 16px;
  padding: 50px 40px;
  border: 1px solid rgba(45, 106, 79, 0.05);
  box-shadow: var(--shadow-subtle);
  position: relative;
  overflow: hidden;
}

.vision-mission-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background-color: var(--color-gold);
}

.vision-mission-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.vision-mission-header i {
  color: var(--color-gold);
  font-size: 24px;
}

.vision-mission-card h3 {
  font-size: 26px;
  color: var(--color-green-dark);
}

.vision-mission-card p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--color-charcoal);
  opacity: 0.85;
}

@media (max-width: 992px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .about-image-box {
    order: -1; /* Image first on mobile */
  }
  .values-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .vision-mission-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

/* ==========================================
   CONTACT PAGE LAYOUT & FORM
   ========================================== */
.contact-section {
  padding: 140px 0 100px 0;
  background-color: var(--color-cream);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: start;
}

.contact-form-card {
  background-color: var(--color-white);
  border-radius: 16px;
  padding: 40px;
  border: 1px solid rgba(45, 106, 79, 0.05);
  box-shadow: var(--shadow-medium);
}

.contact-form-title {
  font-size: 26px;
  color: var(--color-green-dark);
  margin-bottom: 25px;
}

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

.form-label {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--color-green-dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-input, .form-textarea {
  width: 100%;
  padding: 12px 16px;
  border-radius: 8px;
  border: 1px solid rgba(45, 106, 79, 0.15);
  font-family: var(--font-sans);
  font-size: 15px;
  background-color: var(--color-cream);
  color: var(--color-charcoal);
  transition: var(--transition-fast);
}

.form-input:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--color-gold);
  background-color: var(--color-white);
  box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.12);
}

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

/* Contact Info Details Sidebar */
.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-info-card {
  background-color: var(--color-white);
  border-radius: 12px;
  padding: 30px;
  border: 1px solid rgba(45, 106, 79, 0.04);
  box-shadow: var(--shadow-subtle);
  display: flex;
  align-items: flex-start;
  gap: 20px;
  transition: var(--transition-smooth);
}

.contact-info-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
  border-color: rgba(201, 162, 39, 0.15);
}

.contact-info-icon {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background-color: rgba(45, 106, 79, 0.06);
  color: var(--color-green-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  transition: var(--transition-smooth);
}

.contact-info-card:hover .contact-info-icon {
  background-color: var(--color-green-dark);
  color: var(--color-cream);
}

.contact-info-content h4 {
  font-family: var(--font-sans);
  font-size: 16px;
  color: var(--color-green-dark);
  margin-bottom: 5px;
}

.contact-info-content p, .contact-info-content a {
  font-size: 14.5px;
  color: var(--color-charcoal);
  opacity: 0.8;
  line-height: 1.5;
}

/* Google Maps Iframe wrapper */
.map-section {
  padding: 60px 0 100px 0;
  background-color: var(--color-cream);
}

.map-container {
  width: 100%;
  height: 450px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-medium);
  border: 1px solid rgba(45, 106, 79, 0.05);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* WhatsApp Floating Pulse Button */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #25D366;
  color: var(--color-white);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
  z-index: 999;
  animation: whatsappPulse 2s infinite;
  transition: var(--transition-smooth);
}

.whatsapp-float:hover {
  transform: scale(1.1);
  color: var(--color-white);
}

@keyframes whatsappPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

@media (max-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .contact-form-card {
    padding: 30px 20px;
  }
  .map-container {
    height: 350px;
  }
}

/* ==========================================
   RESPONSIVE MEDIA QUERIES
   ========================================== */
@media (max-width: 992px) {
  .nav-menu {
    display: none !important;
  }
  
  .nav-cta-wrapper {
    display: none !important;
  }
  
  .hamburger {
    display: block !important;
  }

  .hero .container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .hero-description {
    margin: 0 auto;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .hero-products-showcase {
    max-width: 500px;
    margin: 0 auto;
  }
  
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  
  .product-card:last-child {
    grid-column: span 2;
    max-width: 500px;
    margin: 0 auto;
    width: 100%;
  }
  
  .steps-grid {
    gap: 30px;
  }
  
  .step-connector {
    display: none; /* Hide arrows on mobile stacking */
  }
  
  .benefit-row {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 60px;
  }
  
  .benefit-row.reverse {
    direction: ltr; /* Reset to natural scroll order */
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .trust-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .products-grid {
    grid-template-columns: 1fr;
  }
  
  .product-card:last-child {
    grid-column: span 1;
  }
  
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .testimonial-card {
    padding: 30px 20px;
  }
  .carousel-container {
    padding-bottom: 40px;
  }
}

@media (max-width: 576px) {
  .details-trust-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .product-gallery {
    margin-bottom: 100px !important;
  }

  .gallery-main {
    height: 290px;
  }

  .thumb-box {
    height: 70px;
    padding: 6px;
  }

  .timeline-stepper {
    flex-direction: column;
    gap: 24px;
    padding-left: 20px;
  }

  .timeline-stepper::before {
    top: 10%;
    bottom: 10%;
    left: 24px;
    right: auto;
    width: 2px;
    height: 80%;
    background-image: linear-gradient(to bottom, var(--color-gold) 50%, transparent 50%);
    background-size: 2px 8px;
  }

  .stepper-step {
    flex-direction: row;
    text-align: left;
    gap: 15px;
    align-items: center;
    width: 100%;
  }

  .stepper-text {
    max-width: none;
  }
}

/* ==========================================
   UTILITY & ACCESSIBILITY FEATURES
   ========================================== */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-delay: -1ms !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    background-attachment: initial !important;
    scroll-behavior: auto !important;
    transition-duration: 0s !important;
    transition-delay: 0s !important;
  }
}
