/* ===== CSS Variables ===== */
:root {
  --maroon:       #7B1F1F;
  --maroon-dark:  #5A1515;
  --maroon-light: #A63232;
  --gold:         #C8922A;
  --gold-light:   #E8B84B;
  --gold-pale:    #FDF3DC;
  --cream:        #FAF6EE;
  --green-field:  #3A7D44;
  --text-dark:    #1E1208;
  --text-mid:     #4A3728;
  --text-soft:    #7A6555;
  --border:       rgba(123,31,31,0.12);
  --shadow:       0 4px 24px rgba(123,31,31,0.10);
  --shadow-strong:0 8px 40px rgba(123,31,31,0.18);
}

/* ===== Global Resets ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text-dark);
  background: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
}

/* ===== Topbar ===== */
.topbar {
  background: var(--maroon-dark);
  padding: 8px 0;
  text-align: center;
  font-size: 12.5px;
  color: var(--gold-pale);
}

.topbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px;
}

.topbar a {
  color: var(--gold-light);
  transition: color 0.2s;
}

.topbar i,
.footer-contact-line i {
  margin-right: 4px;
  font-size: 11px;
}

.topbar a:hover {
  color: #fff;
}

.topbar-sep {
  opacity: 0.3;
  margin: 0 4px;
}

/* ===== Navbar ===== */
.navbar {
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 2px solid var(--gold);
  box-shadow: var(--shadow);
  height: 70px;
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  height: 100%;
  gap: 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo-badge {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--maroon);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.5px;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-name {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--maroon);
  line-height: 1.2;
}

.logo-sub {
  font-size: 11px;
  color: var(--gold);
}

.nav-menu {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

.nav-link {
  padding: 8px 12px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-mid);
  border-radius: 8px;
  transition: all 0.2s;
  white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
  color: var(--maroon);
  background: var(--gold-pale);
}

.nav-link small {
  font-size: 10px;
  margin-left: 2px;
}

.has-dropdown {
  position: relative;
}

.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  box-shadow: var(--shadow);
  min-width: 200px;
  padding: 8px 0;
  list-style: none;
  z-index: 200;
}

.has-dropdown:hover .dropdown {
  display: block;
}

.dropdown li a {
  display: block;
  padding: 8px 16px;
  font-size: 13.5px;
  color: var(--text-mid);
  transition: all 0.15s;
}

.dropdown li a:hover {
  background: var(--gold-pale);
  color: var(--maroon);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.nav-profile-dropdown {
  position: relative;
}

.nav-profile-trigger {
  width: 36px;
  height: 36px;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  cursor: pointer;
  overflow: hidden;
}

.nav-profile-trigger img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nav-profile-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  min-width: 165px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  box-shadow: var(--shadow);
  display: none;
  z-index: 20;
  overflow: hidden;
}

.nav-profile-dropdown:hover .nav-profile-menu,
.nav-profile-dropdown:focus-within .nav-profile-menu {
  display: block;
}

.nav-profile-menu a,
.nav-profile-menu button {
  width: 100%;
  display: block;
  text-align: left;
  border: none;
  background: transparent;
  padding: 10px 12px;
  font-size: 13.5px;
  color: var(--text-mid);
  cursor: pointer;
}

.nav-profile-menu a:hover,
.nav-profile-menu button:hover {
  background: var(--gold-pale);
  color: var(--maroon);
}

.mobile-actions {
  display: none;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  width: 24px;
  height: 2.5px;
  background: var(--maroon);
  border-radius: 2px;
  transition: 0.3s;
}

/* ===== Buttons ===== */
.btn-outline {
  display: inline-block;
  padding: 10px 22px;
  border: 1.5px solid var(--maroon);
  color: var(--maroon);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.2s;
  cursor: pointer;
  background: transparent;
}

.btn-outline:hover {
  background: var(--maroon);
  color: #fff;
}

.btn-fill {
  display: inline-block;
  padding: 12px 28px;
  background: var(--maroon);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.2s;
  cursor: pointer;
}

.btn-fill:hover {
  background: var(--maroon-dark);
}

.btn-sm {
  padding: 7px 16px;
  font-size: 13px;
}

.btn-lg {
  padding: 14px 32px;
  font-size: 15px;
}

.btn-hero-gold {
  display: inline-block;
  padding: 14px 32px;
  background: var(--gold);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.25s;
  cursor: pointer;
}

.btn-hero-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(200,146,42,0.35);
}

.btn-hero-white {
  display: inline-block;
  padding: 14px 32px;
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.6);
  border-radius: 10px;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.25s;
  cursor: pointer;
}

.btn-hero-white:hover {
  background: rgba(255,255,255,0.15);
  border-color: #fff;
}

.btn-enroll {
  display: inline-block;
  padding: 7px 16px;
  background: var(--maroon);
  color: #fff;
  border: none;
  border-radius: 7px;
  font-size: 12.5px;
  font-weight: 600;
  transition: all 0.2s;
  cursor: pointer;
  white-space: nowrap;
}

.btn-enroll:hover {
  background: var(--maroon-dark);
}

/* ===== Hero Slider ===== */
.hero {
  position: relative;
  height: 580px;
  overflow: hidden;
}

.hero-slides {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-slide {
  width: 100%;
  flex-shrink: 0;
  position: relative;
  display: flex;
  align-items: center;
}

.slide-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-color: #3d1a0a;
  background-image: var(--slide-image), url('../assets/img/main-slider-bg.jpg');
  background-position: center top;
  background-size: cover;
  background-repeat: no-repeat, no-repeat;
}

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(90,21,21,0.62), rgba(90,21,21,0.30), rgba(90,21,21,0.08));
  z-index: 1;
}

.slide-content {
  position: relative;
  z-index: 2;
  max-width: 620px;
  padding: 0 60px;
  animation: slideIn 0.7s ease;
}

@keyframes slideIn {
  from { opacity: 0; transform: translateX(-40px); }
  to   { opacity: 1; transform: translateX(0); }
}

.slide-badge {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(6px);
  color: var(--gold-light);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 16px;
  border: 1px solid rgba(232,184,75,0.25);
}

.slide-badge i {
  margin-right: 4px;
  font-size: 12px;
}

.slide-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 42px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 16px;
}

.slide-desc {
  color: rgba(255,255,255,0.85);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 520px;
}

.slide-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-arr {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-arr:hover {
  background: rgba(255,255,255,0.35);
}

.hero-arr-left {
  left: 20px;
}

.hero-arr-right {
  right: 20px;
}

.hero-dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 8px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 6px;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: all 0.3s;
}

.dot.active {
  width: 28px;
  background: var(--gold);
}

/* ===== Stats Strip ===== */
.stats-strip {
  background: var(--maroon);
  padding: 22px 0;
}

.stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-bordered {
  border-right: 1px solid rgba(255,255,255,0.15);
}

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--gold-light);
}

.stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.8);
  font-weight: 400;
}

/* ===== Category Pills ===== */
.cat-strip {
  background: #fff;
  border-bottom: 2px solid var(--gold-pale);
  padding: 14px 0;
}

.cat-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.cat-inner::-webkit-scrollbar {
  display: none;
}

.cat-pill {
  flex-shrink: 0;
  padding: 8px 20px;
  border-radius: 24px;
  border: 1.5px solid var(--border);
  background: #fff;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-mid);
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}

.cat-pill:hover {
  border-color: var(--maroon-light);
  color: var(--maroon);
}

.cat-pill.active {
  background: var(--maroon);
  color: #fff;
  border-color: var(--maroon);
}

/* ===== Section Commons ===== */
.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 40px;
  padding: 0 20px;
}

.section-tag {
  display: inline-block;
  background: var(--gold-pale);
  color: var(--gold);
  padding: 5px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 12px;
}

.section-tag i {
  margin-right: 4px;
  font-size: 12px;
}

.section-tag-light {
  background: rgba(255,255,255,0.15);
  color: var(--gold-light);
  border: 1px solid rgba(232,184,75,0.3);
}

.section-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 34px;
  font-weight: 700;
  color: var(--maroon);
  margin-bottom: 12px;
  line-height: 1.25;
}

.section-sub {
  font-size: 15px;
  color: var(--text-soft);
  line-height: 1.7;
}

.divider {
  width: 60px;
  height: 3px;
  background: var(--gold);
  border-radius: 3px;
  margin: 16px auto 0;
}

.divider-left {
  margin-left: 0;
}

.section-center {
  text-align: center;
  margin-top: 32px;
}

/* ===== Slider Common ===== */
.slider-wrap {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px;
}

.slider-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 8px 4px 16px;
}

.slider-track::-webkit-scrollbar {
  display: none;
}

.slider-arr {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  color: var(--maroon);
  font-size: 16px;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-arr:hover {
  background: var(--maroon);
  color: #fff;
}

.slider-arr-left {
  left: 8px;
}

.slider-arr-right {
  right: 8px;
}

/* ===== Courses Section ===== */
.courses-section {
  background: var(--cream);
  padding: 64px 0 48px;
}

.course-card {
  flex-shrink: 0;
  width: 300px;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.3s;
  scroll-snap-align: start;
}

.course-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-strong);
}

.course-thumb {
  height: 168px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.thumb-gir         { background: linear-gradient(135deg, #7B1F1F, #C8922A); }
.thumb-agri        { background: linear-gradient(135deg, #2d6a30, #5aad3c); }
.thumb-ghee        { background: linear-gradient(135deg, #dcc07a, #C8922A); }
.thumb-biz         { background: linear-gradient(135deg, #1F3A7B, #4a6abf); }
.thumb-compost     { background: linear-gradient(135deg, #3A7D44, #6aad5a); }
.thumb-panchagavya { background: linear-gradient(135deg, #e8d8b8, #3A7D44); }

.course-emoji {
  font-size: 56px;
  color: rgba(255,255,255,0.85);
}

.course-emoji i {
  font-size: inherit;
}

.course-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 12px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 600;
  color: #fff;
}

.badge-maroon { background: var(--maroon); }
.badge-gold   { background: var(--gold); }
.badge-green  { background: var(--green-field); }

.course-body {
  padding: 16px;
}

.course-cat {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}

.course-title {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--maroon);
  line-height: 1.3;
  margin-bottom: 8px;
  min-height: 44px;
}

.course-meta {
  display: flex;
  gap: 12px;
  font-size: 12px;
  color: var(--text-soft);
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.course-meta i,
.yt-meta i,
.ig-meta i {
  margin-right: 3px;
  font-size: 11px;
  opacity: 0.7;
}

.course-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}

.course-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.price-now {
  font-size: 20px;
  font-weight: 700;
  color: var(--maroon);
}

.price-old {
  font-size: 13px;
  color: var(--text-soft);
  text-decoration: line-through;
}

/* ===== About Section ===== */
.about-section {
  background: var(--cream);
  padding: 72px 0;
}

.about-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-card {
  height: 420px;
  background: linear-gradient(135deg, rgba(90, 21, 21, 0.85), rgba(166, 50, 50, 0.65)), url('../assets/img/about-bg.png');
  background-size: cover;
  background-position: center;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px;
  position: relative;
  text-align: center;
}

.about-emoji {
  font-size: 80px;
  margin-bottom: 24px;
  color: rgba(255,255,255,0.85);
}

.about-emoji i {
  font-size: inherit;
}

.about-quote {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-style: italic;
  color: #fff;
  line-height: 1.6;
  max-width: 320px;
}

.about-years-badge {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background: var(--gold);
  color: #fff;
  padding: 8px 18px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
}

.about-text .section-tag {
  display: inline-block;
}

.about-text .section-title {
  text-align: left;
}

.about-para {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.8;
  margin: 20px 0 28px;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 28px;
}

.about-feat {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px;
  background: #fff;
  border-radius: 10px;
  border: 1px solid var(--border);
}

.feat-icon {
  font-size: 20px;
  flex-shrink: 0;
  color: var(--maroon);
  width: 28px;
  text-align: center;
}

.about-feat strong {
  display: block;
  font-size: 13.5px;
  color: var(--text-dark);
}

.about-feat small {
  font-size: 12px;
  color: var(--text-soft);
}

/* ===== YouTube Section ===== */
.youtube-section {
  background: #fff;
  padding: 64px 0 48px;
}

.yt-card {
  flex-shrink: 0;
  width: 300px;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.3s;
  scroll-snap-align: start;
}

.yt-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-strong);
}

.yt-thumb {
  height: 168px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: linear-gradient(135deg, #f0e6d3, #d4c4a8);
}

.yt-emoji {
  font-size: 48px;
  color: var(--maroon);
}

.yt-emoji i {
  font-size: inherit;
}

.yt-play {
  position: absolute;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #FF0000;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: 0 4px 16px rgba(255,0,0,0.3);
  cursor: pointer;
}

.yt-duration {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: rgba(0,0,0,0.8);
  color: #fff;
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 11.5px;
  font-weight: 500;
}

.yt-info {
  padding: 14px;
}

.yt-title {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.4;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.yt-meta {
  display: flex;
  gap: 12px;
  font-size: 12px;
  color: var(--text-soft);
}

/* ===== Instagram Section ===== */
.instagram-section {
  background: var(--cream);
  padding: 64px 0 48px;
}

.ig-card {
  flex-shrink: 0;
  width: 240px;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.3s;
  scroll-snap-align: start;
}

.ig-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-strong);
}

.ig-thumb {
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.ig-emoji {
  font-size: 56px;
  color: rgba(255,255,255,0.85);
}

.ig-emoji i {
  font-size: inherit;
}

.ig-info {
  padding: 12px 14px;
}

.ig-caption {
  font-size: 13px;
  color: var(--text-dark);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 8px;
}

.ig-meta {
  display: flex;
  gap: 12px;
  font-size: 12px;
  color: var(--text-soft);
}

/* ===== Google Reviews Section ===== */
.reviews-section {
  background: #fff;
  padding: 64px 0 48px;
}

.review-card {
  flex-shrink: 0;
  width: 340px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px;
  scroll-snap-align: start;
  transition: all 0.3s;
}

.review-card:hover {
  box-shadow: var(--shadow-strong);
  transform: translateY(-4px);
}

.review-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.review-stars {
  display: flex;
  gap: 2px;
}

.star-filled {
  color: var(--gold);
  font-size: 16px;
}

.star-empty {
  color: #ccc;
  font-size: 16px;
}

.google-g-badge {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.google-g-badge svg {
  width: 20px;
  height: 20px;
}

.review-text {
  font-size: 14.5px;
  font-style: italic;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gold);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
}

.review-author-info {
  flex: 1;
}

.review-author-info strong {
  display: block;
  font-size: 13.5px;
  color: var(--text-dark);
}

.review-author-info small {
  font-size: 12px;
  color: var(--text-soft);
}

.review-date {
  font-size: 11px;
  color: var(--text-soft);
  white-space: nowrap;
}

/* ===== Trainer/Founder Section ===== */
.trainer-section {
  background: var(--cream);
  padding: 72px 0;
}

.trainer-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 56px;
  align-items: start;
}

.trainer-card {
  background: #fff;
  border-radius: 20px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  padding: 36px 28px;
  text-align: center;
}

.trainer-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--maroon), var(--gold));
  border: 4px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.trainer-avatar span {
  font-size: 48px;
  color: #fff;
}

.trainer-avatar i {
  font-size: inherit;
}

.trainer-name {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--maroon);
  margin-bottom: 4px;
}

.trainer-role {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.trainer-bio {
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.6;
  margin-bottom: 16px;
}

.trainer-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
}

.trainer-tags span {
  background: var(--gold-pale);
  padding: 4px 12px;
  border-radius: 16px;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-mid);
}

.trainer-info .section-title {
  text-align: left;
}

.trainer-info p {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.8;
  margin: 16px 0;
}

.trainer-achievements {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 24px;
}

.achieve-card {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px;
  background: #fff;
  border-radius: 10px;
  border: 1px solid var(--border);
}

.achieve-icon {
  font-size: 20px;
  flex-shrink: 0;
  color: var(--maroon);
  width: 28px;
  text-align: center;
}

.achieve-card strong {
  display: block;
  font-size: 13.5px;
  color: var(--text-dark);
}

.achieve-card small {
  font-size: 12px;
  color: var(--text-soft);
}

/* ===== CTA Banner ===== */
.cta-section {
  background: linear-gradient(135deg, var(--maroon-dark), var(--maroon), var(--maroon-light));
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before,
.cta-section::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  z-index: 0;
}

.cta-section::before {
  width: 300px;
  height: 300px;
  top: -100px;
  left: -100px;
}

.cta-section::after {
  width: 400px;
  height: 400px;
  bottom: -150px;
  right: -100px;
}

.cta-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.cta-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 16px;
}

.cta-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  margin-bottom: 32px;
}

.cta-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== Footer ===== */
.site-footer {
  background: #1E1208;
  color: rgba(255,255,255,0.7);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 56px 20px 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

.footer-addr,
.footer-contact-line {
  font-size: 13px;
  line-height: 1.8;
  color: rgba(255,255,255,0.55);
}

.footer-socials {
  display: flex;
  gap: 8px;
  margin-top: 16px;
}

.social-btn {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  transition: all 0.2s;
}

.social-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(200,146,42,0.1);
}

.footer-col h4 {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul li a {
  font-size: 13.5px;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}

.footer-col ul li a:hover {
  color: var(--gold-light);
}

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

.footer-bottom-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12.5px;
  color: rgba(255,255,255,0.4);
}

/* ===== Scroll-to-top ===== */
#scrollTop {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--maroon);
  color: #fff;
  border: none;
  font-size: 20px;
  cursor: pointer;
  box-shadow: var(--shadow-strong);
  z-index: 90;
  display: none;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

#scrollTop.visible {
  display: flex;
}

#scrollTop:hover {
  background: var(--maroon-dark);
  transform: translateY(-2px);
}

/* ===== Fade-up Animation ===== */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Mobile Responsive ===== */
@media (max-width: 900px) {
  .topbar-inner {
    font-size: 11px;
    gap: 4px;
  }

  .topbar-sep {
    display: none;
  }

  .topbar-inner {
    flex-direction: column;
    gap: 2px;
  }

  .navbar {
    height: auto;
    padding: 10px 0;
  }

  .nav-inner {
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
  }

  .nav-logo {
    flex: 1;
    overflow: hidden;
    margin-right: 12px;
  }

  .logo-name {
    font-size: 13px;
    white-space: normal;
    line-height: 1.2;
  }
  
  .logo-sub {
    font-size: 10px;
  }

  .nav-toggle {
    display: flex;
    margin-left: 0;
  }

  .nav-menu {
    display: none;
    flex-direction: column;
    width: 100%;
    gap: 0;
    padding-top: 10px;
    margin-left: 0;
    list-style: none; /* Ensure no bullets on mobile */
  }

  .nav-menu.open {
    display: flex;
  }

  .nav-link {
    padding: 10px 12px;
    width: 100%;
  }

  .dropdown {
    position: static;
    box-shadow: none;
    border: none;
    padding-left: 16px;
    list-style: none;
  }

  .has-dropdown:hover .dropdown {
    display: none;
  }

  .has-dropdown.open .dropdown {
    display: block;
  }

  .desktop-actions {
    display: none !important;
  }

  .mobile-actions {
    display: flex !important;
    flex-direction: column;
    gap: 10px;
    padding: 16px;
    border-top: 1px solid var(--border);
    margin-top: 8px;
  }
  
  .mobile-actions a {
    width: 100%;
    text-align: center;
  }

  .mobile-actions .nav-profile-chip {
    justify-content: center;
  }

  .mobile-actions .nav-profile-dropdown {
    width: 100%;
  }

  .mobile-actions .nav-profile-trigger {
    margin: 0 auto;
  }

  .mobile-actions .nav-profile-menu {
    position: static;
    display: block;
    margin-top: 8px;
    border-radius: 8px;
    box-shadow: none;
  }

  /* Hero */
  .hero {
    height: 420px;
  }

  .slide-content {
    padding: 0 24px;
  }

  .slide-title {
    font-size: 26px;
  }

  .slide-desc {
    font-size: 14px;
    margin-bottom: 20px;
  }

  .slide-btns {
    flex-direction: column;
    gap: 10px;
  }

  .btn-hero-gold,
  .btn-hero-white {
    padding: 12px 24px;
    font-size: 14px;
    text-align: center;
  }

  .hero-arr {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }

  /* Stats */
  .stats-inner {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .stat-bordered {
    border-right: none;
  }

  .stat-number {
    font-size: 24px;
  }

  /* Courses & Sliders */
  .slider-wrap {
    padding: 0 20px;
  }

  .slider-arr {
    display: none;
  }

  .course-card {
    width: 260px;
  }

  .yt-card {
    width: 260px;
  }

  .ig-card {
    width: 200px;
  }

  .review-card {
    width: 280px;
  }

  /* About */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .about-card {
    height: 320px;
  }

  .about-features {
    grid-template-columns: 1fr;
  }

  /* Trainer */
  .trainer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .trainer-achievements {
    grid-template-columns: 1fr;
  }

  /* Section titles */
  .section-title {
    font-size: 26px;
  }

  .cta-title {
    font-size: 26px;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-bottom-inner {
    flex-direction: column;
    gap: 6px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .slide-title {
    font-size: 22px;
  }

  .slide-badge {
    font-size: 11px;
    padding: 4px 10px;
  }

  .hero {
    height: 380px;
  }
}
