@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700;900&family=Crimson+Pro:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Rajdhani:wght@300;400;500;600;700&display=swap');

:root {
  --black: #0a0a0a;
  --deep: #111111;
  --surface: #1a1a1a;
  --border: #2a2a2a;
  --cream: #e8dcc8;
  --cream-dim: #b8a990;
  --cream-faint: #6a5e4e;
  --gold: #c9a84c;
  --gold-dim: #8a6e2e;
  --steel: #7a8a9a;
  --white: #f5f0e8;
  --red-accent: #8b2020;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--cream);
  font-family: 'Crimson Pro', Georgia, serif;
  font-size: 18px;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ─── NOISE TEXTURE OVERLAY ─── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.4;
}

/* ─── TYPOGRAPHY ─── */
h1, h2, h3, h4 {
  font-family: 'Cinzel', serif;
  letter-spacing: 0.05em;
  line-height: 1.2;
}

.section-label {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.25rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(to bottom, rgba(10,10,10,0.98), rgba(10,10,10,0));
  transition: background 0.3s;
}

nav.scrolled {
  background: rgba(10,10,10,0.97);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  font-family: 'Cinzel', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--cream);
  text-decoration: none;
  letter-spacing: 0.15em;
}

.nav-logo span {
  color: var(--gold);
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream-dim);
  text-decoration: none;
  transition: color 0.2s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s;
}

.nav-links a:hover { color: var(--cream); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--black) !important;
  background: var(--gold);
  padding: 0.6rem 1.4rem;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s !important;
}

.nav-cta:hover {
  background: var(--cream) !important;
  transform: translateY(-1px);
}

.nav-cta::after { display: none !important; }

/* ─── HAMBURGER ─── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cream);
  transition: all 0.3s;
}

/* ─── PAGE SECTIONS ─── */
.page { display: none; }
.page.active { display: block; }

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  padding: 8rem 2rem 4rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 40%, rgba(201,168,76,0.07) 0%, transparent 70%),
    radial-gradient(ellipse 50% 80% at 20% 80%, rgba(122,138,154,0.05) 0%, transparent 60%),
    linear-gradient(180deg, #0a0a0a 0%, #111111 50%, #0a0a0a 100%);
}

.hero-rule {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
  margin: 0 auto 2rem;
  animation: fadeDown 1s ease 0.3s both;
}

.hero-eyebrow {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  animation: fadeUp 0.8s ease 0.5s both;
}

.hero h1 {
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 900;
  color: var(--cream);
  margin-bottom: 0.25rem;
  animation: fadeUp 0.8s ease 0.7s both;
}

.hero-sub {
  font-family: 'Cinzel', serif;
  font-size: clamp(0.9rem, 2vw, 1.3rem);
  font-weight: 400;
  letter-spacing: 0.3em;
  color: var(--cream-dim);
  margin-bottom: 2rem;
  animation: fadeUp 0.8s ease 0.9s both;
}

.hero-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1rem auto 2rem;
  width: fit-content;
  animation: fadeUp 0.8s ease 1.1s both;
}

.hero-divider span {
  width: 60px;
  height: 1px;
  background: var(--gold-dim);
}

.hero-divider i {
  color: var(--gold);
  font-size: 0.6rem;
  width: 6px;
  height: 6px;
  background: var(--gold);
  transform: rotate(45deg);
  display: block;
}

.hero-tagline {
  font-style: italic;
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  color: var(--cream-dim);
  margin-bottom: 3rem;
  animation: fadeUp 0.8s ease 1.2s both;
}

.hero-values {
  display: flex;
  gap: 2.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
  animation: fadeUp 0.8s ease 1.4s both;
}

.hero-values span {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--steel);
}

.hero-values span::before {
  content: '◆ ';
  color: var(--gold);
  font-size: 0.5rem;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp 0.8s ease 1.5s both;
}

.btn-primary {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--black);
  padding: 1rem 2.5rem;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.25s;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
}

.btn-primary:hover {
  background: var(--cream);
  transform: translateY(-2px);
}

.btn-secondary {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: transparent;
  color: var(--cream);
  padding: 1rem 2.5rem;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid var(--cream-faint);
  transition: all 0.25s;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
}

.btn-secondary:hover {
  border-color: var(--cream);
  transform: translateY(-2px);
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  animation: fadeUp 1s ease 2s both;
}

.hero-scroll span {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--cream-faint);
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold-dim), transparent);
  animation: scrollPulse 2s ease infinite;
}

/* ─── STATS BAR ─── */
.stats-bar {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2.5rem 3rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.stat-item {
  text-align: center;
  padding: 1rem;
  border-right: 1px solid var(--border);
}

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

.stat-number {
  font-family: 'Cinzel', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  display: block;
}

.stat-label {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream-dim);
}

/* ─── SECTIONS ─── */
section {
  padding: 6rem 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--cream);
  margin-bottom: 1rem;
}

.section-header p {
  color: var(--cream-dim);
  max-width: 600px;
  font-size: 1.1rem;
}

.gold-rule {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin: 1.5rem 0;
}

/* ─── COURSES GRID ─── */
.courses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5px;
  background: var(--border);
  border: 1px solid var(--border);
}

.course-card {
  background: var(--deep);
  padding: 2.5rem;
  transition: background 0.25s;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.course-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background: var(--gold);
  transition: height 0.3s;
}

.course-card:hover { background: var(--surface); }
.course-card:hover::before { height: 100%; }

.course-icon {
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
  color: var(--gold);
}

.course-card h3 {
  font-family: 'Cinzel', serif;
  font-size: 1.1rem;
  color: var(--cream);
  margin-bottom: 0.75rem;
}

.course-card p {
  font-size: 0.95rem;
  color: var(--cream-dim);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.course-tag {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold-dim);
  padding: 0.25rem 0.6rem;
  display: inline-block;
}

/* ─── SERVICES ─── */
.services-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.service-item {
  padding: 2rem;
  border: 1px solid var(--border);
  position: relative;
  transition: border-color 0.3s;
}

.service-item:hover { border-color: var(--gold-dim); }

.service-number {
  font-family: 'Cinzel', serif;
  font-size: 3rem;
  font-weight: 900;
  color: var(--border);
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  line-height: 1;
}

.service-item h3 {
  font-family: 'Cinzel', serif;
  font-size: 1rem;
  color: var(--cream);
  margin-bottom: 0.75rem;
}

.service-item p {
  font-size: 0.95rem;
  color: var(--cream-dim);
  line-height: 1.6;
}

/* ─── ABOUT PAGE ─── */
.about-hero {
  min-height: 40vh;
  display: flex;
  align-items: flex-end;
  padding: 8rem 3rem 4rem;
  background: linear-gradient(to bottom, #0a0a0a, #111111);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.about-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(201,168,76,0.05) 0%, transparent 70%);
}

.about-hero h1 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  color: var(--cream);
  position: relative;
}

.about-hero h1 em {
  color: var(--gold);
  font-style: normal;
}

.about-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 3rem;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 6rem;
  align-items: start;
}

.about-sidebar {
  position: sticky;
  top: 6rem;
}

.credential-block {
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--border);
}

.credential-block:last-child {
  border-bottom: none;
}

.credential-block h4 {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.credential-block ul {
  list-style: none;
}

.credential-block li {
  font-size: 0.9rem;
  color: var(--cream-dim);
  padding: 0.3rem 0;
  padding-left: 1rem;
  position: relative;
}

.credential-block li::before {
  content: '◆';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.4rem;
  top: 0.55rem;
}

.about-main h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--cream);
  margin-bottom: 1.5rem;
}

.about-main p {
  color: var(--cream-dim);
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

.about-main p strong {
  color: var(--cream);
}

.awards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.award-item {
  padding: 1rem 1.25rem;
  background: var(--surface);
  border-left: 2px solid var(--gold);
  font-size: 0.85rem;
  color: var(--cream-dim);
}

/* ─── COURSES PAGE ─── */
.courses-hero {
  min-height: 40vh;
  display: flex;
  align-items: flex-end;
  padding: 8rem 3rem 4rem;
  background: linear-gradient(to bottom, #0a0a0a, #111111);
  border-bottom: 1px solid var(--border);
  position: relative;
}

.courses-hero h1 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  color: var(--cream);
}

.courses-hero h1 em {
  color: var(--gold);
  font-style: normal;
}

.courses-full {
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 3rem;
}

.course-full-card {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  padding: 3rem 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}

.course-full-card:last-child { border-bottom: none; }

.course-meta h3 {
  font-family: 'Cinzel', serif;
  font-size: 1.3rem;
  color: var(--cream);
  margin-bottom: 0.5rem;
}

.course-meta .duration {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.course-meta .audience {
  font-size: 0.85rem;
  color: var(--cream-faint);
}

.course-detail p {
  color: var(--cream-dim);
  margin-bottom: 1rem;
}

.course-outcomes {
  list-style: none;
  margin-top: 1rem;
}

.course-outcomes li {
  font-size: 0.9rem;
  color: var(--cream-dim);
  padding: 0.35rem 0;
  padding-left: 1.25rem;
  position: relative;
}

.course-outcomes li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--gold);
}

/* ─── SERVICES PAGE ─── */
.services-hero {
  min-height: 40vh;
  display: flex;
  align-items: flex-end;
  padding: 8rem 3rem 4rem;
  background: linear-gradient(to bottom, #0a0a0a, #111111);
  border-bottom: 1px solid var(--border);
}

.services-hero h1 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  color: var(--cream);
}

.services-hero h1 em {
  color: var(--gold);
  font-style: normal;
}

.services-full {
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 3rem;
}

.service-full-block {
  padding: 3.5rem 0;
  border-bottom: 1px solid var(--border);
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  align-items: start;
}

.service-full-block:last-child { border-bottom: none; }

.service-label h3 {
  font-family: 'Cinzel', serif;
  font-size: 1.2rem;
  color: var(--cream);
  margin-bottom: 0.5rem;
}

.service-body p {
  color: var(--cream-dim);
  margin-bottom: 1rem;
}

.service-body ul {
  list-style: none;
  margin-top: 0.5rem;
}

.service-body li {
  font-size: 0.95rem;
  color: var(--cream-dim);
  padding: 0.3rem 0;
  padding-left: 1.25rem;
  position: relative;
}

.service-body li::before {
  content: '◆';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.4rem;
  top: 0.6rem;
}

/* ─── CONTACT PAGE ─── */
.contact-hero {
  min-height: 40vh;
  display: flex;
  align-items: flex-end;
  padding: 8rem 3rem 4rem;
  background: linear-gradient(to bottom, #0a0a0a, #111111);
  border-bottom: 1px solid var(--border);
}

.contact-hero h1 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  color: var(--cream);
}

.contact-hero h1 em {
  color: var(--gold);
  font-style: normal;
}

.contact-layout {
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 3rem;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 5rem;
}

.contact-info h3 {
  font-family: 'Cinzel', serif;
  font-size: 1.2rem;
  color: var(--cream);
  margin-bottom: 2rem;
}

.contact-detail {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.contact-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.contact-item .label {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
}

.contact-item .value {
  color: var(--cream-dim);
  font-size: 1rem;
}

.contact-item a {
  color: var(--cream-dim);
  text-decoration: none;
  transition: color 0.2s;
}

.contact-item a:hover { color: var(--cream); }

.contact-form-wrap h3 {
  font-family: 'Cinzel', serif;
  font-size: 1.2rem;
  color: var(--cream);
  margin-bottom: 2rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--cream);
  padding: 0.875rem 1rem;
  font-family: 'Crimson Pro', serif;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.2s;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold-dim);
}

.form-group textarea {
  height: 140px;
  resize: vertical;
}

.form-group select option {
  background: var(--surface);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-submit {
  width: 100%;
  padding: 1rem;
  background: var(--gold);
  color: var(--black);
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
}

.form-submit:hover {
  background: var(--cream);
  transform: translateY(-2px);
}

.form-note {
  font-size: 0.85rem;
  color: var(--cream-faint);
  margin-top: 1rem;
  font-style: italic;
}

/* ─── FOOTER ─── */
footer {
  background: var(--deep);
  border-top: 1px solid var(--border);
  padding: 3rem;
  text-align: center;
}

.footer-logo {
  font-family: 'Cinzel', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--cream);
  letter-spacing: 0.15em;
  margin-bottom: 0.5rem;
}

.footer-logo span { color: var(--gold); }

.footer-tagline {
  font-style: italic;
  color: var(--cream-faint);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.footer-links {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  list-style: none;
}

.footer-links a {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream-faint);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--cream); }

.footer-copy {
  font-size: 0.8rem;
  color: var(--cream-faint);
}

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  nav { padding: 1rem 1.5rem; }
  .nav-links { display: none; }
  .hamburger { display: flex; }

  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item { border-bottom: 1px solid var(--border); }
  .stat-item:nth-child(3), .stat-item:nth-child(4) { border-bottom: none; }

  section { padding: 4rem 1.5rem; }

  .about-content,
  .contact-layout { grid-template-columns: 1fr; gap: 3rem; }
  .about-sidebar { position: static; }

  .course-full-card,
  .service-full-block { grid-template-columns: 1fr; gap: 1.5rem; }

  .awards-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }

  .about-hero, .courses-hero,
  .services-hero, .contact-hero {
    padding: 7rem 1.5rem 3rem;
  }

  .courses-full, .services-full { padding: 3rem 1.5rem; }
  .about-content, .contact-layout { padding: 3rem 1.5rem; }
}

@media (max-width: 600px) {
  .stats-bar { grid-template-columns: 1fr 1fr; padding: 1.5rem; }
  .hero-values { gap: 1rem; }
  .courses-grid { grid-template-columns: 1fr; }
}
