/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: #1a1a2e;
  line-height: 1.7;
  background: #fff;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button, input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
}

/* ===== CSS VARIABLES ===== */
:root {
  --green-dark: #2d5016;
  --green: #4a7c28;
  --green-light: #6fa33e;
  --green-pale: #e8f5e0;
  --gold: #c5a04e;
  --gold-light: #f5ecd4;
  --charcoal: #1a1a2e;
  --gray-900: #2d2d3f;
  --gray-700: #4a4a5e;
  --gray-500: #7a7a8e;
  --gray-300: #b8b8c8;
  --gray-100: #f0f0f5;
  --white: #ffffff;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.1);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
  --shadow-xl: 0 16px 60px rgba(0,0,0,0.15);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --max-width: 1200px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--charcoal);
}
h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 3vw, 1.8rem); }
h4 { font-size: 1.2rem; }
p { margin-bottom: 1rem; color: var(--gray-700); }
.section-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 0.75rem;
  display: block;
}
.section-title { margin-bottom: 1.5rem; }
.section-subtitle {
  font-size: 1.1rem;
  color: var(--gray-500);
  max-width: 640px;
  margin-bottom: 2rem;
}

/* ===== LAYOUT ===== */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 2rem; }
.section { padding: 6rem 0; }
.section-alt { background: var(--gray-100); }
.section-dark {
  background: var(--charcoal);
  color: var(--white);
}
.section-dark h2, .section-dark h3, .section-dark h4 { color: var(--white); }
.section-dark p { color: var(--gray-300); }
.section-dark .section-label { color: var(--green-light); }
.section-green {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 100%);
  color: var(--white);
}
.section-green h2, .section-green h3 { color: var(--white); }
.section-green p { color: rgba(255,255,255,0.85); }
.section-green .section-label { color: var(--gold); }
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* ===== GRID ===== */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
@media (max-width: 768px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--green);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-secondary {
  background: transparent;
  color: var(--green);
  border: 2px solid var(--green);
}
.btn-secondary:hover {
  background: var(--green);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-gold {
  background: var(--gold);
  color: var(--white);
}
.btn-gold:hover {
  background: #b08e3a;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-white {
  background: var(--white);
  color: var(--green-dark);
}
.btn-white:hover {
  background: var(--green-pale);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.15);
  transform: translateY(-2px);
}
.btn-sm { padding: 0.6rem 1.4rem; font-size: 0.85rem; }
.btn-lg { padding: 1rem 2.5rem; font-size: 1.05rem; }

/* ===== NAVIGATION ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: var(--transition);
}
.nav.scrolled {
  box-shadow: var(--shadow-sm);
}
.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}
.nav-logo img { height: 50px; width: auto; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-links a {
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-700);
  border-radius: var(--radius-sm);
  transition: var(--transition);
  position: relative;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--green);
  background: var(--green-pale);
}
.nav-links .dropdown {
  position: relative;
}
.nav-links .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 260px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
}
.nav-links .dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-menu a {
  display: block;
  padding: 0.6rem 1rem;
  font-size: 0.85rem;
  border-radius: var(--radius-sm);
}
.nav-cta {
  margin-left: 0.5rem;
  color: var(--white) !important;
}
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}
.mobile-toggle span {
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: var(--transition);
}
@media (max-width: 1024px) {
  .nav {
    background: var(--white);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  .mobile-toggle { display: flex; }
  .nav-links {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 2rem;
    gap: 0;
    transform: translateX(100%);
    transition: var(--transition);
    overflow-y: auto;
    box-shadow: -4px 0 20px rgba(0,0,0,0.1);
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a {
    padding: 1rem;
    font-size: 1rem;
    color: var(--charcoal);
    border-bottom: 1px solid var(--gray-100);
  }
  .nav-links a:hover,
  .nav-links a.active {
    color: var(--green);
    background: var(--green-pale);
  }
  .nav-links .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    padding-left: 1rem;
    display: none;
    border: none;
  }
  .nav-links .dropdown-menu a {
    border-bottom: none;
    font-size: 0.9rem;
    color: var(--gray-600);
  }
  .nav-links .dropdown.open .dropdown-menu { display: block; }
  .nav-cta { margin-left: 0; margin-top: 1rem; text-align: center; }
}

/* ===== HERO SPLIT HOME ===== */
.hero-split-home {
  position: relative;
  min-height: 92vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  background: var(--charcoal);
  padding-top: 80px;
}
.hero-split-left {
  display: flex;
  align-items: center;
  padding: 80px 60px 80px 0;
  position: relative;
  z-index: 2;
}
.hero-split-left::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top left, rgba(74,124,40,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero-split-content {
  position: relative;
  z-index: 2;
  max-width: 560px;
  margin-left: auto;
  padding-left: 2rem;
}
.hero-split-content .section-label { color: var(--gold); font-size: 0.85rem; }
.hero-split-content h1 { color: var(--white); margin-bottom: 1.25rem; }
.hero-split-content p { color: rgba(255,255,255,0.85); font-size: 1.15rem; margin-bottom: 2rem; }
.hero-buttons { display: flex; flex-wrap: wrap; gap: 1rem; }
.hero-split-right {
  position: relative;
  overflow: hidden;
}
.hero-split-right::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to right, var(--charcoal) 0%, transparent 30%);
}
.hero-split-right::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  height: 200px;
  background: linear-gradient(to top, var(--charcoal) 0%, transparent 100%);
}
.hero-split-right img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
@media (max-width: 900px) {
  .hero-split-home {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    min-height: auto;
  }
  .hero-split-left { padding: 60px 2rem 40px; }
  .hero-split-content { margin-left: 0; padding-left: 0; max-width: 100%; }
  .hero-split-right { height: 420px; }
  .hero-split-right::before {
    background: linear-gradient(to bottom, var(--charcoal) 0%, transparent 40%);
  }
}

/* ===== HERO (speaking page) ===== */
.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,26,46,0.85) 0%, rgba(45,80,22,0.7) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  padding: 4rem 0;
}
.hero h1 { color: var(--white); margin-bottom: 1.5rem; }
.hero p { color: rgba(255,255,255,0.85); font-size: 1.15rem; margin-bottom: 2rem; }
.hero .section-label { color: var(--gold); font-size: 0.85rem; }

/* ===== HERO SPLIT (About, etc.) ===== */
.hero-split {
  min-height: 70vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
  padding-top: 80px;
}
.hero-split-img {
  height: 100%;
  min-height: 500px;
  background-size: cover;
  background-position: center;
  border-radius: 0;
}
@media (max-width: 768px) {
  .hero-split { grid-template-columns: 1fr; min-height: auto; padding-top: 100px; }
  .hero-split-img { min-height: 300px; border-radius: var(--radius-md); }
}

/* ===== PAGE HERO (smaller) ===== */
.page-hero {
  padding: 10rem 0 4rem;
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--gray-900) 100%);
  text-align: center;
}
.page-hero h1 { color: var(--white); margin-bottom: 1rem; }
.page-hero p { color: var(--gray-300); font-size: 1.15rem; max-width: 600px; margin: 0 auto; }
.page-hero .section-label { color: var(--gold); }

/* ===== CARDS ===== */
.card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.card-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-sm);
  background: var(--green-pale);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.5rem;
}
.card h4 { margin-bottom: 0.75rem; }

/* ===== PILLAR CARDS ===== */
.pillar-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: var(--transition);
}
.pillar-card:hover {
  background: rgba(255,255,255,0.14);
  transform: translateY(-4px);
}
.pillar-card .pillar-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.pillar-card h4 { color: var(--white); font-size: 1rem; letter-spacing: 1px; text-transform: uppercase; }

/* ===== TESTIMONIALS ===== */
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
}
.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.testimonial-card .quote-mark {
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  color: var(--green-pale);
  line-height: 1;
  position: absolute;
  top: 1rem;
  right: 1.5rem;
}
.testimonial-card p {
  font-style: italic;
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
  position: relative;
  z-index: 1;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.testimonial-author img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}
.testimonial-author .name {
  font-weight: 600;
  color: var(--charcoal);
  font-size: 0.9rem;
}

/* ===== TEAM CARDS ===== */
.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.team-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.team-card-img {
  height: 320px;
  overflow: hidden;
}
.team-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}
.team-card:hover .team-card-img img {
  transform: scale(1.05);
}
.team-card-body {
  padding: 1.5rem 2rem 2rem;
}
.team-card-body h3 { margin-bottom: 0.25rem; font-size: 1.3rem; }
.team-card-body .role {
  color: var(--green);
  font-weight: 500;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

/* ===== FEATURE LIST ===== */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 3rem 0;
}
.feature-row.reverse { direction: rtl; }
.feature-row.reverse > * { direction: ltr; }
.feature-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.feature-img img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  object-position: center top;
}
@media (max-width: 768px) {
  .feature-row, .feature-row.reverse { grid-template-columns: 1fr; gap: 2rem; direction: ltr; }
}

/* ===== PROCESS / STEPS ===== */
.process-step {
  display: flex;
  gap: 2rem;
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--gray-100);
}
.process-step:last-child { border-bottom: none; }
.step-number {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
}
.step-content h3 { margin-bottom: 0.75rem; }
.step-content ul { padding-left: 1.25rem; list-style: disc; margin-top: 0.75rem; }
.step-content ul li { color: var(--gray-700); margin-bottom: 0.4rem; }

/* ===== FORMS ===== */
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--gray-700);
  margin-bottom: 0.4rem;
}
.form-control {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-sm);
  background: var(--white);
  transition: var(--transition);
  font-size: 0.95rem;
}
.form-control:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(74,124,40,0.12);
}
textarea.form-control { min-height: 120px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 768px) { .form-row { grid-template-columns: 1fr; } }
.checkbox-group { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 0.5rem; }
.checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9rem;
  color: var(--gray-700);
  cursor: pointer;
}
.checkbox-label input[type="checkbox"] {
  accent-color: var(--green);
  width: 16px;
  height: 16px;
}
.form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  max-width: 600px;
}

/* ===== PRODUCT CARDS ===== */
.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.product-card-img {
  height: 240px;
  overflow: hidden;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-card-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.product-card-body h4 { margin-bottom: 0.5rem; }
.product-card-body p { font-size: 0.9rem; flex: 1; }
.product-card-body .btn { margin-top: 1rem; align-self: flex-start; }

/* ===== STATS BAR ===== */
.stats-bar {
  display: flex;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
  padding: 2rem 0;
}
.stat-item { text-align: center; }
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
}
.stat-label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gray-300);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 0.25rem;
}

/* ===== CTA SECTION ===== */
.cta-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 50%, var(--green-light) 100%);
  text-align: center;
}
.cta-section h2 { color: var(--white); margin-bottom: 1rem; }
.cta-section p { color: rgba(255,255,255,0.85); font-size: 1.1rem; max-width: 600px; margin: 0 auto 2rem; }

/* ===== LOGO BAR ===== */
.logo-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  padding: 2rem 0;
}
.logo-bar img {
  height: 60px;
  width: auto;
  opacity: 0.7;
  filter: grayscale(30%);
  transition: var(--transition);
}
.logo-bar img:hover { opacity: 1; filter: none; }

/* ===== ACCORDION ===== */
.accordion-item {
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-sm);
  margin-bottom: 0.75rem;
  overflow: hidden;
}
.accordion-header {
  padding: 1.25rem 1.5rem;
  font-weight: 600;
  color: var(--charcoal);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--white);
  transition: var(--transition);
}
.accordion-header:hover { background: var(--gray-100); }
.accordion-header .icon {
  transition: var(--transition);
  font-size: 1.2rem;
  color: var(--green);
}
.accordion-item.open .accordion-header .icon { transform: rotate(45deg); }
.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.accordion-body-inner { padding: 0 1.5rem 1.25rem; }

/* ===== FOOTER ===== */
.footer {
  background: var(--charcoal);
  color: var(--gray-300);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand img { height: 45px; width: auto; margin-bottom: 1rem; }
.footer-brand p { font-size: 0.9rem; color: var(--gray-500); }
.footer h5 {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.25rem;
}
.footer-links a {
  display: block;
  padding: 0.3rem 0;
  font-size: 0.9rem;
  color: var(--gray-500);
  transition: var(--transition);
}
.footer-links a:hover { color: var(--green-light); }
.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}
.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: var(--transition);
}
.footer-social a:hover {
  background: var(--green);
  color: var(--white);
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: var(--gray-500);
  flex-wrap: wrap;
  gap: 1rem;
}
@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ===== SPEAKING TOPICS ===== */
.topic-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.topic-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.topic-card-body { padding: 2rem; }
.topic-card-body h3 { margin-bottom: 0.75rem; font-size: 1.2rem; }
.topic-testimonial {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--gray-100);
  font-style: italic;
  font-size: 0.9rem;
  color: var(--gray-500);
}

/* ===== BLOG CARDS ===== */
.blog-placeholder {
  text-align: center;
  padding: 4rem 2rem;
}
.blog-placeholder p { font-size: 1.1rem; color: var(--gray-500); }

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

/* ===== CONTACT INFO ===== */
.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--gray-100);
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
}
.contact-info-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
}
.contact-info-card h4 { font-size: 1rem; margin-bottom: 0.25rem; }
.contact-info-card p { margin: 0; font-size: 0.95rem; }

/* ===== MISC ===== */
.divider {
  width: 60px;
  height: 3px;
  background: var(--green);
  border-radius: 3px;
  margin-bottom: 1.5rem;
}
.divider-center { margin-left: auto; margin-right: auto; }
.spacer-sm { height: 2rem; }
.spacer-md { height: 4rem; }
.badge {
  display: inline-block;
  padding: 0.35rem 0.85rem;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.badge-green { background: var(--green-pale); color: var(--green-dark); }
.badge-gold { background: var(--gold-light); color: var(--gold); }

/* ===== SCROLL TO TOP ===== */
.scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 999;
  border: none;
  font-size: 1.2rem;
}
.scroll-top.visible { opacity: 1; visibility: visible; }
.scroll-top:hover { background: var(--green-dark); transform: translateY(-2px); }

/* ===== FORM SUCCESS ===== */
.form-success { display: none; text-align: center; padding: 2rem 0; }
.form-success.show { display: block; }
.form-success .success-icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--green);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem; color: white;
}
.form-success h3 { margin-bottom: 0.5rem; }
.form-success p { color: var(--gray-500); }
.grecaptcha-badge { visibility: hidden; }

/* ===== CHALLENGE POPUP MODAL ===== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
  padding: 1rem;
}
.modal-overlay.open {
  opacity: 1;
  visibility: visible;
}
.modal-card {
  background: var(--white);
  border-radius: 16px;
  max-width: 480px;
  width: 100%;
  padding: 2.5rem;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.3s;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}
.modal-overlay.open .modal-card {
  transform: translateY(0);
}
.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--gray-500);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.2s;
}
.modal-close:hover { background: var(--gray-100); }
.modal-card .section-label {
  text-align: center;
  margin-bottom: 0.25rem;
}
.modal-card h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  text-align: center;
  margin-bottom: 0.5rem;
}
.modal-card > p {
  text-align: center;
  color: var(--gray-600);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}
.modal-card .form-group { margin-bottom: 1rem; }
.modal-card .form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 0.25rem;
  color: var(--gray-700);
}
.modal-card .form-group input {
  width: 100%;
  padding: 0.7rem 1rem;
  border: 1px solid var(--gray-300);
  border-radius: 8px;
  font-size: 0.95rem;
  transition: border-color 0.2s;
}
.modal-card .form-group input:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(74,124,40,0.1);
}
.modal-card .btn { width: 100%; }
.modal-card .form-success { text-align: center; }

/* ===== SESSION / COURSE OUTLINE CARDS ===== */
.session-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.session-card {
  background: var(--white);
  border-radius: 12px;
  padding: 1.75rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  border: 1px solid var(--gray-200);
}
.session-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
  color: var(--charcoal);
}
.session-card .session-num {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--green);
  margin-bottom: 0.5rem;
}
.session-card p {
  color: var(--gray-600);
  font-size: 0.95rem;
  line-height: 1.6;
}
.session-card.session-special {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--gray-900) 100%);
  border: 1px solid var(--gold);
  color: var(--white);
}
.session-card.session-special h3 { color: var(--gold); }
.session-card.session-special .session-num { color: var(--gold-light); }
.session-card.session-special p { color: rgba(255,255,255,0.8); }
@media (max-width: 768px) {
  .session-grid { grid-template-columns: 1fr; }
}

/* ===== SCHEDULE HIGHLIGHT CARDS ===== */
.schedule-cards {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
  margin: 2rem 0;
}
.schedule-card {
  background: var(--green-pale);
  border: 2px solid var(--green);
  border-radius: 12px;
  padding: 1.25rem 2rem;
  text-align: center;
  font-weight: 600;
  color: var(--green-dark);
  font-size: 1.1rem;
}
.schedule-card i { margin-right: 0.5rem; }

/* ===== BLOG GRID ===== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.blog-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  border: 1px solid var(--gray-200);
  transition: transform 0.2s, box-shadow 0.2s;
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}
.blog-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.blog-card-body {
  padding: 1.5rem;
}
.blog-card-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--charcoal);
  line-height: 1.4;
}
.blog-card-meta {
  font-size: 0.8rem;
  color: var(--gray-500);
  margin-bottom: 0.75rem;
}
.blog-card-body p {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.5;
  margin-bottom: 1rem;
}
.blog-card-body .read-more {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--green);
}
.blog-card-body .read-more:hover { color: var(--green-dark); }
@media (max-width: 900px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .blog-grid { grid-template-columns: 1fr; }
}

/* ===== BLOG POST PAGE ===== */
.blog-post-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 3rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem 1.5rem 4rem;
}
.blog-article {
  min-width: 0;
}
.blog-article-header { margin-bottom: 2rem; }
.blog-article-header h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  line-height: 1.3;
  margin-bottom: 1rem;
}
.blog-article-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  font-size: 0.9rem;
  color: var(--gray-500);
  margin-bottom: 1.5rem;
}
.blog-article-meta i { font-size: 0.8rem; }
.blog-article-hero {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 2rem;
  max-height: 420px;
  object-fit: cover;
}
.blog-article-body {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--gray-700);
}
.blog-article-body p { margin-bottom: 1.5rem; }
.blog-article-body h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  margin: 2rem 0 1rem;
  color: var(--charcoal);
}
.blog-article-body h3 {
  font-size: 1.2rem;
  margin: 1.5rem 0 0.75rem;
  color: var(--charcoal);
}
.blog-article-body ul, .blog-article-body ol {
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
  list-style: disc;
}
.blog-article-body li { margin-bottom: 0.5rem; }
.blog-article-body blockquote {
  border-left: 4px solid var(--green);
  padding: 1rem 1.5rem;
  margin: 1.5rem 0;
  background: var(--green-pale);
  border-radius: 0 8px 8px 0;
  font-style: italic;
  color: var(--gray-700);
}
.blog-article-body img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 1rem 0;
}

/* Author Bio */
.blog-author-box {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  background: var(--gray-50, #f9f9f9);
  border-radius: 12px;
  padding: 1.5rem;
  margin-top: 3rem;
  border: 1px solid var(--gray-100, #eee);
}
.blog-author-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.blog-author-box h4 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
  color: var(--charcoal);
}
.blog-author-box .author-title {
  font-size: 0.8rem;
  color: var(--green);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.5rem;
}
.blog-author-box p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--gray-600);
  margin: 0;
}

/* Sidebar */
.blog-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.sidebar-card {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--gray-100, #eee);
  background: var(--white);
}
.sidebar-head {
  background: var(--green-deep, #1a3a2a);
  padding: 1rem 1.25rem;
}
.sidebar-head h4 {
  color: var(--gold);
  font-size: 0.95rem;
  font-weight: 600;
  margin: 0;
}
.sidebar-body {
  padding: 1.25rem;
}
.sidebar-body p {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 0.75rem;
}
.sidebar-body p:last-child { margin-bottom: 0; }
.sidebar-link {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--gray-100, #eee);
  text-decoration: none;
  transition: var(--transition);
}
.sidebar-link:last-child { border-bottom: none; }
.sidebar-link:hover { opacity: 0.8; }
.sidebar-link-img {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
}
.sidebar-link h5 {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1.4;
  margin: 0;
}
.sidebar-link span {
  font-size: 0.75rem;
  color: var(--gray-500);
}
.sidebar-cta {
  background: var(--green-deep, #1a3a2a);
  border-radius: 12px;
  padding: 2rem 1.5rem;
  text-align: center;
}
.sidebar-cta h4 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}
.sidebar-cta p {
  color: rgba(255,255,255,0.8);
  font-size: 0.85rem;
  line-height: 1.5;
  margin-bottom: 1rem;
}
.sidebar-cta .btn {
  width: 100%;
  justify-content: center;
}
.blog-back-row {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1.5rem 1.5rem 0;
}
.blog-back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--green);
  text-decoration: none;
  font-weight: 500;
}
.blog-back-link:hover { text-decoration: underline; }

@media (max-width: 860px) {
  .blog-post-layout {
    grid-template-columns: 1fr;
    padding: 1.5rem 1rem 3rem;
  }
  .blog-back-row { padding: 1rem 1rem 0; }
  .blog-article-header h1 { font-size: 1.8rem; }
}
.blog-migration-notice {
  background: var(--gold-light);
  border: 1px solid var(--gold);
  border-radius: 8px;
  padding: 1.25rem 1.5rem;
  margin-bottom: 2rem;
  color: var(--gray-700);
  font-size: 0.95rem;
}
.blog-migration-notice i { color: var(--gold); margin-right: 0.5rem; }
