/* ==========================================
   ANUSHKA NUTRITION - CORE STYLESHEET
   Theme: Herbalife Style (Organic Premium Green)
   Fonts: Poppins (Headings), Roboto (Body), Montserrat (Buttons)
   ========================================== */

/* 1. Import Fonts & Setup Variables */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500;600;700&family=Poppins:wght@400;600;700;800&family=Roboto:wght@300;400;500;700&display=swap');

:root {
  --primary-green: #78BE20;
  --dark-green: #4C8C2B;
  --light-green: #DFF0D8;
  --accent-light: #F0F9EB;
  --white: #FFFFFF;
  --dark-text: #333333;
  --light-text: #666666;
  --bg-light: #F8F9FA;
  --border-color: #E2E8F0;
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 20px rgba(76, 140, 43, 0.06);
  --shadow-lg: 0 20px 40px rgba(76, 140, 43, 0.12);
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Roboto', sans-serif;
  --font-btn: 'Montserrat', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.3;
}

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

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

button, input, textarea, select {
  font-family: inherit;
}

/* 3. Utility Classes */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-padding {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 2.5rem;
  color: var(--dark-green);
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background-color: var(--primary-green);
  border-radius: 2px;
}

.section-header p {
  color: var(--light-text);
  margin-top: 15px;
  font-size: 1.1rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-btn);
  font-weight: 600;
  padding: 12px 30px;
  border-radius: 30px;
  transition: var(--transition-smooth);
  cursor: pointer;
  border: none;
  font-size: 0.95rem;
}

.btn-primary {
  background-color: var(--primary-green);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(120, 190, 32, 0.4);
}

.btn-primary:hover {
  background-color: var(--dark-green);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(76, 140, 43, 0.4);
}

.btn-secondary {
  background-color: transparent;
  color: var(--dark-green);
  border: 2px solid var(--primary-green);
}

.btn-secondary:hover {
  background-color: var(--primary-green);
  color: var(--white);
  transform: translateY(-3px);
}

.btn-white {
  background-color: var(--white);
  color: var(--dark-green);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.btn-white:hover {
  background-color: var(--primary-green);
  color: var(--white);
  transform: translateY(-3px);
}

/* Grid Layouts */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  align-items: center;
}

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

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

/* Card Style Base */
.card {
  background: var(--white);
  border-radius: 16px;
  padding: 30px;
  box-shadow: var(--shadow-md);
  transition: var(--transition-smooth);
  border: 1px solid var(--border-color);
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-green);
}

/* ==========================================
   4. Global Header & Top Bar
   ========================================== */
.top-bar {
  background-color: var(--dark-green);
  color: var(--white);
  padding: 10px 0;
  font-size: 0.85rem;
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-info {
  display: flex;
  gap: 20px;
  align-items: center;
}

.top-info a {
  display: flex;
  align-items: center;
  gap: 6px;
}

.top-info a:hover {
  color: var(--primary-green);
}

.top-actions {
  display: flex;
  gap: 15px;
  align-items: center;
}

.top-btn {
  padding: 6px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  background-color: var(--primary-green);
  color: var(--white);
}

.top-btn:hover {
  background-color: var(--white);
  color: var(--dark-green);
}

.main-header {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 15px 0;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

.main-header.scrolled {
  padding: 10px 0;
  background-color: var(--white);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--dark-green);
  font-family: var(--font-heading);
}

.logo-leaf {
  color: var(--primary-green);
  font-size: 1.8rem;
}

.nav-menu {
  display: flex;
  gap: 30px;
  list-style: none;
}

.nav-link {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--dark-text);
  position: relative;
  padding: 5px 0;
}

.nav-link:hover, .nav-link.active {
  color: var(--primary-green);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-green);
  transition: var(--transition-smooth);
}

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

.burger-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.burger-btn span {
  width: 25px;
  height: 3px;
  background-color: var(--dark-green);
  border-radius: 2px;
  transition: var(--transition-smooth);
}

/* ==========================================
   5. Hero Slider Section
   ========================================== */
.hero-slider {
  position: relative;
  height: 80vh;
  min-height: 550px;
  overflow: hidden;
}

.slider-container {
  width: 100%;
  height: 100%;
  position: relative;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s ease-in-out, visibility 1s ease-in-out;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
}

.slide::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0,0,0,0.7) 30%, rgba(0,0,0,0.3) 100%);
  z-index: 1;
}

.slide.active {
  opacity: 1;
  visibility: visible;
}

.slide-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  max-width: 650px;
  padding: 0 20px;
  transform: translateY(30px);
  opacity: 0;
  transition: transform 0.8s ease-out 0.5s, opacity 0.8s ease-out 0.5s;
}

.slide.active .slide-content {
  transform: translateY(0);
  opacity: 1;
}

.slide-content h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  color: var(--white);
}

.slide-content h1 span {
  color: var(--primary-green);
}

.slide-content p {
  font-size: 1.25rem;
  margin-bottom: 30px;
  color: #E2E8F0;
  font-weight: 300;
}

.hero-cta {
  display: flex;
  gap: 15px;
}

.slider-nav {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 10px;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.slider-dot.active {
  background-color: var(--primary-green);
  width: 30px;
  border-radius: 6px;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: var(--transition-smooth);
  backdrop-filter: blur(5px);
}

.slider-arrow:hover {
  background-color: var(--primary-green);
}

.slider-arrow.prev {
  left: 30px;
}

.slider-arrow.next {
  right: 30px;
}

/* ==========================================
   6. Marquee Section
   ========================================== */
.marquee-container {
  background-color: var(--primary-green);
  color: var(--white);
  padding: 15px 0;
  overflow: hidden;
  position: relative;
  white-space: nowrap;
  box-shadow: 0 4px 10px rgba(120, 190, 32, 0.2);
}

.marquee-content {
  display: inline-block;
  animation: marquee 25s linear infinite;
  font-family: var(--font-btn);
  font-weight: 700;
  font-size: 1.1rem;
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  margin-right: 50px;
}

.marquee-icon {
  margin-right: 10px;
  font-size: 1.2rem;
}

@keyframes marquee {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-50%, 0, 0); }
}

/* ==========================================
   7. About Section
   ========================================== */
.about-section {
  background-color: var(--white);
}

.about-img {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-img img {
  width: 100%;
  object-fit: cover;
  height: 450px;
  transition: var(--transition-smooth);
}

.about-img:hover img {
  transform: scale(1.03);
}

.experience-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background-color: var(--primary-green);
  color: var(--white);
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
}

.experience-badge h3 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 2px;
}

.experience-badge p {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
}

.about-content h3 {
  font-size: 1.8rem;
  color: var(--dark-green);
  margin-bottom: 20px;
}

.about-content p {
  color: var(--light-text);
  margin-bottom: 20px;
  font-size: 1.05rem;
}

.about-features {
  margin: 30px 0;
}

.about-feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-weight: 600;
  color: var(--dark-text);
}

.about-feature-item i {
  color: var(--primary-green);
  font-size: 1.2rem;
}

/* ==========================================
   8. Why Choose Us Section
   ========================================== */
.why-choose-us {
  background-color: var(--bg-light);
}

.why-card {
  text-align: center;
  position: relative;
  overflow: hidden;
}

.why-icon {
  width: 70px;
  height: 70px;
  background-color: var(--accent-light);
  color: var(--primary-green);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 auto 20px auto;
  font-size: 1.8rem;
  transition: var(--transition-smooth);
}

.why-card:hover .why-icon {
  background-color: var(--primary-green);
  color: var(--white);
  transform: rotateY(360deg);
}

.why-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: var(--dark-green);
}

.why-card p {
  color: var(--light-text);
  font-size: 0.95rem;
}

/* ==========================================
   9. Our Mission Section
   ========================================== */
.mission-section {
  background-color: var(--white);
}

.mission-card {
  background: linear-gradient(135deg, var(--accent-light) 0%, rgba(223, 240, 216, 0.4) 100%);
  padding: 40px;
  border-radius: 24px;
  box-shadow: var(--shadow-sm);
  border: 1px dashed var(--primary-green);
}

.mission-card h3 {
  font-size: 1.8rem;
  color: var(--dark-green);
  margin-bottom: 20px;
}

.mission-card p {
  font-size: 1.1rem;
  color: var(--light-text);
  margin-bottom: 30px;
}

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

.mission-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  background-color: var(--white);
  padding: 20px;
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
}

.mission-item i {
  color: var(--primary-green);
  font-size: 1.4rem;
  margin-top: 3px;
}

.mission-item h4 {
  font-size: 1.05rem;
  color: var(--dark-green);
  margin-bottom: 5px;
}

.mission-item p {
  font-size: 0.9rem;
  color: var(--light-text);
  margin-bottom: 0;
}

/* ==========================================
   10. Our Services Section
   ========================================== */
.services-section {
  background-color: var(--bg-light);
}

.service-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-img {
  height: 200px;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 20px;
}

.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

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

.service-card h3 {
  font-size: 1.4rem;
  color: var(--dark-green);
  margin-bottom: 12px;
}

.service-card p {
  color: var(--light-text);
  font-size: 0.95rem;
  margin-bottom: 20px;
  flex-grow: 1;
}

.service-cta {
  font-family: var(--font-btn);
  font-weight: 700;
  color: var(--primary-green);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
}

.service-cta i {
  transition: var(--transition-smooth);
}

.service-card:hover .service-cta i {
  transform: translateX(5px);
}

/* ==========================================
   11. Before & After Gallery (Comparison Slider)
   ========================================== */
.results-section {
  background-color: var(--white);
}

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

.comparison-card {
  background-color: var(--bg-light);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
}

.comparison-info {
  padding: 20px;
  text-align: center;
}

.comparison-info h3 {
  font-size: 1.2rem;
  color: var(--dark-green);
  margin-bottom: 5px;
}

.comparison-info p {
  color: var(--light-text);
  font-size: 0.9rem;
}

/* Before After Split Slider Mechanism */
.ba-slider-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  user-select: none;
}

.ba-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.ba-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.ba-image-before {
  z-index: 1;
}

.ba-image-after {
  z-index: 2;
  width: 100%;
  height: 100%;
  overflow: hidden;
  clip-path: polygon(0 0, 50% 0, 50% 100%, 0 100%);
}

/* Force After image width to match wrapper */
.ba-image-after img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Badge stylings */
.ba-badge {
  position: absolute;
  top: 15px;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  z-index: 3;
  color: var(--white);
  text-transform: uppercase;
}

.ba-badge-before {
  left: 15px;
  background-color: rgba(0, 0, 0, 0.6);
}

.ba-badge-after {
  right: 15px;
  background-color: var(--primary-green);
}

/* Floating Dragger Range Input Overlay */
.ba-range {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
  z-index: 5;
  margin: 0;
}

/* Sliding bar indicator line */
.ba-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%; /* JS toggles this */
  width: 3px;
  background-color: var(--white);
  z-index: 4;
  pointer-events: none;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

/* Circle drag handle */
.ba-handle {
  position: absolute;
  top: 50%;
  left: 50%; /* JS toggles this */
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  background-color: var(--primary-green);
  color: var(--white);
  border: 3px solid var(--white);
  border-radius: 50%;
  z-index: 4;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  font-size: 0.8rem;
}

/* ==========================================
   12. Video Testimonials Section
   ========================================== */
.video-section {
  background-color: var(--bg-light);
}

.video-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 16/9;
  cursor: pointer;
}

.video-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

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

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(43, 80, 25, 0.4);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  z-index: 2;
  transition: var(--transition-smooth);
}

.video-card:hover .video-overlay {
  background: rgba(43, 80, 25, 0.55);
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  background-color: var(--primary-green);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 0 20px rgba(120, 190, 32, 0.6);
  transition: var(--transition-smooth);
  padding-left: 5px; /* adjust for play icon centering */
}

.video-card:hover .play-btn {
  background-color: var(--white);
  color: var(--primary-green);
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.8);
}

.video-overlay h4 {
  color: var(--white);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 5px;
}

.video-overlay p {
  color: var(--light-green);
  font-size: 0.85rem;
  font-weight: 500;
}

/* Video Lightbox Modal */
.lightbox-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.lightbox-modal.active {
  display: flex;
  opacity: 1;
}

.lightbox-content {
  width: 100%;
  max-width: 900px;
  aspect-ratio: 16/9;
  background-color: #000;
  position: relative;
  transform: scale(0.9);
  transition: transform 0.4s ease;
  border-radius: 12px;
  overflow: hidden;
}

.lightbox-modal.active .lightbox-content {
  transform: scale(1);
}

.lightbox-close {
  position: absolute;
  top: -45px;
  right: 0;
  background: transparent;
  border: none;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
}

.lightbox-video {
  width: 100%;
  height: 100%;
  border: none;
}

/* ==========================================
   13. Consultation Booking Section
   ========================================== */
.consultation-section {
  background-color: var(--white);
  position: relative;
}

.consultation-box {
  background-color: var(--bg-light);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
}

.consult-details {
  padding: 50px;
  background-color: var(--dark-green);
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.consult-details h3 {
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.consult-details p {
  color: var(--light-green);
  margin-bottom: 35px;
  font-size: 1.05rem;
}

.consult-info-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
}

.consult-info-item i {
  width: 45px;
  height: 45px;
  background-color: rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1.2rem;
  color: var(--primary-green);
}

.consult-info-item div h4 {
  font-size: 0.9rem;
  text-transform: uppercase;
  color: var(--light-green);
  font-weight: 600;
}

.consult-info-item div p {
  margin-bottom: 0;
  color: var(--white);
  font-weight: 700;
  font-size: 1.1rem;
}

.consult-form-wrapper {
  padding: 50px;
}

.consult-form-wrapper h3 {
  font-size: 1.8rem;
  color: var(--dark-green);
  margin-bottom: 30px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 8px;
  color: var(--dark-text);
}

.form-control {
  width: 100%;
  padding: 12px 20px;
  border-radius: 10px;
  border: 2px solid var(--border-color);
  background-color: var(--white);
  font-size: 0.95rem;
  transition: var(--transition-smooth);
}

.form-control:focus {
  border-color: var(--primary-green);
  outline: none;
  box-shadow: 0 0 10px rgba(120, 190, 32, 0.15);
}

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

/* ==========================================
   14. FAQ Section
   ========================================== */
.faq-section {
  background-color: var(--bg-light);
}

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

.faq-item {
  background-color: var(--white);
  border-radius: 12px;
  margin-bottom: 15px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  overflow: hidden;
  transition: var(--transition-smooth);
}

.faq-item:hover {
  border-color: var(--primary-green);
}

.faq-header {
  padding: 20px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  background-color: var(--white);
  user-select: none;
}

.faq-header h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark-text);
  margin: 0;
  transition: var(--transition-smooth);
}

.faq-header i {
  color: var(--primary-green);
  font-size: 1.1rem;
  transition: var(--transition-smooth);
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-body-content {
  padding: 0 25px 20px 25px;
  color: var(--light-text);
  font-size: 0.95rem;
  border-top: 1px solid var(--border-color);
  padding-top: 15px;
}

/* Active FAQ panel styles */
.faq-item.active {
  border-color: var(--primary-green);
  box-shadow: var(--shadow-md);
}

.faq-item.active .faq-header h3 {
  color: var(--dark-green);
}

.faq-item.active .faq-header i {
  transform: rotate(180deg);
}

/* ==========================================
   15. Global Footer
   ========================================== */
.main-footer {
  background-color: #212F3D;
  color: #B2BABB;
  padding: 80px 0 20px 0;
  font-size: 0.95rem;
}

.footer-top {
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-widget-logo h3 {
  color: var(--white);
  font-size: 1.6rem;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-widget-logo h3 span {
  color: var(--primary-green);
}

.footer-widget-logo p {
  margin-bottom: 25px;
  font-size: 0.9rem;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-social-link {
  width: 40px;
  height: 40px;
  background-color: rgba(255,255,255,0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.1rem;
}

.footer-social-link:hover {
  background-color: var(--primary-green);
  transform: translateY(-3px);
}

.footer-widget h4 {
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}

.footer-widget h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background-color: var(--primary-green);
  border-radius: 2px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-links a:hover {
  color: var(--primary-green);
  transform: translateX(5px);
}

.footer-links i {
  font-size: 0.8rem;
  color: var(--primary-green);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 15px;
}

.footer-contact-item i {
  color: var(--primary-green);
  font-size: 1.1rem;
  margin-top: 3px;
}

.footer-contact-item a:hover {
  color: var(--primary-green);
}

.footer-bottom {
  padding-top: 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
}

.footer-bottom p {
  margin-bottom: 0;
}

/* ==========================================
   16. Floating Elements
   ========================================== */
.floating-whatsapp {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: var(--transition-smooth);
}

.floating-whatsapp:hover {
  transform: scale(1.1) rotate(10deg);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
}

/* ==========================================
   17. Page Hero Header (Subpages)
   ========================================== */
.page-hero {
  background: linear-gradient(rgba(43, 80, 25, 0.8), rgba(33, 47, 61, 0.9)), url('https://images.unsplash.com/photo-1498837167922-ddd27525d352?auto=format&fit=crop&w=1920&q=80') center/cover;
  padding: 100px 0 60px 0;
  color: var(--white);
  text-align: center;
}

.page-hero h1 {
  font-size: 3rem;
  margin-bottom: 15px;
}

.breadcrumbs {
  display: flex;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-btn);
  font-size: 0.9rem;
  font-weight: 600;
  color: #B2BABB;
}

.breadcrumbs a:hover {
  color: var(--primary-green);
}

.breadcrumbs span {
  color: var(--primary-green);
}

/* ==========================================
   18. Subpage Content Specifics
   ========================================== */

/* About Page Styles */
.about-origins {
  background-color: var(--white);
}

.origins-content h3 {
  font-size: 2rem;
  color: var(--dark-green);
  margin-bottom: 25px;
}

.origins-content p {
  color: var(--light-text);
  margin-bottom: 20px;
  font-size: 1.05rem;
}

.core-values {
  background-color: var(--bg-light);
}

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

.value-icon {
  width: 65px;
  height: 65px;
  background-color: var(--accent-light);
  color: var(--primary-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
  font-size: 1.6rem;
  transition: var(--transition-smooth);
}

.value-card:hover .value-icon {
  background-color: var(--primary-green);
  color: var(--white);
  transform: translateY(-5px);
}

.value-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: var(--dark-green);
}

.value-card p {
  color: var(--light-text);
  font-size: 0.95rem;
}

.team-section {
  background-color: var(--white);
}

.team-card {
  overflow: hidden;
  padding: 0;
  border-radius: 16px;
}

.team-img {
  height: 320px;
  overflow: hidden;
}

.team-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

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

.team-info {
  padding: 25px;
  text-align: center;
}

.team-info h3 {
  font-size: 1.3rem;
  color: var(--dark-green);
  margin-bottom: 5px;
}

.team-info p {
  font-family: var(--font-btn);
  font-weight: 700;
  color: var(--primary-green);
  font-size: 0.85rem;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.team-socials {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.team-socials a {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background-color: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light-text);
  font-size: 0.95rem;
}

.team-socials a:hover {
  background-color: var(--primary-green);
  color: var(--white);
}

/* Programs Page Styles */
.program-detail-card {
  background-color: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-bottom: 60px;
  border: 1px solid var(--border-color);
}

.program-detail-card:last-child {
  margin-bottom: 0;
}

.program-detail-content {
  padding: 50px;
}

.program-badge {
  display: inline-block;
  background-color: var(--accent-light);
  color: var(--primary-green);
  padding: 6px 16px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.program-detail-content h2 {
  font-size: 2.2rem;
  color: var(--dark-green);
  margin-bottom: 20px;
}

.program-detail-content p {
  color: var(--light-text);
  margin-bottom: 25px;
  font-size: 1.05rem;
}

.program-features-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-bottom: 35px;
}

.program-feature-check {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: var(--dark-text);
}

.program-feature-check i {
  color: var(--primary-green);
  font-size: 1.1rem;
}

.program-detail-img {
  height: 100%;
  min-height: 400px;
  overflow: hidden;
}

.program-detail-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Process Timeline (How It Works) */
.timeline-section {
  background-color: var(--bg-light);
}

.timeline-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;
  margin-top: 50px;
}

.timeline-row::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: var(--light-green);
  z-index: 1;
}

.timeline-item {
  position: relative;
  z-index: 2;
  text-align: center;
}

.timeline-step {
  width: 80px;
  height: 80px;
  background-color: var(--white);
  border: 4px solid var(--primary-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px auto;
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--dark-green);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

.timeline-item:hover .timeline-step {
  background-color: var(--primary-green);
  color: var(--white);
  transform: scale(1.1);
}

.timeline-item h3 {
  font-size: 1.25rem;
  color: var(--dark-green);
  margin-bottom: 12px;
}

.timeline-item p {
  color: var(--light-text);
  font-size: 0.95rem;
}

/* Contact Page Styles */
.contact-grid {
  display: grid;
  grid-template-columns: 4fr 8fr;
  gap: 50px;
  align-items: start;
}

.contact-card-info {
  background-color: var(--dark-green);
  color: var(--white);
  border-radius: 20px;
  padding: 40px;
  box-shadow: var(--shadow-lg);
}

.contact-card-info h3 {
  font-size: 1.8rem;
  margin-bottom: 25px;
}

.contact-card-info p {
  color: var(--light-green);
  margin-bottom: 35px;
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 30px;
}

.contact-detail-item:last-child {
  margin-bottom: 0;
}

.contact-detail-item i {
  width: 45px;
  height: 45px;
  background-color: rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  color: var(--primary-green);
  margin-top: 3px;
}

.contact-detail-item h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  color: var(--light-green);
  margin-bottom: 5px;
}

.contact-detail-item p {
  margin-bottom: 0;
  color: var(--white);
  font-weight: 600;
  font-size: 1rem;
}

.contact-detail-item a:hover {
  color: var(--primary-green);
}

.contact-form-box {
  background-color: var(--white);
  padding: 50px;
  border-radius: 20px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
}

.contact-form-box h3 {
  font-size: 1.8rem;
  color: var(--dark-green);
  margin-bottom: 15px;
}

.contact-form-box > p {
  color: var(--light-text);
  margin-bottom: 35px;
}

.map-wrapper {
  margin-top: 60px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  height: 400px;
}

.map-mock {
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, #E6F4EA 0%, #D0EBE0 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--dark-green);
  text-align: center;
  padding: 20px;
}

.map-mock i {
  font-size: 3.5rem;
  color: var(--primary-green);
  margin-bottom: 20px;
  animation: bounce 2s infinite;
}

.map-mock h3 {
  font-size: 1.6rem;
  margin-bottom: 8px;
}

.map-mock p {
  color: var(--light-text);
  font-size: 1rem;
  max-width: 400px;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

/* ==========================================
   19. Responsive Media Queries
   ========================================== */
@media (max-width: 1024px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .results-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  .timeline-row {
    grid-template-columns: repeat(2, 1fr);
  }
  .timeline-row::before {
    display: none;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .slide-content h1 {
    font-size: 2.8rem;
  }
}

@media (max-width: 768px) {
  .top-bar {
    display: none;
  }
  .mobile-actions {
    display: flex;
    align-items: center;
    gap: 15px;
  }
  .burger-btn {
    display: flex;
  }
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background-color: var(--white);
    flex-direction: column;
    padding: 80px 40px;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition-smooth);
    z-index: 1000;
  }
  .nav-menu.active {
    right: 0;
  }
  .burger-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
  }
  .burger-btn.active span:nth-child(2) {
    opacity: 0;
  }
  .burger-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
  }
  .grid-2 {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .about-img img {
    height: 300px !important;
  }
  .consultation-box {
    display: flex;
    flex-direction: column;
  }
  .consult-details, .consult-form-wrapper {
    padding: 30px;
  }
  .hero-slider {
    height: 70vh;
  }
  .slide-content h1 {
    font-size: 2.2rem;
  }
  .slide-content p {
    font-size: 1rem;
  }
  .section-header h2 {
    font-size: 2rem;
  }
  .mission-list {
    grid-template-columns: 1fr;
  }
  .program-features-list {
    grid-template-columns: 1fr;
  }
  .program-detail-card .grid-2 {
    display: flex;
    flex-direction: column;
  }
  .program-detail-card .grid-2:nth-child(even) {
    flex-direction: column;
  }
  .program-detail-img {
    order: -1;
    min-height: 250px;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
}

@media (max-width: 576px) {
  .logo {
    font-size: 1.15rem;
  }
  .slide-content h1 {
    font-size: 1.7rem;
  }
  .slide-content p {
    font-size: 0.9rem;
  }
  .grid-3, .results-grid {
    grid-template-columns: 1fr;
  }
  .grid-4 {
    grid-template-columns: 1fr;
  }
  .timeline-row {
    grid-template-columns: 1fr;
  }
  .section-padding {
    padding: 60px 0;
  }
  .hero-cta {
    flex-direction: column;
    gap: 10px;
  }
  .btn {
    width: 100%;
  }
  .slider-arrow {
    display: none;
  }
}

/* Global Mobile Actions styles (hidden on desktop) */
.mobile-actions {
  display: none;
}
.mobile-call-btn {
  width: 40px;
  height: 40px;
  background-color: var(--primary-green);
  color: var(--white) !important;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  box-shadow: 0 4px 10px rgba(120, 190, 32, 0.3);
  transition: var(--transition-smooth);
}
.mobile-call-btn:hover {
  background-color: var(--dark-green);
  transform: scale(1.05);
}

