/* ============================================
   FIT & FLAIR — Premium Fashion Institute CSS
   Color Palette from Logo:
   Navy:   #1a2353
   Red:    #c0392b
   Gold:   #f0a500
   Cream:  #fdf8f2
   Dark:   #0d1129
   ============================================ */

:root {
  --navy:   #1a2353;
  --red:    #c0392b;
  --gold:   #f0a500;
  --cream:  #fdf8f2;
  --white:  #ffffff;
  --dark:   #0d1129;
  --gray:   #6b7280;
  --light:  #f4f0eb;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Jost', system-ui, sans-serif;
  --font-script:  'Dancing Script', cursive;

  --shadow-sm:  0 2px 12px rgba(26,35,83,0.08);
  --shadow-md:  0 8px 32px rgba(26,35,83,0.12);
  --shadow-lg:  0 20px 60px rgba(26,35,83,0.16);
  --shadow-xl:  0 32px 80px rgba(26,35,83,0.2);

  --transition: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out:   cubic-bezier(0.0, 0.0, 0.2, 1);
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--dark);
  overflow-x: hidden;
  cursor: none;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: none; border: none; background: none; font-family: inherit; }
input, textarea { font-family: inherit; }
.mt-32 { margin-top: 2rem; }

/* ===== SCROLL PROGRESS ===== */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--red));
  z-index: 9999; width: 0%; transition: width 0.1s linear;
}

/* ===== CUSTOM CURSOR ===== */
.custom-cursor {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--red);
  position: fixed; pointer-events: none; z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.1s, width 0.2s, height 0.2s, background 0.2s;
}
.custom-cursor-follower {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1.5px solid var(--gold);
  position: fixed; pointer-events: none; z-index: 9997;
  transform: translate(-50%, -50%);
  transition: transform 0.25s var(--ease-out), opacity 0.3s;
  opacity: 0.7;
}
body:hover .custom-cursor-follower { opacity: 1; }
a:hover ~ .custom-cursor, button:hover ~ .custom-cursor { transform: translate(-50%,-50%) scale(2); background: var(--gold); }

/* ===== PRELOADER ===== */
#preloader {
  position: fixed; inset: 0; z-index: 99999;
  background: var(--dark);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column;
  transition: opacity 0.6s, visibility 0.6s;
}
#preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader-inner { text-align: center; }
.preloader-logo img { width: 160px; animation: preloaderBob 1.2s ease-in-out infinite; }
@keyframes preloaderBob {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}
.preloader-line {
  width: 180px; height: 2px; background: rgba(255,255,255,0.1);
  margin: 16px auto; border-radius: 2px; overflow: hidden;
}
.preloader-line span {
  display: block; height: 100%; width: 0%;
  background: linear-gradient(90deg, var(--gold), var(--red));
  animation: preloaderFill 1.8s ease forwards;
}
@keyframes preloaderFill { to { width: 100%; } }
.preloader-text {
  color: rgba(255,255,255,0.5); font-size: 0.75rem;
  letter-spacing: 0.2em; text-transform: uppercase;
  font-family: var(--font-body);
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  padding: 1rem 0;
  transition: background 0.4s, padding 0.4s, box-shadow 0.4s;
}
.navbar.scrolled {
  background: rgba(253,248,242,0.96);
  backdrop-filter: blur(16px);
  padding: 0.6rem 0;
  box-shadow: var(--shadow-sm);
}
.nav-container {
  max-width: 1200px; margin: 0 auto; padding: 0 2rem;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem;
}
.nav-logo img { height: 52px; transition: transform 0.3s; }
.nav-logo:hover img { transform: scale(1.05); }
.nav-links { display: flex; align-items: center; gap: 0.25rem; }
.nav-link {
  padding: 0.5rem 0.85rem; font-size: 0.9rem; font-weight: 500;
  color: var(--dark); position: relative; letter-spacing: 0.03em;
  transition: color 0.3s;
}
.nav-link::after {
  content: ''; position: absolute; bottom: 2px; left: 50%; right: 50%;
  height: 1.5px; background: var(--red);
  transition: left 0.3s, right 0.3s;
}
.nav-link:hover, .nav-link.active { color: var(--red); }
.nav-link:hover::after, .nav-link.active::after { left: 0.85rem; right: 0.85rem; }
.nav-cta {
  padding: 0.55rem 1.4rem; background: var(--navy);
  color: var(--white); font-size: 0.85rem; font-weight: 500;
  letter-spacing: 0.05em; border-radius: 2px;
  transition: background 0.3s, transform 0.2s;
}
.nav-cta:hover { background: var(--red); transform: translateY(-1px); }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  padding: 4px; cursor: pointer;
}
.hamburger span {
  display: block; width: 24px; height: 2px; background: var(--dark);
  border-radius: 2px; transition: transform 0.3s, opacity 0.3s;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 0.85rem 2rem; font-size: 0.9rem; font-weight: 500;
  letter-spacing: 0.05em; border-radius: 2px;
  position: relative; overflow: hidden;
  transition: transform 0.2s, box-shadow 0.3s;
}
.btn::before {
  content: ''; position: absolute; inset: 0;
  background: rgba(255,255,255,0.1);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s var(--ease-out);
}
.btn:hover::before { transform: scaleX(1); }
.btn:hover { transform: translateY(-2px); }
.btn svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; }
.btn-primary {
  background: var(--navy); color: var(--white);
  box-shadow: 0 4px 20px rgba(26,35,83,0.25);
}
.btn-primary:hover { box-shadow: 0 8px 32px rgba(26,35,83,0.4); }
.btn-outline {
  border: 1.5px solid var(--navy); color: var(--navy);
}
.btn-outline:hover { background: var(--navy); color: var(--white); }
.btn-full { width: 100%; justify-content: center; }

/* ===== CONTAINER ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }

/* ===== SECTION HEADERS ===== */
.section-header { text-align: center; margin-bottom: 4rem; }
.section-eyebrow {
  display: inline-block; font-size: 0.75rem; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--red); margin-bottom: 1rem;
}
.section-title {
  font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600; line-height: 1.2;
  color: var(--navy);
}
.section-title em { font-style: italic; color: var(--red); }
.title-ornament {
  display: flex; align-items: center; justify-content: center;
  gap: 0.75rem; margin-top: 1.25rem;
}
.title-ornament span {
  display: block; width: 40px; height: 1px; background: var(--gold);
}

/* ===== AOS-LIKE ANIMATIONS ===== */
[data-aos] {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.7s var(--transition), transform 0.7s var(--transition);
}
[data-aos="fade-left"] { transform: translateX(28px); }
[data-aos="fade-right"] { transform: translateX(-28px); }
[data-aos].aos-animate { opacity: 1; transform: none; }

/* ===== HERO SECTION ===== */
.hero {
  min-height: 100vh; position: relative;
  background: linear-gradient(135deg, #fdf8f2 0%, #f5eee5 50%, #fdf0e8 100%);
  display: flex; align-items: center; overflow: hidden;
  padding-top: 80px;
}
.hero-bg-shapes { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.shape {
  position: absolute; border-radius: 50%;
  animation: shapeFloat 8s ease-in-out infinite;
}
.shape-1 {
  width: 500px; height: 500px; right: -100px; top: -100px;
  background: radial-gradient(circle, rgba(240,165,0,0.08) 0%, transparent 70%);
  animation-duration: 10s;
}
.shape-2 {
  width: 300px; height: 300px; left: -80px; bottom: 100px;
  background: radial-gradient(circle, rgba(192,57,43,0.07) 0%, transparent 70%);
  animation-duration: 7s; animation-delay: -3s;
}
.shape-3 {
  width: 200px; height: 200px; left: 40%; top: 20%;
  background: radial-gradient(circle, rgba(26,35,83,0.05) 0%, transparent 70%);
  animation-duration: 6s; animation-delay: -1s;
}
.shape-4 {
  width: 150px; height: 150px; right: 30%; bottom: 20%;
  background: radial-gradient(circle, rgba(240,165,0,0.06) 0%, transparent 70%);
  animation-duration: 9s; animation-delay: -5s;
}
@keyframes shapeFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(10px, -15px) scale(1.02); }
  66%       { transform: translate(-8px, 8px) scale(0.98); }
}
.thread-svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.thread-path { stroke-dasharray: 800; stroke-dashoffset: 800; animation: drawPath 3s ease forwards 1.5s; }
.thread-path-2 { stroke-dasharray: 800; stroke-dashoffset: 800; animation: drawPath 3s ease forwards 2s; }
@keyframes drawPath { to { stroke-dashoffset: 0; } }
.dot {
  position: absolute; border-radius: 50%;
  animation: dotFloat 5s ease-in-out infinite;
}
.dot-1 { width:8px; height:8px; background:var(--gold); top:20%; left:15%; opacity:0.4; animation-delay:0s; }
.dot-2 { width:5px; height:5px; background:var(--red); top:60%; left:8%; opacity:0.3; animation-delay:-2s; }
.dot-3 { width:10px; height:10px; background:var(--navy); top:35%; right:20%; opacity:0.2; animation-delay:-1s; }
.dot-4 { width:6px; height:6px; background:var(--gold); bottom:30%; right:10%; opacity:0.4; animation-delay:-3s; }
.dot-5 { width:4px; height:4px; background:var(--red); top:75%; left:30%; opacity:0.3; animation-delay:-4s; }
@keyframes dotFloat {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-12px); }
}

.hero-content {
  max-width: 1200px; margin: 0 auto; padding: 4rem 2rem;
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: 4rem; width: 100%;
  position: relative; z-index: 2;
}
.hero-eyebrow {
  display: flex; align-items: center; gap: 0.75rem;
  font-size: 0.72rem; font-weight: 500; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--red); margin-bottom: 1.5rem;
  opacity: 0; animation: fadeUp 0.7s var(--transition) forwards 1.8s;
}
.eyebrow-line { flex: 0 0 30px; height: 1px; background: var(--gold); }
.hero-title {
  font-family: var(--font-display); font-size: clamp(3rem, 5.5vw, 5rem);
  font-weight: 600; line-height: 1.05; color: var(--navy);
  margin-bottom: 1.25rem;
  opacity: 0; animation: fadeUp 0.7s var(--transition) forwards 1.9s;
}
.title-line { display: block; }
.title-accent { color: var(--red); font-style: italic; }
.hero-subtitle {
  font-family: var(--font-script); font-size: 1.4rem; color: var(--gold);
  margin-bottom: 1rem;
  opacity: 0; animation: fadeUp 0.7s var(--transition) forwards 2s;
}
.hero-desc {
  font-size: 1rem; color: var(--gray); line-height: 1.7; margin-bottom: 2rem;
  opacity: 0; animation: fadeUp 0.7s var(--transition) forwards 2.1s;
}
.hero-buttons {
  display: flex; gap: 1rem; flex-wrap: wrap;
  opacity: 0; animation: fadeUp 0.7s var(--transition) forwards 2.2s;
}
.hero-stats {
  display: flex; gap: 2rem; margin-top: 3rem; padding-top: 2rem;
  border-top: 1px solid rgba(26,35,83,0.1);
  opacity: 0; animation: fadeUp 0.7s var(--transition) forwards 2.3s;
}
.stat-item { text-align: left; }
.stat-num {
  font-family: var(--font-display); font-size: 2.2rem; font-weight: 700; color: var(--navy);
}
.stat-plus { font-size: 1.4rem; color: var(--red); font-weight: 700; }
.stat-label { display: block; font-size: 0.75rem; color: var(--gray); letter-spacing: 0.08em; margin-top: 0.1rem; }
.stat-divider { width: 1px; background: rgba(26,35,83,0.1); align-self: stretch; }

/* Hero Visual */
.hero-visual {
  display: flex; justify-content: center; align-items: center;
  opacity: 0; animation: fadeLeft 0.8s var(--transition) forwards 2s;
}
@keyframes fadeLeft { from { opacity:0; transform:translateX(30px); } to { opacity:1; transform:none; } }
@keyframes fadeUp { from { opacity:0; transform:translateY(20px); } to { opacity:1; transform:none; } }
.hero-img-wrap {
  position: relative; width: 380px; height: 420px;
  display: flex; align-items: center; justify-content: center;
}
.hero-img-glow {
  position: absolute; inset: 0; border-radius: 50%;
  background: radial-gradient(circle, rgba(240,165,0,0.15) 0%, transparent 70%);
  animation: glowPulse 3s ease-in-out infinite;
}
@keyframes glowPulse {
  0%,100% { transform: scale(1); opacity: 0.6; }
  50%     { transform: scale(1.1); opacity: 1; }
}
.hero-mannequin { position: relative; z-index: 2; animation: mannequinFloat 4s ease-in-out infinite; }
@keyframes mannequinFloat {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-12px); }
}
.mannequin-svg { width: 220px; height: 420px; filter: drop-shadow(0 20px 40px rgba(26,35,83,0.15)); }
.float-tag {
  position: absolute; background: rgba(255,255,255,0.9);
  backdrop-filter: blur(12px); border-radius: 40px;
  padding: 0.5rem 1rem; font-size: 0.78rem; font-weight: 500;
  color: var(--navy); box-shadow: var(--shadow-sm);
  border: 1px solid rgba(240,165,0,0.2);
  animation: tagFloat 3s ease-in-out infinite;
  white-space: nowrap;
}
.float-tag-1 { top: 20%; left: -10%; animation-delay: 0s; }
.float-tag-2 { top: 55%; right: -8%; animation-delay: -1s; }
.float-tag-3 { bottom: 15%; left: 5%; animation-delay: -2s; }
@keyframes tagFloat {
  0%,100% { transform: translateY(0) rotate(-1deg); }
  50%     { transform: translateY(-6px) rotate(1deg); }
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute; bottom: 2.5rem; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--gray); animation: fadeIn 1s ease forwards 3s; opacity: 0;
}
@keyframes fadeIn { to { opacity: 1; } }
.scroll-mouse {
  width: 24px; height: 38px; border: 1.5px solid var(--gray);
  border-radius: 12px; display: flex; justify-content: center; padding-top: 6px;
}
.scroll-wheel {
  width: 4px; height: 8px; background: var(--gold); border-radius: 2px;
  animation: scrollWheel 2s ease-in-out infinite;
}
@keyframes scrollWheel {
  0%   { transform: translateY(0); opacity: 1; }
  80%  { transform: translateY(14px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}

/* ===== ABOUT SECTION ===== */
.about { padding: 7rem 0; background: var(--white); }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: start;
}
.about-lead {
  font-family: var(--font-display); font-size: 1.4rem; font-weight: 500;
  line-height: 1.5; color: var(--navy); margin-bottom: 1.5rem;
}
.about-body { font-size: 1rem; line-height: 1.8; color: var(--gray); }
.about-features {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem;
}
.feature-card {
  padding: 1.75rem; background: var(--cream); border-radius: 8px;
  border: 1px solid rgba(26,35,83,0.06);
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.feature-card:hover {
  transform: translateY(-4px); box-shadow: var(--shadow-md);
  border-color: rgba(240,165,0,0.4);
}
.feature-icon {
  width: 48px; height: 48px; color: var(--red); margin-bottom: 1rem;
}
.feature-icon svg { width: 100%; height: 100%; stroke: currentColor; fill: none; stroke-width: 2; }
.feature-content h4 {
  font-family: var(--font-display); font-size: 1.15rem; font-weight: 600;
  color: var(--navy); margin-bottom: 0.4rem;
}
.feature-content p { font-size: 0.88rem; color: var(--gray); line-height: 1.6; }

/* ===== COURSES SECTION ===== */
.courses {
  padding: 7rem 0; background: var(--cream); position: relative; overflow: hidden;
}
.courses-bg-decor { position: absolute; inset: 0; pointer-events: none; }
.decor-circle {
  position: absolute; border-radius: 50%;
  background: radial-gradient(circle, rgba(240,165,0,0.06) 0%, transparent 70%);
}
.c1 { width: 600px; height: 600px; right: -200px; top: -200px; }
.c2 { width: 400px; height: 400px; left: -100px; bottom: -100px; }
.courses-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 2rem; max-width: 900px; margin: 0 auto;
}
.course-card {
  background: var(--white); border-radius: 12px; padding: 2.5rem;
  border: 1px solid rgba(26,35,83,0.08);
  box-shadow: var(--shadow-sm);
  position: relative; overflow: hidden;
  transition: transform 0.3s, box-shadow 0.4s;
}
.course-card::before {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--navy), var(--red));
}
.course-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.course-card--premium { background: linear-gradient(135deg, var(--navy) 0%, #1e2d6b 100%); color: var(--white); }
.course-card--premium::before { background: linear-gradient(90deg, var(--gold), #f5c542); }
.course-badge {
  position: absolute; top: 1.5rem; right: 1.5rem;
  background: rgba(192,57,43,0.1); color: var(--red);
  padding: 0.25rem 0.75rem; border-radius: 20px;
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; border: 1px solid rgba(192,57,43,0.2);
}
.course-badge--gold {
  background: rgba(240,165,0,0.15); color: var(--gold);
  border-color: rgba(240,165,0,0.3);
}
.course-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 1.5rem; }
.course-icon { width: 56px; height: 56px; color: var(--red); }
.course-card--premium .course-icon { color: var(--gold); }
.course-icon svg { width: 100%; height: 100%; stroke: currentColor; fill: none; stroke-width: 2; }
.course-duration {
  font-size: 0.8rem; font-weight: 500; color: var(--gray);
  background: rgba(26,35,83,0.05); padding: 0.3rem 0.8rem; border-radius: 20px;
}
.course-card--premium .course-duration { color: rgba(255,255,255,0.7); background: rgba(255,255,255,0.1); }
.course-title {
  font-family: var(--font-display); font-size: 1.5rem; font-weight: 700;
  color: var(--navy); margin-bottom: 0.25rem;
}
.course-card--premium .course-title { color: var(--white); }
.course-subtitle {
  font-size: 0.9rem; color: var(--gray); margin-bottom: 1.5rem;
  font-style: italic;
}
.course-card--premium .course-subtitle { color: rgba(255,255,255,0.6); }
.course-includes { margin-bottom: 1.75rem; display: flex; flex-direction: column; gap: 0.6rem; }
.course-includes li { font-size: 0.88rem; color: var(--gray); display: flex; align-items: center; gap: 0.6rem; }
.course-card--premium .course-includes li { color: rgba(255,255,255,0.75); }
.check { color: var(--gold); font-weight: 700; }
.course-footer {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 1.25rem; border-top: 1px solid rgba(26,35,83,0.08); margin-bottom: 1.5rem;
}
.course-card--premium .course-footer { border-color: rgba(255,255,255,0.15); }
.price-label { display: block; font-size: 0.72rem; color: var(--gray); letter-spacing: 0.08em; text-transform: uppercase; }
.course-card--premium .price-label { color: rgba(255,255,255,0.5); }
.price-value { font-family: var(--font-display); font-size: 1.8rem; font-weight: 700; color: var(--navy); }
.course-card--premium .price-value { color: var(--gold); }
.course-cert { display: flex; align-items: center; gap: 0.4rem; font-size: 0.78rem; color: var(--gray); }
.course-cert svg { width: 16px; height: 16px; fill: var(--gold); }
.course-card--premium .course-cert { color: rgba(255,255,255,0.6); }
.btn-course {
  display: block; width: 100%; text-align: center;
  padding: 0.9rem; border-radius: 6px; font-size: 0.9rem;
  font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  background: var(--navy); color: var(--white);
  transition: background 0.3s, transform 0.2s;
}
.btn-course:hover { background: var(--red); transform: translateY(-2px); }
.btn-course--gold { background: var(--gold); color: var(--dark); }
.btn-course--gold:hover { background: #d4920a; }

/* ===== WHY CHOOSE US ===== */
.why-us { padding: 7rem 0; background: var(--white); }
.why-grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.5rem; margin-bottom: 5rem;
}
.why-card {
  padding: 2rem 1.5rem; border: 1px solid rgba(26,35,83,0.08); border-radius: 8px;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  background: var(--cream);
}
.why-card:hover {
  transform: translateY(-5px); box-shadow: var(--shadow-md);
  border-color: var(--gold);
}
.why-num {
  font-family: var(--font-display); font-size: 2.5rem; font-weight: 700;
  color: rgba(26,35,83,0.08); line-height: 1; margin-bottom: 1rem;
  transition: color 0.3s;
}
.why-card:hover .why-num { color: var(--gold); }
.why-card h4 { font-family: var(--font-display); font-size: 1.1rem; font-weight: 600; color: var(--navy); margin-bottom: 0.5rem; }
.why-card p { font-size: 0.85rem; color: var(--gray); line-height: 1.6; }
.counters-row {
  display: grid; grid-template-columns: repeat(4, 1fr);
  background: var(--navy); border-radius: 12px; padding: 3rem 2rem;
  gap: 2rem; text-align: center;
}
.counter-item { color: var(--white); }
.counter-num {
  font-family: var(--font-display); font-size: 3rem; font-weight: 700; color: var(--gold);
  display: inline-block;
}
.counter-item > span:nth-child(2) { font-size: 2rem; font-weight: 700; color: var(--gold); }
.counter-label {
  display: block; font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.6); margin-top: 0.5rem;
}

/* ===== TESTIMONIALS ===== */
.testimonials { padding: 7rem 0; background: var(--cream); }
.testimonial-slider { position: relative; overflow: hidden; }
.testimonial-track {
  display: flex; transition: transform 0.6s var(--ease-out);
}
.testimonial-card {
  min-width: 100%; padding: 3rem;
  background: rgba(255,255,255,0.8); backdrop-filter: blur(12px);
  border-radius: 16px; border: 1px solid rgba(240,165,0,0.15);
  box-shadow: var(--shadow-md); position: relative;
}
.quote-icon {
  font-family: var(--font-display); font-size: 5rem; line-height: 0.8;
  color: var(--gold); opacity: 0.4; margin-bottom: 1rem;
}
.testimonial-card p {
  font-family: var(--font-display); font-size: 1.3rem; font-style: italic;
  line-height: 1.6; color: var(--navy); margin-bottom: 2rem;
}
.testimonial-author { display: flex; align-items: center; gap: 1rem; }
.author-avatar {
  width: 50px; height: 50px; border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--red));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 1.4rem; font-weight: 600;
  color: var(--white); flex-shrink: 0;
}
.author-info strong { display: block; font-weight: 600; color: var(--navy); }
.author-info span { font-size: 0.82rem; color: var(--gray); }
.star-rating { margin-left: auto; color: var(--gold); font-size: 1rem; letter-spacing: 2px; }
.slider-controls {
  display: flex; align-items: center; justify-content: center;
  gap: 1.5rem; margin-top: 2rem;
}
.slider-btn {
  width: 44px; height: 44px; border-radius: 50%;
  border: 1.5px solid rgba(26,35,83,0.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--navy); transition: all 0.3s;
}
.slider-btn svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; }
.slider-btn:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }
.slider-dots { display: flex; gap: 0.5rem; }
.dot-indicator {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(26,35,83,0.2); transition: all 0.3s; cursor: pointer;
}
.dot-indicator.active { background: var(--red); transform: scale(1.3); }

/* ===== GALLERY SECTION ===== */
.gallery { padding: 7rem 0; background: var(--white); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 1rem;
}
.gallery-item {
  border-radius: 8px; overflow: hidden; position: relative;
  aspect-ratio: 1; cursor: pointer;
  transition: transform 0.4s var(--transition);
}
.gallery-item.tall { grid-row: span 2; aspect-ratio: unset; }
.gallery-item.wide { grid-column: span 2; }
.gallery-item:hover { transform: scale(1.02); }
.gallery-placeholder {
  width: 100%; height: 100%; min-height: 200px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 0.75rem;
  background: var(--cream); border: 1px solid rgba(26,35,83,0.06);
}
.gallery-icon { font-size: 2.5rem; }
.gallery-label-text { font-size: 0.85rem; font-weight: 500; letter-spacing: 0.05em; }
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(26,35,83,0.85), rgba(192,57,43,0.7));
  display: flex; align-items: flex-end; padding: 1.25rem;
  opacity: 0; transition: opacity 0.3s;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span { color: var(--white); font-size: 0.9rem; font-weight: 500; }

/* ===== CONTACT SECTION ===== */
.contact { padding: 7rem 0; background: var(--cream); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 4rem; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-info-item {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: 1.25rem; background: var(--white); border-radius: 10px;
  border: 1px solid rgba(26,35,83,0.06); transition: box-shadow 0.3s;
}
.contact-info-item:hover { box-shadow: var(--shadow-sm); }
.ci-icon {
  width: 40px; height: 40px; background: rgba(26,35,83,0.06); border-radius: 8px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--red);
}
.ci-icon svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 2; }
.contact-info-item h5 { font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gray); margin-bottom: 0.2rem; }
.contact-info-item a, .contact-info-item p { font-size: 0.95rem; color: var(--navy); font-weight: 500; }
.contact-info-item a:hover { color: var(--red); }
.contact-map { margin-top: 0.5rem; border-radius: 10px; overflow: hidden; border: 1px solid rgba(26,35,83,0.08); }
.map-placeholder { padding: 1rem; background: var(--white); }
.map-placeholder svg { width: 100%; }

/* Contact Form */
.contact-form-wrap {
  background: var(--white); border-radius: 16px; padding: 3rem;
  box-shadow: var(--shadow-md); border: 1px solid rgba(26,35,83,0.06);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group { position: relative; margin-bottom: 1.5rem; }
.form-group label {
  display: block; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--gray); margin-bottom: 0.5rem;
}
.form-group input, .form-group textarea {
  width: 100%; padding: 0.9rem 1rem;
  border: 1px solid rgba(26,35,83,0.12); border-radius: 6px;
  background: var(--cream); color: var(--dark); font-size: 0.95rem;
  transition: border-color 0.3s, box-shadow 0.3s; outline: none;
  resize: none;
}
.form-group input:focus, .form-group textarea:focus {
  border-color: var(--red); box-shadow: 0 0 0 3px rgba(192,57,43,0.08);
}
.form-success {
  text-align: center; padding: 2rem; background: rgba(22,160,133,0.08);
  border-radius: 10px; border: 1px solid rgba(22,160,133,0.2); margin-bottom: 1.5rem;
}
.success-icon { font-size: 2rem; margin-bottom: 0.5rem; }
.form-success h4 { color: #16a085; font-size: 1.1rem; }
.form-error {
  padding: 0.9rem 1.2rem; background: rgba(192,57,43,0.08);
  border: 1px solid rgba(192,57,43,0.2); border-radius: 6px;
  color: var(--red); font-size: 0.9rem; margin-bottom: 1.5rem;
}

/* ===== FOOTER ===== */
.footer { background: var(--dark); color: rgba(255,255,255,0.8); }
.footer-top { padding: 5rem 0 4rem; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.5fr; gap: 3rem; }
.footer-logo { height: 80px; margin-bottom: 1rem; filter: brightness(1.1); }
.footer-brand p { font-size: 0.9rem; line-height: 1.7; color: rgba(255,255,255,0.5); margin-bottom: 1.5rem; }
.social-links { display: flex; gap: 0.75rem; }
.social-link {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: background 0.3s, color 0.3s, border-color 0.3s;
}
.social-link svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; }
.social-link:hover { background: var(--red); color: var(--white); border-color: var(--red); }
.footer-links h5 {
  font-size: 0.78rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--white); margin-bottom: 1.25rem;
}
.footer-links ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links ul li a {
  font-size: 0.9rem; color: rgba(255,255,255,0.5);
  transition: color 0.3s, padding-left 0.3s;
}
.footer-links ul li a:hover { color: var(--gold); padding-left: 4px; }
.footer-newsletter h5 {
  font-size: 0.78rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--white); margin-bottom: 0.5rem;
}
.footer-newsletter p { font-size: 0.85rem; color: rgba(255,255,255,0.5); margin-bottom: 1rem; }
.newsletter-form { display: flex; gap: 0; border-radius: 6px; overflow: hidden; border: 1px solid rgba(255,255,255,0.15); }
.newsletter-form input {
  flex: 1; padding: 0.75rem 1rem; background: rgba(255,255,255,0.05);
  border: none; color: var(--white); font-size: 0.88rem; outline: none;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.3); }
.newsletter-form button {
  padding: 0.75rem 1.1rem; background: var(--red); color: var(--white);
  transition: background 0.3s;
}
.newsletter-form button:hover { background: #a93226; }
.newsletter-form button svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; }
.footer-bottom {
  padding: 1.5rem 0; border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-bottom .container {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 0.5rem;
}
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.35); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .why-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}

@media (max-width: 900px) {
  .hero-content { grid-template-columns: 1fr; text-align: center; gap: 3rem; }
  .hero-eyebrow { justify-content: center; }
  .hero-buttons { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { display: none; }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-features { grid-template-columns: 1fr 1fr; }
  .courses-grid { grid-template-columns: 1fr; max-width: 500px; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .counters-row { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links { 
    position: fixed; top: 70px; left: 0; width: 100%;
    background: rgba(253,248,242,0.98); backdrop-filter: blur(16px);
    flex-direction: column; gap: 0; padding: 1rem 0;
    box-shadow: var(--shadow-md);
    transform: translateY(-100%); opacity: 0; pointer-events: none;
    transition: transform 0.4s var(--transition), opacity 0.4s;
  }
  .nav-links.open { transform: none; opacity: 1; pointer-events: all; }
  .nav-link { padding: 0.9rem 2rem; font-size: 1rem; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }

  .hero-title { font-size: clamp(2.2rem, 8vw, 3.5rem); }
  .section-title { font-size: clamp(1.7rem, 5vw, 2.5rem); }

  .about-features { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item.wide { grid-column: span 1; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom .container { flex-direction: column; text-align: center; }

  .custom-cursor, .custom-cursor-follower { display: none; }
  body { cursor: auto; }
  button, a { cursor: pointer; }
}

@media (max-width: 480px) {
  .hero-stats { flex-direction: column; gap: 1rem; }
  .stat-divider { width: 40px; height: 1px; align-self: auto; }
  .why-grid { grid-template-columns: 1fr; }
  .counters-row { grid-template-columns: 1fr 1fr; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .contact-form-wrap { padding: 1.75rem; }
  .testimonial-card { padding: 2rem 1.5rem; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item.tall { grid-row: span 1; }
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
