
/* ========== CSS VARIABLES ========== */
:root {
  --green: #3a8c3f;
  --green-light: #5cb85c;
  --green-pale: #e8f5e9;
  --green-dark: #1b5e20;
  --cream: #faf7f2;
  --beige: #f0ebe0;
  --orange: #f4845f;
  --orange-light: #ffb347;
  --text-dark: #1a2332;
  --text-mid: #4a5568;
  --text-light: #718096;
  --white: #ffffff;
  --shadow-sm: 0 2px 15px rgba(0,0,0,0.08);
  --shadow-md: 0 8px 40px rgba(0,0,0,0.12);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.15);
  --radius: 16px;
  --radius-lg: 24px;
  --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
html, body {
    overflow-x: hidden;
    max-width: 100%;
}
/* ========== BASE ========== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Poppins', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
}
h1, h2, h3 { font-family: 'Playfair Display', serif; }
.section-pad { padding: 100px 0; }
img { max-width: 100%; }

/* ========== PRELOADER ========== */
#preloader {
  position: fixed; inset: 0;
  background: #f8fdf8;
  display: flex; align-items: center; justify-content: center;
  z-index: 9999;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
#preloader.fade-out { opacity: 0; visibility: hidden; }
.preloader-inner { text-align: center; }
.leaf-anim {
  width: 60px; height: 60px;
  position: relative; margin: 0 auto 16px;
}
.leaf-anim svg {
  animation: leafPulse 1.8s ease-in-out infinite;
}
@keyframes leafPulse {
  0%, 100% { transform: scale(1) rotate(-5deg); opacity: 0.8; }
  50% { transform: scale(1.15) rotate(5deg); opacity: 1; }
}
.preloader-inner p {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--green);
  animation: fadeLetters 1.5s ease-in-out infinite alternate;
}
@keyframes fadeLetters { from { opacity: 0.4; } to { opacity: 1; } }
.loader-bar {
  width: 120px; height: 3px;
  background: #e0ede0;
  border-radius: 10px;
  margin: 12px auto 0;
  overflow: hidden;
}
.loader-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--green), var(--green-light));
  border-radius: 10px;
  animation: loadBar 2s ease-in-out forwards;
}
@keyframes loadBar { from { width: 0; } to { width: 100%; } }

/* ========== NAVBAR ========== */
#mainNav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
  background: transparent;
}
#mainNav.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  padding: 12px 0;
  box-shadow: 0 2px 30px rgba(0,0,0,0.08);
}
.navbar-brand {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 900;
  color: var(--white) !important;
  letter-spacing: -0.5px;
}
#mainNav.scrolled .navbar-brand { color: var(--green-dark) !important; }
.navbar-brand span { color: var(--green-light); }
#mainNav.scrolled .navbar-brand span { color: var(--orange); }
.nav-link {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9) !important;
  padding: 8px 16px !important;
  transition: var(--transition);
  position: relative;
}
#mainNav.scrolled .nav-link { color: var(--text-dark) !important; }
.nav-link::after {
  content: '';
  position: absolute; bottom: 2px; left: 50%; right: 50%;
  height: 2px;
  background: var(--green-light);
  transition: var(--transition);
}
.nav-link:hover::after, .nav-link.active::after { left: 16px; right: 16px; }
.nav-cta {
  background: var(--green) !important;
  color: white !important;
  border-radius: 50px !important;
  padding: 8px 24px !important;
}
.nav-cta:hover { background: var(--green-dark) !important; transform: translateY(-1px); }
.nav-cta::after { display: none !important; }
.navbar-toggler { border: 2px solid rgba(255,255,255,0.5); }
#mainNav.scrolled .navbar-toggler { border-color: var(--green); }
.hamburger-icon span {
  display: block; width: 22px; height: 2px;
  background: white; margin: 5px 0;
  transition: var(--transition);
}
#mainNav.scrolled .hamburger-icon span { background: var(--green-dark); }
.program-hero{
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden;
  background: url('https://images.unsplash.com/photo-1490645935967-10de6ba17061?w=1920&q=80') center/cover no-repeat;
}

.page-hero{   position: relative;
  min-height: 60vh;
  display: flex; align-items: center;
  overflow: hidden;
  background: url('https://images.unsplash.com/photo-1490645935967-10de6ba17061?w=1920&q=80') center/cover no-repeat;
}
/* ========== HERO ========== */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden;
  background: url('https://images.unsplash.com/photo-1490645935967-10de6ba17061?w=1920&q=80') center/cover no-repeat;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(27,94,32,0.85) 0%, rgba(0,0,0,0.4) 60%, rgba(244,132,95,0.3) 100%);
}
.hero-content { position: relative; z-index: 2; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.25);
  color: white;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 24px;
}
.hero-badge i { color: var(--orange-light); }
.hero-title {
  font-size: clamp(42px, 6vw, 40px);
  font-weight: 900;
  color: white;
  line-height: 1.1;
  margin-bottom: 24px;
}
.hero-title em { color: var(--orange-light); font-style: italic; }
.hero-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.85);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 40px;
  font-weight: 300;
}
.btn-hero-primary {
  background: linear-gradient(135deg, var(--green), var(--green-light));
  color: white;
  border: none;
  padding: 16px 36px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: var(--transition);
  box-shadow: 0 8px 30px rgba(58,140,63,0.5);
  text-decoration: none;
  display: inline-block;
}
.btn-hero-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(58,140,63,0.6);
  color: white;
}
.btn-hero-outline {
  background: transparent;
  color: white;
  border: 2px solid rgba(255,255,255,0.6);
  padding: 14px 36px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: var(--transition);
  text-decoration: none;
  display: inline-block;
}
.btn-hero-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: white;
  color: white;
  transform: translateY(-2px);
}
.hero-stats {
  display: flex; gap: 40px;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.2);
}
.hero-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 900;
  color: white;
  line-height: 1;
}
.hero-stat-label {
  font-size: 12px;
  color: rgba(255,255,255,0.7);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 4px;
}
.hero-image-card {
  position: relative;
  z-index: 2;
}
.hero-floating-card {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  border-radius: var(--radius);
  padding: 20px 24px;
  box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 14px;
  position: absolute;
  animation: floatCard 3s ease-in-out infinite alternate;
}
@keyframes floatCard {
  from { transform: translateY(0px); }
  to { transform: translateY(-8px); }
}
.hero-fc-1 { bottom: 20%; right: -20px; }
.hero-fc-2 { top: 20%; left: -20px; animation-delay: 1.5s; }
.fc-icon { width: 44px; height: 44px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 20px; }
.fc-icon.green { background: var(--green-pale); color: var(--green); }
.fc-icon.orange { background: #fff3e0; color: var(--orange); }
.fc-text strong { font-size: 15px; font-weight: 700; color: var(--text-dark); display: block; }
.fc-text span { font-size: 12px; color: var(--text-light); }
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.scroll-dot {
  width: 30px; height: 50px;
  border: 2px solid rgba(255,255,255,0.5);
  border-radius: 50px;
  display: flex; justify-content: center; padding-top: 8px;
}
.scroll-dot::before {
  content: '';
  width: 4px; height: 10px;
  background: white;
  border-radius: 10px;
  animation: scrollBounce 2s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(12px); opacity: 0.3; }
}
.scroll-text { font-size: 11px; letter-spacing: 2px; color: rgba(255,255,255,0.6); text-transform: uppercase; }

/* ========== SVG DIVIDER ========== */
.divider-svg { display: block; margin-top: -2px; }

/* ========== SECTION HEADER ========== */
.section-header { text-align: center; margin-bottom: 60px; }
.section-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--green);
  background: var(--green-pale);
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(32px, 4vw,32px);
  font-weight: 900;
  color: var(--text-dark);
  line-height: 1.15;
  margin-bottom: 16px;
}
.section-title span { color: var(--green); }
.section-sub {
  font-size: 16px;
  color: var(--text-light);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}
.divider-leaf {
  width: 60px; height: 3px;
  background: linear-gradient(90deg, var(--green), var(--orange-light));
  border-radius: 10px;
  margin: 20px auto 0;
}

/* ========== ABOUT ========== */
#about { background: var(--cream); }
.about-img-wrap {
  position: relative;
  display: inline-block;
}
.about-img {
  border-radius: var(--radius-lg);
  width: 100%;
  box-shadow: var(--shadow-lg);
  object-fit: cover;
 
}
.about-badge-float {
  position: absolute;
  bottom: 30px;
  right: -20px;
  background: white;
  border-radius: var(--radius);
  padding: 16px 20px;
  box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: 12px;
}
.about-badge-float .icon-box { width: 44px; height: 44px; background: var(--green-pale); border-radius: 12px; display: flex; align-items: center; justify-content: center; color: var(--green); font-size: 20px; }
.cert-badges { display: flex; gap: 10px; flex-wrap: wrap; margin: 24px 0; }
.cert-badge {
  display: flex; align-items: center; gap: 8px;
  background: var(--green-pale);
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 50px;
  border: 1px solid rgba(58,140,63,0.2);
}
.cert-badge i { font-size: 14px; }
.counter-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 32px; }
.counter-item {
  text-align: center;
  background: white;
  border-radius: var(--radius);
  padding: 24px 16px;
  box-shadow: var(--shadow-sm);
  border-bottom: 3px solid var(--green-light);
}
.counter-num {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 900;
  color: var(--green-dark);
  line-height: 1;
}
.counter-label { font-size: 12px; color: var(--text-light); margin-top: 6px; letter-spacing: 0.5px; }
.progress-item { margin-bottom: 20px; }
.progress-label { display: flex; justify-content: space-between; font-size: 13px; font-weight: 600; color: var(--text-dark); margin-bottom: 8px; }
.progress-bar-track { height: 8px; background: #e8e8e8; border-radius: 10px; overflow: hidden; }
.progress-bar-fill { height: 100%; border-radius: 10px; background: linear-gradient(90deg, var(--green), var(--green-light)); width: 0; transition: width 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94); }

/* ========== SERVICES ========== */
#services { background: var(--white); }
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 30px;
  text-align: center;
  border: 1px solid #f0f0f0;
  transition: var(--transition);
  height: 100%;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--green-pale), transparent);
  opacity: 0;
  transition: var(--transition);
}
.service-card:hover { transform: translateY(-8px); box-shadow: 0 20px 60px rgba(58,140,63,0.15); border-color: var(--green-light); }
.service-card:hover::before { opacity: 1; }
.service-card:hover .svc-icon { transform: scale(1.1); background: var(--green); }
.service-card:hover .svc-icon i { color: white; }
.svc-icon {
  width: 72px; height: 72px;
  border-radius: 20px;
  background: var(--green-pale);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  transition: var(--transition);
  position: relative; z-index: 1;
}
.svc-icon i { font-size: 28px; color: var(--green); transition: var(--transition); }
.svc-title { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 700; color: var(--text-dark); margin-bottom: 12px; position: relative; z-index: 1; }
.svc-desc { font-size: 14px; color: var(--text-light); line-height: 1.7; position: relative; z-index: 1; }
.svc-link { font-size: 13px; font-weight: 600; color: var(--green); text-decoration: none; margin-top: 16px; display: inline-flex; align-items: center; gap: 6px; transition: var(--transition); position: relative; z-index: 1; }
.svc-link:hover { gap: 10px; color: var(--green-dark); }

/* ========== PRICING ========== */
#pricing { background: var(--cream); }
.pricing-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  border: 2px solid transparent;
  transition: var(--transition);
  height: 100%;
  position: relative;
  overflow: hidden;
}
.pricing-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.pricing-card.popular {
  border-color: var(--green);
  transform: scale(1.04);
  box-shadow: 0 25px 60px rgba(58,140,63,0.2);
}
.popular-badge {
  position: absolute; top: -1px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(90deg, var(--green), var(--green-light));
  color: white;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 24px;
  border-radius: 0 0 12px 12px;
}
.pricing-plan-name { font-size: 13px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--green); margin-bottom: 8px; }
.pricing-price { font-family: 'Playfair Display', serif; font-size: 56px; font-weight: 900; color: var(--text-dark); line-height: 1; }
.pricing-price sup { font-size: 24px; vertical-align: top; margin-top: 12px; display: inline-block; }
.pricing-period { font-size: 14px; color: var(--text-light); margin-bottom: 32px; }
.pricing-features { list-style: none; padding: 0; margin-bottom: 32px; }
.pricing-features li { font-size: 14px; color: var(--text-mid); padding: 10px 0; border-bottom: 1px solid #f5f5f5; display: flex; align-items: center; gap: 10px; }
.pricing-features li i { color: var(--green); font-size: 14px; }
.pricing-features li.disabled { color: #c0c0c0; }
.pricing-features li.disabled i { color: #d0d0d0; }
.btn-pricing {
  display: block; width: 100%;
  background: var(--green-pale);
  color: var(--green-dark);
  border: none;
  padding: 14px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  transition: var(--transition);
  text-decoration: none; text-align: center;
}
.btn-pricing:hover, .pricing-card.popular .btn-pricing {
  background: linear-gradient(135deg, var(--green), var(--green-light));
  color: white;
  box-shadow: 0 8px 30px rgba(58,140,63,0.4);
  transform: translateY(-1px);
}

/* ========== RECIPES / BLOG ========== */
#recipes { background: white; }
.recipe-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
}
.recipe-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.recipe-img-wrap { position: relative; overflow: hidden; height: 275px; }
.recipe-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; filter: grayscale(30%); }
.recipe-card:hover .recipe-img-wrap img { transform: scale(1.08); filter: grayscale(0%); }
.recipe-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(27,94,32,0.85) 0%, transparent 60%);
  opacity: 0; transition: var(--transition);
  display: flex; align-items: flex-end; justify-content: center; padding-bottom: 20px;
}
.recipe-card:hover .recipe-overlay { opacity: 1; }
.recipe-overlay a { color: white; font-size: 13px; font-weight: 600; letter-spacing: 1px; text-decoration: none; border: 1px solid rgba(255,255,255,0.5); padding: 8px 20px; border-radius: 50px; }
.recipe-body { padding: 24px; background: white; }
.recipe-cat { font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--orange); margin-bottom: 8px; }
.recipe-title { font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 700; color: var(--text-dark); margin-bottom: 10px; line-height: 1.3; }
.recipe-meta { display: flex; gap: 16px; font-size: 12px; color: var(--text-light); }
.recipe-meta span { display: flex; align-items: center; gap: 4px; }

/* ========== TESTIMONIALS ========== */
#testimonials { background: var(--cream); }
.swiper-testimonials { padding-bottom: 50px !important; }
.testimonial-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
  margin: 10px;
}
.stars { color: #ffc107; font-size: 14px; margin-bottom: 16px; }
.testimonial-text { font-size: 15px; color: var(--text-mid); line-height: 1.8; font-style: italic; margin-bottom: 24px; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.t-avatar { width: 50px; height: 50px; border-radius: 50%; object-fit: cover; border: 3px solid var(--green-pale); }
.t-name { font-weight: 700; font-size: 15px; color: var(--text-dark); }
.t-role { font-size: 12px; color: var(--text-light); }
.before-after {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.ba-label {
  position: absolute; top: 12px; left: 12px;
  background: rgba(0,0,0,0.6);
  color: white;
  font-size: 11px; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  padding: 4px 12px; border-radius: 50px;
}
.swiper-pagination-bullet-active { background: var(--green) !important; }
.swiper-button-next, .swiper-button-prev { color: var(--green) !important; }

/* ========== STATS ========== */
#stats {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 50%, #2e7d32 100%);
  position: relative;
  overflow: hidden;
}
#stats::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.stat-item { text-align: center; position: relative; z-index: 1; }
.stat-icon { font-size: 36px; color: rgba(255,255,255,0.4); margin-bottom: 12px; }
.stat-num { font-family: 'Playfair Display', serif; font-size: 56px; font-weight: 900; color: white; line-height: 1; }
.stat-label { font-size: 14px; color: rgba(255,255,255,0.75); margin-top: 8px; letter-spacing: 0.5px; }
.stat-divider { width: 1px; background: rgba(255,255,255,0.15); }

/* ========== CONTACT ========== */
#contact { background: white; }
.form-floating-custom { position: relative; margin-bottom: 20px; }
.form-floating-custom input,
.form-floating-custom textarea,
.form-floating-custom select {
  width: 100%;
  padding: 20px 16px 8px;
  border: 2px solid #e8e8e8;
  border-radius: var(--radius);
  font-size: 14px;
  font-family: 'Poppins', sans-serif;
  outline: none;
  background: var(--cream);
  transition: var(--transition);
  color: var(--text-dark);
}
.form-floating-custom input:focus,
.form-floating-custom textarea:focus,
.form-floating-custom select:focus {
  border-color: var(--green);
  background: white;
  box-shadow: 0 0 0 4px rgba(58,140,63,0.08);
}
.form-floating-custom label {
  position: absolute; top: 14px; left: 16px;
  font-size: 13px; color: var(--text-light);
  transition: var(--transition);
  pointer-events: none;
}
.form-floating-custom input:focus + label,
.form-floating-custom input:not(:placeholder-shown) + label,
.form-floating-custom textarea:focus + label,
.form-floating-custom textarea:not(:placeholder-shown) + label {
  top: 6px; font-size: 11px; color: var(--green); font-weight: 600;
}
.form-floating-custom textarea { resize: vertical; min-height: 120px; }
.btn-submit {
  background: linear-gradient(135deg, var(--green), var(--green-light));
  color: white;
  border: none;
  padding: 16px 40px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: var(--transition);
  cursor: pointer;
  box-shadow: 0 8px 30px rgba(58,140,63,0.4);
}
.btn-submit:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(58,140,63,0.5); }
.contact-info-item { display: flex; gap: 16px; margin-bottom: 28px; align-items: flex-start; }
.ci-icon { width: 48px; height: 48px; background: var(--green-pale); border-radius: 14px; display: flex; align-items: center; justify-content: center; color: var(--green); font-size: 18px; flex-shrink: 0; }
.ci-label { font-size: 11px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: var(--text-light); }
.ci-val { font-size: 15px; font-weight: 600; color: var(--text-dark); margin-top: 2px; }
.map-embed { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); }

/* ========== FOOTER ========== */
footer {
  position: relative;
  background: linear-gradient(135deg, #0f172a, #111827 60%, #0b1120);
  color: rgba(255,255,255,0.75);
  padding: 90px 0 0;
  overflow: hidden;
}

/* Decorative Top Gradient Line */
footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--green), var(--green-light));
}

/* Brand */
.footer-brand {
  font-family: 'Playfair Display', serif;
  font-size: 30px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 18px;
  letter-spacing: 1px;
}

.footer-brand span {
  color: var(--green-light);
  text-shadow: 0 0 12px rgba(34,197,94,0.6);
}

.footer-desc {
  font-size: 14px;
  line-height: 1.8;
  max-width: 320px;
  color: rgba(255,255,255,0.65);
}

/* Section Titles */
.footer-title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 22px;
  position: relative;
}

.footer-title::after {
  content: "";
  width: 35px;
  height: 2px;
  background: var(--green);
  position: absolute;
  left: 0;
  bottom: -8px;
}

/* Links */
.footer-links {
  list-style: none;
  padding: 0;
}

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

.footer-links a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s ease;
  display: inline-block;
}

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

/* Social Links */
.social-links {
  display: flex;
  gap: 12px;
  margin-top: 25px;
}

.social-link {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 16px;
  transition: 0.3s ease;
  border: 1px solid rgba(255,255,255,0.08);
}

.social-link:hover {
  background: var(--green);
  color: #fff;
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(34,197,94,0.4);
}

/* Newsletter */
.newsletter-form {
  display: flex;
  margin-top: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
  border-radius: 50px;
  overflow: hidden;
}

.newsletter-form input {
  flex: 1;
  padding: 14px 20px;
  border: none;
  background: rgba(255,255,255,0.07);
  color: white;
  font-size: 13px;
  outline: none;
}

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

.newsletter-form button {
  background: linear-gradient(90deg, var(--green), var(--green-light));
  color: white;
  border: none;
  padding: 0 24px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s ease;
}

.newsletter-form button:hover {
  opacity: 0.9;
}

/* Bottom Bar */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 28px 0;
  margin-top: 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  flex-wrap: wrap;
  gap: 15px;
}

.footer-bottom a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: 0.3s ease;
}

.footer-bottom a:hover {
  color: var(--green-light);
}

/* Responsive */
@media (max-width: 768px) {
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .newsletter-form {
    flex-direction: column;
    border-radius: 20px;
  }

  .newsletter-form input,
  .newsletter-form button {
    width: 100%;
    border-radius: 0;
  }

  .newsletter-form button {
    padding: 14px;
  }
}

/* ========== SCROLL-TO-TOP ========== */
#scrollTop {
  position: fixed; bottom: 30px; right: 30px;
  width: 46px; height: 46px;
  background: linear-gradient(135deg, var(--green), var(--green-light));
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 16px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 20px rgba(58,140,63,0.4);
  opacity: 0; visibility: hidden;
  transition: var(--transition);
  z-index: 999;
}
#scrollTop.visible { opacity: 1; visibility: visible; }
#scrollTop:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(58,140,63,0.5); }

/* ========== BOOK NOW FLOATING ========== */
#floatingBook {
  position: fixed; bottom: 90px; right: 30px;
  background: var(--orange);
  color: white;
  padding: 12px 22px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(244,132,95,0.5);
  transition: var(--transition);
  z-index: 999;
  display: flex; align-items: center; gap: 8px;
}
#floatingBook:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 10px 32px rgba(244,132,95,0.6); color: white; }
#floatingBook i { font-size: 14px; }

/* ========== RESPONSIVE ========== */
@media (max-width: 991px) {
  .section-pad { padding: 70px 0; }
  .hero-stats { flex-wrap: wrap; gap: 24px; }
  .counter-grid { grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .pricing-card.popular { transform: none; }
  .stat-divider { display: none; }
  .about-badge-float { right: 10px; }
  .hero-fc-1, .hero-fc-2 { display: none; }
}
@media (max-width: 767px) {
  .counter-grid { grid-template-columns: repeat(1, 1fr); }
  .hero-stats { gap: 20px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  #floatingBook { display: none; }
}

 /* ========== BLOG DETAIL STYLES ========== */
    .blog-detail-hero {
      position: relative;
      min-height: 70vh;
      display: flex;
      align-items: center;
      overflow: hidden;
      background: url('https://images.unsplash.com/photo-1490645935967-10de6ba17061?w=1920&q=80') center/cover no-repeat;
    }
    .blog-detail-hero .hero-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(135deg, rgba(27,94,32,0.85) 0%, rgba(0,0,0,0.4) 80%);
    }
    .blog-detail-hero .hero-content { position: relative; z-index: 2; }
    .blog-detail-hero .hero-title {
      font-size: clamp(36px, 5vw, 36px);
      font-weight: 900;
      color: white;
      line-height: 1.2;
      margin-bottom: 20px;
    }
    .blog-detail-meta {
      display: flex;
      gap: 20px;
      color: rgba(255,255,255,0.8);
      font-size: 14px;
      flex-wrap: wrap;
    }
    .blog-detail-meta span i { margin-right: 6px; color: var(--orange-light); }

    .article-content {
      font-size: 16px;
      line-height: 1.8;
      color: var(--text-mid);
    }
    .article-content h2 {
      font-size: 28px;
      font-weight: 700;
      color: var(--text-dark);
      margin: 40px 0 20px;
    }
    .article-content h3 {
      font-size: 22px;
      font-weight: 600;
      color: var(--text-dark);
      margin: 30px 0 15px;
    }
    .article-content p {
      margin-bottom: 20px;
    }
    .article-content blockquote {
      background: var(--green-pale);
      padding: 30px;
      border-radius: var(--radius);
      font-style: italic;
      font-size: 18px;
      color: var(--text-dark);
      margin: 30px 0;
      position: relative;
      border-left: 5px solid var(--green);
    }
    .article-content blockquote::before {
      content: '\201C';
      font-family: 'Playfair Display', serif;
      font-size: 60px;
      color: var(--green);
      opacity: 0.3;
      position: absolute;
      top: 10px;
      left: 20px;
    }
    .article-content img {
      border-radius: var(--radius);
      margin: 30px 0;
      width: 100%;
      box-shadow: var(--shadow-md);
    }
    .article-content ul, .article-content ol {
      margin-bottom: 20px;
      padding-left: 20px;
    }
    .article-content li {
      margin-bottom: 8px;
    }

    .author-box {
      background: var(--cream);
      border-radius: var(--radius-lg);
      padding: 40px;
      margin: 50px 0;
      display: flex;
      gap: 30px;
      align-items: center;
      flex-wrap: wrap;
    }
    .author-avatar {
      width: 100px;
      height: 100px;
      border-radius: 50%;
      object-fit: cover;
      border: 4px solid var(--green-pale);
    }
    .author-info h4 {
      font-family: 'Playfair Display', serif;
      font-size: 20px;
      font-weight: 700;
      margin-bottom: 8px;
    }
    .author-info p {
      color: var(--text-mid);
      margin-bottom: 15px;
    }
    .author-social a {
      color: var(--green);
      font-size: 16px;
      margin-right: 15px;
      transition: var(--transition);
    }
    .author-social a:hover { color: var(--green-dark); }

    .comment {
      display: flex;
      gap: 20px;
      margin-bottom: 30px;
      padding-bottom: 30px;
      border-bottom: 1px solid #eee;
    }
    .comment-avatar {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      object-fit: cover;
      flex-shrink: 0;
    }
    .comment-content {
      flex: 1;
    }
    .comment-author {
      font-weight: 600;
      color: var(--text-dark);
      margin-bottom: 4px;
    }
    .comment-date {
      font-size: 12px;
      color: var(--text-light);
      margin-bottom: 10px;
    }
    .comment-text {
      font-size: 14px;
      color: var(--text-mid);
      line-height: 1.7;
    }
    .comment-reply {
      margin-top: 10px;
      font-size: 13px;
      font-weight: 600;
      color: var(--green);
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 5px;
    }
    .comment-reply:hover { color: var(--green-dark); }

    .comment-form textarea,
    .comment-form input {
      width: 100%;
      padding: 14px 18px;
      border: 2px solid #e8e8e8;
      border-radius: var(--radius);
      font-size: 14px;
      transition: var(--transition);
      margin-bottom: 15px;
    }
    .comment-form textarea:focus,
    .comment-form input:focus {
      border-color: var(--green);
      box-shadow: 0 0 0 4px rgba(58,140,63,0.08);
      outline: none;
    }
    .comment-form button {
      background: linear-gradient(135deg, var(--green), var(--green-light));
      color: white;
      border: none;
      padding: 12px 32px;
      border-radius: 50px;
      font-size: 14px;
      font-weight: 600;
      cursor: pointer;
      transition: var(--transition);
      box-shadow: 0 8px 20px rgba(58,140,63,0.3);
    }
    .comment-form button:hover {
      transform: translateY(-2px);
      box-shadow: 0 12px 30px rgba(58,140,63,0.4);
    }

    /* Sidebar widgets (reused from blog listing) */
    .sidebar-widget {
      background: white;
      border-radius: var(--radius);
      padding: 30px;
      box-shadow: var(--shadow-sm);
      margin-bottom: 30px;
    }
    .sidebar-title {
      font-family: 'Playfair Display', serif;
      font-size: 20px;
      font-weight: 700;
      color: var(--text-dark);
      margin-bottom: 20px;
      position: relative;
      padding-bottom: 10px;
    }
    .sidebar-title::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 40px;
      height: 3px;
      background: linear-gradient(90deg, var(--green), var(--green-light));
      border-radius: 10px;
    }
    .category-list {
      list-style: none;
      padding: 0;
      margin: 0;
    }
    .category-list li {
      margin-bottom: 12px;
    }
    .category-list a {
      color: var(--text-mid);
      text-decoration: none;
      font-size: 15px;
      transition: var(--transition);
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    .category-list a:hover {
      color: var(--green);
      padding-left: 5px;
    }
    .category-list .count {
      background: var(--green-pale);
      color: var(--green-dark);
      padding: 2px 8px;
      border-radius: 50px;
      font-size: 11px;
      font-weight: 600;
    }
    .popular-post {
      display: flex;
      gap: 15px;
      margin-bottom: 20px;
      align-items: center;
    }
    .popular-post img {
      width: 70px;
      height: 70px;
      border-radius: var(--radius);
      object-fit: cover;
    }
    .popular-post h5 {
      font-size: 15px;
      font-weight: 600;
      margin-bottom: 5px;
    }
    .popular-post h5 a {
      color: var(--text-dark);
      text-decoration: none;
      transition: var(--transition);
    }
    .popular-post h5 a:hover { color: var(--green); }
    .popular-post span {
      font-size: 12px;
      color: var(--text-light);
    }
    .tag-cloud {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }
    .tag {
      background: var(--green-pale);
      color: var(--green-dark);
      font-size: 12px;
      font-weight: 600;
      padding: 6px 14px;
      border-radius: 50px;
      text-decoration: none;
      transition: var(--transition);
    }
    .tag:hover {
      background: var(--green);
      color: white;
      transform: translateY(-2px);
    }
       /* ========== PRIVACY CONTENT ========== */
    .privacy-content {
      font-size: 15px;
      line-height: 1.8;
      color: var(--text-mid);
    }
    .privacy-content h2 {
      font-size: 24px;
      font-weight: 700;
      color: var(--text-dark);
      margin: 40px 0 20px;
      font-family: 'Playfair Display', serif;
    }
    .privacy-content h3 {
      font-size: 20px;
      font-weight: 600;
      color: var(--text-dark);
      margin: 30px 0 15px;
    }
    .privacy-content p {
      margin-bottom: 20px;
    }
    .privacy-content ul, .privacy-content ol {
      margin-bottom: 20px;
      padding-left: 20px;
    }
    .privacy-content li {
      margin-bottom: 8px;
    }
    .privacy-content a {
      color: var(--green);
      text-decoration: none;
    }
    .privacy-content a:hover {
      text-decoration: underline;
    }

      /* ========== TERMS CONTENT ========== */
    .terms-content {
      font-size: 15px;
      line-height: 1.8;
      color: var(--text-mid);
    }
    .terms-content h2 {
      font-size: 24px;
      font-weight: 700;
      color: var(--text-dark);
      margin: 40px 0 20px;
      font-family: 'Playfair Display', serif;
    }
    .terms-content h3 {
      font-size: 20px;
      font-weight: 600;
      color: var(--text-dark);
      margin: 30px 0 15px;
    }
    .terms-content p {
      margin-bottom: 20px;
    }
    .terms-content ul, .terms-content ol {
      margin-bottom: 20px;
      padding-left: 20px;
    }
    .terms-content li {
      margin-bottom: 8px;
    }
    .terms-content a {
      color: var(--green);
      text-decoration: none;
    }
    .terms-content a:hover {
      text-decoration: underline;
    }
     /* ========== FAQ ACCORDION STYLES (same as program pages) ========== */
    .accordion-item {
      border: none;
      margin-bottom: 16px;
      box-shadow: var(--shadow-sm);
      border-radius: var(--radius) !important;
      overflow: hidden;
    }
    .accordion-button {
      font-weight: 600;
      color: var(--text-dark);
      background: white;
      border-radius: var(--radius) !important;
      box-shadow: none !important;
      padding: 20px 24px;
    }
    .accordion-button:not(.collapsed) {
      background: var(--green-pale);
      color: var(--green-dark);
    }
    .accordion-button:focus {
      box-shadow: none;
      border-color: transparent;
    }
    .accordion-button::after {
      background-size: 1.2rem;
      transition: var(--transition);
    }
    .accordion-body {
      padding: 20px 24px;
      background: white;
      color: var(--text-mid);
      font-size: 15px;
      line-height: 1.7;
    }
 /* ========== BLOG HERO ========== */
    .blog-hero {
      position: relative;
      min-height: 60vh;
      display: flex;
      align-items: center;
      overflow: hidden;
      background: url('https://images.unsplash.com/photo-1499750310107-5fef28a66643?w=1920&q=80') center/cover no-repeat;
    }
    .blog-hero .hero-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(135deg, rgba(27,94,32,0.85) 0%, rgba(0,0,0,0.4) 80%);
    }
    .blog-hero .hero-content { position: relative; z-index: 2; }
    .blog-hero .hero-title {
      font-size: clamp(42px, 6vw, 34px);
      font-weight: 900;
      color: white;
      line-height: 1.1;
      margin-bottom: 20px;
    }
    .blog-hero .hero-sub {
      font-size: 18px;
      color: rgba(255,255,255,0.9);
      max-width: 600px;
      line-height: 1.6;
      margin-bottom: 30px;
    }

    /* ========== BLOG CARD (reusing recipe-card styles) ========== */
    .blog-card {
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: var(--shadow-sm);
      transition: var(--transition);
      height: 100%;
      background: white;
    }
    .blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
    .blog-img-wrap {
      position: relative;
      overflow: hidden;
      height: 320px;
    }
    .blog-img-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.6s ease;
      filter: grayscale(30%);
    }
    .blog-card:hover .blog-img-wrap img { transform: scale(1.08); filter: grayscale(0%); }
    .blog-body { padding: 24px; background: white; }
    .blog-cat {
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--orange);
      margin-bottom: 8px;
    }
    .blog-title {
      font-family: 'Playfair Display', serif;
      font-size: 18px;
      font-weight: 700;
      color: var(--text-dark);
      margin-bottom: 10px;
      line-height: 1.3;
    }
    .blog-meta {
      display: flex;
      gap: 16px;
      font-size: 12px;
      color: var(--text-light);
      margin-bottom: 12px;
    }
    .blog-meta span { display: flex; align-items: center; gap: 4px; }
    .blog-excerpt {
      font-size: 14px;
      color: var(--text-mid);
      line-height: 1.6;
      margin-bottom: 16px;
    }
    .blog-link {
      font-size: 13px;
      font-weight: 600;
      color: var(--green);
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      transition: var(--transition);
    }
    .blog-link:hover { gap: 10px; color: var(--green-dark); }

    /* ========== SIDEBAR ========== */
    .sidebar-widget {
      background: white;
      border-radius: var(--radius);
      padding: 30px;
      box-shadow: var(--shadow-sm);
      margin-bottom: 30px;
    }
    .sidebar-title {
      font-family: 'Playfair Display', serif;
      font-size: 20px;
      font-weight: 700;
      color: var(--text-dark);
      margin-bottom: 20px;
      position: relative;
      padding-bottom: 10px;
    }
    .sidebar-title::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 40px;
      height: 3px;
      background: linear-gradient(90deg, var(--green), var(--green-light));
      border-radius: 10px;
    }
    .category-list {
      list-style: none;
      padding: 0;
      margin: 0;
    }
    .category-list li {
      margin-bottom: 12px;
    }
    .category-list a {
      color: var(--text-mid);
      text-decoration: none;
      font-size: 15px;
      transition: var(--transition);
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    .category-list a:hover {
      color: var(--green);
      padding-left: 5px;
    }
    .category-list .count {
      background: var(--green-pale);
      color: var(--green-dark);
      padding: 2px 8px;
      border-radius: 50px;
      font-size: 11px;
      font-weight: 600;
    }
    .search-form {
      display: flex;
      gap: 10px;
    }
    .search-form input {
      flex: 1;
      padding: 12px 16px;
      border: 2px solid #e8e8e8;
      border-radius: 50px;
      font-size: 14px;
      outline: none;
      transition: var(--transition);
    }
    .search-form input:focus {
      border-color: var(--green);
      box-shadow: 0 0 0 4px rgba(58,140,63,0.08);
    }
    .search-form button {
      width: 48px;
      height: 48px;
      background: linear-gradient(135deg, var(--green), var(--green-light));
      color: white;
      border: none;
      border-radius: 50%;
      font-size: 16px;
      cursor: pointer;
      transition: var(--transition);
      box-shadow: 0 4px 15px rgba(58,140,63,0.3);
    }
    .search-form button:hover {
      transform: scale(1.05);
      box-shadow: 0 8px 20px rgba(58,140,63,0.4);
    }
    .tag-cloud {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }
    .tag {
      background: var(--green-pale);
      color: var(--green-dark);
      font-size: 12px;
      font-weight: 600;
      padding: 6px 14px;
      border-radius: 50px;
      text-decoration: none;
      transition: var(--transition);
    }
    .tag:hover {
      background: var(--green);
      color: white;
      transform: translateY(-2px);
    }

    /* ========== PAGINATION ========== */
    .pagination {
      display: flex;
      justify-content: center;
      gap: 8px;
      margin-top: 50px;
    }
    .page-link {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 44px;
      height: 44px;
      background: white;
      border-radius: 50%;
      color: var(--text-mid);
      font-weight: 600;
      text-decoration: none;
      box-shadow: var(--shadow-sm);
      transition: var(--transition);
    }
    .page-link:hover, .page-link.active {
      background: linear-gradient(135deg, var(--green), var(--green-light));
      color: white;
      box-shadow: 0 8px 20px rgba(58,140,63,0.3);
      transform: translateY(-2px);
    }
  .footer-bottom a{color:rgba(255,255,255,0.5); text-decoration:none; font-size:13px;}

