/* ================================================
   SHILPA YOGA SCHOOL — Main Stylesheet v2.0
   Brand Theme: Deep Green + Gold
   Fonts: Playfair Display + Poppins
   ================================================ */

/* ---------- ROOT VARIABLES (Brand Colors) ---------- */
:root {
  /* Deep Saffron Orange + Gold — Authentic Indian Yoga Brand */
  --green-dark:    #1C0800;   /* Very dark warm brown — navbar */
  --green:         #B83A00;   /* Deep saffron orange — primary */
  --green-mid:     #D04808;   /* Medium saffron */
  --green-light:   #E86020;   /* Lighter saffron */
  --gold:          #D4A820;   /* Brand gold */
  --gold-light:    #F0C038;   /* Light gold */
  --gold-pale:     #FFF8E8;   /* Pale gold background */
  --gold-dark:     #A07810;   /* Dark gold */
  --cream:         #FFF8F2;   /* Warm ivory-cream */
  --light:         #FFF0E6;   /* Light saffron-tinted section */
  --dark:          #1A0600;   /* Very dark warm brown text */
  --text:          #2A1000;   /* Dark brown body text */
  --text-muted:    #7A4A30;   /* Warm muted brown */
  --white:         #FFFFFF;
  --border:        #F0C8A8;   /* Warm orange border */

  --shadow-sm:  0 2px 16px rgba(28,8,0,.10);
  --shadow:     0 6px 28px rgba(28,8,0,.15);
  --shadow-lg:  0 12px 48px rgba(28,8,0,.22);
  --shadow-gold: 0 4px 24px rgba(212,168,32,.35);

  --radius:    16px;
  --radius-sm: 10px;
  --radius-xl: 28px;
  --transition: all .3s ease;

  --font-head: 'Playfair Display', Georgia, 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); background: var(--white); overflow-x: hidden; line-height: 1.7; }
h1,h2,h3,h4,h5,h6 { font-family: var(--font-head); color: var(--dark); line-height: 1.25; }
p { color: var(--text-muted); }
a { text-decoration: none; transition: var(--transition); }
img { max-width: 100%; height: auto; display: block; }
section { padding: 90px 0; }

/* ---------- TYPOGRAPHY HELPERS ---------- */
.section-label {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .6rem;
}
.section-title { font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: .8rem; }
.section-subtitle { font-size: 1rem; max-width: 580px; margin: 0 auto 2.5rem; color: var(--text-muted); }

.divider { width: 56px; height: 3px; background: linear-gradient(90deg, var(--gold), var(--gold-light)); border-radius: 3px; margin: .8rem auto 1.5rem; }
.divider.left { margin-left: 0; }

.bg-cream    { background-color: var(--cream); }
.bg-green    { background-color: var(--green); }
.bg-dark-green { background-color: var(--green-dark); }
.bg-light    { background-color: var(--light); }
.bg-gold-pale { background-color: var(--gold-pale); }

/* ---------- BADGES ---------- */
.badge-pill {
  display: inline-block;
  background: rgba(201,162,39,.13);
  color: var(--gold-dark);
  border: 1px solid rgba(201,162,39,.35);
  padding: 5px 16px;
  border-radius: 50px;
  font-size: .78rem;
  font-weight: 600;
}
.badge-green {
  display: inline-block;
  background: rgba(184,58,0,.1);
  color: var(--green);
  border: 1px solid rgba(184,58,0,.25);
  padding: 4px 14px;
  border-radius: 50px;
  font-size: .75rem;
  font-weight: 600;
}

/* ---------- BUTTONS ---------- */
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--dark);
  border: 2px solid var(--gold);
  padding: 12px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: .93rem;
  display: inline-block;
  transition: var(--transition);
  letter-spacing: .3px;
}
.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  border-color: var(--gold-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn-green {
  background: var(--green);
  color: var(--white);
  border: 2px solid var(--green);
  padding: 12px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: .93rem;
  display: inline-block;
  transition: var(--transition);
}
.btn-green:hover {
  background: var(--green-mid);
  border-color: var(--green-mid);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
  padding: 12px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: .93rem;
  display: inline-block;
  transition: var(--transition);
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--dark);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--white);
  color: var(--green);
  border: 2px solid var(--white);
  padding: 12px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: .93rem;
  display: inline-block;
  transition: var(--transition);
}
.btn-white:hover {
  background: transparent;
  color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.6);
  padding: 12px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: .93rem;
  display: inline-block;
  transition: var(--transition);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,.15);
  border-color: white;
  color: var(--white);
  transform: translateY(-2px);
}

/* ---------- NAVBAR ---------- */
.navbar {
  background: rgba(28,8,0,.97) !important;
  backdrop-filter: blur(14px);
  padding: 10px 0;
  transition: padding .3s ease, box-shadow .3s ease;
  z-index: 1050;
}
.navbar.scrolled {
  padding: 6px 0;
  box-shadow: 0 2px 20px rgba(0,0,0,.3);
}

.navbar-brand { display: flex; align-items: center; gap: 10px; }
.navbar-logo { height: 52px; width: auto; }
.brand-name { font-family: var(--font-head); font-size: 1.15rem; font-weight: 700; color: var(--white); display: block; line-height: 1.1; }
.brand-tagline { font-size: .58rem; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold-light); display: block; }

.nav-link { color: rgba(255,255,255,.85) !important; font-weight: 500; font-size: .87rem; padding: 8px 13px !important; transition: color .25s; }
.nav-link:hover, .nav-link.active { color: var(--gold-light) !important; }

.dropdown-menu {
  background: #1C0800;
  border: 1px solid rgba(212,168,32,.2);
  border-radius: var(--radius-sm);
  padding: 8px 6px;
  min-width: 230px;
  margin-top: 6px !important;
}
.dropdown-item { color: rgba(255,255,255,.78); font-size: .87rem; padding: 9px 16px; border-radius: var(--radius-sm); transition: background .2s; }
.dropdown-item:hover { background: rgba(201,162,39,.15); color: var(--gold-light); }

.nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-light)) !important;
  color: var(--dark) !important;
  border-radius: 50px !important;
  padding: 8px 22px !important;
  font-weight: 700 !important;
  font-size: .84rem !important;
  margin-left: 8px;
}
.nav-cta:hover { opacity: .9 !important; }

/* ---------- HERO SLIDER ---------- */
.hero-slider { position: relative; }
.hero-slide {
  min-height: 88vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(28,8,0,.85) 0%, rgba(184,58,0,.55) 60%, rgba(201,162,39,.2) 100%);
}
.slide-content {
  position: relative;
  z-index: 2;
  padding-top: 90px;
}

.slide-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1rem;
}
.slide-label span { width: 28px; height: 1px; background: var(--gold-light); display: inline-block; }

.slide-title {
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  color: var(--white);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1.3rem;
}
.slide-title em { color: var(--gold-light); font-style: normal; display: block; }

.slide-text { font-size: 1.05rem; color: rgba(255,255,255,.85); max-width: 560px; margin-bottom: 2rem; line-height: 1.85; }
.slide-btns { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 2.5rem; }

.slide-course-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 2.5rem;
}
.slide-course-pills a {
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(201,162,39,.45);
  color: var(--gold-light);
  font-size: .8rem;
  font-weight: 600;
  padding: 7px 18px;
  border-radius: 50px;
  transition: var(--transition);
}
.slide-course-pills a:hover {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
}

.hero-stats-bar {
  display: flex;
  gap: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.15);
}
.hero-stat .num { font-family: var(--font-head); font-size: 1.9rem; font-weight: 700; color: var(--gold-light); display: block; line-height: 1; }
.hero-stat .lbl { font-size: .68rem; color: rgba(255,255,255,.6); letter-spacing: 1px; margin-top: 3px; }

/* Carousel controls */
.hero-slider .carousel-control-prev,
.hero-slider .carousel-control-next {
  width: 48px;
  height: 48px;
  background: rgba(201,162,39,.25);
  backdrop-filter: blur(6px);
  border: 1.5px solid rgba(201,162,39,.45);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 1;
}
.hero-slider .carousel-control-prev { left: 20px; }
.hero-slider .carousel-control-next { right: 20px; }
.hero-slider .carousel-control-prev-icon,
.hero-slider .carousel-control-next-icon { width: 16px; height: 16px; }

.hero-slider .carousel-indicators { bottom: 20px; }
.hero-slider .carousel-indicators button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,.5);
  border: none;
  margin: 0 4px;
}
.hero-slider .carousel-indicators button.active { background: var(--gold); }

.scroll-hint {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  text-align: center;
  animation: floatUD 2.2s ease-in-out infinite;
}
.scroll-hint span { display: block; font-size: .67rem; color: rgba(255,255,255,.5); letter-spacing: 2px; margin-bottom: 5px; }
.scroll-hint i { color: rgba(255,255,255,.4); font-size: 1rem; }

@keyframes floatUD { 0%,100%{ transform: translateX(-50%) translateY(0); } 50%{ transform: translateX(-50%) translateY(8px); } }

/* ---------- LOCATION HIGHLIGHT STRIP ---------- */
.location-strip { background: linear-gradient(135deg, var(--green-dark), var(--green)); padding: 28px 0; }
.loc-strip-item { display: flex; align-items: center; gap: 10px; color: white; padding: 0 20px; }
.loc-strip-item:not(:last-child) { border-right: 1px solid rgba(255,255,255,.18); }
.loc-strip-item i { color: var(--gold-light); font-size: 1.3rem; }
.loc-strip-item .city { font-weight: 700; font-size: .95rem; display: block; }
.loc-strip-item .hours { font-size: .73rem; color: rgba(255,255,255,.68); }

/* ---------- ABOUT SECTION ---------- */
.about-img-wrap { position: relative; border-radius: var(--radius-xl); overflow: hidden; }
.about-img-wrap img { width: 100%; height: 500px; object-fit: cover; border-radius: var(--radius-xl); }
.about-badge { position: absolute; bottom: 24px; left: 24px; background: linear-gradient(135deg, var(--green), var(--green-mid)); color: white; border-radius: var(--radius); padding: 14px 20px; text-align: center; box-shadow: var(--shadow); }
.about-badge .big-num { font-family: var(--font-head); font-size: 2rem; font-weight: 700; display: block; line-height: 1; }
.about-badge .small-txt { font-size: .72rem; opacity: .9; margin-top: 2px; }

.feature-list { list-style: none; padding: 0; margin: 1.8rem 0; }
.feature-list li { display: flex; align-items: flex-start; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--border); }
.feature-list li:last-child { border-bottom: none; }
.feature-icon { width: 44px; height: 44px; background: linear-gradient(135deg, var(--green), var(--green-mid)); border-radius: 12px; display: flex; align-items: center; justify-content: center; color: white; font-size: 1.05rem; flex-shrink: 0; }
.feature-list li h6 { font-size: .93rem; margin-bottom: 2px; font-family: var(--font-body); font-weight: 700; }
.feature-list li p { font-size: .82rem; margin: 0; }

/* ---------- COURSE CARDS ---------- */
.course-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
  border-bottom: 3px solid transparent;
}
.course-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-lg); border-bottom-color: var(--gold); }

.course-card .card-thumb { height: 210px; overflow: hidden; position: relative; }
.course-card .card-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease; }
.course-card:hover .card-thumb img { transform: scale(1.08); }

.card-ribbon { position: absolute; top: 14px; left: 14px; background: var(--green); color: white; font-size: .7rem; font-weight: 700; padding: 4px 13px; border-radius: 50px; }
.card-ribbon.gold { background: linear-gradient(135deg, var(--gold), var(--gold-light)); color: var(--dark); }
.card-ribbon.premium { background: linear-gradient(135deg, var(--green-dark), var(--green)); }

.course-card .card-body { padding: 22px; flex: 1; }
.course-card .card-body h5 { font-size: 1.15rem; margin-bottom: 7px; }
.course-card .card-body p { font-size: .86rem; margin-bottom: 1rem; }

.card-meta { display: flex; gap: 1.2rem; font-size: .76rem; color: var(--text-muted); margin-bottom: 1.2rem; flex-wrap: wrap; }
.card-meta span { display: flex; align-items: center; gap: 5px; }
.card-meta i { color: var(--green); }

.locations-served { display: flex; flex-wrap: wrap; gap: 5px; margin-bottom: 1.2rem; }
.locations-served span { background: var(--light); color: var(--green); font-size: .68rem; font-weight: 600; padding: 3px 9px; border-radius: 50px; border: 1px solid var(--border); }

/* ---------- LOCATION CARDS ---------- */
.location-card { position: relative; border-radius: var(--radius); overflow: hidden; height: 370px; display: block; }
.location-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.location-card:hover img { transform: scale(1.1); }
.location-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(28,8,0,.88) 0%, rgba(0,0,0,.15) 60%, transparent 100%); padding: 22px; display: flex; flex-direction: column; justify-content: flex-end; transition: background .4s; }
.location-card:hover .location-overlay { background: linear-gradient(to top, rgba(184,58,0,.92) 0%, rgba(0,0,0,.3) 65%, transparent 100%); }
.location-name { font-family: var(--font-head); font-size: 1.6rem; color: white; font-weight: 700; margin-bottom: 4px; }
.location-sub { font-size: .8rem; color: rgba(255,255,255,.8); margin-bottom: 10px; opacity: 0; transform: translateY(12px); transition: var(--transition); }
.location-card:hover .location-sub { opacity: 1; transform: translateY(0); }
.location-pills { display: flex; gap: 6px; flex-wrap: wrap; }
.location-pills span { background: rgba(201,162,39,.25); backdrop-filter: blur(4px); color: var(--gold-light); font-size: .68rem; font-weight: 600; padding: 3px 10px; border-radius: 50px; border: 1px solid rgba(201,162,39,.4); }
.location-arrow { position: absolute; top: 16px; right: 16px; width: 36px; height: 36px; background: rgba(201,162,39,.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--gold-light); font-size: .85rem; opacity: 0; transition: var(--transition); }
.location-card:hover .location-arrow { opacity: 1; }

.hq-badge { position: absolute; top: 16px; left: 16px; background: var(--gold); color: var(--dark); font-size: .65rem; font-weight: 800; padding: 4px 12px; border-radius: 50px; letter-spacing: 1px; text-transform: uppercase; z-index: 2; }

/* ---------- WHY CHOOSE US ---------- */
.why-box { text-align: center; padding: 34px 22px; border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow-sm); transition: var(--transition); height: 100%; border-bottom: 3px solid transparent; }
.why-box:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-bottom-color: var(--gold); }
.why-icon { width: 68px; height: 68px; background: linear-gradient(135deg, var(--green), var(--green-mid)); border-radius: 18px; display: flex; align-items: center; justify-content: center; font-size: 1.7rem; color: white; margin: 0 auto 1.3rem; transition: var(--transition); }
.why-box:hover .why-icon { background: linear-gradient(135deg, var(--gold), var(--gold-light)); }
.why-box h5 { font-size: 1rem; margin-bottom: .45rem; }
.why-box p { font-size: .83rem; margin: 0; }

/* ---------- STATS BAR ---------- */
.stats-section { background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 100%); padding: 60px 0; position: relative; overflow: hidden; }
.stats-section::before { content: ''; position: absolute; width: 400px; height: 400px; background: rgba(201,162,39,.07); border-radius: 50%; top: -150px; right: -100px; }
.stat-item { text-align: center; }
.stat-item .num { font-family: var(--font-head); font-size: 3rem; font-weight: 700; color: var(--gold-light); display: block; line-height: 1; }
.stat-item .lbl { font-size: .82rem; color: rgba(255,255,255,.7); margin-top: 6px; display: block; }

/* ---------- SYLLABUS SECTION ---------- */
.syllabus-tab { display: none; }
.syllabus-tab.active { display: block; }

.syllabus-nav { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 2rem; }
.syllabus-btn {
  background: var(--light);
  color: var(--text);
  border: 1.5px solid var(--border);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: .82rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}
.syllabus-btn.active, .syllabus-btn:hover {
  background: var(--green);
  color: white;
  border-color: var(--green);
}

.subject-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1.5px solid var(--border);
  margin-bottom: 12px;
  overflow: hidden;
  transition: var(--transition);
}
.subject-card:hover { box-shadow: var(--shadow-sm); border-color: var(--green-light); }
.subject-header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  cursor: pointer;
  user-select: none;
}
.subject-icon { width: 42px; height: 42px; background: linear-gradient(135deg, var(--green), var(--green-mid)); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: white; font-size: 1.05rem; flex-shrink: 0; }
.subject-header h6 { margin: 0; font-family: var(--font-body); font-weight: 700; font-size: .93rem; flex: 1; }
.subject-header .toggle-icon { color: var(--green); transition: transform .3s; }
.subject-card.open .toggle-icon { transform: rotate(180deg); }
.subject-body { padding: 0 20px 18px 76px; display: none; }
.subject-card.open .subject-body { display: block; }

.topic-list { columns: 2; list-style: none; padding: 0; margin: 0; }
.topic-list li { display: flex; align-items: flex-start; gap: 8px; font-size: .84rem; color: var(--text-muted); padding: 4px 0; break-inside: avoid; }
.topic-list li::before { content: '✦'; color: var(--gold); font-size: .65rem; margin-top: 4px; flex-shrink: 0; }

@media(max-width:600px) { .topic-list { columns: 1; } }

/* ---------- OVERVIEW TABLE ---------- */
.overview-table { width: 100%; border-collapse: collapse; }
.overview-table td { padding: 10px 14px; font-size: .88rem; border-bottom: 1px solid var(--border); vertical-align: top; }
.overview-table tr:last-child td { border-bottom: none; }
.overview-table td:first-child { font-weight: 700; color: var(--green); width: 45%; background: var(--light); }
.overview-table tr:hover td { background: var(--gold-pale); }

/* ---------- DAILY SCHEDULE ---------- */
.schedule-row { display: flex; align-items: flex-start; gap: 16px; padding: 14px 0; border-bottom: 1px solid var(--border); }
.schedule-row:last-child { border-bottom: none; }
.time-badge { background: var(--green); color: white; font-size: .72rem; font-weight: 700; padding: 5px 12px; border-radius: 50px; white-space: nowrap; flex-shrink: 0; }
.schedule-row h6 { font-size: .9rem; margin-bottom: 2px; font-family: var(--font-body); font-weight: 700; }
.schedule-row p { font-size: .8rem; margin: 0; }

/* ---------- PACKAGE CARDS (Sidebar Booking Box) ---------- */
.package-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.package-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.package-card.featured {
  border: 2px solid var(--gold);
  box-shadow: 0 8px 40px rgba(212,168,32,.25), var(--shadow);
}
.package-card.featured:hover { transform: translateY(-6px); }

/* Featured sidebar header — deep indigo + gold accent */
.pkg-header {
  padding: 30px 26px 24px;
  background: linear-gradient(160deg, #1C0800 0%, #B83A00 60%, #1C0800 100%);
  text-align: center;
  color: white;
  position: relative;
  border-bottom: 3px solid var(--gold);
}
.package-card.featured .pkg-header {
  background: linear-gradient(160deg, #1C0800 0%, #A03000 50%, #C04808 100%);
}
.best-val {
  position: absolute;
  top: 0; right: 0;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #0D0420;
  font-size: .62rem;
  font-weight: 800;
  padding: 6px 16px;
  border-radius: 0 0 0 var(--radius-sm);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.pkg-header h5 {
  color: var(--gold-light);
  font-size: 1.05rem;
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: .5px;
  margin-bottom: 14px;
  text-transform: uppercase;
  font-size: .82rem;
}
.pkg-price {
  font-family: var(--font-head);
  font-size: 3rem;
  font-weight: 700;
  display: block;
  line-height: 1;
  color: white;
  text-shadow: 0 2px 12px rgba(0,0,0,.3);
}
.pkg-price-note {
  font-size: .74rem;
  color: rgba(255,255,255,.65);
  margin-top: 6px;
  letter-spacing: .3px;
}
.pkg-body { padding: 22px 24px; }
/* Sidebar sticky booking card — no height stretch on any page */
.package-card.featured { height: auto !important; }
.pkg-body ul { list-style: none; padding: 0; margin-bottom: 1.4rem; }
.pkg-body ul li {
  padding: 8px 0;
  font-size: .85rem;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
}
.pkg-body ul li:last-child { border-bottom: none; }
.pkg-body ul li i.fa-check {
  width: 20px;
  height: 20px;
  background: linear-gradient(135deg, var(--green), var(--green-mid));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .6rem;
  flex-shrink: 0;
}

/* ---------- SCHEDULE TABLE ---------- */
.schedule-table th { background: var(--green); color: white; font-weight: 600; font-size: .83rem; padding: 13px 16px; border: none; }
.schedule-table td { padding: 11px 16px; font-size: .86rem; vertical-align: middle; border-color: var(--border); }
.schedule-table tbody tr:hover { background: var(--cream); }
.status-open { color: var(--green); font-weight: 700; font-size: .78rem; }
.status-filling { color: #E65100; font-weight: 700; font-size: .78rem; }
.status-closed { color: #9CA3AF; font-weight: 700; font-size: .78rem; }

/* ---------- FACULTY CARDS ---------- */
.faculty-card { text-align: center; background: var(--white); border-radius: var(--radius); padding: 28px 18px; box-shadow: var(--shadow-sm); transition: var(--transition); }
.faculty-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.faculty-photo { width: 100px; height: 100px; border-radius: 50%; object-fit: cover; margin: 0 auto 1rem; border: 4px solid var(--light); box-shadow: 0 0 0 4px var(--green); }
.faculty-card h5 { font-size: 1rem; margin-bottom: 4px; }
.faculty-card .role { font-size: .78rem; color: var(--gold-dark); font-weight: 700; margin-bottom: .8rem; }
.faculty-card p { font-size: .82rem; }

/* ---------- TESTIMONIALS ---------- */
.testimonial-card { background: var(--white); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow-sm); position: relative; height: 100%; border-top: 3px solid var(--gold); }
.testimonial-card .big-quote { font-family: Georgia, serif; font-size: 5rem; color: var(--green); opacity: .1; position: absolute; top: 8px; right: 16px; line-height: 1; user-select: none; }
.stars { color: var(--gold); font-size: .88rem; margin-bottom: .9rem; }
.testimonial-card p { font-style: italic; font-size: .9rem; line-height: 1.8; margin-bottom: 1.4rem; }
.t-author { display: flex; align-items: center; gap: 12px; }
.t-avatar { width: 46px; height: 46px; border-radius: 50%; background: linear-gradient(135deg, var(--green), var(--green-mid)); display: flex; align-items: center; justify-content: center; color: white; font-weight: 700; font-size: 1.05rem; flex-shrink: 0; }
.t-author .name { font-weight: 700; font-size: .91rem; color: var(--dark); margin-bottom: 2px; }
.t-author .role { font-size: .75rem; color: var(--text-muted); }

/* ---------- CTA BAND ---------- */
.cta-band { background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 100%); position: relative; overflow: hidden; padding: 80px 0; }
.cta-band::before { content: ''; position: absolute; width: 500px; height: 500px; background: rgba(201,162,39,.06); border-radius: 50%; top: -150px; right: -150px; }
.cta-band::after { content: ''; position: absolute; width: 300px; height: 300px; background: rgba(201,162,39,.06); border-radius: 50%; bottom: -80px; left: 8%; }

/* ---------- CONTACT ---------- */
.contact-card { background: linear-gradient(135deg, var(--green), var(--green-dark)); border-radius: var(--radius-xl); padding: 40px; color: white; height: 100%; }
.contact-card h4 { color: white; margin-bottom: 1.5rem; }
.cinfo-item { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 1.4rem; }
.cinfo-icon { width: 44px; height: 44px; background: rgba(255,255,255,.12); border-radius: 11px; display: flex; align-items: center; justify-content: center; font-size: 1.05rem; flex-shrink: 0; }
.cinfo-item .lbl { font-size: .66rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,.55); margin-bottom: 3px; }
.cinfo-item p { color: white; margin: 0; font-size: .92rem; }

.contact-form-wrap { background: var(--white); border-radius: var(--radius-xl); padding: 40px; box-shadow: var(--shadow); }
.form-control, .form-select { border: 1.5px solid var(--border); border-radius: var(--radius-sm); padding: 11px 16px; font-size: .87rem; font-family: var(--font-body); transition: border-color .25s, box-shadow .25s; }
.form-control:focus, .form-select:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(184,58,0,.12); outline: none; }
.form-label { font-weight: 600; font-size: .82rem; color: var(--dark); margin-bottom: 5px; }

/* ---------- ACCORDION (FAQ) ---------- */
.accordion-item { border: 1.5px solid var(--border) !important; border-radius: var(--radius-sm) !important; margin-bottom: 10px !important; overflow: hidden; }
.accordion-button { font-weight: 600; font-size: .92rem; font-family: var(--font-body); color: var(--dark); background: var(--white); }
.accordion-button:not(.collapsed) { background: linear-gradient(135deg, var(--green), var(--green-mid)); color: white; box-shadow: none; }
.accordion-button:not(.collapsed)::after { filter: brightness(10); }
.accordion-button:focus { box-shadow: 0 0 0 3px rgba(184,58,0,.18); }

/* ---------- PAGE HERO (inner pages) ---------- */
.page-hero { min-height: 38vh; position: relative; display: flex; align-items: flex-end; padding-bottom: 45px; padding-top: 90px; }
.page-hero .hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.page-hero .hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(28,8,0,.85), rgba(184,58,0,.65)); }
.page-hero .content { position: relative; z-index: 2; color: white; }
.page-hero h1 { font-size: clamp(2rem, 5vw, 3.2rem); color: white; margin-bottom: .5rem; }
.page-hero p.lead { color: rgba(255,255,255,.82); font-size: 1.02rem; max-width: 540px; }

.breadcrumb-wrap .breadcrumb { background: transparent; padding: 0; margin-bottom: .8rem; }
.breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,.4); }
.breadcrumb-item a { color: var(--gold-light); font-size: .8rem; }
.breadcrumb-item.active { color: rgba(255,255,255,.72); font-size: .8rem; }

/* ---------- FOOTER ---------- */
.footer { background: #0A1A0B; padding-top: 70px; }
.footer-brand-name { font-family: var(--font-head); font-size: 1.5rem; color: var(--white); display: block; margin-bottom: 1rem; }
.footer p { color: rgba(255,255,255,.58); font-size: .87rem; line-height: 1.85; }
.footer-heading { color: var(--gold-light); font-size: .78rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 1.1rem; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 7px; }
.footer-links a { color: rgba(255,255,255,.55); font-size: .86rem; transition: color .25s, padding-left .25s; }
.footer-links a:hover { color: var(--gold-light); padding-left: 5px; }
.footer-links li span { color: rgba(255,255,255,.55); font-size: .86rem; }
.social-row { display: flex; gap: 8px; margin-top: 1.3rem; }
.social-btn { width: 38px; height: 38px; border-radius: 9px; background: rgba(255,255,255,.07); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.65); font-size: .93rem; transition: var(--transition); }
.social-btn:hover { background: var(--gold); color: var(--dark); transform: translateY(-3px); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.07); padding: 20px 0; margin-top: 50px; font-size: .8rem; color: rgba(255,255,255,.35); }
.footer-bottom .container { max-width: 900px !important; }

/* ---------- ANIMATIONS ---------- */
.fade-up { opacity: 0; transform: translateY(26px); transition: opacity .65s ease, transform .65s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .1s; } .delay-2 { transition-delay: .2s; }
.delay-3 { transition-delay: .3s; } .delay-4 { transition-delay: .4s; }

/* ---------- RESPONSIVE ---------- */
@media (max-width:992px) {
  section { padding: 70px 0; }
  .hero-slide { min-height: 75vh; }
}
@media (max-width:768px) {
  section { padding: 55px 0; }
  .hero-stats-bar { gap: 1.2rem; flex-wrap: wrap; }
  .hero-stat .num { font-size: 1.5rem; }
  .location-card { height: 300px; }
  .package-card.featured { transform: none; }
  .package-card.featured:hover { transform: translateY(-8px); }
  .about-img-wrap img { height: 360px; }
  .contact-card, .contact-form-wrap { padding: 26px; }
  .loc-strip-item:not(:last-child) { border-right: none; border-bottom: 1px solid rgba(255,255,255,.18); }
}
@media (max-width:576px) {
  .slide-title { font-size: 1.85rem; }
  .slide-btns { flex-direction: column; align-items: flex-start; }
}

/* ---------- MISC ---------- */
.curriculum-item { background: var(--light); border-radius: var(--radius-sm); padding: 16px 20px; margin-bottom: 10px; display: flex; align-items: flex-start; gap: 14px; transition: var(--transition); }
.curriculum-item:hover { background: var(--white); box-shadow: var(--shadow-sm); transform: translateX(4px); }
.week-badge { background: var(--green); color: white; font-size: .67rem; font-weight: 700; padding: 4px 11px; border-radius: 50px; white-space: nowrap; margin-top: 3px; flex-shrink: 0; }
.curriculum-item h6 { font-size: .91rem; margin-bottom: 3px; font-family: var(--font-body); font-weight: 700; }
.curriculum-item p { font-size: .81rem; margin: 0; }

.alert-green { background: rgba(184,58,0,.08); border: 1px solid rgba(184,58,0,.25); border-radius: var(--radius-sm); padding: 14px 18px; }

/* ================================================
   ADDITIONS v3 — Mega Menu · Lead Gen · Gallery
   ================================================ */

/* ---------- HERO SLIDER — Smaller height ---------- */
.hero-slide { min-height: 78vh; }
@media(max-width:768px){ .hero-slide{ min-height:65vh; } }

/* ---------- ANNOUNCEMENT BAR ---------- */
.ann-bar {
  background: linear-gradient(90deg, var(--green-dark), #0d3010);
  color: white;
  font-size: .78rem;
  padding: 9px 0;
  position: sticky;
  top: 0;
  z-index: 1060;
  border-bottom: 1px solid rgba(201,162,39,.3);
}
.ann-bar a { color: var(--gold-light); }
.ann-bar strong { color: var(--gold-light); }
.ann-bar .ann-close {
  background: none; border: none; color: rgba(255,255,255,.6);
  font-size: 1rem; cursor: pointer; padding: 0 4px; line-height: 1;
}

/* Navbar shifts down when ann-bar visible */
.navbar { top: 0; transition: top .3s ease; }

/* ---------- MEGA MENU (Bootstrap 5 compatible) ---------- */
.mega-dropdown { position: static; }

/* The mega menu uses Bootstrap's .dropdown-menu so BS handles show/hide */
.mega-menu-box {
  position: absolute !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  min-width: 720px !important;
  background: #1C0800 !important;
  border: 1px solid rgba(201,162,39,.3) !important;
  border-radius: 14px !important;
  padding: 22px 26px !important;
  box-shadow: 0 24px 64px rgba(0,0,0,.5) !important;
  display: none;
  flex-direction: row;
  gap: 20px;
  z-index: 9999;
}
.mega-menu-box.show { display: flex !important; }

/* Mega menu — main dropdown panel */
.mega-menu {
  display: none;
  position: absolute !important;
  top: 100% !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  min-width: 740px !important;
  background: #1C0800 !important;
  border: 1px solid rgba(201,162,39,.3) !important;
  border-radius: 14px !important;
  padding: 22px 26px !important;
  box-shadow: 0 24px 64px rgba(0,0,0,.55) !important;
  flex-direction: row;
  gap: 20px;
  z-index: 9999;
  margin-top: 0 !important;
}
.dropdown.show .mega-menu,
.mega-menu.show { display: flex !important; }

.mega-col { flex: 1; min-width: 145px; }
.mega-col-title {
  color: var(--gold-light);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 0 8px 10px;
  border-bottom: 1px solid rgba(201,162,39,.2);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 7px;
}
.hq-tag {
  background: var(--gold);
  color: var(--dark);
  font-size: .55rem;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 4px;
  vertical-align: middle;
}
.mega-link {
  display: block;
  color: rgba(255,255,255,.78);
  font-size: .85rem;
  padding: 8px 10px;
  border-radius: 8px;
  transition: background .2s, color .2s;
}
.mega-link:hover, .mega-link.active { background: rgba(201,162,39,.16); color: var(--gold-light); }
.mega-link i { color: var(--gold); margin-right: 6px; font-size: .72rem; }

@media(max-width:992px){
  .mega-menu-box { position: static !important; transform: none !important; min-width: 100% !important; flex-direction: column !important; gap: 4px !important; border-radius: 8px !important; padding: 12px !important; }
  .mega-menu { position: static !important; transform: none !important; min-width: 100% !important; box-shadow: none !important; border: none !important; border-radius: 0 !important; background: rgba(0,0,0,.3) !important; display: none !important; }
  .dropdown.show .mega-menu { display: block !important; }
  .mega-col { display: block; }
  .mega-col-title { margin-bottom: 4px; }
}

/* ---------- FLOATING LEAD BUTTONS ---------- */
.float-btns {
  position: fixed;
  bottom: 80px;
  right: 18px;
  z-index: 9990;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
}
.float-wa {
  background: #25D366;
  color: white;
  border: none;
  border-radius: 50px;
  padding: 12px 18px;
  font-size: .85rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 20px rgba(37,211,102,.45);
  cursor: pointer;
  text-decoration: none;
  transition: all .25s;
  animation: waPulse 2.5s ease-in-out infinite;
}
.float-wa:hover { background: #1ebe5d; color: white; transform: scale(1.05); }
.float-wa i { font-size: 1.2rem; }

.float-call {
  background: var(--green);
  color: white;
  border: none;
  border-radius: 50px;
  padding: 10px 16px;
  font-size: .82rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow);
  cursor: pointer;
  text-decoration: none;
  transition: all .25s;
}
.float-call:hover { background: var(--green-mid); color: white; transform: scale(1.03); }

@keyframes waPulse {
  0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,.45); }
  50% { box-shadow: 0 4px 30px rgba(37,211,102,.75), 0 0 0 8px rgba(37,211,102,.12); }
}

/* ---------- INQUIRY POPUP ---------- */
.inquiry-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.6);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}
.inquiry-overlay.show { opacity: 1; pointer-events: all; }
.inquiry-popup {
  background: white;
  border-radius: 20px;
  padding: 36px 32px;
  max-width: 480px;
  width: 100%;
  position: relative;
  transform: scale(.9);
  transition: transform .3s;
  box-shadow: 0 20px 60px rgba(0,0,0,.3);
}
.inquiry-overlay.show .inquiry-popup { transform: scale(1); }
.popup-close {
  position: absolute;
  top: 14px; right: 16px;
  background: none; border: none;
  font-size: 1.4rem; color: #999; cursor: pointer;
  line-height: 1;
}
.popup-close:hover { color: #333; }
.popup-badge {
  background: var(--gold-pale);
  border: 1.5px solid var(--gold);
  color: var(--gold-dark);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 50px;
  display: inline-block;
  margin-bottom: 1rem;
}
.popup-wa-btn {
  background: #25D366;
  color: white;
  border: none;
  border-radius: 50px;
  padding: 13px 24px;
  font-weight: 700;
  font-size: .93rem;
  cursor: pointer;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  transition: var(--transition);
}
.popup-wa-btn:hover { background: #1ebe5d; color: white; }
.seats-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(230,81,0,.1);
  border: 1px solid rgba(230,81,0,.3);
  color: #E65100;
  font-size: .75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  margin-top: 10px;
}

/* ---------- STICKY CTA BAR ---------- */
.sticky-cta {
  position: sticky;
  bottom: 0;
  background: var(--green-dark);
  color: white;
  padding: 14px 0;
  z-index: 900;
  border-top: 2px solid var(--gold);
}
.sticky-cta .container { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px; }

/* ---------- GALLERY PAGE ---------- */
.gallery-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 2rem;
}
.gal-btn {
  background: var(--light);
  color: var(--text);
  border: 1.5px solid var(--border);
  padding: 7px 20px;
  border-radius: 50px;
  font-size: .82rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}
.gal-btn.active, .gal-btn:hover { background: var(--green); color: white; border-color: var(--green); }

.gallery-grid {
  columns: 3 280px;
  gap: 14px;
}
.gal-item {
  break-inside: avoid;
  margin-bottom: 14px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gal-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform .5s ease;
}
.gal-item:hover img { transform: scale(1.05); }
.gal-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(28,8,0,.85) 0%, transparent 60%);
  opacity: 0;
  transition: opacity .3s;
  display: flex;
  align-items: flex-end;
  padding: 16px;
}
.gal-item:hover .gal-overlay { opacity: 1; }
.gal-overlay span { color: white; font-size: .82rem; }

/* Lightbox */
.lightbox { position: fixed; inset: 0; background: rgba(0,0,0,.92); z-index: 99999; display: none; align-items: center; justify-content: center; }
.lightbox.active { display: flex; }
.lightbox img { max-width: 90vw; max-height: 88vh; border-radius: 8px; object-fit: contain; }
.lb-close { position: absolute; top: 20px; right: 24px; color: white; font-size: 2rem; cursor: pointer; background: none; border: none; line-height: 1; }
.lb-prev, .lb-next { position: absolute; top: 50%; transform: translateY(-50%); color: white; background: rgba(255,255,255,.12); border: none; font-size: 1.5rem; padding: 12px 16px; border-radius: 8px; cursor: pointer; transition: background .2s; }
.lb-prev:hover, .lb-next:hover { background: rgba(255,255,255,.25); }
.lb-prev { left: 20px; }
.lb-next { right: 20px; }

/* ---------- COURSE HERO BADGE STRIP ---------- */
.course-badge-strip { background: var(--gold-pale); border: 1px solid var(--gold); border-radius: var(--radius); padding: 16px 20px; margin-bottom: 24px; }
.course-badge-strip .badge-item { display: flex; align-items: center; gap: 8px; font-size: .85rem; font-weight: 600; }
.course-badge-strip .badge-item i { color: var(--green); }
