/* ===================================================================
   JD DRIVING SCHOOL — MAIN STYLESHEET
   assets/css/main.css
   Brand: deep navy + warm orange
=================================================================== */

/* === DESIGN TOKENS === */
:root {
  --navy: #1A2551;
  --navy-deep: #11173B;
  --navy-soft: #2A3766;
  --white: #FFFFFF;
  --orange: #F6AE1E;
  --orange-dark: #D68F08;
  --orange-light: #FFD166;
  --orange-tint: rgba(246, 174, 30, .14);
  --grey-bg: #F7F8FB;
  --grey-line: #E6E9F1;
  --text-muted: #5B6479;
  --text-on-navy: #B9C2DC;
  --font-display: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'Space Mono', monospace;
  --container-pad: 1.25rem;
  --site-nav-offset: 96px;
}

/* === RESET & BASE === */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--navy-deep);
  background: #FFFDF9;
  margin: 0;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  color: var(--navy-deep);
  margin: 0;
  letter-spacing: -0.01em;
}

p {
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

section {
  position: relative;
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--orange);
  color: var(--navy-deep);
  padding: .6rem 1rem;
  font-weight: 600;
  z-index: 2000;
  border-radius: 0 0 8px 0;
}

.skip-link:focus {
  left: 0;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
  border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

  html {
    scroll-behavior: auto;
  }
}

/* === EYEBROW === */
.eyebrow {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--orange-dark);
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  margin-bottom: 1rem;
}

.eyebrow::before {
  content: '';
  display: inline-block;
  width: 22px;
  height: 3px;
  background: var(--orange);
  border-radius: 2px;
  flex-shrink: 0;
}

.eyebrow-on-navy {
  color: var(--orange-light);
}

/* === BUTTONS === */
.btn {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .95rem;
  padding: .85rem 1.8rem;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  border: 2px solid transparent;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
  cursor: pointer;
}

.btn-primary {
  background: var(--orange);
  color: var(--navy-deep);
  box-shadow: 0 8px 22px -8px rgba(226, 149, 17, .5);
}

.btn-primary:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 14px 28px -8px rgba(226, 149, 17, .5);
  color: var(--navy-deep);
}

.btn-outline-light-custom {
  background: transparent;
  border-color: rgba(255, 255, 255, .35);
  color: var(--white);
}

.btn-outline-light-custom:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, .08);
  transform: translateY(-2px);
  color: var(--white);
}

.btn-lg {
  padding: 1.05rem 2.3rem;
  font-size: 1.05rem;
}

.btn-nav-cta {
  background: var(--orange);
  color: var(--navy-deep);
  padding: .6rem 1.3rem;
  border-radius: 7px;
  font-size: .88rem;
  font-weight: 700;
  white-space: nowrap;
}

.btn-nav-cta:hover {
  background: var(--orange-dark);
  color: var(--navy-deep);
}

/* ===================================================================
   INTRO OVERLAY — fullscreen splash with car driving animation
=================================================================== */
#introOverlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: linear-gradient(165deg, var(--orange-dark) 0%, var(--navy-deep) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity .7s ease, transform .7s ease;
  overflow: hidden;
}

#introOverlay.hiding {
  opacity: 0;
  transform: translateY(-3%);
  pointer-events: none;
}

.intro-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.1rem;
  animation: introLogoFade .9s ease .2s both;
  z-index: 2;
  text-align: center;
}

.intro-logo-mark {
  width: 78px;
  height: 78px;
  background: linear-gradient(145deg, var(--orange), var(--orange-dark));
  color: var(--navy-deep);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 22px;
  box-shadow: 0 20px 50px -14px rgba(226, 149, 17, .55);
}

.intro-logo-image {
  width: min(200px, 40vw);
  height: auto;
  background: none;
  border-radius: 0;
  box-shadow: none;
  display: block;
}

.intro-logo-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--white);
}

.intro-logo-tagline {
  font-size: .8rem;
  color: var(--text-on-navy);
  letter-spacing: .12em;
  text-transform: uppercase;
}

@keyframes introLogoFade {
  from {
    opacity: 0;
    transform: translateY(-18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Road strip */
.intro-road-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 26vh;
  overflow: hidden;
}

.intro-road-surface {
  position: absolute;
  inset: 0;
  background: var(--navy-deep);
}

/* Road edge top line */
.intro-road-surface::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(255, 255, 255, .1);
}

/* Centre lane dashes */
.intro-road-surface::before {
  content: '';
  position: absolute;
  top: 44%;
  left: 0;
  right: 0;
  height: 5px;
  background-image: repeating-linear-gradient(to right,
      var(--orange) 0 52px,
      transparent 52px 96px);
  animation: introLaneScroll .85s linear infinite;
}

@keyframes introLaneScroll {
  from {
    background-position: 0 0;
  }

  to {
    background-position: -96px 0;
  }
}

/* Car icon drives left → right */
.intro-car {
  position: absolute;
  top: 64%;
  transform: translateY(-50%);
  font-size: 3.2rem;
  color: var(--orange);
  filter: drop-shadow(0 6px 18px rgba(246, 174, 30, .45));
  animation: introCar 1.9s ease-in-out .5s forwards;
}

@keyframes introCar {
  0% {
    left: -130px;
    opacity: 0;
  }

  12% {
    opacity: 1;
  }

  85% {
    opacity: 1;
  }

  100% {
    left: calc(100% + 130px);
    opacity: 0;
  }
}

/* Ground glow under car */
.intro-car::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 16px;
  background: radial-gradient(ellipse, rgba(246, 174, 30, .35), transparent 70%);
  border-radius: 50%;
}

/* ===================================================================
   NAVIGATION
=================================================================== */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: .75rem 0;
  background: var(--white);
  box-shadow: 0 1px 0 var(--grey-line);
  transition: box-shadow .35s ease, padding .35s ease;
}

.site-nav.scrolled {
  background: var(--white);
  padding: .65rem 0;
  box-shadow: 0 4px 24px -8px rgba(91, 42, 8, .16);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: .7rem;
}

.logo-mark {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: linear-gradient(145deg, var(--orange), var(--orange-dark));
  color: var(--navy-deep);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.logo-name {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--navy-deep);
  font-size: 1.05rem;
}

.logo-sub {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .62rem;
  letter-spacing: .12em;
  color: var(--text-muted);
}

.nav-menu {
  display: none;
  align-items: center;
  gap: 2.1rem;
}

.nav-link {
  font-size: .92rem;
  font-weight: 500;
  color: var(--navy-deep);
  position: relative;
  padding: .3rem 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: var(--orange);
  transition: width .3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 34px;
  height: 34px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  z-index: 1100;
}

.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--navy-deep);
  transition: transform .3s ease, opacity .3s ease;
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-cta-desktop {
  display: none;
}

@media (min-width: 992px) {
  .nav-menu {
    display: flex;
    position: static;
    flex-direction: row;
    background: none;
    padding: 0;
  }

  .nav-toggle {
    display: none;
  }

  .nav-cta-desktop {
    display: inline-flex;
  }
}

@media (max-width: 991.98px) {
  .nav-menu {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 78%;
    max-width: 320px;
    background: linear-gradient(180deg, var(--navy) 0%, var(--navy-deep) 100%);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 1.8rem;
    padding: 2rem 2.2rem;
    transform: translateX(100%);
    transition: transform .4s ease;
    box-shadow: -20px 0 50px rgba(0, 0, 0, .35);
  }

  .nav-menu.open {
    transform: translateX(0);
    display: flex;
  }

  .nav-link {
    font-size: 1.1rem;
    color: var(--white);
  }
}

/* ===================================================================
   HERO — full-width content, background image slider (Swiper)
=================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  padding-top: var(--site-nav-offset);
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Swiper takes up entire hero as background */
.hero-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-slider .swiper-wrapper,
.hero-slider .swiper-slide {
  height: 100%;
}

.hero-slider .swiper-slide picture {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-slider .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

@media (max-width: 767.98px) {
  .hero-slider .swiper-slide img {
    object-fit: cover;
    object-position: center center;
  }
}

.slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

/* Ken Burns zoom — only fires when the slide is active */
.swiper-slide-active .slide-bg {
  animation: kenBurns 8s ease-out forwards;
}

@keyframes kenBurns {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.1);
  }
}

/* Placeholder gradient backgrounds — REPLACE with real photos:
   background-image: url('../images/hero-slide-1.jpg') over the gradient */
.hero-slide-1 {
  background: linear-gradient(160deg, var(--orange-light) 0%, var(--navy-deep) 100%);
  /* TODO: background-image: url('../images/hero-slide-1.jpg'); */
}

.hero-slide-2 {
  background: linear-gradient(160deg, var(--orange) 0%, var(--navy) 100%);
  /* TODO: background-image: url('../images/hero-slide-2.jpg'); */
}

.hero-slide-3 {
  background: linear-gradient(160deg, #ffd66f 0%, var(--navy-deep) 100%);
  /* TODO: background-image: url('../images/hero-slide-3.jpg'); */
}

/* Gradient overlay on every slide */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg,
      rgba(17, 23, 59, .62) 0%,
      rgba(17, 23, 59, .42) 45%,
      rgba(17, 23, 59, .82) 100%);
  pointer-events: none;
}

/* Hero text content — full width, no right column */
.hero-content-wrap {
  position: relative;
  z-index: 2;
  padding-top: 3.5rem;
  padding-bottom: 4rem;
  width: 100%;
  min-height: calc(100vh - var(--site-nav-offset));
  display: flex;
  align-items: center;
}

@media (min-width: 768px) {
  .hero-content-wrap {
    padding-top: 5rem;
    padding-bottom: 6rem;
  }
}

@media (min-width: 1200px) {
  .hero-content-wrap {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}

.hero-content {
  max-width: 800px;
}

.hero-title {
  font-size: clamp(1.8rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .hero-title {
    margin-bottom: 1.3rem;
  }
}

.text-accent {
  color: var(--orange-light);
}

.hero-subtitle {
  color: var(--white);
  font-size: clamp(1rem, 3vw, 1.2rem);
  font-weight: 500;
  margin-bottom: 0.8rem;
  max-width: 600px;
}

.hero-text {
  color: var(--text-on-navy);
  font-size: clamp(0.9rem, 2vw, 1rem);
  max-width: 520px;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .hero-text {
    margin-bottom: 2.2rem;
  }
}

.hero-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  flex-direction: column;
}

@media (min-width: 768px) {
  .hero-actions {
    flex-direction: row;
    gap: 1rem;
  }
}

/* Hero — Swiper pagination dots */
.hero-pagination {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex !important;
  gap: .55rem;
  align-items: center;
}

.hero-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: rgba(255, 255, 255, .4);
  border-radius: 50%;
  opacity: 1;
  transition: background .3s ease, width .3s ease;
  cursor: pointer;
}

.hero-pagination .swiper-pagination-bullet-active {
  background: var(--orange);
  width: 24px;
  border-radius: 4px;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 1.4rem;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 38px;
  border: 2px solid rgba(255, 255, 255, .35);
  border-radius: 14px;
  z-index: 2;
}

.scroll-indicator span {
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: var(--orange);
  border-radius: 2px;
  animation: scrollDot 1.8s ease-in-out infinite;
}

@keyframes scrollDot {

  0%,
  100% {
    top: 6px;
    opacity: 1;
  }

  50% {
    top: 18px;
    opacity: .3;
  }
}

/* ===================================================================
   STATS / TRUST INDICATORS
=================================================================== */
.stats-section {
  background: var(--grey-bg);
  padding: 4rem 0;
  border-bottom: 1px solid var(--grey-line);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem 0;
}

.stat-item {
  text-align: center;
  padding: 1rem;
}

.stat-number {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.9rem, 4vw, 2.5rem);
  color: var(--navy-deep);
}

.stat-mark {
  width: 26px;
  height: 3px;
  background: var(--orange);
  border-radius: 2px;
  margin: .55rem auto 0;
}

.stat-label {
  display: block;
  margin-top: .5rem;
  font-size: .85rem;
  color: var(--text-muted);
  font-weight: 500;
}

.stat-stars {
  color: var(--orange);
  font-size: 1.05rem;
  margin-bottom: .2rem;
}

@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .stat-item:not(:last-child) {
    border-right: 1px solid var(--grey-line);
  }
}

/* ===================================================================
   SECTION HEADING
=================================================================== */
.section-head {
  max-width: 900px;
  margin: 0 0 3rem;
}

.section-head.center {
  margin-inline: auto;
  text-align: center;
}

.section-head h2 {
  font-size: clamp(1.7rem, 3.6vw, 2.4rem);
  font-weight: 700;
  margin-bottom: .8rem;
}

.section-head p {
  font-size: 1.02rem;
}

/* ===================================================================
   COURSES SECTION — photo cards, no icons
=================================================================== */
.courses-section {
  padding: 5.5rem 0;
  background: linear-gradient(180deg, #fffaf3 0%, #fff 100%);
}

.courses-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.8rem;
}

.course-card {
  background: var(--white);
  border: 1px solid var(--grey-line);
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .3s ease, box-shadow .3s ease;
}

.course-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 45px -22px rgba(26, 37, 81, .2);
}

/* Photo area */
.course-photo {
  aspect-ratio: 16/9;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}

.course-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.course-card:hover .course-photo img {
  transform: scale(1.05);
}

/* Placeholder gradient — remove this <div> and replace with <img> when photos are ready */
.course-photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 1rem;
  transition: transform .5s ease;
}

.course-card:hover .course-photo-placeholder {
  transform: scale(1.05);
}

.course-photo-placeholder .photo-label {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .5);
  background: rgba(0, 0, 0, .25);
  padding: .25rem .6rem;
  border-radius: 4px;
}

/* Photo placeholder gradients */
.cp-1 {
  background: linear-gradient(145deg, var(--orange) 0%, var(--navy) 100%);
}

.cp-2 {
  background: linear-gradient(145deg, var(--navy) 0%, var(--orange-dark) 100%);
}

.cp-3 {
  background: linear-gradient(145deg, var(--orange-light) 0%, var(--navy-deep) 100%);
}

.cp-4 {
  background: linear-gradient(145deg, var(--navy-soft) 0%, var(--navy-deep) 100%);
}

.cp-5 {
  background: linear-gradient(145deg, var(--orange) 0%, var(--navy-deep) 100%);
}

.cp-6 {
  background: linear-gradient(145deg, var(--orange-light) 0%, var(--orange) 100%);
}

/* Card body */
.course-card-body {
  padding: 1.6rem 1.7rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* Lane-dash top accent */
.course-card-body::before {
  content: '';
  display: block;
  height: 3px;
  width: 0;
  background-image: repeating-linear-gradient(to right, var(--orange) 0 10px, transparent 10px 16px);
  border-radius: 2px;
  margin-bottom: 1.1rem;
  transition: width .45s ease;
}

.course-card:hover .course-card-body::before,
.course-card:focus-within .course-card-body::before {
  width: 100%;
}

.course-card-body h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: .55rem;
}

.course-card-body p {
  font-size: .92rem;
  flex: 1;
  margin-bottom: 1.2rem;
}

.card-link {
  font-size: .84rem;
  font-weight: 700;
  color: var(--navy-deep);
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  transition: gap .25s ease, color .25s ease;
  margin-top: auto;
}

.course-card:hover .card-link {
  gap: .7rem;
  color: var(--orange-dark);
}

@media (min-width: 768px) {
  .courses-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1200px) {
  .courses-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Two-card variant (homepage) */
.courses-grid--two {
  max-width: 820px;
  margin-inline: auto;
}

@media (min-width: 1200px) {
  .courses-grid--two {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ===================================================================
   VR TRAINING SECTION
=================================================================== */
.vr-section {
  padding: 6rem 0;
  background: linear-gradient(165deg, var(--orange-dark) 0%, var(--navy-deep) 100%);
}

.vr-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
  align-items: center;
}

.vr-content h2 {
  color: var(--white);
  font-size: clamp(1.8rem, 3.8vw, 2.5rem);
  margin-bottom: 1rem;
}

.vr-content>p {
  color: var(--text-on-navy);
  font-size: 1.05rem;
  max-width: 480px;
  margin-bottom: 1.8rem;
}

/* MintEDVR co-brand badge */
.minteducvr-badge {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(226, 149, 17, .38);
  border-radius: 10px;
  padding: .65rem 1.1rem;
  margin-bottom: 2rem;
}

.minteducvr-badge-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: .95rem;
  color: var(--navy-deep);
}

.minteducvr-badge-text {
  display: flex;
  flex-direction: column;
  gap: .1rem;
}

.minteducvr-badge-text strong {
  color: var(--white);
  font-size: .85rem;
}

.minteducvr-badge-text span {
  color: rgba(255, 255, 255, .45);
  font-size: .72rem;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.vr-feature-list {
  display: flex;
  flex-direction: column;
  gap: 1.3rem;
}

.vr-feature-list li {
  display: flex;
  gap: .9rem;
  align-items: flex-start;
}

.vr-feature-list i {
  color: var(--orange);
  font-size: 1.15rem;
  margin-top: .2rem;
  flex-shrink: 0;
}

.vr-feature-list strong {
  display: block;
  color: var(--white);
  font-size: 1rem;
  margin-bottom: .2rem;
}

.vr-feature-list span {
  color: var(--text-on-navy);
  font-size: .9rem;
}

.vr-visual {
  position: relative;
  display: flex;
  justify-content: center;
  padding: 2rem 0;
}

.vr-headset-wrap {
  position: relative;
  width: 260px;
  height: 260px;
}

.headset-body {
  position: absolute;
  top: 35%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 240px;
  height: 120px;
  border-radius: 60px;
  background: linear-gradient(135deg, var(--navy-soft), var(--navy-deep) 75%);
  box-shadow: 0 30px 60px -15px rgba(0, 0, 0, .55), inset 0 0 0 1px rgba(246, 174, 30, .3);
}

.headset-body::before {
  content: '';
  position: absolute;
  top: 50%;
  left: -14px;
  width: 34px;
  height: 34px;
  background: inherit;
  border-radius: 50%;
  transform: translateY(-50%);
}

.headset-strap {
  position: absolute;
  top: 33%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 280px;
  height: 170px;
  border: 14px solid var(--orange-dark);
  border-radius: 50%;
  border-bottom-color: transparent;
  border-left-color: transparent;
  border-right-color: transparent;
  opacity: .55;
  z-index: -1;
}

.lens {
  position: absolute;
  top: 50%;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--orange) 0%, rgba(226, 149, 17, .25) 55%, transparent 100%);
  transform: translateY(-50%);
  box-shadow: 0 0 22px 4px rgba(246, 174, 30, .4);
}

.lens-l {
  left: 42px;
}

.lens-r {
  left: 122px;
}

.vr-panel {
  position: absolute;
  font-family: var(--font-mono);
  font-size: .66rem;
  letter-spacing: .02em;
  color: var(--white);
  background: rgba(17, 23, 59, .82);
  border: 1px solid rgba(246, 174, 30, .45);
  border-radius: 6px;
  padding: .4rem .65rem;
  white-space: nowrap;
  backdrop-filter: blur(6px);
}

.panel-1 {
  top: -6%;
  left: -12%;
}

.panel-2 {
  top: 10%;
  right: -18%;
}

.panel-3 {
  bottom: 2%;
  left: -16%;
}

.panel-4 {
  bottom: -8%;
  right: -8%;
}

@media (min-width: 992px) {
  .vr-inner {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}

/* ===================================================================
   ABOUT / WHY CHOOSE US — photo card layout
=================================================================== */
.why-section {
  padding: 5.5rem 0;
  background: var(--grey-bg);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.8rem;
}

.why-item {
  background: var(--white);
  border: 1px solid var(--grey-line);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .3s ease, box-shadow .3s ease;
}

.why-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 38px -18px rgba(91, 42, 8, .18);
}

.why-photo {
  aspect-ratio: 4/3;
  overflow: hidden;
  flex-shrink: 0;
}

.why-photo-placeholder {
  width: 100%;
  height: 100%;
  min-height: 160px;
  transition: transform .5s ease;
}

.why-item:hover .why-photo-placeholder {
  transform: scale(1.05);
}

.why-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.why-item:hover .why-photo img {
  transform: scale(1.05);
}

.why-item-body {
  padding: 1.4rem 1.5rem;
  flex: 1;
}

.why-item-body h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: .4rem;
}

.why-item-body p {
  font-size: .9rem;
}

/* Why photo placeholder gradients */
.wp-1 {
  background: linear-gradient(145deg, var(--orange) 0%, var(--navy) 100%);
}

.wp-2 {
  background: linear-gradient(145deg, var(--navy) 0%, var(--orange-dark) 100%);
}

.wp-3 {
  background: linear-gradient(145deg, var(--orange-light) 0%, var(--navy-deep) 100%);
}

.wp-4 {
  background: linear-gradient(145deg, var(--navy-soft) 0%, var(--navy-deep) 100%);
}

.wp-5 {
  background: linear-gradient(145deg, var(--orange-light) 0%, var(--orange) 100%);
}

.wp-6 {
  background: linear-gradient(145deg, var(--orange) 0%, var(--navy-deep) 100%);
}

@media (min-width: 768px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1200px) {
  .why-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ===================================================================
   INSTRUCTORS SECTION
=================================================================== */
.instructors-section {
  padding: 5.5rem 0;
  background: var(--white);
}

.instructors-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 880px;
  margin: 0 auto;
}

.instructor-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: var(--grey-bg);
  border: 1px solid var(--grey-line);
  border-radius: 20px;
  padding: 2.5rem 2.2rem;
  transition: transform .3s ease, box-shadow .3s ease;
}

.instructor-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 48px -20px rgba(26, 37, 81, .18);
}

/* Photo circle */
.instructor-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 1.5rem;
  flex-shrink: 0;
  border: 4px solid rgba(246, 174, 30, .2);
  /* Placeholder gradient — replace with <img src="assets/images/instructor-name.jpg"> */
  background: linear-gradient(145deg, var(--orange-dark), var(--navy-deep));
  display: flex;
  align-items: center;
  justify-content: center;
}

.instructor-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.instructor-initials {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2.2rem;
  color: var(--white);
}

.instructor-name {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: .45rem;
}

.instructor-role-tag {
  display: inline-block;
  background: var(--orange-tint);
  color: var(--orange-dark);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  padding: .3rem .85rem;
  border-radius: 6px;
  margin-bottom: 1.2rem;
}

.instructor-bio {
  font-size: .94rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.4rem;
}

.instructor-creds {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .5rem;
}

.cred-badge {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  background: rgba(91, 42, 8, .06);
  border: 1px solid var(--grey-line);
  border-radius: 6px;
  padding: .3rem .7rem;
  font-size: .78rem;
  font-weight: 600;
  color: var(--navy-deep);
}

.cred-badge i {
  color: var(--orange);
  font-size: .85rem;
}

@media (min-width: 768px) {
  .instructors-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ===================================================================
   PRICING — COMING SOON
=================================================================== */
.pricing-section {
  padding: 5.5rem 0;
  background: var(--grey-bg);
}

.pricing-coming-wrap {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.pricing-coming-badge {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  background: var(--orange-tint);
  border: 1px solid rgba(226, 149, 17, .38);
  border-radius: 30px;
  padding: .5rem 1.2rem;
  font-size: .8rem;
  font-weight: 700;
  color: var(--orange-dark);
  letter-spacing: .07em;
  text-transform: uppercase;
  margin-bottom: 1.4rem;
}

.pricing-coming-title {
  font-size: clamp(1.9rem, 3.8vw, 2.6rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.pricing-coming-text {
  font-size: 1.02rem;
  color: var(--text-muted);
  margin-bottom: 2.8rem;
  max-width: 540px;
  margin-inline: auto;
}

.pricing-preview-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
  margin-bottom: 2.8rem;
  text-align: left;
}

.pricing-preview-card {
  background: var(--white);
  border: 1px solid var(--grey-line);
  border-radius: 14px;
  padding: 1.8rem 1.6rem;
  position: relative;
  overflow: hidden;
  transition: box-shadow .3s ease, transform .3s ease;
}

.pricing-preview-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 38px -18px rgba(91, 42, 8, .18);
}

.pricing-preview-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background-image: repeating-linear-gradient(to right, var(--orange) 0 10px, transparent 10px 16px);
}

.pricing-preview-card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: .5rem;
}

.pricing-preview-card p {
  font-size: .88rem;
  margin-bottom: 1.2rem;
}

.price-tba-badge {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  background: var(--grey-bg);
  border: 1px solid var(--grey-line);
  border-radius: 8px;
  padding: .5rem 1rem;
  font-weight: 700;
  font-size: .88rem;
  color: var(--text-muted);
}

.price-tba-badge i {
  color: var(--orange);
}

.pricing-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-outline-navy {
  background: transparent;
  border: 2px solid var(--orange-dark);
  color: var(--orange-dark);
  padding: .85rem 1.8rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: .95rem;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  transition: background .25s ease, color .25s ease, transform .25s ease;
  cursor: pointer;
}

.btn-outline-navy:hover {
  background: var(--orange-dark);
  color: var(--white);
  transform: translateY(-2px);
}

@media (min-width: 600px) {
  .pricing-preview-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .pricing-preview-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ===================================================================
   TESTIMONIALS — Swiper infinite carousel
=================================================================== */
.testimonials-section {
  padding: 5.5rem 0;
  background: var(--white);
}

.testimonials-swiper {
  overflow: hidden;
  padding-bottom: .5rem !important;
}

.testimonial-card {
  background: var(--grey-bg);
  border: 1px solid var(--grey-line);
  border-radius: 16px;
  padding: 2.4rem;
  text-align: center;
}

.t-stars {
  color: var(--orange);
  font-size: 1.05rem;
  margin-bottom: 1.1rem;
}

.t-quote {
  font-size: 1.05rem;
  color: var(--navy-deep);
  font-weight: 500;
  line-height: 1.65;
  margin-bottom: 1.6rem;
}

.t-person {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .6rem;
}

.t-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(140deg, var(--orange-dark), var(--navy-deep));
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .95rem;
}

.t-name {
  font-weight: 700;
  font-size: .95rem;
  color: var(--navy-deep);
}

.t-tag {
  font-weight: 600;
  font-size: .74rem;
  color: var(--orange-dark);
  background: var(--orange-tint);
  padding: .25rem .6rem;
  border-radius: 5px;
}

/* Custom nav row */
.testimonials-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.testimonials-pagination {
  display: flex;
  gap: .5rem;
  align-items: center;
}

.testimonials-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: var(--grey-line);
  border-radius: 50%;
  opacity: 1;
  transition: background .3s ease, width .3s ease;
  cursor: pointer;
}

.testimonials-pagination .swiper-pagination-bullet-active {
  background: var(--orange);
  width: 22px;
  border-radius: 4px;
}

.swiper-btn-prev,
.swiper-btn-next {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--grey-line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy-deep);
  cursor: pointer;
  box-shadow: 0 8px 18px -8px rgba(91, 42, 8, .18);
  transition: background .25s ease, color .25s ease, box-shadow .25s ease;
  flex-shrink: 0;
}

.swiper-btn-prev:hover,
.swiper-btn-next:hover {
  background: var(--orange);
  color: var(--navy-deep);
  border-color: var(--orange);
  box-shadow: 0 8px 22px -6px rgba(226, 149, 17, .4);
}

/* ===================================================================
   CTA SECTION
=================================================================== */
.cta-section {
  padding: 5.5rem 0;
  background: linear-gradient(135deg, var(--orange-dark) 0%, var(--navy-deep) 100%);
  text-align: center;
}

.cta-section h2 {
  color: var(--white);
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  margin-bottom: 1rem;
}

.cta-section p {
  color: var(--text-on-navy);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto 2.2rem;
}

.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===================================================================
   FOOTER
=================================================================== */
.site-footer {
  background: var(--white);
  color: var(--text-muted);
  padding: 4.5rem 0 0;
  border-top: 1px solid var(--grey-line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.6rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--grey-line);
}

.footer-brand p {
  color: var(--text-muted);
  font-size: .9rem;
  max-width: 280px;
  margin: 1rem 0 1.3rem;
}

.footer-social {
  display: flex;
  gap: .7rem;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--grey-bg);
  border: 1px solid var(--grey-line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy-deep);
  transition: background .25s ease, color .25s ease, border-color .25s ease;
}

.footer-social a:hover {
  background: var(--orange);
  color: var(--navy-deep);
  border-color: var(--orange);
}

.footer-col h4 {
  color: var(--navy-deep);
  font-size: .92rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: .7rem;
}

.footer-col a,
.footer-col li {
  font-size: .9rem;
  color: var(--text-muted);
}

.footer-col a:hover {
  color: var(--orange-dark);
}

.footer-contact li {
  display: flex;
  gap: .6rem;
  align-items: flex-start;
  margin-bottom: .7rem;
}

.footer-contact i {
  color: var(--orange);
  margin-top: .2rem;
  flex-shrink: 0;
}

.footer-bottom {
  padding: 1.4rem 0;
  border-top: 1px solid var(--grey-line);
}

.footer-bottom-inner {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  align-items: center;
  text-align: center;
  font-size: .8rem;
  color: var(--text-muted);

  .footer-bottom-inner a {
    margin-left: 0.2rem;
  }
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1.3fr .8fr .8fr 1fr;
  }

  .footer-bottom-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

/* ===================================================================
   LOGO IMAGE
=================================================================== */
.nav-logo-img {
  height: 70px;
  width: auto;
  display: block;
}

/* Active nav link */
.nav-link.active::after {
  width: 100%;
}

/* ===================================================================
   PAGE HERO — inner page banner
=================================================================== */
.page-hero {
  background: linear-gradient(165deg, var(--orange-dark) 0%, var(--navy-deep) 100%);
  padding: 7rem 0 4.5rem;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(to right,
      rgba(226, 149, 17, .055) 0 52px,
      transparent 52px 96px);
  pointer-events: none;
}

.page-hero-content {
  position: relative;
  z-index: 1;
  max-width: 740px;
}

.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
  line-height: 1.1;
}

.page-hero .hero-sub {
  color: var(--text-on-navy);
  font-size: 1.05rem;
  max-width: 580px;
  margin: 0;
}

/* ===================================================================
   COURSES PAGE — lesson type cards
=================================================================== */
.course-detail-section {
  padding: 5rem 0;
}

.course-detail-section.bg-grey {
  background: var(--grey-bg);
}

.course-detail-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}

@media (min-width: 992px) {
  .course-detail-layout {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }

  .course-detail-layout.reverse> :first-child {
    order: 2;
  }

  .course-detail-layout.reverse> :last-child {
    order: 1;
  }
}

.course-detail-visual {
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.course-detail-placeholder {
  width: 100%;
  height: 100%;
  min-height: 280px;
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  border-radius: 18px;
}

.course-detail-placeholder span {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .55);
  background: rgba(0, 0, 0, .3);
  padding: .3rem .7rem;
  border-radius: 4px;
}

.lesson-types-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 1.8rem;
}

@media (min-width: 580px) {
  .lesson-types-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.lesson-card {
  background: var(--white);
  border: 1px solid var(--grey-line);
  border-radius: 12px;
  padding: 1.4rem;
  position: relative;
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease;
}

.lesson-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px -16px rgba(91, 42, 8, .18);
}

.lesson-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--orange);
  border-radius: 2px 2px 0 0;
}

.lesson-card h4 {
  font-size: .98rem;
  font-weight: 700;
  margin-bottom: .4rem;
}

.lesson-card p {
  font-size: .88rem;
}

/* ===================================================================
   ABOUT PAGE — story + stats
=================================================================== */
.about-story-section {
  padding: 5.5rem 0;
}

.about-story-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 992px) {
  .about-story-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.about-visual-placeholder {
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: transparent;
  min-height: 260px;
}

.about-visual-placeholder img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.about-stat-row {
  display: flex;
  gap: 2.5rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.about-stat .num {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--navy-deep);
}

.about-stat .lbl {
  font-size: .82rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* Section CTA link */
.section-cta-row {
  margin-top: 2.5rem;
  text-align: center;
}

.section-cta-link {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-weight: 700;
  font-size: .92rem;
  color: var(--orange-dark);
  border-bottom: 2px solid var(--orange-tint);
  padding-bottom: .15rem;
  transition: gap .25s ease, border-color .25s ease;
}

.section-cta-link:hover {
  gap: .75rem;
  border-color: var(--orange);
  color: var(--orange-dark);
}

/* MintEDVR badge light variant (for white/grey backgrounds) */
.minteducvr-badge--light {
  background: var(--orange-tint);
  border-color: rgba(226, 149, 17, .4);
}

.minteducvr-badge--light .minteducvr-badge-text strong {
  color: var(--navy-deep);
}

.minteducvr-badge--light .minteducvr-badge-text span {
  color: var(--text-muted);
}

/* ===================================================================
   SERVICES SECTION (homepage)
=================================================================== */

/* ── Services Overview (tiles above courses) ─────────────────────── */
.svc-overview-section {
  background: linear-gradient(180deg, var(--orange-dark) 0%, var(--navy-deep) 100%);
  padding: 5.5rem 0;
}

.svc-tiles-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
}

@media (min-width: 640px) {
  .svc-tiles-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .svc-tiles-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.svc-tile-link {
  color: var(--orange-dark);
  font-weight: 600;
  font-size: .88rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  margin-top: .8rem;
  transition: gap .2s, color .2s;
}

.svc-tile-link:hover {
  gap: .6rem;
  color: var(--orange);
}

.svc-overview-section .section-head h2 {
  color: var(--white);
}

.svc-overview-section .section-head p {
  color: var(--text-on-navy);
}

/* Photo card layout */
.svc-tile {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  border: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: transform .25s ease, box-shadow .25s ease;
}

.svc-tile:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, .18);
}

.svc-tile-photo {
  aspect-ratio: 16/9;
  overflow: hidden;
}

.svc-tile-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .06em;
  color: rgba(255, 255, 255, .55);
  text-transform: uppercase;
}

.svc-tile-placeholder.cp-3 {
  background: linear-gradient(135deg, var(--orange-light) 0%, var(--navy) 100%);
}

.svc-tile-body {
  padding: 1.4rem 1.5rem 1.6rem;
  display: flex;
  flex-direction: column;
  gap: .5rem;
  flex: 1;
}

.svc-tile-tag {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--orange-dark);
  background: var(--orange-tint);
  border-radius: 6px;
  padding: .2rem .55rem;
  width: fit-content;
}

.svc-tile-body h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy-deep);
  margin: 0;
}

.svc-tile-body p {
  font-size: .88rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
  flex: 1;
}

/* ── Courses section (was WHAT WE OFFER) ─────────────────────────── */
.services-section {
  padding: 5.5rem 0;
  background: linear-gradient(180deg, #fffaf3 0%, #fff 100%);
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 900px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.service-block {
  background: var(--white);
  border: 1px solid var(--grey-line);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .3s ease, box-shadow .3s ease;
}

.service-block:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 50px -22px rgba(91, 42, 8, .22);
}

.service-block-photo {
  aspect-ratio: 16/9;
  overflow: hidden;
  flex-shrink: 0;
}

.service-block-photo-placeholder {
  width: 100%;
  height: 100%;
  min-height: 220px;
  transition: transform .5s ease;
}

.service-block:hover .service-block-photo-placeholder {
  transform: scale(1.04);
}

.service-block-body {
  padding: 1.8rem 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-block-tag {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: var(--orange-tint);
  color: var(--orange-dark);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .3rem .75rem;
  border-radius: 6px;
  margin-bottom: 1rem;
  align-self: flex-start;
}

.service-block h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: .6rem;
}

.service-block-body>p {
  font-size: .95rem;
  margin-bottom: 1.4rem;
}

.service-features {
  display: flex;
  flex-direction: column;
  gap: .55rem;
  margin-bottom: 1.6rem;
  flex: 1;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .9rem;
  color: var(--text-muted);
}

.service-features li i {
  color: var(--orange);
  font-size: 1rem;
  flex-shrink: 0;
}

.service-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding-top: 1.3rem;
  border-top: 1px solid var(--grey-line);
  margin-top: auto;
}

.service-tba {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .85rem;
  font-weight: 700;
  color: var(--text-muted);
  background: var(--grey-bg);
  border: 1px solid var(--grey-line);
  padding: .45rem .9rem;
  border-radius: 8px;
}

.service-tba i {
  color: var(--orange);
}

/* ===================================================================
   COURSES PAGE — consistent two-section layout
=================================================================== */
.course-page-section {
  padding: 5.5rem 0;
}

.course-page-section.alt {
  background: var(--grey-bg);
}

.course-page-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 992px) {
  .course-page-layout {
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
  }

  .course-page-layout.reverse> :first-child {
    order: 2;
  }

  .course-page-layout.reverse> :last-child {
    order: 1;
  }
}

.course-page-visual {
  position: relative;
}

.course-page-photo {
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.course-page-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.course-page-placeholder {
  width: 100%;
  height: 100%;
  min-height: 300px;
  border-radius: 20px;
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
}

.course-page-placeholder span {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .6);
  background: rgba(0, 0, 0, .3);
  padding: .3rem .7rem;
  border-radius: 4px;
}

.course-badge-overlay {
  position: absolute;
  top: 1.2rem;
  left: 1.2rem;
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
}

.badge-chip {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  background: rgba(17, 23, 59, .85);
  backdrop-filter: blur(6px);
  color: var(--white);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .05em;
  padding: .35rem .75rem;
  border-radius: 30px;
  border: 1px solid rgba(226, 149, 17, .3);
}

.badge-chip.orange {
  background: var(--orange);
  color: var(--navy-deep);
  border-color: var(--orange);
}

.course-page-content h2 {
  font-size: clamp(1.6rem, 3.2vw, 2.2rem);
  font-weight: 700;
  margin-bottom: .8rem;
}

.course-page-content>p {
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

.course-includes {
  background: var(--grey-bg);
  border: 1px solid var(--grey-line);
  border-radius: 14px;
  padding: 1.5rem 1.6rem;
  margin-bottom: 1.5rem;
}

.course-page-section.alt .course-includes {
  background: var(--white);
}

.course-includes h4 {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--orange-dark);
  margin-bottom: 1rem;
}

.course-includes-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: .6rem;
}

@media (min-width: 580px) {
  .course-includes-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

.course-includes-list li {
  display: flex;
  align-items: flex-start;
  gap: .55rem;
  font-size: .9rem;
  color: var(--navy-deep);
}

.course-includes-list li i {
  color: var(--orange);
  font-size: .95rem;
  flex-shrink: 0;
  margin-top: .1rem;
}

.course-pricing-block {
  background:
    linear-gradient(160deg, rgba(246, 174, 30, .18) 0%, rgba(246, 174, 30, .06) 35%, rgba(17, 23, 59, .06) 100%),
    var(--white);
  border: 1px solid rgba(246, 174, 30, .32);
  box-shadow: 0 14px 34px -26px rgba(17, 23, 59, .55);
  border-radius: 16px;
  padding: 1.4rem 1.35rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.2rem;
  margin-bottom: 1.5rem;
}

.course-pricing-label {
  color: var(--navy-soft);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin: 0 0 .25rem;
}

.course-pricing-value {
  color: var(--navy-deep);
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  margin: 0 0 .3rem;
  display: inline-flex;
  align-items: baseline;
  gap: .45rem;
}

.course-pricing-value span {
  color: var(--orange-dark);
  font-size: 2rem;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -.02em;
}

.course-pricing-note {
  color: var(--text-muted);
  font-size: .84rem;
  margin: 0;
  max-width: 54ch;
}

.course-pricing-badge {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  background: rgba(246, 174, 30, .12);
  border: 1px solid rgba(246, 174, 30, .35);
  color: var(--navy-deep);
  font-size: .82rem;
  font-weight: 700;
  padding: .58rem 1.05rem;
  border-radius: 999px;
  flex-shrink: 0;
}

.course-pricing-badge i {
  color: var(--orange-dark);
}

@media (min-width: 820px) {
  .course-pricing-block {
    padding: 1.5rem 1.55rem;
  }

  .course-pricing-value span {
    font-size: 2.2rem;
  }
}

.course-cta-row {
  display: flex;
  gap: .8rem;
  flex-wrap: wrap;
  align-items: center;
}

/* ===================================================================
   CONTACT PAGE
=================================================================== */
.contact-body-section {
  padding: 5.5rem 0;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}

@media (min-width: 900px) {
  .contact-layout {
    grid-template-columns: 1fr 1.55fr;
    gap: 4rem;
  }
}

.contact-info-card {
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-deep) 100%);
  border-radius: 20px;
  padding: 2.4rem;
  position: sticky;
  top: 88px;
}

.contact-info-title {
  color: var(--white);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: .5rem;
}

.contact-info-sub {
  color: var(--text-on-navy);
  font-size: .9rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: .85rem;
  margin-bottom: 1.4rem;
}

.contact-info-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(246, 174, 30, .12);
  border: 1px solid rgba(246, 174, 30, .25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange-light);
  font-size: 1rem;
  flex-shrink: 0;
}

.contact-info-item-label {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-on-navy);
  margin-bottom: .2rem;
}

.contact-info-item-value {
  font-size: .95rem;
  font-weight: 600;
  color: var(--white);
  margin: 0;
}

.contact-info-item-value a {
  color: var(--white);
  transition: color .2s ease;
}

.contact-info-item-value a:hover {
  color: var(--orange-light);
}

.contact-divider {
  height: 1px;
  background: rgba(255, 255, 255, .09);
  margin: 1.5rem 0;
}

.contact-social {
  display: flex;
  gap: .6rem;
}

.contact-social a {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: .9rem;
  transition: background .2s ease, border-color .2s ease, color .2s ease;
}

.contact-social a:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--navy-deep);
}

.contact-form-card {
  background: var(--white);
  border: 1px solid var(--grey-line);
  border-radius: 20px;
  padding: 2.5rem;
}

.contact-form-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: .4rem;
}

.contact-form-sub {
  font-size: .92rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.form-row-two {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0 1.2rem;
}

@media (min-width: 580px) {
  .form-row-two {
    grid-template-columns: 1fr 1fr;
  }
}

.form-group-custom {
  margin-bottom: 1.2rem;
}

.form-label-custom {
  display: block;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--navy-deep);
  margin-bottom: .45rem;
}

.form-control-custom,
.form-select-custom {
  width: 100%;
  padding: .8rem 1rem;
  border: 1.5px solid var(--grey-line);
  border-radius: 9px;
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--navy-deep);
  background: var(--white);
  transition: border-color .25s ease, box-shadow .25s ease;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.form-control-custom:focus,
.form-select-custom:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(226, 149, 17, .15);
}

.form-select-custom {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235B6479' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

textarea.form-control-custom {
  resize: vertical;
  min-height: 130px;
}

.form-privacy {
  font-size: .82rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.form-privacy a {
  color: var(--orange-dark);
  font-weight: 600;
}

.btn-form-submit {
  background: var(--orange);
  color: var(--navy-deep);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  padding: .9rem 2.4rem;
  border: none;
  border-radius: 9px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  transition: background .25s ease, transform .2s ease, box-shadow .25s ease;
  box-shadow: 0 8px 22px -8px rgba(226, 149, 17, .5);
}

.btn-form-submit:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 14px 28px -8px rgba(226, 149, 17, .5);
}