/* ═══════════════════════════════════════════════════════
   BDDN – Bihar Digital Data & Network
   style.css – Optimized & Cleaned
   ════════════════════════════════════════════════════════ */

/* ─── CSS CUSTOM PROPERTIES ─── */
:root {
  --gold: #f5a623;
  --gold-light: #ffd47a;
  --gold-dark: #d4820a;
  --ink: #0d1117;
  --ink-soft: #1c2533;
  --slate: #3d4f66;
  --muted: #8898aa;
  --paper: #fafaf8;
  --white: #ffffff;
  --border: rgba(245, 166, 35, 0.18);
  --card-shadow: 0 2px 24px rgba(0, 0, 0, 0.07), 0 1px 4px rgba(0, 0, 0, 0.04);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: 'Instrument Sans', sans-serif;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.7;
  overflow-x: hidden;
}

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: var(--paper);
}

::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 10px;
}

/* ─── SKIP LINK (Accessibility) ─── */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--gold);
  color: var(--ink);
  padding: 8px 16px;
  font-weight: 700;
  z-index: 9999;
  border-radius: 0 0 8px 0;
  transition: top 0.2s;
}

.skip-link:focus {
  top: 0;
}

/* ─── NAVBAR ─── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(250, 250, 248, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 0 60px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: box-shadow 0.3s ease, background 0.3s ease, border-bottom-color 0.3s ease;
}

/* Scrolled Navbar State */
.navbar.scrolled {
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  background: rgba(250, 250, 248, 0.98);
  border-bottom-color: rgba(245, 166, 35, 0.35);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-brand img {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  object-fit: contain;
  flex-shrink: 0;
}

.nav-brand-text {
  font-family: 'DM Sans', sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.nav-brand-text small {
  display: block;
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--muted);
  text-transform: uppercase;
  font-family: 'Instrument Sans', sans-serif;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  text-decoration: none;
  color: var(--slate);
  font-weight: 500;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  padding: 8px 16px;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  background: rgba(245, 166, 35, 0.1);
  color: var(--gold-dark);
  outline: none;
}

/* ─── MEGA MENU (Desktop) ─── */
.nav-dropdown {
  position: relative;
  display: inline-block;
  height: 100%;
}

.nav-dropdown-trigger {
  background: none;
  border: none;
  color: var(--slate);
  font-family: 'Instrument Sans', sans-serif;
  font-weight: 500;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  padding: 8px 16px;
  border-radius: 8px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: background 0.2s, color 0.2s;
  height: 100%;
}

.nav-dropdown-trigger:hover,
.nav-dropdown-trigger:focus-visible {
  background: rgba(245, 166, 35, 0.1);
  color: var(--gold-dark);
  outline: none;
}

.nav-dropdown-trigger .arrow-down {
  font-size: 0.55rem;
  transition: transform 0.2s ease;
  display: inline-block;
  color: var(--muted);
}

.nav-dropdown-trigger[aria-expanded="true"] .arrow-down {
  transform: rotate(180deg);
}

.mega-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(12px);
  width: min(780px, 96vw); /* prevents overflow on tablets */
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.1);
  padding: 28px;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity 0.25s cubic-bezier(0.25, 0.8, 0.25, 1), transform 0.25s cubic-bezier(0.25, 0.8, 0.25, 1), visibility 0.25s;
  z-index: 1000;
  margin-top: 4px;
}

@media (min-width: 901px) {

  .nav-dropdown:hover .mega-menu,
  .nav-dropdown-trigger:focus-visible+.mega-menu,
  .mega-menu:hover {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
    transform: translateX(-50%) translateY(2px);
  }
}

.mega-menu-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: left;
}

.mega-menu-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.mega-menu-category {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold-dark);
  border-bottom: 1px solid rgba(245, 166, 35, 0.15);
  padding-bottom: 8px;
}

.mega-menu-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-decoration: none;
  padding: 12px 14px;
  border-radius: 10px;
  transition: background 0.2s, transform 0.2s;
  text-align: left;
}

.mega-menu-item:hover,
.mega-menu-item:focus-visible {
  background: rgba(245, 166, 35, 0.05);
  transform: translateX(4px);
  outline: none;
}

.mega-item-name {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--ink);
}

.mega-item-summary {
  font-size: 0.76rem;
  color: var(--muted);
  line-height: 1.4;
  white-space: normal;
}

.nav-cta {
  background: var(--ink) !important;
  color: var(--white) !important;
  border-radius: 8px !important;
}

.nav-cta:hover,
.nav-cta:focus-visible {
  background: var(--gold-dark) !important;
  color: var(--ink) !important;
}

/* ─── HERO ─── */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--ink);
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(245, 166, 35, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245, 166, 35, 0.06) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(245, 166, 35, 0.2) 0%, transparent 65%);
  pointer-events: none;
  will-change: auto;
}

.hero-glow-2 {
  position: absolute;
  bottom: -10%;
  right: -5%;
  width: 600px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(245, 166, 35, 0.08) 0%, transparent 65%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 60px;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 80px;
  align-items: center;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245, 166, 35, 0.12);
  border: 1px solid rgba(245, 166, 35, 0.3);
  color: var(--gold-light);
  padding: 7px 16px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 28px;
  animation: fadeUp 0.7s ease both;
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s infinite;
  will-change: transform, opacity;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(0.8);
  }
}

.hero-left h1 {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(2.8rem, 5vw, 4.4rem);
  font-weight: 800;
  line-height: 1.05;
  color: var(--white);
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  animation: fadeUp 0.7s 0.1s ease both;
}

.hero-left h1 .highlight {
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-left p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.75);
  /* Increased from 0.6 → 0.75 for WCAG AA contrast */
  max-width: 500px;
  margin-bottom: 40px;
  animation: fadeUp 0.7s 0.2s ease both;
}

.hero-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  animation: fadeUp 0.7s 0.3s ease both;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--ink);
  font-weight: 700;
  font-size: 0.98rem;
  padding: 15px 32px;
  border-radius: 10px;
  text-decoration: none;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 8px 24px rgba(245, 166, 35, 0.35);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(245, 166, 35, 0.45);
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  text-decoration: none;
  transition: color 0.2s;
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  color: var(--gold-light);
}

.hero-stats {
  display: flex;
  gap: 36px;
  margin-top: 52px;
  animation: fadeUp 0.7s 0.4s ease both;
}

.hero-stat-num {
  font-family: 'DM Sans', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.hero-stat-num span {
  color: var(--gold);
}

.hero-stat-label {
  font-size: 0.8rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
}

/* Hero Card */
.hero-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 36px;
  backdrop-filter: blur(10px);
  animation: fadeUp 0.7s 0.3s ease both;
}

.hero-card-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 24px;
}

.hero-course-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.hero-course-item:last-of-type {
  border-bottom: none;
}

.hero-course-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.icon-data {
  background: rgba(245, 166, 35, 0.15);
}

.icon-dm {
  background: rgba(94, 211, 243, 0.1);
}

.hero-course-name {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  color: var(--white);
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.hero-course-desc {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.45);
}

.hero-card-footer {
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(245, 166, 35, 0.08);
  border-radius: 10px;
  padding: 14px 16px;
}

.hero-card-footer-icon {
  font-size: 1.4rem;
}

.hero-card-footer-text {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.6);
}

.hero-card-footer-text strong {
  color: var(--gold-light);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ─── MARQUEE STRIP ─── */
.marquee-strip {
  background: var(--gold);
  padding: 13px 0;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  animation: marquee 22s linear infinite;
  white-space: nowrap;
  will-change: transform;
}

/* Respect prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  .marquee-track {
    animation: none;
  }

  .hero-badge,
  .hero-badge-dot,
  .hero-left h1,
  .hero-left p,
  .hero-actions,
  .hero-stats,
  .hero-card {
    animation: none;
  }
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 0 28px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
}

.marquee-sep {
  color: rgba(0, 0, 0, 0.35);
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* ─── SECTION BASE ─── */
.section {
  padding: 100px 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold-dark);
  margin-bottom: 14px;
}

.section-eyebrow::before {
  content: '';
  display: block;
  width: 22px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

.section-title {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 16px;
}

.section-sub {
  color: var(--slate);
  font-size: 1.05rem;
  max-width: 500px;
  margin-bottom: 60px;
}

/* ─── COURSES ─── */
.courses-wrapper {
  background: var(--paper);
}

.courses-header {
  text-align: center;
}

.courses-header .section-sub {
  margin: 0 auto 60px;
}

.course-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.course-card {
  background: var(--white);
  border: 1px solid #e8ecf0;
  border-radius: 20px;
  padding: 44px 40px;
  position: relative;
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.35s, border-color 0.35s;
  box-shadow: var(--card-shadow);
  display: flex;
  flex-direction: column;
}

.course-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-dark));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.course-card:hover,
.course-card:focus-within {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.1);
  border-color: rgba(245, 166, 35, 0.3);
}

.course-card:hover::before,
.course-card:focus-within::before {
  transform: scaleX(1);
}

.course-icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(245, 166, 35, 0.12), rgba(245, 166, 35, 0.06));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 24px;
  border: 1px solid rgba(245, 166, 35, 0.2);
}

.course-card h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.course-card>p {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 28px;
}

.course-modules {
  list-style: none;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.course-modules li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--slate);
}

.module-check {
  width: 20px;
  height: 20px;
  border-radius: 6px;
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.7rem;
  color: #16a34a;
}

.course-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.tag {
  background: rgba(245, 166, 35, 0.08);
  color: var(--gold-dark);
  border: 1px solid rgba(245, 166, 35, 0.2);
  padding: 5px 13px;
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 600;
}

/* Course CTA button – moved from inline */
.course-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  padding: 11px 24px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--ink);
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: 8px;
  text-decoration: none;
  transition: transform 0.25s, box-shadow 0.25s;
  align-self: flex-start;
}

.course-cta-btn:hover,
.course-cta-btn:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(245, 166, 35, 0.4);
}

.course-card .course-summary {
  font-size: 0.95rem;
  color: var(--slate);
  margin-bottom: 20px;
  line-height: 1.6;
  flex-grow: 1;
}

.course-card .course-duration {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--gold-dark);
  margin-top: auto;
  margin-bottom: 24px;
  font-weight: 600;
}

.course-card .course-duration .duration-icon {
  font-size: 1.1rem;
}

/* ─── FEATURES STRIP ─── */
.features-strip {
  background: var(--ink);
  padding: 80px 60px;
}

.features-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.feature-item {
  padding: 44px 40px;
  border-right: 1px solid rgba(255, 255, 255, 0.07);
}

.feature-item:last-child {
  border-right: none;
}

.feature-num {
  font-family: 'DM Sans', sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  color: rgba(245, 166, 35, 0.15);
  line-height: 1;
  margin-bottom: 4px;
  letter-spacing: -0.04em;
}

.feature-item h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.feature-item p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.65);
  /* Increased from 0.45 → 0.65 for WCAG AA contrast */
  line-height: 1.6;
}

.feature-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}

/* ─── ABOUT ─── */
.about-wrapper {
  background: var(--paper);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  align-items: start;
}

.about-left {
  max-width: 800px;
}

.about-left p {
  color: var(--slate);
  margin-bottom: 22px;
  font-size: 1.02rem;
  line-height: 1.8;
}

.about-perks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 36px;
}

.perk-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 1px solid #e8ecf0;
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink);
  transition: border-color 0.2s, background 0.2s;
}

.perk-item:hover {
  border-color: var(--gold);
  background: rgba(245, 166, 35, 0.03);
}

.perk-check {
  color: var(--gold-dark);
  font-size: 0.9rem;
}

/* Trust Strip */
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 40px 0 20px;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245, 166, 35, 0.08);
  border: 1px solid rgba(245, 166, 35, 0.25);
  color: var(--gold-dark);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

/* Leadership */
.leadership-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 20px;
  width: 100%;
}

.director-card {
  background: var(--white);
  border: 1px solid #e8ecf0;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
}

.director-top {
  background: linear-gradient(135deg, var(--ink) 0%, var(--ink-soft) 100%);
  padding: 48px 40px 40px;
  text-align: center;
  position: relative;
}

.director-top::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(245, 166, 35, 0.1) 1px, transparent 1px);
  background-size: 20px 20px;
  pointer-events: none;
}

.director-avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  margin: 0 auto 18px;
  position: relative;
  z-index: 1;
  box-shadow: 0 8px 24px rgba(245, 166, 35, 0.4);
}

.director-name {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  position: relative;
  z-index: 1;
}

.director-title {
  font-size: 0.82rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 6px;
  position: relative;
  z-index: 1;
}

.director-body {
  padding: 32px 36px;
}

.director-body p {
  color: var(--slate);
  font-size: 0.95rem;
  line-height: 1.75;
  text-align: center;
}

.director-quote {
  background: rgba(245, 166, 35, 0.06);
  border-left: 3px solid var(--gold);
  border-radius: 0 10px 10px 0;
  padding: 16px 20px;
  margin-top: 20px;
  font-size: 0.9rem;
  color: var(--slate);
  font-style: italic;
}

.director-bio {
  font-size: 0.95rem;
  color: var(--slate);
  text-align: center;
  line-height: 1.6;
}

.edu-info {
  display: block;
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 8px;
  font-weight: 500;
}

.director-socials {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 10px;
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.25s, box-shadow 0.25s, background 0.25s, border-color 0.25s;
  font-family: 'DM Sans', sans-serif;
  min-height: 48px;
  box-sizing: border-box;
}

.social-btn.linkedin {
  background: #0a66c2;
  color: var(--white);
  border: 1px solid #0a66c2;
}

.social-btn.linkedin:hover,
.social-btn.linkedin:focus-visible {
  background: #004182;
  border-color: #004182;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(10, 102, 194, 0.35);
}

.social-btn.portfolio {
  background: var(--ink);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.social-btn.portfolio:hover,
.social-btn.portfolio:focus-visible {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(245, 166, 35, 0.35);
}

.social-icon {
  flex-shrink: 0;
}

/* ─── CONTACT ─── */
/* Moved from inline style="background:#f3f4f6" */
.contact-wrapper {
  background: #f3f4f6;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.contact-link {
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}

.contact-link:hover,
.contact-link:focus-visible {
  color: var(--gold-dark);
  text-decoration: underline;
}

.contact-action-link {
  display: inline-block;
  margin-top: 12px;
  font-size: 0.85rem;
  color: var(--gold-dark);
  font-weight: 700;
  text-decoration: none;
}

.contact-action-link:hover {
  text-decoration: underline;
}

.contact-card {
  background: var(--white);
  border: 1px solid #e8ecf0;
  border-radius: 18px;
  padding: 40px 32px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}

.contact-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-dark));
  transform: scaleX(0);
  transition: transform 0.3s;
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

.contact-card:hover::after {
  transform: scaleX(1);
}

.contact-icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: rgba(245, 166, 35, 0.08);
  border: 1px solid rgba(245, 166, 35, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 20px;
}

/* Fixed: was h4 in CSS but h3 in HTML */
.contact-card h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 12px;
}

.contact-card p {
  color: var(--slate);
  font-size: 0.94rem;
  line-height: 1.6;
}

/* ─── ENROLL ─── */
.enroll-wrapper {
  background: var(--ink);
  position: relative;
  overflow: hidden;
}

.enroll-wrapper::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -10%;
  width: 60%;
  height: 120%;
  background: radial-gradient(ellipse, rgba(245, 166, 35, 0.12) 0%, transparent 60%);
  pointer-events: none;
}

.enroll-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 60px;
  display: grid;
  grid-template-columns: 1fr 520px;
  gap: 80px;
  align-items: start;
}

/* Moved from inline style="color:var(--gold)" */
.enroll-eyebrow {
  color: var(--gold);
}

.enroll-left .section-title {
  color: var(--white);
}

/* Moved from inline rgba(...) */
.enroll-sub {
  color: rgba(255, 255, 255, 0.72); /* was 0.5 — increased to pass WCAG AA */
}

.enroll-perks {
  list-style: none;
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.enroll-perks li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}

.enroll-perk-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(245, 166, 35, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.enroll-box {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 44px 40px;
  backdrop-filter: blur(10px);
}

.enroll-box-title {
  font-family: 'DM Sans', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 28px;
}

.enroll-box label {
  display: block;
  margin-bottom: 7px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.required-mark {
  color: var(--gold);
  margin-left: 2px;
}

.optional-mark {
  color: rgba(255, 255, 255, 0.55); /* was 0.35 — increased for WCAG AA */
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.78rem;
}

.enroll-box input,
.enroll-box select,
.enroll-box textarea {
  width: 100%;
  padding: 13px 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  margin-bottom: 20px;
  font-size: 0.97rem;
  font-family: 'Instrument Sans', sans-serif;
  color: var(--white);
  transition: border-color 0.2s, background 0.2s;
  outline: none;
}

.enroll-box input::placeholder,
.enroll-box textarea::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.enroll-box select option {
  background: #1c2533;
}

.enroll-box input:focus,
.enroll-box select:focus,
.enroll-box textarea:focus {
  border-color: rgba(245, 166, 35, 0.5);
  background: rgba(245, 166, 35, 0.04);
}

/* Explicit focus ring for keyboard-only users (WCAG 2.4.7) */
.enroll-box input:focus-visible,
.enroll-box select:focus-visible,
.enroll-box textarea:focus-visible {
  border-color: var(--gold);
  background: rgba(245, 166, 35, 0.04);
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

/* Invalid state for phone validation */
.enroll-box input:invalid:not(:placeholder-shown) {
  border-color: rgba(239, 68, 68, 0.5);
}

.enroll-box button {
  width: 100%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--ink);
  border: none;
  padding: 16px;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
  font-family: 'DM Sans', sans-serif;
  letter-spacing: 0.02em;
  min-height: 52px;
}

.enroll-box button:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(245, 166, 35, 0.4);
}

.enroll-box button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.form-privacy-note {
  margin-top: 14px;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.55); /* was 0.35 — increased for WCAG AA */
  text-align: center;
}

/* ─── WHATSAPP INTEGRATION ─── */

/* Contact card icon — WhatsApp green background */
.whatsapp-icon-wrap {
  background: rgba(37, 211, 102, 0.1) !important;
  border-color: rgba(37, 211, 102, 0.3) !important;
}

/* WhatsApp contact link green color */
.whatsapp-contact-link {
  color: #128C7E !important;
}

.whatsapp-contact-link:hover,
.whatsapp-contact-link:focus-visible {
  color: #075E54 !important;
}

/* WhatsApp card hover accent line override */
.whatsapp-card::after {
  background: linear-gradient(90deg, #25D366, #128C7E) !important;
}

/* "Send via WhatsApp" button in the enrollment form */
.whatsapp-form-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  background: #25D366;
  color: #fff;
  border: none;
  padding: 15px 16px;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 10px;
  cursor: pointer;
  text-decoration: none;
  font-family: 'DM Sans', sans-serif;
  letter-spacing: 0.02em;
  min-height: 52px;
  margin-top: 12px;
  transition: transform 0.3s, box-shadow 0.3s, background 0.2s;
}

.whatsapp-form-btn:hover,
.whatsapp-form-btn:focus-visible {
  background: #128C7E;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.4);
  color: #fff;
  text-decoration: none;
}

/* ─── FLOATING WHATSAPP BUTTON ─── */
.wa-float {
  position: fixed;
  bottom: 32px;
  left: 32px;
  z-index: 9990;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #25D366;
  color: #fff;
  text-decoration: none;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.2s;
  animation: wa-entrance 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 1.5s both;
}

.wa-float:hover,
.wa-float:focus-visible {
  background: #128C7E;
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 14px 36px rgba(37, 211, 102, 0.55);
  color: #fff;
  text-decoration: none;
}

/* Pulse ring behind the button */
.wa-float::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.5);
  animation: wa-pulse 2.5s ease-out infinite;
  pointer-events: none;
}

@keyframes wa-pulse {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }

  70% {
    transform: scale(1.18);
    opacity: 0;
  }

  100% {
    transform: scale(1.18);
    opacity: 0;
  }
}

@keyframes wa-entrance {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.8);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.wa-float-label {
  display: none;
}

/* ─── TOAST ─── */
#toast {
  position: fixed;
  bottom: 28px;
  right: 28px;
  padding: 16px 24px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--white);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  z-index: 9999;
  max-width: 360px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
  pointer-events: none;
}

#toast.show {
  opacity: 1;
  transform: translateY(0);
}

#toast.success {
  background: linear-gradient(135deg, #22c55e, #15803d);
}

#toast.error {
  background: linear-gradient(135deg, #ef4444, #b91c1c);
}

/* ─── SPINNER ─── */
.spinner {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2.5px solid rgba(0, 0, 0, 0.2);
  border-top-color: var(--ink);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  vertical-align: middle;
  margin-right: 8px;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* ─── FOOTER ─── */
.footer {
  background: #090d13;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 50px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-brand {
  font-family: 'DM Sans', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--gold);
}

.footer-brand small {
  display: block;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  font-family: 'Instrument Sans', sans-serif;
}

.footer-copy {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.3);
  text-align: center;
}

.footer-copy span {
  color: var(--gold);
  opacity: 0.8;
}

/* Moved from inline style="color:var(--gold)" */
.footer-email-link {
  color: var(--gold);
  text-decoration: none;
  transition: opacity 0.2s;
}

.footer-email-link:hover {
  opacity: 0.8;
  text-decoration: underline;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  text-decoration: none;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.35);
  transition: color 0.2s;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--gold);
}

/* Legal links row — visually separated from nav links */
.footer-legal {
  padding-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  gap: 20px;
}

/* ─── HAMBURGER MENU ─── */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 48px;
  height: 48px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 14px 10px;
  z-index: 250;
  box-sizing: border-box;
}

.menu-toggle .bar {
  width: 100%;
  height: 3px;
  background-color: var(--ink);
  border-radius: 4px;
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .menu-toggle {
    display: flex;
  }

  .menu-toggle.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }

  .navbar {
    padding: 0 24px;
    position: sticky;
    top: 0;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: rgba(250, 250, 248, 0.98);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
    flex-direction: column;
    align-items: stretch;
    padding: 24px;
    gap: 8px;
    z-index: 998;
    max-height: calc(100vh - 70px);
    overflow-y: auto;
    /* Smooth open animation */
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.25s ease, transform 0.25s ease;
  }

  .nav-links.active {
    display: flex;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-links a {
    text-align: center;
    display: block;
    padding: 14px;
    font-size: 1rem;
    /* Bigger touch targets (min 48px) */
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* Mobile Accordion Styles */
  .nav-links .nav-dropdown {
    width: 100%;
    display: block;
    height: auto;
  }

  .nav-links .nav-dropdown-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px;
    font-size: 1rem;
    min-height: 48px;
    border-radius: 8px;
    background: none;
    border: none;
    color: var(--slate);
    cursor: pointer;
  }

  .nav-links .nav-dropdown-trigger:hover,
  .nav-links .nav-dropdown-trigger:focus-visible {
    background: rgba(245, 166, 35, 0.1);
    color: var(--gold-dark);
  }

  .nav-links .mega-menu {
    position: static;
    transform: none;
    width: 100%;
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
    box-shadow: none;
    border: none;
    background: transparent;
    padding: 0 16px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  }

  .nav-links .nav-dropdown.active .mega-menu {
    max-height: 800px;
  }

  .nav-links .mega-menu-columns {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 12px 0;
  }

  .nav-links .mega-menu-col {
    gap: 10px;
  }

  .nav-links .mega-menu-category {
    padding-bottom: 4px;
    font-size: 0.72rem;
  }

  .nav-links .mega-menu-item {
    padding: 10px 12px;
    min-height: 44px;
    background: rgba(245, 166, 35, 0.02);
    border: 1px solid rgba(245, 166, 35, 0.05);
    border-radius: 8px;
  }

  .nav-links .mega-menu-item:hover,
  .nav-links .mega-menu-item:focus-visible {
    background: rgba(245, 166, 35, 0.06);
    transform: none;
  }

  .nav-links .mega-item-name {
    font-size: 0.9rem;
  }

  .nav-links .mega-item-summary {
    font-size: 0.76rem;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 60px 24px 40px;
  }

  .hero-card {
    display: none;
  }

  .course-grid {
    grid-template-columns: 1fr;
  }

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

  .feature-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  }

  .feature-item:last-child {
    border-bottom: none;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .leadership-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }

  .enroll-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 70px 24px;
  }

  .trust-strip {
    justify-content: center;
  }

  .section {
    padding: 70px 24px;
  }

  .features-strip {
    padding: 70px 24px;
  }

  .footer {
    padding: 40px 24px;
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-stats {
    gap: 20px;
    flex-wrap: wrap;
  }

  .enroll-box {
    padding: 28px 20px;
  }

  #toast {
    left: 16px;
    right: 16px;
    bottom: 16px;
    max-width: none;
  }
}

/* ─────────────────────────────────────────────────────────
   NEW FEATURES STYLING
   ───────────────────────────────────────────────────────── */

/* ─── FEATURE 1: PHOTO GALLERY ─── */
.gallery-wrapper {
  background: var(--paper);
  border-top: 1px solid var(--border);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 40px;
  margin-bottom: 24px;
}

.gallery-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  box-shadow: var(--card-shadow);
  border: 1px solid rgba(245, 166, 35, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(245, 166, 35, 0.15);
  border-color: var(--gold);
}

.gallery-card:hover img {
  transform: scale(1.05);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13, 17, 23, 0.85), transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-card:hover .gallery-overlay {
  opacity: 1;
}

.gallery-caption {
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  transform: translateY(10px);
  transition: transform 0.3s ease;
}

.gallery-card:hover .gallery-caption {
  transform: translateY(0);
}

.gallery-note {
  text-align: center;
  font-size: 0.9rem;
  color: var(--muted);
  margin-top: 20px;
}

/* Lightbox Overlay */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(13, 17, 23, 0.95);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.lightbox:not([aria-hidden="true"]) {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-inner {
  position: relative;
  max-width: 90vw;
  max-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-inner img {
  max-width: 100%;
  max-height: 75vh;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  object-fit: contain;
}

.lightbox-caption {
  color: var(--white);
  margin-top: 15px;
  font-size: 1.1rem;
  font-weight: 600;
  text-align: center;
  font-family: 'DM Sans', sans-serif;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s;
  z-index: 1010;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
}

.lightbox-close {
  top: 30px;
  right: 30px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.2rem;
}

.lightbox-prev,
.lightbox-next {
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 2rem;
}

.lightbox-prev {
  left: 30px;
}

.lightbox-next {
  right: 30px;
}

/* ─── FEATURE 2: COURSE META BAR ─── */
.course-meta-bar {
  display: flex;
  gap: 8px;
  margin: 20px 0;
  padding: 12px;
  background: rgba(13, 17, 23, 0.03);
  border-radius: 8px;
  border: 1px dashed rgba(245, 166, 35, 0.25);
  justify-content: space-between;
}

.course-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
}

.meta-icon {
  font-size: 1.1rem;
}

.meta-label {
  color: var(--muted);
  font-weight: 500;
}

.meta-val {
  color: var(--ink);
  font-weight: 700;
}

/* ─── FEATURE 3: WHY TRUST US PILLARS ─── */
.why-trust-section {
  margin-top: 60px;
  border-top: 1px solid rgba(245, 166, 35, 0.1);
  padding-top: 40px;
}

.why-trust-section .section-eyebrow {
  margin-top: 60px;
}

.why-trust-heading {
  font-family: 'DM Sans', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin: 10px 0 16px;
}

.why-trust-sub {
  color: var(--slate);
  max-width: 600px;
  font-size: 1.05rem;
  margin-bottom: 40px;
}

.why-trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 24px;
}

.trust-pillar {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  box-shadow: var(--card-shadow);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.trust-pillar:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
}

.trust-pillar-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}

.trust-pillar h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--ink);
}

.trust-pillar p {
  font-size: 0.9rem;
  color: var(--slate);
  line-height: 1.6;
}

/* Director Credential Badges & Enhancements */
.director-creds {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
  justify-content: center;
}

.cred-badge {
  background: rgba(245, 166, 35, 0.12);
  color: var(--gold-dark);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 50px;
  border: 1px solid rgba(245, 166, 35, 0.2);
}

/* ─── FEATURE 4: FREE DEMO CLASS CTA ─── */
.demo-wrapper {
  position: relative;
  background: var(--ink);
  color: var(--white);
  padding: 80px 60px;
  border-radius: 20px;
  margin: 60px auto;
  max-width: 1100px;
  overflow: hidden;
  border: 1px solid rgba(245, 166, 35, 0.25);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.demo-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.demo-badge {
  display: inline-block;
  background: rgba(245, 166, 35, 0.15);
  color: var(--gold-light);
  border: 1px solid rgba(245, 166, 35, 0.3);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.demo-heading {
  font-family: 'DM Sans', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.demo-heading span {
  color: var(--gold);
}

.demo-sub {
  color: var(--muted);
  font-size: 1.1rem;
  margin-bottom: 30px;
}

.demo-features {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-bottom: 40px;
}

.demo-feature {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.demo-cta-btn {
  display: inline-flex;
  align-items: center;
  background: var(--gold);
  color: var(--ink);
  text-decoration: none;
  font-weight: 700;
  padding: 16px 36px;
  border-radius: 8px;
  font-size: 1.1rem;
  transition: background 0.2s, transform 0.2s;
  box-shadow: 0 4px 15px rgba(245, 166, 35, 0.4);
}

.demo-cta-btn:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

.demo-note {
  margin-top: 15px;
  font-size: 0.85rem;
  color: var(--muted);
}

/* ─── FEATURE 5: CURRICULUM SECTION ─── */
.curriculum-wrapper {
  background: var(--paper);
  border-top: 1px solid var(--border);
}

.curriculum-tabs {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 45px;
  margin-bottom: 35px;
}

.curr-tab {
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--slate);
  padding: 14px 28px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: var(--card-shadow);
}

.curr-tab.active {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
  box-shadow: 0 4px 12px rgba(13, 17, 23, 0.15);
}

.curr-panel {
  display: none;
  max-width: 800px;
  margin: 0 auto;
}

.curr-panel.active {
  display: block;
}

.curr-modules {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.curr-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: border-color 0.2s ease;
}

.curr-item[open] {
  border-color: var(--gold);
}

.curr-item-header {
  padding: 20px 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  user-select: none;
  list-style: none;
  /* Hide default arrow */
}

.curr-item-header::-webkit-details-marker {
  display: none;
  /* Hide Safari arrow */
}

.curr-week {
  background: rgba(245, 166, 35, 0.1);
  color: var(--gold-dark);
  font-weight: 700;
  font-size: 0.8rem;
  padding: 4px 10px;
  border-radius: 4px;
  margin-right: 16px;
  text-transform: uppercase;
}

.curr-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink);
  flex-grow: 1;
}

.curr-arrow {
  font-size: 1rem;
  color: var(--muted);
  transition: transform 0.2s;
}

.curr-item[open] .curr-arrow {
  transform: rotate(180deg);
}

.curr-item-body {
  padding: 0 24px 24px 24px;
  border-top: 1px solid rgba(245, 166, 35, 0.08);
  margin-top: 0;
}

.curr-item-body ul {
  list-style: none;
  margin: 16px 0;
}

.curr-item-body li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 10px;
  font-size: 0.95rem;
  color: var(--slate);
}

.curr-item-body li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

.curr-tools {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.curr-tool-tag {
  background: var(--paper);
  color: var(--slate);
  border: 1px solid rgba(0, 0, 0, 0.06);
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
}

.curr-outcomes {
  background: rgba(245, 166, 35, 0.04);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  margin-top: 40px;
}

.curr-outcomes h4 {
  font-family: 'DM Sans', sans-serif;
  color: var(--ink);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.curr-outcomes ul {
  list-style: none;
}

.curr-outcomes li {
  font-size: 0.95rem;
  color: var(--ink);
  margin-bottom: 12px;
  display: flex;
  gap: 8px;
  align-items: center;
}

.curr-cta-row {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 30px;
}

.curr-download-btn {
  background: var(--ink);
  color: var(--white);
  border: none;
  font-family: 'Instrument Sans', sans-serif;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s;
}

.curr-download-btn:hover {
  background: var(--gold-dark);
  color: var(--ink);
}

.curr-wa-btn {
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--slate);
  text-decoration: none;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 8px;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.curr-wa-btn:hover {
  border-color: var(--gold);
  color: var(--gold-dark);
}

/* ─── FEATURE 6: BROCHURE DOWNLOAD POPUP ─── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(13, 17, 23, 0.85);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 20px;
}

.modal-overlay:not([aria-hidden="true"]) {
  opacity: 1;
  pointer-events: auto;
}

.modal-box {
  background: var(--white);
  border: 1px solid var(--border);
  width: 100%;
  max-width: 440px;
  border-radius: 16px;
  padding: 36px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
  position: relative;
  transform: translateY(-20px);
  transition: transform 0.3s ease;
}

.modal-overlay:not([aria-hidden="true"]) .modal-box {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: none;
  font-size: 1.1rem;
  color: var(--muted);
  cursor: pointer;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.2s, color 0.2s;
}

.modal-close:hover {
  background: rgba(0, 0, 0, 0.05);
  color: var(--ink);
}

.modal-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
  text-align: center;
}

.modal-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--ink);
  text-align: center;
  margin-bottom: 8px;
}

.modal-sub {
  color: var(--slate);
  font-size: 0.9rem;
  text-align: center;
  margin-bottom: 24px;
}

.modal-box label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 6px;
  margin-top: 16px;
  text-align: left;
}

.modal-box input,
.modal-box select {
  width: 100%;
  padding: 12px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 8px;
  font-family: 'Instrument Sans', sans-serif;
  font-size: 0.95rem;
  outline: none;
  background: var(--paper);
  transition: border-color 0.2s;
}

.modal-box input:focus,
.modal-box select:focus {
  border-color: var(--gold);
}

.modal-wa-btn {
  width: 100%;
  background: #25D366;
  color: var(--white);
  border: none;
  font-family: 'Instrument Sans', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 14px;
  border-radius: 8px;
  cursor: pointer;
  margin-top: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background 0.2s, transform 0.2s;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.modal-wa-btn:hover {
  background: #20ba59;
  transform: translateY(-1px);
}

.modal-wa-btn svg {
  flex-shrink: 0;
}

.modal-privacy {
  text-align: center;
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 15px;
}

.required-mark {
  color: #ea4335;
  font-weight: 700;
}

/* ─── FEATURE 7: FAQ SECTION ─── */
.faq-wrapper {
  background: var(--paper);
  border-top: 1px solid var(--border);
}

.faq-list {
  max-width: 800px;
  margin: 40px auto 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: border-color 0.2s;
}

.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  padding: 20px 24px;
  text-align: left;
  font-family: 'DM Sans', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  outline: none;
}

.faq-icon {
  font-size: 1.2rem;
  color: var(--muted);
  transition: transform 0.3s ease;
}

.faq-item.active {
  border-color: var(--gold);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  color: var(--gold-dark);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0 24px;
}

.faq-answer p {
  padding-bottom: 20px;
  font-size: 0.95rem;
  color: var(--slate);
  line-height: 1.6;
  margin: 0;
}

.faq-answer a {
  color: var(--gold-dark);
  text-decoration: none;
  font-weight: 600;
}

.faq-answer a:hover {
  text-decoration: underline;
}

/* ─── FEATURE 8: VIDEO SECTION ─── */
.videos-wrapper {
  background: var(--white);
  border-top: 1px solid var(--border);
}

.videos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.video-card {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  display: flex;
  flex-direction: column;
}

.video-thumbnail-container {
  position: relative;
  aspect-ratio: 16/9;
  width: 100%;
  background: var(--ink);
  cursor: pointer;
}

.video-thumbnail-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
  transition: opacity 0.3s ease;
}

.video-thumbnail-container:hover img {
  opacity: 1;
}

.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  background: var(--gold);
  color: var(--ink);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 6px 20px rgba(245, 166, 35, 0.4);
  transition: transform 0.2s, background-color 0.2s;
  pointer-events: none;
}

.video-thumbnail-container:hover .video-play-btn {
  transform: translate(-50%, -50%) scale(1.1);
  background: var(--gold-light);
}

.video-thumbnail-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.video-info {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.video-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
}

.video-desc {
  font-size: 0.88rem;
  color: var(--slate);
  line-height: 1.5;
}

/* ─── FEATURE 9: TRUST BADGES BAR ─── */
.trust-bar-strip {
  background: rgba(245, 166, 35, 0.05);
  border-bottom: 1px solid var(--border);
  padding: 16px 60px;
}

.trust-bar-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.trust-bar-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.trust-bar-icon {
  font-size: 1.5rem;
  background: var(--white);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--card-shadow);
  border: 1px solid var(--border);
}

.trust-bar-label {
  font-size: 0.75rem;
  color: var(--muted);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.trust-bar-value {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--ink);
}

.trust-bar-divider {
  width: 1px;
  height: 30px;
  background: var(--border);
}

/* ─── FEATURE 10: BLOG TEASER SECTION ─── */
.blog-teaser-wrapper {
  background: var(--white);
  border-top: 1px solid var(--border);
}

.blog-teaser-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.blog-card {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  text-decoration: none;
  color: inherit;
  box-shadow: var(--card-shadow);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.blog-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold);
  box-shadow: 0 10px 25px rgba(245, 166, 35, 0.12);
}

.blog-card-tag {
  display: inline-block;
  background: rgba(245, 166, 35, 0.1);
  color: var(--gold-dark);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
  align-self: flex-start;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.blog-card-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.4;
  margin-bottom: 10px;
}

.blog-card-excerpt {
  font-size: 0.9rem;
  color: var(--slate);
  line-height: 1.5;
  margin-bottom: 20px;
  flex-grow: 1;
}

.blog-card-read {
  color: var(--gold-dark);
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.2s;
}

.blog-card:hover .blog-card-read {
  gap: 8px;
}

.blog-teaser-cta {
  text-align: center;
  margin-top: 40px;
}

.btn-outline-gold {
  display: inline-block;
  border: 2px solid var(--gold);
  color: var(--ink);
  text-decoration: none;
  font-weight: 700;
  padding: 12px 28px;
  border-radius: 8px;
  transition: all 0.2s;
  font-family: 'DM Sans', sans-serif;
}

.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--ink);
}

/* ─── MOBILE MEDIA OVERRIDES ─── */
@media (max-width: 768px) {
  .trust-bar-strip {
    padding: 24px;
  }

  .trust-bar-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .trust-bar-divider {
    display: none;
  }

  .course-meta-bar {
    flex-direction: column;
    gap: 10px;
  }

  .why-trust-grid {
    grid-template-columns: 1fr;
  }

  .why-trust-heading {
    font-size: 1.8rem;
  }

  .demo-wrapper {
    padding: 40px 24px;
    margin: 40px 16px;
  }

  .demo-heading {
    font-size: 1.8rem;
  }

  .demo-features {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .demo-feature {
    justify-content: center;
  }

  .curriculum-tabs {
    flex-direction: column;
    gap: 10px;
  }

  .curr-cta-row {
    flex-direction: column;
    align-items: stretch;
  }

  .curr-cta-row button,
  .curr-cta-row a {
    text-align: center;
  }

  .modal-box {
    padding: 28px 20px;
  }

  .lightbox-prev,
  .lightbox-next {
    width: 44px;
    height: 44px;
    font-size: 1.5rem;
  }

  .lightbox-prev {
    left: 10px;
  }

  .lightbox-next {
    right: 10px;
  }

  .lightbox-close {
    top: 15px;
    right: 15px;
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }
}

/* ─── RESOURCES PAGE (links.html) ─── */
.res-hero {
  background: var(--ink);
  padding: 72px 60px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.res-hero::before {
  content: '';
  position: absolute;
  top: -30%;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 350px;
  background: radial-gradient(ellipse, rgba(245, 166, 35, 0.16) 0%, transparent 70%);
  pointer-events: none;
}

.res-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(245, 166, 35, 0.1);
  border: 1px solid rgba(245, 166, 35, 0.25);
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}

.res-hero h1 {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(1.9rem, 4.5vw, 2.9rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.res-hero h1 span {
  color: var(--gold);
}

.res-hero p {
  color: rgba(255, 255, 255, 0.65);
  /* Fixed: was 0.45 — failed WCAG AA contrast */
  font-size: 1rem;
  max-width: 480px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.res-search-bar {
  max-width: 540px;
  margin: 36px auto 0;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1.5px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  padding: 12px 18px;
  position: relative;
  z-index: 1;
  transition: border-color 0.2s;
}

.res-search-bar:focus-within {
  border-color: rgba(245, 166, 35, 0.5);
}

.res-search-bar svg {
  color: rgba(255, 255, 255, 0.3);
  flex-shrink: 0;
}

#resSearch {
  border: none;
  outline: none;
  background: transparent;
  color: var(--white);
  font-size: 0.95rem;
  font-family: 'Instrument Sans', sans-serif;
  width: 100%;
}

#resSearch::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.res-meta {
  max-width: 900px;
  margin: 0 auto;
  padding: 28px 60px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

.res-count {
  font-size: 0.82rem;
  color: var(--muted);
}

.res-count strong {
  color: var(--ink);
}

.res-list {
  max-width: 720px;
  margin: 0 auto;
  padding: 8px 60px 80px;
}

.res-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid #eef0f3;
  text-decoration: none;
  color: var(--ink);
  transition: background 0.15s, padding 0.15s;
  border-radius: 10px;
  animation: fadeUp 0.3s ease both;
}

.res-item:first-child {
  border-top: 1px solid #eef0f3;
}

.res-item:hover {
  background: rgba(245, 166, 35, 0.04);
  padding-left: 10px;
  padding-right: 10px;
  margin: 0 -10px;
}

.res-item:hover .res-item-arrow {
  opacity: 1;
  transform: translateX(0);
}

.res-item-num {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--muted);
  min-width: 24px;
  text-align: right;
  flex-shrink: 0;
}

.res-item-icon {
  font-size: 1.1rem;
  flex-shrink: 0;
  line-height: 1;
}

.res-item-caption {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--ink);
  flex: 1;
  line-height: 1.4;
}

.res-item-domain {
  font-size: 0.76rem;
  color: var(--muted);
  white-space: nowrap;
  flex-shrink: 0;
}

.res-item-arrow {
  color: var(--gold-dark);
  font-size: 0.9rem;
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity 0.2s, transform 0.2s;
  flex-shrink: 0;
}

.res-empty {
  text-align: center;
  padding: 70px 20px;
  color: var(--muted);
}

.res-empty-icon {
  font-size: 2.8rem;
  margin-bottom: 12px;
}

.res-empty h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
}

/* Loading placeholder */
.res-loading {
  color: var(--muted);
  padding: 40px 0;
  text-align: center;
}

@media (max-width: 900px) {
  .res-hero {
    padding: 56px 24px 48px;
  }

  .res-meta {
    padding: 20px 24px 4px;
  }

  .res-list {
    padding: 0 24px 60px;
  }
}

@media (max-width: 500px) {
  .res-item-domain {
    display: none;
  }

  .res-search-bar {
    margin-top: 24px;
  }
}

/* ─── LEGAL & POLICY PAGES (privacy-policy.html & terms-and-conditions.html) ─── */
.nav-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ink);
  color: var(--white);
  text-decoration: none;
  padding: 9px 20px;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 700;
  font-family: 'DM Sans', sans-serif;
  transition: background 0.2s;
}

.nav-back:hover {
  background: var(--gold-dark);
  color: var(--ink);
}

.page-hero {
  background: var(--ink);
  padding: 80px 60px 60px;
  position: relative;
  overflow: hidden;
}

.page-hero-glow {
  position: absolute;
  top: -30%;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(245, 166, 35, 0.18) 0%, transparent 65%);
  pointer-events: none;
}

.page-hero-inner {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.page-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(245, 166, 35, 0.1);
  border: 1px solid rgba(245, 166, 35, 0.25);
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 16px;
}

.page-hero h1 span {
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.95rem;
  max-width: 520px;
}

.page-meta {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.35);
}

.page-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.content-wrapper {
  max-width: 900px;
  margin: 0 auto;
  padding: 64px 60px 80px;
}

.policy-section {
  margin-bottom: 52px;
  padding-bottom: 52px;
  border-bottom: 1px solid #e8ecf0;
}

.policy-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.policy-section h2 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.policy-section h2 .sec-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(245, 166, 35, 0.12);
  border: 1px solid rgba(245, 166, 35, 0.25);
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--gold-dark);
  flex-shrink: 0;
}

.policy-section p {
  color: var(--slate);
  font-size: 0.97rem;
  line-height: 1.85;
  margin-bottom: 14px;
}

.policy-section p:last-child {
  margin-bottom: 0;
}

.policy-section ul,
.policy-section ol {
  padding-left: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 12px;
  margin-bottom: 14px;
}

.policy-section ul li,
.policy-section ol li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--slate);
  font-size: 0.95rem;
  line-height: 1.7;
}

.policy-section ul li::before {
  content: '✦';
  color: var(--gold);
  font-size: 0.7rem;
  margin-top: 5px;
  flex-shrink: 0;
}

.policy-section ol {
  counter-reset: item;
}

.policy-section ol li::before {
  content: counter(item)'.';
  counter-increment: item;
  color: var(--gold-dark);
  font-weight: 700;
  font-size: 0.85rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.highlight-box {
  background: rgba(245, 166, 35, 0.06);
  border: 1px solid rgba(245, 166, 35, 0.2);
  border-left: 3px solid var(--gold);
  border-radius: 0 12px 12px 0;
  padding: 20px 24px;
  margin: 20px 0;
}

.highlight-box p {
  margin: 0 !important;
  font-size: 0.92rem !important;
}

.warning-box {
  background: rgba(239, 68, 68, 0.05);
  border: 1px solid rgba(239, 68, 68, 0.2);
  border-left: 3px solid #ef4444;
  border-radius: 0 12px 12px 0;
  padding: 20px 24px;
  margin: 20px 0;
}

.warning-box p {
  margin: 0 !important;
  font-size: 0.92rem !important;
  color: var(--slate);
}

.contact-info-card {
  background: var(--white);
  border: 1px solid #e8ecf0;
  border-radius: 16px;
  padding: 28px 32px;
  margin-top: 20px;
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.05);
}

.contact-info-card p {
  color: var(--slate);
  font-size: 0.92rem;
  margin-bottom: 8px !important;
}

.contact-info-card a {
  color: var(--gold-dark);
  font-weight: 600;
  text-decoration: none;
}

.contact-info-card a:hover {
  text-decoration: underline;
}

.toc-container {
  background: var(--white);
  border: 1px solid #e8ecf0;
  border-radius: 16px;
  padding: 30px;
  margin-bottom: 40px;
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.04);
}

.toc-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

.toc-list {
  list-style: none;
  padding-left: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 24px;
}

.toc-list li a {
  color: var(--slate);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 6px;
}

.toc-list li a::before {
  content: '→';
  color: var(--gold);
  font-size: 0.75rem;
}

.toc-list li a:hover {
  color: var(--gold-dark);
}

.refund-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e8ecf0;
  font-size: 0.9rem;
}

.refund-table th {
  background: var(--ink);
  color: var(--white);
  padding: 14px 20px;
  text-align: left;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.05em;
}

.refund-table td {
  padding: 14px 20px;
  color: var(--slate);
  border-bottom: 1px solid #e8ecf0;
}

.refund-table tr:last-child td {
  border-bottom: none;
}

.refund-table tr:nth-child(even) td {
  background: #f9fafb;
}

.badge-yes {
  color: #16a34a;
  font-weight: 700;
}

.badge-partial {
  color: var(--gold-dark);
  font-weight: 700;
}

.badge-no {
  color: #dc2626;
  font-weight: 700;
}

@media (max-width: 768px) {
  .toc-list {
    grid-template-columns: 1fr;
  }

  .refund-table {
    font-size: 0.82rem;
  }

  .refund-table th,
  .refund-table td {
    padding: 10px 14px;
  }
}

/* ─── BLOG LISTING PAGE (blog.html) ─── */
.blog-hero {
  background: var(--ink);
  padding: 90px 24px 70px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.blog-hero-glow {
  position: absolute;
  top: -30%;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(245, 166, 35, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.blog-hero-badge {
  display: inline-block;
  background: rgba(245, 166, 35, 0.1);
  border: 1px solid rgba(245, 166, 35, 0.25);
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
}

.blog-hero h1 {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 16px;
}

.blog-hero h1 span {
  color: var(--gold);
}

.blog-hero p {
  color: var(--muted);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

.blog-main {
  max-width: 1100px;
  margin: 60px auto;
  padding: 0 24px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 30px;
}

.blog-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 30px;
  text-decoration: none;
  color: inherit;
  box-shadow: var(--card-shadow);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: 0 15px 35px rgba(245, 166, 35, 0.12);
}

.blog-tag {
  background: rgba(245, 166, 35, 0.1);
  color: var(--gold-dark);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 6px;
  align-self: flex-start;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.blog-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--ink);
  line-height: 1.35;
  margin-bottom: 12px;
}

.blog-excerpt {
  font-size: 0.95rem;
  color: var(--slate);
  line-height: 1.55;
  margin-bottom: 24px;
  flex-grow: 1;
}

.blog-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  padding-top: 18px;
  font-size: 0.8rem;
  color: var(--muted);
}

.blog-date {
  display: flex;
  align-items: center;
  gap: 6px;
}

.blog-read-btn {
  color: var(--gold-dark);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.2s;
}

.blog-card:hover .blog-read-btn {
  gap: 8px;
}

/* ─── BLOG ARTICLE PAGE (blog/*.html) ─── */
.art-header {
  background: var(--ink);
  color: var(--white);
  padding: 80px 24px 50px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.art-glow {
  position: absolute;
  top: -30%;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 350px;
  background: radial-gradient(ellipse, rgba(245, 166, 35, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.art-category {
  display: inline-block;
  background: rgba(245, 166, 35, 0.12);
  border: 1px solid rgba(245, 166, 35, 0.2);
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 50px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.art-header h1 {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(1.8rem, 4.5vw, 2.8rem);
  font-weight: 800;
  max-width: 800px;
  margin: 0 auto 16px;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.art-meta-strip {
  color: var(--muted);
  font-size: 0.9rem;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.art-body-container {
  max-width: 800px;
  margin: 50px auto;
  padding: 0 24px;
}

.art-content {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px;
  box-shadow: var(--card-shadow);
}

.art-content p {
  font-size: 1.05rem;
  color: var(--slate);
  line-height: 1.8;
  margin-bottom: 24px;
}

.art-content h2 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--ink);
  margin-top: 36px;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.art-content h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--ink);
  margin-top: 24px;
  margin-bottom: 12px;
}

.art-content ul {
  margin-left: 20px;
  margin-bottom: 24px;
}

.art-content li {
  font-size: 1.05rem;
  color: var(--slate);
  line-height: 1.8;
  margin-bottom: 8px;
}

.art-cta-box {
  background: rgba(245, 166, 35, 0.05);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 30px;
  margin-top: 40px;
  text-align: center;
}

.art-cta-box h3 {
  margin-top: 0;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--ink);
}

.art-cta-box p {
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.art-cta-btn {
  display: inline-flex;
  background: var(--gold);
  color: var(--ink);
  text-decoration: none;
  font-weight: 700;
  padding: 12px 28px;
  border-radius: 6px;
  transition: background 0.2s;
}

.art-cta-btn:hover {
  background: var(--gold-light);
}

@media (max-width: 768px) {
  .blog-hero {
    padding: 60px 20px 50px;
  }

  .blog-main {
    margin: 40px auto;
  }

  .blog-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .art-header {
    padding: 60px 20px 40px;
  }

  .art-content {
    padding: 24px;
  }
}

/* ─── DEDICATED COURSE PAGES ─── */
.course-hero {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
  padding: 80px 60px;
}

.course-hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  width: 100%;
}

.course-hero h1 {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.course-hero h1 span {
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.course-hero-tagline {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 650px;
  margin: 0 auto 32px;
}

.course-hero-meta {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.course-hero-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--gold-light);
  background: rgba(255, 255, 255, 0.06);
  padding: 8px 18px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.course-hero-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Three action buttons */
.btn-enroll-now {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--ink);
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  transition: transform 0.25s, box-shadow 0.25s;
  box-shadow: 0 4px 15px rgba(245, 166, 35, 0.3);
}

.btn-enroll-now:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245, 166, 35, 0.45);
}

.btn-demo-class {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
}

.btn-demo-class:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--gold);
}

.btn-whatsapp-chat {
  background: #25D366;
  color: var(--white);
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.2s;
}

.btn-whatsapp-chat:hover {
  background: #20ba59;
}

.course-overview-layout {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 40px;
  align-items: start;
}

.course-overview-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  box-shadow: var(--card-shadow);
}

.course-overview-card h3 {
  margin-top: 0;
  margin-bottom: 16px;
}

.sidebar-sticky {
  position: sticky;
  top: 90px;
}

/* Tools Covered Styles */
.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.tool-card {
  background: var(--white);
  border: 1px solid #e8ecf0;
  border-radius: 12px;
  padding: 20px 16px;
  text-align: center;
  box-shadow: var(--card-shadow);
  transition: transform 0.2s, border-color 0.2s;
}

.tool-card:hover {
  transform: translateY(-3px);
  border-color: var(--gold);
}

.tool-card img,
.tool-card .tool-emoji {
  font-size: 2rem;
  margin-bottom: 12px;
}

.tool-card span {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--ink);
}

/* Projects grid */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 24px;
}

.project-card {
  background: var(--white);
  border: 1px solid #e8ecf0;
  border-radius: 16px;
  padding: 28px;
  box-shadow: var(--card-shadow);
}

.project-card h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 12px;
}

.project-card p {
  font-size: 0.88rem;
  color: var(--slate);
  margin-bottom: 0;
}

/* Career and Salary blocks */
.salary-insights-box {
  background: rgba(245, 166, 35, 0.06);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  margin-top: 24px;
}

.salary-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 20px;
}

.salary-card {
  background: var(--white);
  border: 1px solid #e8ecf0;
  border-radius: 10px;
  padding: 16px;
  text-align: center;
}

.salary-val {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--gold-dark);
}

.salary-title {
  font-size: 0.78rem;
  color: var(--muted);
  text-transform: uppercase;
  font-weight: 600;
}

/* Duration and Fees Section */
.fees-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  box-shadow: var(--card-shadow);
}

.fees-price {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--ink);
  margin: 16px 0;
}

/* Related Courses Sidebar Link */
.related-courses-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 20px;
}

.related-course-link {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  background: var(--white);
  border: 1px solid #e8ecf0;
  border-radius: 10px;
  padding: 12px;
  transition: border-color 0.2s;
}

.related-course-link:hover {
  border-color: var(--gold);
}

.related-course-img {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: rgba(245, 166, 35, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.related-course-info h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  color: var(--ink);
  margin-bottom: 2px;
}

.related-course-info span {
  font-size: 0.75rem;
  color: var(--muted);
}

@media (max-width: 900px) {
  .course-hero {
    padding: 60px 24px;
    min-height: auto;
  }

  .course-overview-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .projects-grid {
    grid-template-columns: 1fr;
  }

  .salary-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

/* ==========================================================================
   COURSE PAGE EXTRACTED STYLES
   ========================================================================== */

.course-details-left {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.course-outcomes-list {
  gap: 14px;
  margin-top: 16px;
}

.syllabus-info {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 20px;
}

.curr-accordion {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.course-certifications-list {
  gap: 10px;
  margin-top: 12px;
}

.career-role-card {
  padding: 16px 8px !important;
}

.course-faq-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 20px;
}

.sidebar-eyebrow {
  color: var(--gold-dark) !important;
  margin-bottom: 12px;
  justify-content: center;
}

.hero-eyebrow {
  color: var(--gold-light) !important;
  margin-bottom: 12px;
  justify-content: center;
}

.fees-details {
  font-size: 0.88rem;
  color: var(--slate);
  margin-bottom: 24px;
}

.btn-enroll-block {
  display: block;
  text-align: center;
  margin-bottom: 12px;
}

.btn-whatsapp-center {
  display: flex;
  justify-content: center;
}

.related-courses-card {
  margin-top: 24px;
  text-align: left;
}

.related-courses-title {
  font-size: 1.1rem;
  margin-bottom: 16px;
}

.course-enroll-section {
  background: var(--ink);
  color: var(--white);
}

.enroll-container-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.enroll-section-title {
  color: var(--white) !important;
}

.gradient-text-gold {
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.enroll-section-subtitle {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 40px;
}

.course-enroll-form {
  text-align: left;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 40px;
  border-radius: 20px;
  backdrop-filter: blur(10px);
}

.form-row-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.course-form-label {
  display: block;
  font-size: 0.85rem;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 8px;
}

.course-form-input {
  width: 100%;
  padding: 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  color: var(--white);
  outline: none;
}

.course-form-select {
  width: 100%;
  padding: 14px;
  background: rgba(13, 17, 23, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  color: var(--white);
  outline: none;
}

.course-form-textarea {
  width: 100%;
  padding: 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  color: var(--white);
  outline: none;
  resize: none;
}

.course-form-submit {
  width: 100%;
  cursor: pointer;
  font-size: 1rem;
  border: none;
  padding: 16px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group-last {
  margin-bottom: 24px;
}

/* Legal Pages Extracted Styles */
.policy-p-margin {
  margin-top: 20px;
}

.policy-email-link {
  color: var(--gold-dark);
  font-weight: 600;
}

/* ─── TESTIMONIALS ─── */
.testimonials-wrapper {
  background: var(--paper);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid #e8ecf0;
  border-radius: 20px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s;
  box-shadow: var(--card-shadow);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.09);
  border-color: rgba(245, 166, 35, 0.3);
}

.testimonial-stars {
  color: var(--gold);
  font-size: 1.1rem;
  letter-spacing: 2px;
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--slate);
  line-height: 1.75;
  font-style: italic;
  border: none;
  margin: 0;
  padding: 0;
  flex: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid #eef0f3;
}

.testimonial-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'DM Sans', sans-serif;
  font-weight: 800;
  font-size: 0.85rem;
  color: var(--ink);
  flex-shrink: 0;
}

.testimonial-name {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--ink);
}

.testimonial-meta {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 3px;
}

.testimonial-tag {
  background: rgba(245, 166, 35, 0.1);
  color: var(--gold-dark);
  border: 1px solid rgba(245, 166, 35, 0.2);
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
}

@media (max-width: 900px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (min-width: 640px) and (max-width: 900px) {
  .testimonials-grid {
    grid-template-columns: 1fr 1fr;
  }
}