@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;800&family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
  --primary: #492f22;
  --primary-dark: #321f16;
  --primary-light: #6b4535;
  --secondary: #fecb00;
  --secondary-dark: #e5b600;
  --secondary-light: #ffe066;
  --white: #ffffff;
  --light-bg: #fdf8f0;
  --light-gray: #f5f0e8;
  --text-dark: #2c1a10;
  --text-muted: #8a7060;
  --border-color: #e8d5c4;
  --shadow: 0 4px 20px rgba(73, 47, 34, 0.12);
  --shadow-hover: 0 8px 40px rgba(73, 47, 34, 0.22);
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --radius: 12px;
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Poppins', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background-color: var(--white);
  font-size: 15px;
  line-height: 1.7;
  overflow-x: hidden;
}

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

a { color: var(--primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--secondary-dark); }

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

/* ---- SCROLLBAR ---- */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--light-bg); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 4px; }

/* ---- PRELOADER ---- */
#preloader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--primary);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
#preloader.hidden { opacity: 0; visibility: hidden; }
.preloader-waffle {
  width: 70px; height: 70px;
  border: 5px solid rgba(254,203,0,0.2);
  border-top-color: var(--secondary);
  border-radius: 50%;
  animation: spin 0.85s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ---- TOP BAR ---- */
.top-bar {
  background: var(--primary);
  color: rgba(255,255,255,0.85);
  font-size: 13px;
  padding: 8px 0;
  border-bottom: 2px solid var(--secondary);
}
.top-bar a { color: var(--secondary); }
.top-bar a:hover { color: var(--white); }
.top-bar .top-bar-links a { margin-left: 18px; }
.top-bar .social-icons a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 28px;
  background: rgba(254,203,0,0.15);
  border-radius: 50%;
  color: var(--secondary);
  margin-left: 6px;
  font-size: 12px;
  transition: var(--transition);
}
.top-bar .social-icons a:hover {
  background: var(--secondary);
  color: var(--primary);
  transform: translateY(-2px);
}

/* ---- NAVBAR ---- */
.navbar {
  background: var(--white) !important;
  box-shadow: 0 2px 20px rgba(73,47,34,0.10);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: var(--transition);
}
.navbar.scrolled {
  box-shadow: 0 4px 30px rgba(73,47,34,0.18);
}
.navbar-brand {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 0;
}
.navbar-brand img {
  width: 55px; height: 55px;
  border-radius: 50%;
  border: 2px solid var(--secondary);
  object-fit: cover;
}
.navbar-brand .brand-text { line-height: 1.2; }
.navbar-brand .brand-name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--primary);
  display: block;
}
.navbar-brand .brand-tagline {
  font-size: 10px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  display: block;
}

.navbar-nav .nav-link {
  font-weight: 500;
  font-size: 14px;
  color: var(--primary) !important;
  padding: 28px 14px !important;
  position: relative;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  font-size: 13px;
}
.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%; right: 50%;
  height: 3px;
  background: var(--secondary);
  border-radius: 2px 2px 0 0;
  transition: var(--transition);
}
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after { left: 0; right: 0; }
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active { color: var(--primary-dark) !important; }

.dropdown-menu {
  border: none;
  box-shadow: 0 10px 40px rgba(73,47,34,0.15);
  border-radius: var(--radius);
  border-top: 3px solid var(--secondary);
  padding: 8px 0;
  min-width: 220px;
  animation: dropIn 0.25s ease;
}
@keyframes dropIn { from { opacity:0; transform:translateY(-10px); } to { opacity:1; transform:translateY(0); } }

.dropdown-item {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--primary);
  padding: 10px 20px;
  display: flex; align-items: center; gap: 10px;
  transition: var(--transition);
}
.dropdown-item i { color: var(--secondary); font-size: 15px; width: 18px; }
.dropdown-item:hover {
  background: var(--light-bg);
  color: var(--primary-dark);
  padding-left: 26px;
}

.navbar-toggler {
  border: 2px solid var(--primary);
  border-radius: 6px;
  padding: 6px 10px;
}
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23492f22' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ---- BUTTONS ---- */
.btn-primary-custom {
  background: var(--secondary);
  color: var(--primary) !important;
  border: 2px solid var(--secondary);
  padding: 12px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: var(--transition);
  display: inline-flex; align-items: center; gap: 8px;
  cursor: pointer;
}
.btn-primary-custom:hover {
  background: var(--primary);
  color: var(--secondary) !important;
  border-color: var(--secondary) !important;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(73,47,34,0.3);
}

.btn-outline-custom {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
  padding: 12px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  transition: var(--transition);
  display: inline-flex; align-items: center; gap: 8px;
  cursor: pointer;
}
.btn-outline-custom:hover {
  background: var(--white);
  color: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255,255,255,0.3);
}

.btn-secondary-custom {
  background: var(--primary);
  color: var(--white);
  border: 2px solid var(--primary);
  padding: 12px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  transition: var(--transition);
  display: inline-flex; align-items: center; gap: 8px;
  cursor: pointer;
}
.btn-secondary-custom:hover {
  background: var(--secondary);
  color: var(--primary);
  border-color: var(--secondary);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(254,203,0,0.4);
}

/* ---- SECTION HEADERS ---- */
.section-badge {
  display: inline-block;
  background: var(--secondary);
  color: var(--primary);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 5px 18px;
  border-radius: 50px;
  margin-bottom: 14px;
}
.section-title {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 16px;
}
.section-title span { color: var(--secondary-dark); }
.section-subtitle {
  color: var(--text-muted);
  font-size: 15.5px;
  max-width: 580px;
  margin: 0 auto;
}
.section-divider {
  display: flex; align-items: center; gap: 10px;
  margin: 18px auto 0;
  width: fit-content;
}
.section-divider::before,
.section-divider::after {
  content: '';
  width: 50px; height: 2px;
  background: var(--secondary);
}
.section-divider .diamond {
  width: 10px; height: 10px;
  background: var(--primary);
  transform: rotate(45deg);
}

/* ---- HERO SLIDER ---- */
#heroSlider { position: relative; }
.hero-slide {
  position: relative;
  min-height: 90vh;
  display: flex; align-items: center;
  overflow: hidden;
}
.hero-slide::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(73,47,34,0.88) 0%, rgba(73,47,34,0.55) 55%, rgba(73,47,34,0.15) 100%);
  z-index: 1;
}
.hero-slide img.slide-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 8s ease;
}
.carousel-item.active .slide-bg { transform: scale(1.07); }
.hero-content {
  position: relative; z-index: 2;
  padding: 80px 0;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(254,203,0,0.18);
  border: 1px solid rgba(254,203,0,0.45);
  color: var(--secondary);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 24px;
  backdrop-filter: blur(8px);
}
.hero-badge .dot { width: 7px; height: 7px; background: var(--secondary); border-radius: 50%; animation: pulse 1.5s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.4;transform:scale(1.4)} }

.hero-title {
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.15;
}
.hero-title .highlight {
  color: var(--secondary);
  display: block;
}
.hero-desc {
  color: rgba(255,255,255,0.85);
  font-size: 16.5px;
  max-width: 560px;
  margin-bottom: 36px;
  line-height: 1.8;
}
.hero-stats {
  display: flex; gap: 36px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.18);
}
.hero-stat .num {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--secondary);
  line-height: 1;
}
.hero-stat .lbl {
  font-size: 12px;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

.carousel-indicators button {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  border: none;
  transition: var(--transition);
}
.carousel-indicators button.active {
  background: var(--secondary);
  width: 30px;
  border-radius: 5px;
}
.carousel-control-prev,
.carousel-control-next {
  width: 55px; height: 55px;
  background: rgba(254,203,0,0.2);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  border: 2px solid rgba(254,203,0,0.4);
  backdrop-filter: blur(6px);
  opacity: 1;
  transition: var(--transition);
}
.carousel-control-prev { left: 30px; }
.carousel-control-next { right: 30px; }
.carousel-control-prev:hover,
.carousel-control-next:hover {
  background: var(--secondary);
  border-color: var(--secondary);
}
.carousel-control-prev-icon,
.carousel-control-next-icon { width: 22px; height: 22px; }

/* ---- FEATURES STRIP ---- */
.features-strip {
  background: var(--primary);
  padding: 22px 0;
}
.feature-item {
  display: flex; align-items: center; gap: 14px;
  color: var(--white);
  padding: 8px 24px;
  border-right: 1px solid rgba(255,255,255,0.15);
}
.feature-item:last-child { border-right: none; }
.feature-item .icon {
  width: 44px; height: 44px;
  background: rgba(254,203,0,0.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  color: var(--secondary);
  flex-shrink: 0;
}
.feature-item .text strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
}
.feature-item .text span {
  font-size: 12px;
  color: rgba(255,255,255,0.65);
}

/* ---- WHY CHOOSE US ---- */
.why-choose {
  padding: 100px 0;
  background: var(--light-bg);
  position: relative;
  overflow: hidden;
}
.why-choose::before {
  content: '🧇';
  position: absolute;
  font-size: 220px;
  opacity: 0.04;
  right: -40px; top: -30px;
  transform: rotate(-15deg);
  pointer-events: none;
}
.why-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border-bottom: 4px solid transparent;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.why-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--secondary), var(--primary));
  transform: scaleX(0);
  transition: var(--transition);
}
.why-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-hover); }
.why-card:hover::before { transform: scaleX(1); }
.why-card .icon-wrap {
  width: 76px; height: 76px;
  background: linear-gradient(135deg, var(--secondary-light), var(--secondary));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 22px;
  font-size: 32px;
  box-shadow: 0 8px 20px rgba(254,203,0,0.35);
  transition: var(--transition);
}
.why-card:hover .icon-wrap { transform: scale(1.1) rotate(5deg); }
.why-card h4 {
  font-size: 1.1rem;
  margin-bottom: 12px;
  color: var(--primary);
}
.why-card p { font-size: 14px; color: var(--text-muted); margin: 0; }

/* ---- ABOUT SECTION ---- */
.about-section {
  padding: 100px 0;
  background: var(--white);
}
.about-img-wrap {
  position: relative;
  display: inline-block;
}
.about-img-wrap img {
  border-radius: 20px;
  box-shadow: var(--shadow-hover);
  width: 100%;
}
.about-img-badge {
  position: absolute;
  bottom: 30px; left: -25px;
  background: var(--secondary);
  color: var(--primary);
  padding: 20px 22px;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(254,203,0,0.4);
  text-align: center;
  animation: float 3s ease-in-out infinite;
}
.about-img-badge .big-num {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1;
}
.about-img-badge .small-txt {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }

.about-features { margin-top: 24px; }
.about-feature-item {
  display: flex; align-items: flex-start; gap: 14px;
  margin-bottom: 18px;
}
.about-feature-item .icon {
  width: 44px; height: 44px;
  background: var(--secondary);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  color: var(--primary);
}
.about-feature-item .text h6 { font-size: 15px; margin-bottom: 4px; color: var(--primary); }
.about-feature-item .text p { font-size: 13.5px; color: var(--text-muted); margin: 0; }

/* ---- MENU HIGHLIGHT ---- */
.menu-highlight {
  padding: 100px 0;
  background: var(--primary);
  position: relative;
  overflow: hidden;
}
.menu-highlight::after {
  content: '';
  position: absolute; inset: 0;
  background: url('../images/pattern.png') repeat;
  opacity: 0.04;
}
.menu-highlight .section-title { color: var(--white); }
.menu-highlight .section-subtitle { color: rgba(255,255,255,0.7); }
.menu-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(254,203,0,0.18);
  border-radius: 18px;
  overflow: hidden;
  transition: var(--transition);
  height: 100%;
  backdrop-filter: blur(6px);
}
.menu-card:hover {
  transform: translateY(-8px);
  background: rgba(255,255,255,0.1);
  border-color: rgba(254,203,0,0.45);
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}
.menu-card .img-wrap {
  height: 200px;
  overflow: hidden;
  position: relative;
}
.menu-card .img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.menu-card:hover .img-wrap img { transform: scale(1.1); }
.menu-card .badge-tag {
  position: absolute; top: 14px; left: 14px;
  background: var(--secondary);
  color: var(--primary);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
}
.menu-card .card-body { padding: 22px; }
.menu-card h5 { color: var(--white); font-size: 1.1rem; margin-bottom: 8px; }
.menu-card p { color: rgba(255,255,255,0.65); font-size: 13.5px; margin-bottom: 16px; }
.menu-card .price {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--secondary);
}

/* ---- TESTIMONIALS ---- */
.testimonials {
  padding: 100px 0;
  background: var(--light-bg);
  position: relative;
}
.testi-card {
  background: var(--white);
  border-radius: 18px;
  padding: 36px 30px;
  box-shadow: var(--shadow);
  position: relative;
  transition: var(--transition);
  height: 100%;
}
.testi-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.testi-card .quote-icon {
  font-size: 55px;
  color: var(--secondary);
  line-height: 1;
  font-family: Georgia, serif;
  margin-bottom: 8px;
  display: block;
}
.testi-card .review-text {
  font-size: 15px;
  color: var(--text-muted);
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 24px;
}
.testi-card .stars { color: var(--secondary); font-size: 14px; margin-bottom: 16px; }
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-author img {
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 3px solid var(--secondary);
  object-fit: cover;
}
.testi-author .author-info .name {
  font-weight: 700;
  font-size: 14.5px;
  color: var(--primary);
}
.testi-author .author-info .role {
  font-size: 12.5px;
  color: var(--text-muted);
}

/* ---- PARTNERS ---- */
.partners {
  padding: 70px 0;
  background: var(--white);
  border-top: 1px solid var(--border-color);
}
.partner-logo {
  display: flex; align-items: center; justify-content: center;
  padding: 18px 30px;
  background: var(--light-bg);
  border-radius: 12px;
  border: 1px solid var(--border-color);
  transition: var(--transition);
  height: 80px;
}
.partner-logo:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.partner-logo span {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 18px;
  color: var(--primary);
  transition: var(--transition);
}
.partner-logo:hover span { color: var(--secondary); }

/* ---- CTA SECTION ---- */
.cta-section {
  padding: 90px 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-section::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  background: var(--secondary);
  border-radius: 50%;
  opacity: 0.06;
  top: -200px; right: -100px;
}
.cta-section::after {
  content: '';
  position: absolute;
  width: 300px; height: 300px;
  background: var(--secondary);
  border-radius: 50%;
  opacity: 0.05;
  bottom: -150px; left: -50px;
}
.cta-section h2 {
  color: var(--white);
  font-size: 2.6rem;
  margin-bottom: 16px;
}
.cta-section h2 span { color: var(--secondary); }
.cta-section p { color: rgba(255,255,255,0.75); font-size: 16px; max-width: 560px; margin: 0 auto 36px; }

/* ---- NEWS SECTION ---- */
.news-section {
  padding: 100px 0;
  background: var(--light-bg);
}
.news-card {
  background: var(--white);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  height: 100%;
}
.news-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); }
.news-card .img-wrap { height: 210px; overflow: hidden; }
.news-card .img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.news-card:hover .img-wrap img { transform: scale(1.08); }
.news-card .card-body { padding: 24px; }
.news-card .meta {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 14px;
}
.news-card .meta .date {
  font-size: 12px; color: var(--text-muted);
  display: flex; align-items: center; gap: 5px;
}
.news-card .meta .cat {
  background: var(--secondary);
  color: var(--primary);
  font-size: 10.5px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 30px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.news-card h5 { font-size: 1.05rem; margin-bottom: 10px; color: var(--primary); }
.news-card p { font-size: 13.5px; color: var(--text-muted); }
.news-card .read-more {
  font-size: 13px; font-weight: 700; color: var(--primary);
  display: inline-flex; align-items: center; gap: 5px;
  margin-top: 14px;
}
.news-card .read-more:hover { color: var(--secondary-dark); gap: 8px; }

/* ---- COUNTER SECTION ---- */
.counter-section {
  padding: 80px 0;
  background: var(--secondary);
}
.counter-item { text-align: center; }
.counter-item .number {
  font-family: var(--font-heading);
  font-size: 3.2rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}
.counter-item .label {
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 6px;
  opacity: 0.75;
}

/* ---- INNER PAGE BANNER ---- */
.page-banner {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  padding: 90px 0 70px;
  position: relative;
  overflow: hidden;
}
.page-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 80% 50%, rgba(254,203,0,0.12) 0%, transparent 60%);
}
.page-banner h1 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 12px;
}
.page-banner .breadcrumb-item { color: rgba(255,255,255,0.65); font-size: 14px; }
.page-banner .breadcrumb-item.active { color: var(--secondary); }
.page-banner .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.4); }
.page-banner .breadcrumb-item a { color: rgba(255,255,255,0.75); }
.page-banner .breadcrumb-item a:hover { color: var(--secondary); }

/* ---- CONTENT SECTIONS ---- */
.content-section { padding: 80px 0; }
.content-section h2 { margin-bottom: 20px; }
.content-section h3 { font-size: 1.3rem; margin: 28px 0 12px; }
.content-section p { color: var(--text-muted); margin-bottom: 16px; line-height: 1.85; }
.content-section ul { color: var(--text-muted); margin-bottom: 16px; padding-left: 22px; }
.content-section ul li { margin-bottom: 8px; line-height: 1.75; }

.policy-card {
  background: var(--light-bg);
  border-left: 4px solid var(--secondary);
  border-radius: 0 12px 12px 0;
  padding: 24px 28px;
  margin-bottom: 28px;
}
.policy-card h4 { color: var(--primary); margin-bottom: 10px; }
.policy-card p { margin: 0; font-size: 14.5px; color: var(--text-muted); }

/* ---- CONTACT ---- */
.contact-section { padding: 80px 0; }
.contact-info-card {
  background: var(--primary);
  border-radius: 20px;
  padding: 40px 36px;
  height: 100%;
  color: var(--white);
}
.contact-info-card h3 { color: var(--secondary); margin-bottom: 8px; }
.contact-info-card p { color: rgba(255,255,255,0.7); font-size: 14px; margin-bottom: 30px; }
.contact-info-item {
  display: flex; align-items: flex-start; gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.contact-info-item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.contact-info-item .icon {
  width: 48px; height: 48px;
  background: rgba(254,203,0,0.15);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  color: var(--secondary);
  flex-shrink: 0;
}
.contact-info-item .info strong { display: block; font-size: 13px; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 0.8px; margin-bottom: 4px; }
.contact-info-item .info span { font-size: 15px; color: var(--white); }

.contact-form-card {
  background: var(--white);
  border-radius: 20px;
  padding: 42px 38px;
  box-shadow: var(--shadow);
}
.form-control, .form-select {
  border: 1.5px solid var(--border-color);
  border-radius: 10px;
  padding: 12px 18px;
  font-size: 14.5px;
  font-family: var(--font-body);
  color: var(--text-dark);
  transition: var(--transition);
  background: var(--light-bg);
}
.form-control:focus, .form-select:focus {
  border-color: var(--secondary);
  box-shadow: 0 0 0 3px rgba(254,203,0,0.2);
  background: var(--white);
}
.form-label { font-weight: 600; font-size: 13.5px; color: var(--primary); margin-bottom: 6px; }

/* ---- PRODUCTS PAGES ---- */
.products-section { padding: 80px 0; background: var(--light-bg); }
.product-card {
  background: var(--white);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  height: 100%;
}
.product-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); }
.product-card .img-wrap {
  height: 220px;
  overflow: hidden;
  position: relative;
}
.product-card .img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.product-card:hover .img-wrap img { transform: scale(1.08); }
.product-card .overlay-tag {
  position: absolute; top: 14px; right: 14px;
  background: var(--secondary); color: var(--primary);
  font-size: 11px; font-weight: 700;
  padding: 5px 14px; border-radius: 50px;
}
.product-card .card-body { padding: 24px; }
.product-card h5 { font-size: 1.1rem; margin-bottom: 8px; }
.product-card p { font-size: 13.5px; color: var(--text-muted); margin-bottom: 14px; }
.product-card .price-row {
  display: flex; align-items: center; justify-content: space-between;
}
.product-card .price {
  font-family: var(--font-heading);
  font-size: 1.3rem; font-weight: 700; color: var(--primary);
}

/* Nutrition Table */
.nutrition-table table { width: 100%; border-collapse: collapse; }
.nutrition-table th {
  background: var(--primary); color: var(--white);
  padding: 14px 18px; font-size: 13.5px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.5px;
}
.nutrition-table td {
  padding: 13px 18px; font-size: 14px; color: var(--text-muted);
  border-bottom: 1px solid var(--border-color);
}
.nutrition-table tr:nth-child(even) td { background: var(--light-bg); }
.nutrition-table tr:hover td { background: rgba(254,203,0,0.08); }

/* ---- FOOTER ---- */
.footer {
  background: var(--primary-dark);
  color: rgba(255,255,255,0.75);
  padding-top: 70px;
}
.footer-brand .brand-name {
  font-family: var(--font-heading);
  font-size: 1.6rem; font-weight: 800; color: var(--white); margin-bottom: 4px; display: block;
}
.footer-brand .tagline {
  color: var(--secondary); font-size: 12px; letter-spacing: 2px; text-transform: uppercase;
}
.footer-brand p { font-size: 14px; line-height: 1.8; margin-top: 16px; margin-bottom: 24px; }
.footer .social-links a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  background: rgba(254,203,0,0.1);
  border-radius: 10px;
  color: var(--secondary);
  font-size: 15px;
  margin-right: 8px;
  transition: var(--transition);
  border: 1px solid rgba(254,203,0,0.2);
}
.footer .social-links a:hover {
  background: var(--secondary); color: var(--primary);
  transform: translateY(-4px);
}
.footer h5 {
  color: var(--secondary);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 22px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.footer-links li { margin-bottom: 10px; list-style: none; }
.footer-links li a {
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  display: flex; align-items: center; gap: 7px;
  transition: var(--transition);
}
.footer-links li a i { color: var(--secondary); font-size: 11px; }
.footer-links li a:hover { color: var(--secondary); padding-left: 5px; }

.footer-newsletter .newsletter-input-group {
  display: flex; gap: 8px;
}
.footer-newsletter input {
  flex: 1;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  padding: 12px 16px;
  color: var(--white);
  font-size: 14px;
  outline: none;
}
.footer-newsletter input::placeholder { color: rgba(255,255,255,0.4); }
.footer-newsletter input:focus { border-color: var(--secondary); }
.footer-newsletter button {
  background: var(--secondary); color: var(--primary);
  border: none; border-radius: 8px;
  padding: 12px 20px;
  font-weight: 700; font-size: 14px;
  cursor: pointer; transition: var(--transition);
}
.footer-newsletter button:hover { background: var(--secondary-dark); transform: scale(1.05); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 22px 0;
  margin-top: 50px;
  text-align: center;
}
.footer-bottom p { margin: 0; font-size: 13.5px; color: rgba(255,255,255,0.45); }
.footer-bottom a { color: var(--secondary); }
.footer-bottom a:hover { color: var(--white); }

/* ---- BACK TO TOP ---- */
#backToTop {
  position: fixed;
  bottom: 35px; right: 35px;
  width: 48px; height: 48px;
  background: var(--secondary);
  color: var(--primary);
  border: none; border-radius: 12px;
  font-size: 18px;
  cursor: pointer;
  z-index: 999;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 20px rgba(254,203,0,0.45);
  transition: var(--transition);
  opacity: 0; visibility: hidden;
  transform: translateY(15px);
}
#backToTop.visible { opacity: 1; visibility: visible; transform: translateY(0); }
#backToTop:hover { background: var(--primary); color: var(--secondary); transform: translateY(-4px); }

/* ---- ANIMATIONS ---- */
.animate-fade-up {
  opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease;
}
.animate-fade-up.in-view { opacity: 1; transform: translateY(0); }

/* ---- UTILITY ---- */
.text-primary-custom { color: var(--primary) !important; }
.text-secondary-custom { color: var(--secondary-dark) !important; }
.bg-primary-custom { background-color: var(--primary) !important; }
.bg-secondary-custom { background-color: var(--secondary) !important; }

/* ---- RESPONSIVE ---- */
@media (max-width: 992px) {
  .hero-stats { gap: 20px; }
  .navbar-nav .nav-link { padding: 12px 0 !important; }
  .navbar-nav .nav-link::after { display: none; }
  .section-title { font-size: 2rem; }
}
@media (max-width: 768px) {
  .hero-slide { min-height: 70vh; }
  .hero-title { font-size: 2rem; }
  .top-bar .top-bar-links { display: none; }
  .hero-stats { flex-direction: row; gap: 24px; }
  .about-img-badge { left: 10px; }
  .features-strip .col-lg-3 { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .feature-item { border-right: none !important; }
}
@media (max-width: 576px) {
  .section-title { font-size: 1.75rem; }
  .hero-stats { gap: 16px; }
  .hero-stat .num { font-size: 1.7rem; }
  .page-banner { padding: 60px 0 50px; }
  .contact-form-card { padding: 26px 20px; }
  .contact-info-card { padding: 28px 22px; }
}

/* About page specific */
.team-card {
  background: var(--white);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  text-align: center;
}
.team-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); }
.team-card .img-wrap { height: 230px; overflow: hidden; }
.team-card .img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.team-card:hover .img-wrap img { transform: scale(1.06); }
.team-card .card-body { padding: 22px; }
.team-card h5 { font-size: 1.05rem; margin-bottom: 4px; }
.team-card .role { color: var(--secondary-dark); font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.8px; }
.team-card p { font-size: 13.5px; color: var(--text-muted); margin-top: 10px; }

.milestone-item {
  display: flex; gap: 24px;
  margin-bottom: 36px;
  position: relative;
  padding-left: 10px;
}
.milestone-item::before {
  content: '';
  position: absolute;
  left: 22px; top: 60px;
  width: 2px;
  height: calc(100% - 20px);
  background: var(--border-color);
}
.milestone-item:last-child::before { display: none; }
.milestone-item .year-badge {
  width: 46px; height: 46px;
  background: var(--secondary);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  font-size: 12px;
  color: var(--primary);
  flex-shrink: 0;
  border: 3px solid var(--white);
  box-shadow: 0 4px 12px rgba(254,203,0,0.35);
}
.milestone-item .content h5 { font-size: 1rem; margin-bottom: 6px; }
.milestone-item .content p { font-size: 13.5px; color: var(--text-muted); margin: 0; }

.invalid-feedback {
    display: inline !important;
}