/* ============================================================
   live-classes.css
   Profenaa Montessori — Live Classes Page (content only)
   Palette: Warm beige / brown, matching site design system
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');
/* Google Font Import */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');


*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}
/* ── CSS Variables ── */
:root {
  --beige-50:   #fdf8f1;
  --beige-100:  #f5ead8;
  --beige-200:  #e8d5b7;
  --beige-300:  #d9bc8e;
  --beige-400:  #c9a06a;
  --beige-500:  #b07d45;
  --beige-600:  #8a5e30;
  --beige-700:  #6b4520;
  --beige-800:  #4e2f10;
  --text-dark:  #3a2510;
  --text-mid:   #6b4520;
  --text-body:  #66584d;
  --text-light: #9a7050;
  --white:      #ffffff;
  --accent:     #9a6b43;
  --accent-dark:#7a5030;
  --shadow-sm:  0 4px 16px rgba(100,60,10,0.08);
  --shadow-md:  0 8px 32px rgba(100,60,10,0.12);
  --shadow-lg:  0 20px 50px rgba(100,60,10,0.14);
  --radius-sm:  10px;
  --radius-md:  18px;
  --radius-lg:  25px;
  --radius-xl:  32px;
  --transition: 0.3s ease;
}

/* ── Reset ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Poppins', sans-serif;
  background: #fff;
  color: var(--text-body);
  line-height: 1.7;
}
/* ==========================================
   NAVBAR
   ========================================== */
nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--beige-50);
  border-bottom: 2px solid var(--beige-200);
  box-shadow: var(--shadow);
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 1rem;
}

/* ==========================================
   BRAND / LOGO
   ========================================== */
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}

.brand-logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
  display: block;
}

.brand-text {
  line-height: 1.15;
}

.brand-name {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--beige-700);
  display: block;
  letter-spacing: 0.01em;
}

.brand-tagline {
  font-size: 10px;
  color: var(--text-light);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
}

/* ==========================================
   DESKTOP NAV LINKS
   ========================================== */
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  list-style: none;
}

.nav-links > li {
  position: relative;
}

.nav-links > li > a,
.nav-links > li > button {
  font-family: 'Poppins', sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-dark);
  text-decoration: none;
  padding: 0.45rem 0.75rem;
  border-radius: 6px;
  border: none;
  background: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: background 0.18s, color 0.18s;
  white-space: nowrap;
  letter-spacing: 0.01em;
}

.nav-links > li > a:hover,
.nav-links > li > button:hover {
  background: var(--beige-100);
  color: var(--beige-600);
}

/* Downward arrow on dropdown buttons using ::after */
.nav-links > li > button::after {
  content: '';
  display: inline-block;
  width: 7px;
  height: 7px;
  border-right: 2px solid var(--beige-600);
  border-bottom: 2px solid var(--beige-600);
  transform: rotate(45deg);
  transition: transform 0.25s cubic-bezier(0.4,0,0.2,1), border-color 0.18s;
  margin-left: 4px;
  margin-top: -3px;
  flex-shrink: 0;
}

.nav-links > li > button:hover::after {
  border-color: var(--beige-700);
}

.nav-links > li.open > button::after {
  transform: rotate(-135deg);
  margin-top: 3px;
}

/* ==========================================
   DESKTOP DROPDOWN MENUS
   ========================================== */
.dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: var(--beige-50);
  border: 1.5px solid var(--beige-200);
  border-radius: 12px;
  box-shadow: var(--shadow-drop);
  min-width: 280px;
  padding: 0.5rem 0;
  list-style: none;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s, transform 0.22s;
  z-index: 200;
}

.nav-links > li.open .dropdown {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

.dropdown li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 0.6rem 1.25rem;
  font-size: 13px;
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 400;
  transition: background 0.15s, color 0.15s, padding-left 0.15s;
  line-height: 1.4;
}

.dropdown li a::after {
  content: '';
  display: inline-block;
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  border-right: 1.8px solid var(--text-light);
  border-bottom: 1.8px solid var(--text-light);
  transform: rotate(-45deg);
  transition: border-color 0.15s, transform 0.15s;
}

.dropdown li a:hover {
  background: var(--beige-100);
  color: var(--beige-600);
  padding-left: 1.6rem;
}

.dropdown li a:hover::after {
  border-color: var(--beige-600);
  transform: rotate(-45deg) translateX(3px);
}

.dropdown li + li {
  border-top: 1px solid var(--beige-100);
}

/* ==========================================
   ENROLL NOW BUTTON
   ========================================== */
.enroll-btn {
  font-family: 'Poppins', sans-serif;
  font-size: 13.5px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--beige-400), var(--beige-600));
  color: var(--white);
  border: none;
  border-radius: 8px;
  padding: 0.55rem 1.3rem;
  cursor: pointer;
  letter-spacing: 0.04em;
  transition: opacity 0.18s, transform 0.15s;
  white-space: nowrap;
  box-shadow: 0 2px 10px rgba(140, 90, 40, 0.25);
  flex-shrink: 0;
  text-decoration: none;
  display: inline-block;
}

.enroll-btn:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

/* ==========================================
   HAMBURGER BUTTON
   ========================================== */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: 6px;
  z-index: 1100;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--beige-700);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
  transform-origin: center;
}

/* Hamburger → X animation */
.hamburger.active span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* ==========================================
   MOBILE MENU
   ========================================== */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--beige-50);
  border-top: 1.5px solid var(--beige-200);
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.35s;
}

.mobile-menu.open {
  max-height: 1000px;
  opacity: 1;
}

/* Mobile nav list */
.mobile-links {
  list-style: none;
  padding: 0.75rem 0 1rem;
  display: flex;
  flex-direction: column;
}

.mobile-links > li {
  border-bottom: 1px solid var(--beige-100);
}

.mobile-links > li:last-child {
  border-bottom: none;
}

.mobile-links > li > a,
.mobile-links > li > button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1.5rem;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  background: none;
  border: none;
  text-decoration: none;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  transition: background 0.15s;
  text-align: left;
}

.mobile-links > li > a:hover,
.mobile-links > li > button:hover {
  background: var(--beige-100);
}

/* Mobile arrow using ::after on the button */
.mobile-links > li > button::after {
  content: '';
  display: inline-block;
  width: 7px;
  height: 7px;
  border-right: 2px solid var(--beige-600);
  border-bottom: 2px solid var(--beige-600);
  transform: rotate(45deg);
  transition: transform 0.25s cubic-bezier(0.4,0,0.2,1);
  margin-top: -3px;
  flex-shrink: 0;
}

.mobile-links > li.open > button::after {
  transform: rotate(-135deg);
  margin-top: 3px;
}

/* Mobile sub-dropdown */
.mobile-dropdown {
  list-style: none;
  background: var(--beige-100);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-links > li.open .mobile-dropdown {
  max-height: 600px;
}

.mobile-dropdown li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 0.7rem 2.25rem;
  font-size: 13px;
  color: var(--text-mid);
  text-decoration: none;
  border-bottom: 1px solid var(--beige-200);
  transition: background 0.13s, color 0.13s;
}

.mobile-dropdown li a::after {
  content: '';
  display: inline-block;
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  border-right: 1.8px solid var(--text-light);
  border-bottom: 1.8px solid var(--text-light);
  transform: rotate(-45deg);
  transition: border-color 0.15s;
}

.mobile-dropdown li:last-child a {
  border-bottom: none;
}

.mobile-dropdown li a:hover {
  background: var(--beige-200);
  color: var(--beige-700);
}

.mobile-dropdown li a:hover::after {
  border-color: var(--beige-600);
}

/* Mobile enroll button */
.mobile-enroll {
  padding: 1rem 1.5rem 1.5rem;
}

.mobile-enroll .enroll-btn {
  width: 100%;
  text-align: center;
  padding: 0.85rem 1rem;
  font-size: 15px;
  border-radius: 10px;
}

/* ==========================================
   PAGE PLACEHOLDER
   ========================================== */
.page-placeholder {
  padding: 4rem 2rem;
  text-align: center;
  color: var(--text-light);
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  opacity: 0.55;
}

/* ==========================================
   RESPONSIVE BREAKPOINTS
   ========================================== */

/* Tablet */
@media (max-width: 1024px) {
  .brand-name {
    font-size: 13px;
  }
  .nav-links > li > a,
  .nav-links > li > button {
    font-size: 12.5px;
    padding: 0.4rem 0.55rem;
  }
  .enroll-btn {
    font-size: 12.5px;
    padding: 0.5rem 1rem;
  }
}

/* Mobile */
@media (max-width: 860px) {
  .nav-links,
  .desktop-enroll {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .mobile-menu {
    display: flex;
  }
  .brand-name {
    font-size: 13.5px;
  }
}
/* Navbar End */

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
address { font-style: normal; }

/* ── Shared Container ── */
.lc-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 6%;
}

/* ── Shared Section Header ── */
.lc-section-header {
  text-align: center;
  max-width: 860px;
  margin: 0 auto 60px;
}

.lc-section-tag {
  display: inline-block;
  background: #f1dfcb;
  color: #7a5738;
  padding: 9px 20px;
  border-radius: 50px;
  font-size: 13.5px;
  font-weight: 600;
  margin-bottom: 18px;
  letter-spacing: 0.03em;
}

.lc-section-header h2 {
  font-size: clamp(1.9rem, 3.5vw, 3rem);
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 16px;
}

.lc-section-sub {
  font-size: 1rem;
  color: var(--text-body);
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto;
}

/* ── Shared Buttons ── */
.lc-btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: transform var(--transition), opacity var(--transition), box-shadow var(--transition);
  cursor: pointer;
}

.lc-btn--primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 4px 16px rgba(154,107,67,0.3);
}

.lc-btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(154,107,67,0.38);
}

.lc-btn--outline {
  background: #fff;
  color: var(--text-mid);
  border: 1.5px solid var(--beige-300);
}

.lc-btn--outline:hover {
  transform: translateY(-3px);
  background: var(--beige-50);
}

.lc-btn--outline-dark {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.55);
}

.lc-btn--outline-dark:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-3px);
}

/* ── Highlight Span ── */
.lc-highlight {
  color: var(--accent);
  position: relative;
}

/* ================================================================
   SECTION 1 · HERO
================================================================ */
.lc-hero {
  height: calc(100vh - 80px);
  background: linear-gradient(135deg, #F8F1E9 0%, #F4E6D8 55%, #EEDBC8 100%);
  display: flex;
  align-items: center;
  padding: 40px 0;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
}

/* Decorative background shapes */
.lc-hero__bg-shapes { position: absolute; inset: 0; pointer-events: none; z-index: 0; }

.lc-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.18;
}

.lc-shape--1 {
  width: 520px; height: 520px;
  background: radial-gradient(circle, #c9a06a, transparent 70%);
  top: -160px; right: -100px;
}

.lc-shape--2 {
  width: 320px; height: 320px;
  background: radial-gradient(circle, #b07d45, transparent 70%);
  bottom: -80px; left: 10%;
}

.lc-shape--3 {
  width: 200px; height: 200px;
  background: radial-gradient(circle, #d9bc8e, transparent 70%);
  top: 40%; left: 45%;
}

.lc-hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* Badge */
.lc-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--beige-200);
  color: var(--text-mid);
  padding: 9px 18px;
  border-radius: 50px;
  font-size: 13.5px;
  font-weight: 600;
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
}

.lc-badge__dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: #e04444;
  box-shadow: 0 0 0 3px rgba(224,68,68,0.22);
  animation: pulse 1.6s infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(224,68,68,0.22); }
  50%       { box-shadow: 0 0 0 7px rgba(224,68,68,0.08); }
}

/* Hero content */
.lc-hero__title {
  font-size: clamp(1.8rem, 3.5vw, 3.2rem);
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.13;
  margin-bottom: 18px;
}

.lc-hero__desc {
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.8;
  max-width: 580px;
  margin-bottom: 22px;
}

/* Pills */
.lc-hero__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  margin-bottom: 28px;
}

.lc-hero__pills li {
  background: #fff;
  border: 1px solid var(--beige-200);
  padding: 7px 14px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-mid);
  box-shadow: var(--shadow-sm);
}

.lc-hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Hero Visual — Video Card */
.lc-hero__visual {
  display: flex;
  justify-content: center;
}

.lc-video-card {
  background: #fff;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  width: 100%;
  max-width: 500px;
  border: 1px solid var(--beige-200);
}

.lc-video-card__screen {
  position: relative;
  width: 100%;
  height: calc(100vh - 380px);
  max-height: 280px;
  min-height: 200px;
  overflow: hidden;
}

.lc-video-card__screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.lc-video-card:hover .lc-video-card__screen img {
  transform: scale(1.05);
}

.lc-video-card__badge {
  position: absolute;
  top: 16px; left: 16px;
  background: #e04444;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 50px;
  letter-spacing: 0.06em;
  animation: pulse-badge 2s infinite;
}

@keyframes pulse-badge {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.7; }
}

.lc-video-card__stats {
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 16px 20px;
  gap: 10px;
}

.lc-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
}

.lc-stat strong {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-dark);
}

.lc-stat span {
  font-size: 12px;
  color: var(--text-light);
  font-weight: 500;
  text-align: center;
}

.lc-stat-divider {
  width: 1px;
  height: 36px;
  background: var(--beige-200);
}

/* Hero Responsive */
@media (max-width: 991px) {
  .lc-hero {
    height: auto;
    min-height: 100vh;
    padding: 100px 0 60px;
    overflow: visible;
  }
  .lc-hero__inner { grid-template-columns: 1fr; text-align: center; gap: 40px; }
  .lc-hero__desc { margin: 0 auto 28px; }
  .lc-hero__pills { justify-content: center; }
  .lc-hero__actions { justify-content: center; }
  .lc-video-card { max-width: 460px; margin: 0 auto; }
  .lc-video-card__screen { height: 260px; max-height: 260px; }
}

@media (max-width: 576px) {
  .lc-hero { padding: 80px 0 50px; }
  .lc-hero__title { font-size: 1.9rem; }
  .lc-hero__actions { flex-direction: column; align-items: center; }
  .lc-hero__actions .lc-btn { width: 100%; text-align: center; }
  .lc-video-card__screen { height: 220px; max-height: 220px; }
  .lc-video-card__stats { padding: 14px 12px; }
  .lc-stat strong { font-size: 1.2rem; }
}

/* ================================================================
   SECTION 2 · ABOUT
================================================================ */
.lc-about {
  padding: 100px 0;
  background: #fffdf9;
}

.lc-about__intro {
  text-align: center;
  max-width: 1000px;
  margin: 0 auto 22px;
  color: var(--text-body);
  font-size: 1rem;
  line-height: 1.9;
}

.lc-about__grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.lc-about__card {
  background: #f9f2ea;
  border: 1px solid var(--beige-200);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: transform var(--transition), box-shadow var(--transition);
}

.lc-about__card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}

.lc-about__card-icon {
  font-size: 2rem;
  margin-bottom: 14px;
}

.lc-about__card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.lc-about__card p {
  font-size: 0.92rem;
  color: var(--text-body);
  line-height: 1.8;
}

@media (max-width: 991px) { .lc-about__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 576px) {
  .lc-about { padding: 70px 0; }
  .lc-about__grid { grid-template-columns: 1fr; }
  .lc-about__intro { text-align: left; }
}

/* ================================================================
   SECTION 3 · HOW IT WORKS
================================================================ */
.lc-how {
  padding: 100px 0;
  background: #fdf8f2;
}

.lc-how__steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.lc-step {
  display: flex;
  gap: 22px;
  align-items: flex-start;
  background: #fff;
  border: 1px solid var(--beige-200);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  transition: transform var(--transition), box-shadow var(--transition);
}

.lc-step:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.lc-step__num {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--beige-200);
  line-height: 1;
  flex-shrink: 0;
  min-width: 50px;
  user-select: none;
}

.lc-step__body h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.lc-step__body p {
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.8;
}

@media (max-width: 768px) { .lc-how__steps { grid-template-columns: 1fr; } }
@media (max-width: 576px) { .lc-how { padding: 70px 0; } }

/* ================================================================
   SECTION 4 · PROGRAMS
================================================================ */
.lc-programs {
  padding: 100px 0;
  background: #fff;
}

.lc-programs__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.lc-program-card {
  background: var(--beige-50);
  border: 1px solid var(--beige-200);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.lc-program-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  background: #fff;
}

.lc-program-card__num {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--beige-200);
  line-height: 1;
  user-select: none;
}

.lc-program-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.35;
}

.lc-program-card p {
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.8;
  flex: 1;
}

.lc-program-card__link {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--accent);
  margin-top: 4px;
  transition: gap var(--transition), color var(--transition);
  display: inline-block;
}

.lc-program-card__link:hover { color: var(--accent-dark); letter-spacing: 0.03em; }

@media (max-width: 991px) { .lc-programs__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 576px) {
  .lc-programs { padding: 70px 0; }
  .lc-programs__grid { grid-template-columns: 1fr; }
}

/* ================================================================
   SECTION 5 · WHY CHOOSE
================================================================ */
.lc-why {
  padding: 100px 0;
  background: #fffdf9;
}

.lc-why__inner {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  gap: 70px;
  align-items: center;
}

.lc-why__content .lc-section-tag { margin-bottom: 18px; }

.lc-why__content h2 {
  font-size: clamp(1.9rem, 3.5vw, 3rem);
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 22px;
}

.lc-why__content p {
  font-size: 1rem;
  color: var(--text-body);
  line-height: 1.9;
  margin-bottom: 18px;
}

.lc-why__points {
  background: #fff;
  border: 1px solid var(--beige-200);
  border-radius: var(--radius-xl);
  padding: 38px 36px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.lc-why-point {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.lc-why-point__icon {
  width: 32px;
  height: 32px;
  min-width: 32px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
}

.lc-why-point p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--text-body);
  line-height: 1.6;
  font-weight: 500;
  padding-top: 5px;
}

@media (max-width: 991px) {
  .lc-why__inner { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 576px) {
  .lc-why { padding: 70px 0; }
  .lc-why__points { padding: 26px 22px; }
}

/* ================================================================
   SECTION 6 · GEO
================================================================ */
.lc-geo {
  padding: 100px 0;
  background: #fdf8f2;
}

.lc-geo__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.lc-geo__card {
  background: #fff;
  border: 1px solid var(--beige-200);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  transition: transform var(--transition), box-shadow var(--transition);
}

.lc-geo__card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.lc-geo__card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.lc-geo__card p {
  font-size: 0.88rem;
  color: var(--text-body);
  line-height: 1.75;
}

@media (max-width: 991px) { .lc-geo__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 576px) {
  .lc-geo { padding: 70px 0; }
  .lc-geo__grid { grid-template-columns: 1fr; }
}

/* ================================================================
   SECTION 7 · TESTIMONIALS
================================================================ */
.lc-testimonials {
  padding: 100px 0;
  background: #fff;
}

.lc-testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.lc-testimonial {
  background: var(--beige-50);
  border: 1px solid var(--beige-200);
  border-radius: var(--radius-lg);
  padding: 34px 30px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  transition: transform var(--transition), box-shadow var(--transition);
}

.lc-testimonial:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.lc-testimonial::before {
  content: '"';
  font-size: 5rem;
  font-weight: 800;
  color: var(--beige-200);
  line-height: 1;
  position: absolute;
  top: 14px;
  left: 22px;
  pointer-events: none;
  user-select: none;
}

.lc-testimonial > p {
  font-size: 0.92rem;
  color: var(--text-body);
  line-height: 1.85;
  position: relative;
  z-index: 1;
  padding-top: 32px;
}

.lc-testimonial footer {
  display: flex;
  flex-direction: column;
  gap: 3px;
  border-top: 1px solid var(--beige-200);
  padding-top: 18px;
}

.lc-testimonial footer strong {
  font-size: 0.95rem;
  color: var(--text-dark);
  font-weight: 700;
}

.lc-testimonial footer span {
  font-size: 0.82rem;
  color: var(--text-light);
}

@media (max-width: 991px) { .lc-testimonials__grid { grid-template-columns: 1fr; max-width: 580px; margin: 0 auto; } }
@media (max-width: 576px) { .lc-testimonials { padding: 70px 0; } }

/* ================================================================
   SECTION 8 · FAQ
================================================================ */
.lc-faq {
  padding: 100px 0;
  background: #fffdf9;
}

.lc-faq__list {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.lc-faq__item {
  background: #fff;
  border: 1px solid var(--beige-200);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: box-shadow var(--transition);
}

.lc-faq__item:hover { box-shadow: var(--shadow-sm); }

.lc-faq__item[open] {
  border-color: var(--beige-300);
  box-shadow: var(--shadow-md);
}

.lc-faq__item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--text-dark);
  cursor: pointer;
  list-style: none;
  gap: 16px;
  user-select: none;
  transition: background var(--transition);
}

.lc-faq__item summary:hover { background: var(--beige-50); }

.lc-faq__item summary::after {
  content: '';
  display: inline-block;
  width: 9px;
  height: 9px;
  border-right: 2px solid var(--beige-500);
  border-bottom: 2px solid var(--beige-500);
  transform: rotate(45deg);
  transition: transform 0.25s ease;
  flex-shrink: 0;
  margin-top: -3px;
}

.lc-faq__item[open] summary::after {
  transform: rotate(-135deg);
  margin-top: 3px;
}

.lc-faq__item summary::-webkit-details-marker { display: none; }

.lc-faq__item > p {
  padding: 0 24px 22px;
  font-size: 0.92rem;
  color: var(--text-body);
  line-height: 1.85;
  border-top: 1px solid var(--beige-100);
  padding-top: 16px;
}

@media (max-width: 576px) {
  .lc-faq { padding: 70px 0; }
  .lc-faq__item summary { padding: 16px 18px; font-size: 0.9rem; }
  .lc-faq__item > p { padding: 14px 18px 18px; }
}

/* ================================================================
   SECTION 9 · CTA
================================================================ */
.lc-cta {
  padding: 0 0 100px;
  background: #fff;
}

.lc-cta__inner {
  background: linear-gradient(135deg, #3d2b1f 0%, #6b4520 60%, #8a5e30 100%);
  border-radius: var(--radius-xl);
  padding: 52px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  overflow: hidden;
}

.lc-cta__inner::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,160,106,0.18), transparent 70%);
  pointer-events: none;
}

.lc-cta__text h2 {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 12px;
}

.lc-cta__text p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.7;
  max-width: 520px;
}

.lc-cta__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  flex-shrink: 0;
}

.lc-cta .lc-btn--primary {
  background: var(--beige-300);
  color: var(--text-dark);
  box-shadow: 0 4px 16px rgba(217,188,142,0.4);
}

.lc-cta .lc-btn--primary:hover {
  background: var(--beige-400);
  box-shadow: 0 8px 24px rgba(217,188,142,0.5);
}

@media (max-width: 768px) {
  .lc-cta__inner {
    flex-direction: column;
    text-align: center;
    padding: 40px 32px;
  }
  .lc-cta__actions { justify-content: center; }
  .lc-cta__text p { margin: 0 auto; }
}

@media (max-width: 576px) {
  .lc-cta { padding: 0 0 70px; }
  .lc-cta__inner { padding: 32px 22px; border-radius: var(--radius-lg); }
  .lc-cta__actions { width: 100%; flex-direction: column; align-items: center; }
  .lc-cta__actions .lc-btn { width: 100%; text-align: center; }
}

/* ================================================================
   UTILITIES — Animation on scroll (optional enhancement)
================================================================ */
@media (prefers-reduced-motion: no-preference) {
  .lc-about__card,
  .lc-step,
  .lc-program-card,
  .lc-geo__card,
  .lc-testimonial {
    opacity: 0;
    transform: translateY(24px);
    animation: fadeUp 0.55s ease forwards;
  }

  .lc-about__card:nth-child(1) { animation-delay: 0.05s; }
  .lc-about__card:nth-child(2) { animation-delay: 0.12s; }
  .lc-about__card:nth-child(3) { animation-delay: 0.19s; }
  .lc-about__card:nth-child(4) { animation-delay: 0.26s; }
  .lc-about__card:nth-child(5) { animation-delay: 0.33s; }
  .lc-about__card:nth-child(6) { animation-delay: 0.40s; }

  @keyframes fadeUp {
    to { opacity: 1; transform: translateY(0); }
  }
}


/* ============================================================
   footer.css
   Profenaa Montessori Teacher Training Institute – Coimbatore
   Palette: Deep warm brown bg · Beige text · Gold accent
   ============================================================ */

:root {
  --f-bg:          #1e130a;       /* deep espresso brown */
  --f-bg-top:      #241608;
  --f-border:      rgba(181,129,58,0.18);
  --f-border-btm:  rgba(181,129,58,0.25);
  --accent:        #b5813a;
  --accent-hover:  #d4a05a;
  --f-text:        #c8b89a;       /* warm beige body text */
  --f-muted:       #8a7560;
  --f-white:       #f5efe4;
  --f-link-hover:  #e8c98a;
  --font-display:  'Playfair Display', Georgia, serif;
  --font-body:     'Lato', 'Segoe UI', sans-serif;
  --transition:    0.25s ease;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: var(--font-body);
  background: #f5f0e8;
}

a { text-decoration: none; color: inherit; }
address { font-style: normal; }

/* ══════════════════════════════════════════
   FOOTER WRAPPER
══════════════════════════════════════════ */
.site-footer {
  background: var(--f-bg);
  color: var(--f-text);
  font-family: var(--font-body);
  position: relative;
  overflow: hidden;
}

/* subtle warm radial glow top-left */
.site-footer::before {
  content: '';
  position: absolute;
  top: -120px;
  left: -120px;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(181,129,58,0.07) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* ── Footer Top ── */
.footer-top {
  position: relative;
  z-index: 1;
  padding: 60px 40px 52px;
  border-bottom: 1px solid var(--f-border-btm);
  max-width: 1300px;
  margin: 0 auto;
}

/* ── 5-column grid ── */
.footer-grid {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1.1fr 1.2fr 1.2fr;
  gap: 40px 32px;
  align-items: start;
}

/* ── Column base ── */
.footer-col {}

/* ── Col Title ── */
.footer-col__title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--f-white);
  letter-spacing: 0.02em;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-col__title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

/* ══════════════════════════════════════════
   COL 1 – BRAND
══════════════════════════════════════════ */
.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  width: fit-content;
}

.footer-logo__icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}

.footer-logo__icon svg {
  width: 100%;
  height: 100%;
}

.footer-logo__text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.footer-logo__name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--f-white);
  letter-spacing: 0.02em;
}

.footer-logo__sub {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: 2px;
}

.footer-brand__desc {
  font-size: 0.85rem;
  line-height: 1.75;
  color: var(--f-text);
  margin-bottom: 22px;
  max-width: 300px;
}

/* Social Icons */
.footer-social {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.footer-social__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--f-border);
  border-radius: 50%;
  color: var(--f-text);
  transition: background var(--transition), border-color var(--transition), color var(--transition), transform var(--transition);
}

.footer-social__link svg {
  width: 17px;
  height: 17px;
}

.footer-social__link:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  transform: translateY(-3px);
}

/* ══════════════════════════════════════════
   COLS 2–4 – LINKS
══════════════════════════════════════════ */
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.footer-links li a {
  font-size: 0.855rem;
  color: var(--f-text);
  display: flex;
  align-items: center;
  gap: 7px;
  transition: color var(--transition), gap var(--transition);
  line-height: 1.4;
}

.footer-links li a::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.55;
  flex-shrink: 0;
  transition: opacity var(--transition), transform var(--transition);
}

.footer-links li a:hover {
  color: var(--f-link-hover);
  gap: 10px;
}

.footer-links li a:hover::before {
  opacity: 1;
  transform: scale(1.3);
}

/* ══════════════════════════════════════════
   COL 5 – CONTACT
══════════════════════════════════════════ */
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-contact__item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--f-text);
  line-height: 1.6;
  transition: color var(--transition);
}

.footer-contact__item:hover {
  color: var(--f-link-hover);
}

.footer-contact__item--location {
  align-items: flex-start;
}

.footer-contact__icon {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  color: var(--accent);
  margin-top: 2px;
}

.footer-contact__icon svg {
  width: 100%;
  height: 100%;
}

/* ══════════════════════════════════════════
   BOTTOM BAR
══════════════════════════════════════════ */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  padding: 18px 40px;
  max-width: 1300px;
  margin: 0 auto;
}

.footer-bottom__copy {
  font-size: 0.78rem;
  color: var(--f-muted);
}

.footer-bottom__nav {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  color: var(--f-muted);
}

.footer-bottom__nav a {
  color: var(--f-muted);
  transition: color var(--transition);
}

.footer-bottom__nav a:hover {
  color: var(--accent);
}

/* ══════════════════════════════════════════
   RESPONSIVE – Tablet ≤1024px
══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 36px 28px;
  }

  /* Brand spans full row */
  .footer-col--brand {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    column-gap: 28px;
    align-items: start;
  }

  .footer-logo {
    grid-row: 1;
    grid-column: 1;
    margin-bottom: 0;
  }

  .footer-brand__desc {
    grid-row: 1;
    grid-column: 2;
    margin-bottom: 0;
    max-width: 100%;
  }

  .footer-social {
    grid-row: 2;
    grid-column: 1 / -1;
    margin-top: 14px;
  }
}

/* ══════════════════════════════════════════
   RESPONSIVE – Tablet ≤768px
══════════════════════════════════════════ */
@media (max-width: 768px) {
  .footer-top {
    padding: 44px 24px 40px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px 20px;
  }

  .footer-col--brand {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-brand__desc {
    max-width: 100%;
  }

  .footer-col--contact {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    padding: 16px 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}

/* ══════════════════════════════════════════
   RESPONSIVE – Mobile ≤480px
══════════════════════════════════════════ */
@media (max-width: 480px) {
  .footer-top {
    padding: 36px 18px 32px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-col--brand,
  .footer-col--contact {
    grid-column: 1;
  }

  .footer-logo__name  { font-size: 1.15rem; }
  .footer-logo__icon  { width: 40px; height: 40px; }

  .footer-col__title  { font-size: 0.95rem; margin-bottom: 14px; }

  .footer-links       { gap: 9px; }
  .footer-links li a  { font-size: 0.82rem; }

  .footer-contact__item { font-size: 0.82rem; }

  .footer-bottom {
    padding: 14px 18px;
  }

  .footer-bottom__copy,
  .footer-bottom__nav { font-size: 0.73rem; }
}

/* ── Reduced Motion ── */
@media (prefers-reduced-motion: reduce) {
  .footer-social__link,
  .footer-links li a,
  .footer-contact__item { transition: none !important; }
}