/* ============================================================
   MANOKAMNA – Crafted with Devotion
   Main Stylesheet | Version 2.0
   ============================================================ */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&family=Poppins:wght@300;400;500;600&family=Tiro+Devanagari+Sanskrit&display=swap');

/* ── CSS Variables ── */
:root {
  --gold:        #C8860A;
  --gold-light:  #E5A820;
  --gold-dark:   #8B5E06;
  --cream:       #FDF6E3;
  --dark:        #1A0F00;
  --dark-mid:    #2C1A00;
  --text:        #3D2B00;
  --text-light:  #7A5C2E;
  --white:       #FFFFFF;
  --border:      rgba(200,134,10,0.3);
  --shadow:      0 8px 40px rgba(0,0,0,0.25);
  --radius:      12px;
  --transition:  all 0.35s cubic-bezier(0.4,0,0.2,1);
}

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

html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
}

body {
  font-family: 'Poppins', sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.7;
  /* This ensures internal pages don't hide behind the fixed navbar */
  padding-top: 80px; 
}

/* On the Home Page ONLY, remove the padding-top so the video/hero touches the top */
.home-page {
  padding-top: 0;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── Typography ── */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  line-height: 1.2;
  color: var(--dark);
}
h1 { font-size: clamp(2.5rem, 6vw, 5rem); font-weight: 700; }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 600; }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }
.devanagari { font-family: 'Tiro Devanagari Sanskrit', serif; }

/* ── Utility ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-pad { padding: 90px 0; }
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.btn {
  display: inline-block;
  padding: 14px 36px;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
}
.btn-gold {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: transparent;
  color: var(--gold);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--dark);
}
.divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 20px auto;
  width: fit-content;
}
.divider::before, .divider::after {
  content: '';
  display: block;
  width: 80px;
  height: 1px;
  background: var(--gold);
}
.divider-icon { color: var(--gold); font-size: 1.2rem; }

/* ── Top Bar ── */
.top-bar {
  background: var(--gold);
  color: var(--white);
  text-align: center;
  padding: 10px 24px;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.5px;
}
.top-bar a {
  color: var(--white);
  font-weight: 700;
  text-decoration: underline;
  margin-left: 8px;
}

/* ── Navigation ── */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition);
  padding: 0;
}
.navbar.scrolled {
  background: rgba(26, 15, 0, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 30px rgba(0,0,0,0.4);
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 40px;
  max-width: 1400px;
  margin: 0 auto;
}
/* Optimized CSS for Transparent Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-icon {
  width: 50px; /* Adjust size to fit your navbar height */
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-icon img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
}

.logo-text .brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.logo-text .tagline {
  font-size: 0.65rem;
  letter-spacing: 2px;
  color: var(--gold-light);
  text-transform: uppercase;
  margin-top: 4px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  color: rgba(255,255,255,0.85);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: var(--transition);
}
.nav-links a:hover { color: var(--gold-light); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  background: var(--gold) !important;
  color: var(--white) !important;
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 600 !important;
}
.nav-cta:hover { background: var(--gold-light) !important; }
.nav-cta::after { display: none !important; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
}

/* ── Hero Section ── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: 0;
}
.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-video-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(26,15,0,0.55) 0%,
    rgba(26,15,0,0.35) 50%,
    rgba(26,15,0,0.75) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--white);
  padding: 0 24px;
  max-width: 900px;
}
.hero-badge {
  display: inline-block;
  border: 1px solid var(--gold);
  color: var(--gold-light);
  font-size: 0.72rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  padding: 8px 24px;
  border-radius: 50px;
  margin-bottom: 28px;
  backdrop-filter: blur(6px);
  background: rgba(200,134,10,0.12);
}
.hero-title {
  color: var(--white);
  text-shadow: 0 4px 20px rgba(0,0,0,0.5);
  margin-bottom: 16px;
}
.hero-title span { color: var(--gold-light); }
.hero-subtitle {
  font-size: 1rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 12px;
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
}
.hero-shloka {
  font-family: 'Tiro Devanagari Sanskrit', serif;
  font-size: 1.1rem;
  color: var(--gold-light);
  margin-bottom: 40px;
  opacity: 0.9;
}
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.6);
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  animation: bounce 2s infinite;
}
.hero-scroll .arrow { font-size: 1.2rem; }
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ── Presence / Logos Strip ── */
.presence-strip {
  background: var(--dark);
  padding: 24px 0;
  overflow: hidden;
}
.presence-label {
  text-align: center;
  color: var(--gold);
  font-size: 0.65rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.logo-track {
  display: flex;
  gap: 60px;
  align-items: center;
  animation: scroll-logos 25s linear infinite;
  width: max-content;
}
.logo-track:hover { animation-play-state: paused; }
.logo-track .logo-item {
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  white-space: nowrap;
  transition: var(--transition);
}
.logo-track .logo-item:hover { color: var(--gold-light); }
@keyframes scroll-logos {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ── Product Banner ── */
.product-banner {
  position: relative;
  height: 480px;
  overflow: hidden;
}
.product-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(26,15,0,0.75) 0%, rgba(26,15,0,0.2) 60%, transparent 100%);
}
.product-banner-text {
  position: absolute;
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
  z-index: 1;
  color: var(--white);
}
.product-banner-text .hindi {
  font-family: 'Tiro Devanagari Sanskrit', serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: var(--gold-light);
  display: block;
  margin-bottom: 8px;
}
.product-banner-text p {
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
  max-width: 380px;
}

/* ── Section Headers ── */
.section-header { text-align: center; margin-bottom: 60px; }
.section-header .eyebrow {
  display: inline-block;
  color: var(--gold);
  font-size: 0.72rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 12px;
}
.section-header h2 { margin-bottom: 16px; }
.section-header p {
  max-width: 680px;
  margin: 0 auto;
  color: var(--text-light);
  font-size: 1rem;
}

/* ── Products Section ── */
.products-section { background: var(--cream); }
.product-filters {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.filter-btn {
  padding: 8px 24px;
  border-radius: 50px;
  border: 1.5px solid var(--border);
  background: transparent;
  color: var(--text-light);
  font-size: 0.82rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  font-family: 'Poppins', sans-serif;
}
.filter-btn.active, .filter-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 32px;
}
.product-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: var(--transition);
  position: relative;
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(200,134,10,0.2);
}
.product-card-img {
  position: relative;
  overflow: hidden;
  height: 280px;
}
.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.product-card:hover .product-card-img img { transform: scale(1.06); }
.product-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--gold);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 4px 12px;
  border-radius: 50px;
  text-transform: uppercase;
}
.product-card-body { padding: 24px; }
.product-category {
  font-size: 0.72rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.product-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 8px;
}
.product-stars { color: var(--gold); font-size: 0.9rem; margin-bottom: 8px; }
.product-price {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 16px;
}
.product-price .original {
  text-decoration: line-through;
  color: var(--text-light);
  font-weight: 400;
  margin-left: 8px;
  font-size: 0.9rem;
}
.product-btn {
  display: block;
  text-align: center;
  padding: 12px;
  background: var(--dark);
  color: var(--white);
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: var(--transition);
}
.product-btn:hover { background: var(--gold); }

/* ── Our Purpose Section ── */
.purpose-section {
  background: var(--dark);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.purpose-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../images/purpose_bg.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.15;
}
.purpose-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.purpose-text .eyebrow {
  color: var(--gold-light);
  font-size: 0.72rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-weight: 600;
  display: block;
  margin-bottom: 16px;
}
.purpose-text h2 { color: var(--white); margin-bottom: 24px; }
.purpose-text p { color: rgba(255,255,255,0.75); margin-bottom: 32px; line-height: 1.9; }
.purpose-video {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  position: relative;
}
.purpose-video iframe {
  width: 100%;
  height: 340px;
  border: none;
  display: block;
}

/* ── Ethics / Values Section ── */
.ethics-section {
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 50%, var(--gold-dark) 100%);
  color: var(--white);
}
.ethics-top { text-align: center; margin-bottom: 60px; }
.ethics-top .eyebrow {
  display: inline-block;
  border: 1px solid rgba(255,255,255,0.4);
  color: rgba(255,255,255,0.9);
  font-size: 0.72rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  padding: 6px 20px;
  border-radius: 50px;
  margin-bottom: 20px;
}
.ethics-top h2 { color: var(--white); margin-bottom: 12px; }
.ethics-shloka {
  font-family: 'Tiro Devanagari Sanskrit', serif;
  font-size: 1.2rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 8px;
}
.ethics-translation {
  font-style: italic;
  color: rgba(255,255,255,0.75);
  font-size: 0.9rem;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.value-card {
  text-align: center;
  padding: 32px 20px;
  background: rgba(255,255,255,0.12);
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(8px);
  transition: var(--transition);
}
.value-card:hover {
  background: rgba(255,255,255,0.2);
  transform: translateY(-6px);
}
.value-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
  display: block;
}
.value-card h4 { color: var(--white); margin-bottom: 12px; font-size: 1rem; }
.value-card p { color: rgba(255,255,255,0.8); font-size: 0.88rem; line-height: 1.7; }

/* ── Spiritual Essence Section ── */
.spiritual-section {
  position: relative;
  overflow: hidden;
}
.spiritual-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/spiritual_essence.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.spiritual-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(26,15,0,0.72);
}
.spiritual-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--white);
  padding: 120px 24px;
  max-width: 800px;
  margin: 0 auto;
}
.spiritual-inner h2 { color: var(--white); margin-bottom: 24px; }
.spiritual-inner p { color: rgba(255,255,255,0.8); font-size: 1.05rem; line-height: 1.9; margin-bottom: 40px; }

/* ── Process Section ── */
.process-section { background: var(--cream); }
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.process-grid::before {
  content: '';
  position: absolute;
  top: 48px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
  z-index: 0;
}
.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}
.process-num {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 700;
  margin: 0 auto 20px;
  box-shadow: 0 8px 24px rgba(200,134,10,0.4);
  border: 4px solid var(--cream);
  transition: var(--transition);
}
.process-step:hover .process-num {
  background: var(--dark);
  transform: scale(1.1);
}
.process-step h4 { color: var(--dark); margin-bottom: 8px; font-size: 1rem; }
.process-step p { color: var(--text-light); font-size: 0.88rem; }

/* ── FAQ Section ── */
.faq-section { background: var(--white); }
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  cursor: pointer;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--dark);
  transition: var(--transition);
  gap: 16px;
}
.faq-question:hover { color: var(--gold); }
.faq-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  transition: var(--transition);
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--dark); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq-answer p {
  padding-bottom: 24px;
  color: var(--text-light);
  line-height: 1.9;
}
.faq-item.open .faq-answer { max-height: 300px; }

/* ── About Page ── */
.about-hero {
  position: relative;
  height: 60vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.about-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(26,15,0,0.6);
}
.about-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--white);
}
.about-hero-content h1 { color: var(--white); }
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 100px 0;
}
.about-text h2 { margin-bottom: 24px; }
.about-text p { color: var(--text-light); margin-bottom: 20px; line-height: 1.9; }
.about-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 32px;
}
.about-info-item {
  padding: 20px;
  background: var(--cream);
  border-radius: var(--radius);
  border-left: 3px solid var(--gold);
}
.about-info-item .label {
  font-size: 0.72rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.about-info-item .value { font-size: 0.9rem; color: var(--text); font-weight: 500; }
.about-img { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }

/* ── Footer ── */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
  padding: 80px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}
.footer-brand .logo-text .brand { color: var(--white); }
.footer-brand .logo-text .tagline { color: var(--gold); }
.footer-brand p {
  margin-top: 20px;
  font-size: 0.88rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.6);
}
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}
.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  transition: var(--transition);
}
.social-link:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}
.footer-col h5 {
  color: var(--white);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(200,134,10,0.3);
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  color: rgba(255,255,255,0.6);
  font-size: 0.88rem;
  transition: var(--transition);
}
.footer-col ul li a:hover { color: var(--gold-light); padding-left: 4px; }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 0.88rem;
}
.footer-contact-item .icon { color: var(--gold); font-size: 1rem; margin-top: 2px; flex-shrink: 0; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.4); }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  transition: var(--transition);
}
.footer-bottom-links a:hover { color: var(--gold); }

/* ── WhatsApp Float ── */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37,211,102,0.4);
  transition: var(--transition);
  animation: pulse-wa 2.5s infinite;
}
.whatsapp-float:hover { transform: scale(1.1); }
.whatsapp-float svg { width: 28px; height: 28px; fill: white; }
@keyframes pulse-wa {
  0%, 100% { box-shadow: 0 8px 24px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 8px 40px rgba(37,211,102,0.7); }
}

/* ── Animations ── */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .purpose-inner { grid-template-columns: 1fr; gap: 48px; }
  .about-content { grid-template-columns: 1fr; gap: 48px; }
}
@media (max-width: 768px) {
  .navbar-inner { padding: 16px 24px; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--dark);
    justify-content: center;
    align-items: center;
    gap: 32px;
    z-index: 999;
  }
  .nav-links.open a { font-size: 1.2rem; }
  .hamburger { display: flex; z-index: 1000; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .products-grid { grid-template-columns: 1fr 1fr; }
  .about-info-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .values-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: center; }
}


/* --- INTERNAL PAGE FIXES --- */

/* 1. Remove the white gap at the top */
html, body {
  margin: 0 !important;
  padding: 0 !important;
}

/* 2. Fix the Navbar background for internal pages */
/* Because there is no video behind the navbar on internal pages, we need to see it */
body:not(.home-page) .navbar {
  background: var(--dark) !important;
  position: sticky; /* Keeps it at the top as you scroll */
}

/* 3. Ensure content starts below the navbar */
body:not(.home-page) {
  background-color: var(--cream); /* Matches your design */
}
