/* ============================================================
   ECMA — EUBANKS CONSERVATORY OF MUSIC AND ARTS
   Premium CSS with animations & gold theme
   ============================================================ */

:root {
  --gold: #c9a84c;
  --gold-light: #e8c66d;
  --gold-dark: #a07a2a;
  --dark: #0a0a0f;
  --dark-2: #111118;
  --dark-3: #1a1a24;
  --dark-4: #22222f;
  --text: #e8e8f0;
  --text-muted: #8888a0;
  --white: #ffffff;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', sans-serif;
  --font-italic: 'Cormorant Garamond', Georgia, serif;
  --radius: 16px;
  --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
  max-width: 100vw;
}

body {
  font-family: var(--font-sans);
  background: var(--dark);
  color: var(--text);
  overflow-x: hidden;
  max-width: 100vw;
  position: relative;
  cursor: none;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { width: 100%; height: 100%; object-fit: cover; display: block; }

.container {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ---- SCROLLBAR (hidden but scroll still works) ---- */
html { scrollbar-width: none; -ms-overflow-style: none; }
body { scrollbar-width: none; -ms-overflow-style: none; }
::-webkit-scrollbar { width: 0; height: 0; display: none; }
::-webkit-scrollbar-track { display: none; }
::-webkit-scrollbar-thumb { display: none; }

/* ============================================================
   CURSOR
   ============================================================ */
.cursor-dot {
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  z-index: 10000;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: transform 0.1s;
}
.cursor-outline {
  width: 36px; height: 36px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  z-index: 9999;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: all 0.15s ease;
  opacity: 0.6;
}
.cursor-hover .cursor-outline {
  width: 56px; height: 56px;
  opacity: 1;
  border-color: var(--gold-light);
}

/* ============================================================
   PRELOADER
   ============================================================ */
#preloader {
  position: fixed;
  inset: 0;
  background: var(--dark);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
#preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }

.preloader-inner { text-align: center; }

.music-note-anim {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-bottom: 24px;
}
.music-note-anim span {
  font-size: 2rem;
  color: var(--gold);
  animation: noteFloat 1.2s ease-in-out infinite;
}
.music-note-anim span:nth-child(1) { animation-delay: 0s; }
.music-note-anim span:nth-child(2) { animation-delay: 0.15s; }
.music-note-anim span:nth-child(3) { animation-delay: 0.3s; }
.music-note-anim span:nth-child(4) { animation-delay: 0.45s; }

@keyframes noteFloat {
  0%, 100% { transform: translateY(0); opacity: 0.5; }
  50% { transform: translateY(-12px); opacity: 1; }
}

.preloader-logo {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 8px;
  color: var(--white);
  margin-bottom: 24px;
}

.preloader-bar {
  width: 200px;
  height: 2px;
  background: var(--dark-3);
  margin: 0 auto;
  border-radius: 2px;
  overflow: hidden;
}
.preloader-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
  animation: fillBar 2s ease forwards;
}
@keyframes fillBar {
  to { width: 100%; }
}

/* ============================================================
   NAVIGATION
   ============================================================ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 18px 0;
  background: linear-gradient(180deg, rgba(10,10,15,0.45) 0%, rgba(10,10,15,0.15) 60%, rgba(10,10,15,0) 100%);
  transition: var(--transition);
}
#navbar.scrolled {
  padding: 14px 0;
  background: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}
#navbar.scrolled .nav-links a { color: #444; }
#navbar.scrolled .nav-links a:hover { color: var(--gold-dark); }
#navbar.scrolled .logo-text { color: #111; }

.nav-container {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-symbol { font-size: 1.6rem; color: var(--gold); }
.logo-text {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 4px;
  color: var(--white);
}
.nav-logo-img {
  height: 92px;
  width: auto;
  object-fit: contain;
  display: block;
  transition: height 0.4s ease, opacity 0.3s;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.5));
}
#navbar.scrolled .nav-logo-img {
  height: 86px;
  filter: none;
}
.nav-logo-img:hover { opacity: 0.85; }
.footer-logo-img {
  height: 78px;
  width: auto;
  object-fit: contain;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav-links a {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #ffffff;
  text-shadow: 0 1px 6px rgba(0,0,0,0.6);
  transition: color 0.3s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  background: var(--gold);
  color: var(--dark);
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: var(--transition);
}
.nav-cta:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 168, 76, 0.35);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: none;
  padding: 4px;
}
.hamburger span {
  width: 26px; height: 2px;
  background: var(--white);
  transition: background 0.3s, transform 0.4s, opacity 0.3s;
  display: block;
  box-shadow: 0 1px 3px rgba(0,0,0,0.3);
}
#navbar.scrolled .hamburger span {
  background: var(--dark);
  box-shadow: none;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--dark-2);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateX(-100%);
  transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu ul { text-align: center; }
.mobile-menu li { margin: 20px 0; }
.mobile-menu a {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--text);
  transition: color 0.3s;
}
.mobile-menu a:hover { color: var(--gold); }
.mobile-cta {
  display: inline-block;
  background: var(--gold) !important;
  color: var(--dark) !important;
  padding: 12px 36px;
  border-radius: 50px;
  font-size: 1rem !important;
  font-family: var(--font-sans) !important;
  font-weight: 700;
  margin-top: 12px;
}

/* ============================================================
   HERO
   ============================================================ */
#hero {
  position: relative;
  height: 100vh;
  min-height: 760px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-top: 190px;
  padding-bottom: 70px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  animation: heroZoom 8s ease-out forwards;
}
@keyframes heroZoom {
  to { transform: scale(1); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10, 10, 15, 0.98) 0%,
    rgba(10, 10, 15, 0.6) 50%,
    rgba(10, 10, 15, 0.3) 100%
  );
}

/* Floating music notes */
.floating-notes {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.float-note {
  position: absolute;
  color: rgba(201, 168, 76, 0.3);
  font-size: 1.5rem;
  animation: floatUp linear infinite;
  user-select: none;
}
@keyframes floatUp {
  0%   { transform: translateY(0) rotate(0deg); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 0.6; }
  100% { transform: translateY(-100vh) rotate(360deg); opacity: 0; }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 32px;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201, 168, 76, 0.12);
  border: 1px solid rgba(201, 168, 76, 0.3);
  color: var(--gold-light);
  font-size: 0.78rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 28px;
  animation: fadeInDown 0.8s 0.3s both;
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 6vw, 5.6rem);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
}

.hero-title .line {
  display: block;
  opacity: 0;
  transform: translateY(60px);
  animation: slideUpLine 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}
.hero-title .line:nth-child(1) { animation-delay: 0.4s; }
.hero-title .line:nth-child(2) { animation-delay: 0.6s; }
.hero-title .line:nth-child(3) { animation-delay: 0.8s; }

.hero-title .italic { font-style: italic; color: var(--text-muted); }
.hero-title .gold {
  color: var(--gold);
  text-shadow: 0 0 80px rgba(201, 168, 76, 0.4);
}

@keyframes slideUpLine {
  to { opacity: 1; transform: translateY(0); }
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 28px;
  animation: fadeInUp 0.9s 1.1s both;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 40px;
  animation: fadeInUp 0.9s 1.3s both;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--dark);
  padding: 16px 36px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: var(--transition);
  border: none;
  cursor: none;
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(201, 168, 76, 0.4);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.3s;
}
.btn-ghost:hover { color: var(--gold); }
.play-icon {
  width: 44px; height: 44px;
  border: 1.5px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  transition: var(--transition);
}
.btn-ghost:hover .play-icon {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.1);
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 40px;
  animation: fadeInUp 0.9s 1.5s both;
}
.stat-item {
  display: flex;
  flex-direction: column;
}
.stat-num {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.stat-item > span:nth-child(2) {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  display: inline;
}
.stat-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  letter-spacing: 1px;
  margin-top: 4px;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.1);
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  right: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
}
.scroll-indicator span {
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  writing-mode: vertical-rl;
}
.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(0.6); }
}

/* ============================================================
   MARQUEE BAND
   ============================================================ */
.marquee-band {
  background: var(--gold);
  padding: 14px 0;
  overflow: hidden;
  position: relative;
  z-index: 10;
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marqueeScroll 30s linear infinite;
  gap: 40px;
  white-space: nowrap;
}
.marquee-track span {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--dark);
}
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============================================================
   SECTION COMMON
   ============================================================ */
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  position: relative;
  padding-left: 28px;
}
.section-label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 1.5px;
  background: var(--gold);
}
.section-label.light { color: rgba(201,168,76,0.8); }
.section-label.light::before { background: rgba(201,168,76,0.8); }

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  font-weight: 700;
  line-height: 1.12;
  color: var(--white);
  margin-bottom: 20px;
}
.section-title em {
  font-style: italic;
  color: var(--gold);
  font-family: var(--font-italic);
}
.section-title.white { color: var(--white); }

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 64px;
}
.section-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.8;
}

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
.reveal-up, .reveal-left, .reveal-right {
  opacity: 0;
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-up { transform: translateY(50px); }
.reveal-left { transform: translateX(-60px); }
.reveal-right { transform: translateX(60px); }

.reveal-up.visible, .reveal-left.visible, .reveal-right.visible {
  opacity: 1;
  transform: translate(0);
}

/* ============================================================
   ABOUT
   ============================================================ */
.section-about {
  padding: 120px 0;
  background: var(--dark-2);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-images { position: relative; }
.img-stack { position: relative; height: 600px; }

.img-card {
  position: absolute;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}
.img-main {
  width: 80%;
  height: 480px;
  top: 0; left: 0;
}
.img-secondary {
  width: 55%;
  height: 280px;
  bottom: 0; right: 0;
  border: 4px solid var(--dark-2);
  transition-delay: 0.2s;
}
.img-badge {
  position: absolute;
  bottom: 60px; left: 0;
  background: var(--gold);
  padding: 20px 28px;
  border-radius: var(--radius);
  box-shadow: 0 20px 50px rgba(201, 168, 76, 0.4);
  transition-delay: 0.4s;
}
.badge-num {
  display: block;
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--dark);
  line-height: 1;
}
.badge-text {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--dark);
  text-transform: uppercase;
}

.about-text { padding-right: 20px; }

.about-lead {
  font-size: 1.15rem;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 20px;
  font-weight: 300;
}
.about-body {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.9;
  margin-bottom: 40px;
}

.about-features { margin-bottom: 40px; }
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
  padding: 20px;
  background: var(--dark-3);
  border-radius: 12px;
  border-left: 3px solid var(--gold);
  transition: var(--transition);
}
.feature-item:hover { transform: translateX(8px); }
.feature-icon { font-size: 1.5rem; flex-shrink: 0; }
.feature-item strong {
  display: block;
  font-size: 0.95rem;
  color: var(--white);
  margin-bottom: 4px;
}
.feature-item p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ============================================================
   PROGRAMS
   ============================================================ */
.section-programs {
  padding: 120px 0;
  background: var(--dark);
}

.programs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.program-card {
  background: var(--dark-3);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.05);
  transition: var(--transition);
  position: relative;
}
.program-card:hover {
  transform: translateY(-8px);
  border-color: rgba(201, 168, 76, 0.3);
  box-shadow: 0 30px 70px rgba(0,0,0,0.4);
}

.featured-program {
  border-color: rgba(201, 168, 76, 0.4);
  box-shadow: 0 0 40px rgba(201, 168, 76, 0.1);
}
.featured-tag {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 10;
  background: var(--gold);
  color: var(--dark);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 50px;
}

.program-img {
  height: 220px;
  position: relative;
  overflow: hidden;
}
.program-img img {
  transition: transform 0.6s ease;
}
.program-card:hover .program-img img { transform: scale(1.08); }
.program-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  display: flex;
  align-items: flex-end;
  padding: 16px;
}
.program-level {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold-light);
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.3);
  padding: 4px 12px;
  border-radius: 50px;
}

.program-body { padding: 28px; }
.program-icon { font-size: 2rem; margin-bottom: 12px; }
.program-body h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 12px;
}
.program-body p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}
.program-highlights {
  margin-bottom: 20px;
}
.program-highlights li {
  font-size: 0.82rem;
  color: var(--text-muted);
  padding: 5px 0;
  padding-left: 16px;
  position: relative;
}
.program-highlights li::before {
  content: '♩';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.7rem;
}
.program-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 16px;
}
.program-meta span {
  font-size: 0.82rem;
  color: var(--text-muted);
}
.program-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
  transition: var(--transition);
}
.program-link:hover { letter-spacing: 1px; }

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.section-why {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}
.why-bg {
  position: absolute;
  inset: 0;
}
.why-bg img { filter: grayscale(30%); }
.why-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,10,15,0.96), rgba(10,10,15,0.85));
}

.why-content { position: relative; z-index: 1; }

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 60px;
}
.why-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: var(--transition);
}
.why-card:hover {
  background: rgba(201,168,76,0.06);
  border-color: rgba(201,168,76,0.35);
  transform: translateY(-6px);
}
.why-num {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-weight: 900;
  color: rgba(201,168,76,0.15);
  line-height: 1;
  margin-bottom: 16px;
}
.why-card h3 {
  font-size: 1.05rem;
  color: var(--gold-light);
  margin-bottom: 12px;
  font-weight: 600;
}
.why-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.8;
}

/* ============================================================
   FACULTY
   ============================================================ */
.section-faculty {
  padding: 120px 0;
  background: var(--dark-2);
}

.faculty-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.faculty-card {
  background: var(--dark-3);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.05);
  transition: var(--transition);
}
.faculty-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.4);
}

.faculty-img {
  height: 280px;
  position: relative;
  overflow: hidden;
}
.faculty-img img { transition: transform 0.6s ease; }
.faculty-card:hover .faculty-img img { transform: scale(1.06); }

.faculty-social {
  position: absolute;
  top: 16px; right: 16px;
  display: flex;
  gap: 8px;
  opacity: 0;
  transition: opacity 0.3s;
}
.faculty-card:hover .faculty-social { opacity: 1; }
.faculty-social a {
  width: 32px; height: 32px;
  background: var(--gold);
  color: var(--dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 800;
}

.faculty-info { padding: 24px; }
.faculty-info h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 6px;
}
.faculty-role {
  display: block;
  font-size: 0.78rem;
  color: var(--gold);
  letter-spacing: 0.5px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.faculty-info p {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.section-testimonials {
  padding: 120px 0;
  background: var(--dark);
  overflow: hidden;
}

.testimonial-slider {
  overflow: hidden;
  margin: 0 -16px;
}
.testimonial-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  padding: 0 16px;
}

.testimonial-card {
  min-width: calc(50% - 16px);
  margin-right: 28px;
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 48px 44px;
  position: relative;
  flex-shrink: 0;
}

.testimonial-quote {
  font-family: var(--font-serif);
  font-size: 6rem;
  color: rgba(201,168,76,0.15);
  line-height: 0.6;
  margin-bottom: 24px;
}
.testimonial-card p {
  font-size: 1rem;
  color: var(--text);
  line-height: 1.9;
  font-style: italic;
  margin-bottom: 32px;
  font-family: var(--font-italic);
  font-size: 1.15rem;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}
.testimonial-author img {
  width: 52px; height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
}
.testimonial-author strong {
  display: block;
  font-size: 0.95rem;
  color: var(--white);
  margin-bottom: 2px;
}
.testimonial-author span {
  font-size: 0.8rem;
  color: var(--text-muted);
}
.testimonial-stars { color: var(--gold); font-size: 0.9rem; letter-spacing: 2px; }

.testimonial-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 48px;
}
.tc-btn {
  width: 48px; height: 48px;
  border: 1.5px solid rgba(201,168,76,0.4);
  background: none;
  color: var(--gold);
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: none;
  transition: var(--transition);
}
.tc-btn:hover {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
}
.tc-dots { display: flex; gap: 8px; }
.tc-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  cursor: none;
  transition: var(--transition);
}
.tc-dot.active {
  background: var(--gold);
  transform: scale(1.3);
}

/* ============================================================
   GALLERY
   ============================================================ */
.section-gallery {
  padding: 120px 0;
  background: var(--dark-2);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 280px 280px;
  gap: 16px;
}
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: none;
}
.gallery-item img { transition: transform 0.6s ease; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }

.gallery-hover {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,15,0.8), transparent);
  display: flex;
  align-items: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.4s;
}
.gallery-item:hover .gallery-hover { opacity: 1; }
.gallery-hover span {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gold-light);
  letter-spacing: 1px;
}

/* ============================================================
   EVENTS
   ============================================================ */
.section-events {
  padding: 120px 0;
  background: var(--dark);
}

.events-list { display: flex; flex-direction: column; gap: 20px; }

.event-item {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  gap: 32px;
  align-items: center;
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--radius);
  padding: 32px 36px;
  transition: var(--transition);
}
.event-item:hover {
  border-color: rgba(201,168,76,0.3);
  transform: translateX(8px);
  background: var(--dark-4);
}

.event-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 80px; height: 80px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  border-radius: 14px;
}
.event-day {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 900;
  color: var(--dark);
  line-height: 1;
}
.event-month {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--dark);
}

.event-type {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.event-info h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--white);
  margin-bottom: 8px;
}
.event-info p {
  font-size: 0.87rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.event-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}
.event-meta span {
  font-size: 0.82rem;
  color: var(--text-muted);
  white-space: nowrap;
}
.event-ticket {
  display: inline-block;
  background: var(--gold);
  color: var(--dark);
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  white-space: nowrap;
  transition: var(--transition);
}
.event-ticket:hover {
  background: var(--gold-light);
  transform: scale(1.05);
}

/* ============================================================
   NUMBERS
   ============================================================ */
.section-numbers {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--dark-3), var(--dark-4));
  border-top: 1px solid rgba(201,168,76,0.1);
  border-bottom: 1px solid rgba(201,168,76,0.1);
}

.numbers-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.number-item {
  text-align: center;
  padding: 20px;
}
.number-val {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  display: inline;
}
.number-plus {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3vw, 3rem);
  color: var(--gold);
  font-weight: 900;
  display: inline;
}
.number-label {
  display: block;
  font-size: 0.82rem;
  color: var(--text-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 8px;
}

/* ============================================================
   CONTACT
   ============================================================ */
.section-contact {
  padding: 120px 0;
  background: var(--dark-2);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.contact-info p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 40px;
}

.contact-details { display: flex; flex-direction: column; gap: 24px; }
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.cd-icon { font-size: 1.5rem; flex-shrink: 0; margin-top: 2px; }
.contact-detail strong {
  display: block;
  font-size: 0.85rem;
  color: var(--white);
  font-weight: 600;
  margin-bottom: 4px;
}
.contact-detail span {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* FORM */
.contact-form-wrap { position: relative; }
.contact-form {
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 24px;
  padding: 44px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-group {
  position: relative;
  margin-bottom: 20px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--dark-4);
  border: 1.5px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 16px 18px;
  font-size: 0.92rem;
  color: var(--text);
  font-family: var(--font-sans);
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group label {
  position: absolute;
  top: -8px; left: 14px;
  font-size: 0.72rem;
  color: var(--gold);
  background: var(--dark-3);
  padding: 0 6px;
  font-weight: 600;
  letter-spacing: 0.5px;
  display: none;
}
.form-group input:focus + label,
.form-group select:focus + label,
.form-group textarea:focus + label { display: block; }

.full-width { width: 100%; justify-content: center; }
.btn-text { flex: 1; text-align: center; }
.btn-arrow { font-size: 1.2rem; transition: transform 0.3s; }
.btn-primary:hover .btn-arrow { transform: translateX(4px); }

.form-success {
  position: absolute;
  inset: 0;
  background: var(--dark-3);
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 44px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}
.form-success.visible { opacity: 1; pointer-events: auto; }
.success-icon {
  width: 72px; height: 72px;
  background: var(--gold);
  color: var(--dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 900;
  margin: 0 auto 24px;
}
.form-success h3 {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--white);
  margin-bottom: 12px;
}
.form-success p { color: var(--text-muted); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--dark); }
.footer-top {
  padding: 80px 0 60px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 60px;
}

.footer-logo {
  display: inline-block;
  background: #ffffff;
  padding: 10px 16px;
  border-radius: 14px;
  margin-bottom: 20px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.35);
}
.footer-brand p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 24px;
}
.footer-socials { display: flex; gap: 10px; }
.social-btn {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--text-muted);
  text-transform: uppercase;
  transition: var(--transition);
}
.social-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--dark);
}

.footer-col h4 {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a {
  font-size: 0.88rem;
  color: var(--text-muted);
  transition: color 0.3s;
}
.footer-col ul a:hover { color: var(--gold); }
.footer-col p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}
.footer-form {
  display: flex;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50px;
  overflow: hidden;
}
.footer-form input {
  flex: 1;
  background: none;
  border: none;
  padding: 12px 18px;
  font-size: 0.85rem;
  color: var(--text);
  font-family: var(--font-sans);
  outline: none;
}
.footer-form button {
  background: var(--gold);
  color: var(--dark);
  border: none;
  padding: 12px 18px;
  font-size: 1rem;
  font-weight: 900;
  cursor: none;
  transition: background 0.3s;
}
.footer-form button:hover { background: var(--gold-light); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 24px 0;
}
.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-bottom p { font-size: 0.82rem; color: var(--text-muted); }
.footer-links { display: flex; gap: 24px; }
.footer-links a {
  font-size: 0.82rem;
  color: var(--text-muted);
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--gold); }

.footer-credit {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 16px 0 4px;
  margin-top: 16px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}
.footer-credit span {
  font-size: 0.78rem;
  color: var(--text-muted);
  letter-spacing: 1px;
}
.footer-credit a {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  position: relative;
  transition: color 0.3s;
}
.footer-credit a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.footer-credit a:hover { color: var(--gold-light); }
.footer-credit a:hover::after { transform: scaleX(1); }

/* ============================================================
   BACK TO TOP
   ============================================================ */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px; height: 48px;
  background: var(--gold);
  color: var(--dark);
  border: none;
  border-radius: 50%;
  font-size: 1.2rem;
  font-weight: 900;
  cursor: none;
  z-index: 100;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
}
.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
}
.back-to-top:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(201,168,76,0.4);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* Hide custom cursor on touch devices */
@media (hover: none), (pointer: coarse) {
  body, a, button, .program-card, .gallery-item, .faculty-card,
  .btn-primary, .tc-btn, .tc-dot, .gallery-item, .footer-form button,
  .back-to-top { cursor: auto !important; }
  .cursor-dot, .cursor-outline { display: none !important; }
}

/* Large laptops / small desktops */
@media (max-width: 1280px) {
  .nav-container { padding: 0 24px; }
  .nav-links { gap: 28px; }
  .nav-logo-img { height: 80px; }
  #navbar.scrolled .nav-logo-img { height: 74px; }
}

/* Tablets / small laptops */
@media (max-width: 1100px) {
  .programs-grid { grid-template-columns: repeat(2, 1fr); }
  .faculty-grid { grid-template-columns: repeat(2, 1fr); }
  .numbers-grid { grid-template-columns: repeat(3, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .nav-links { gap: 22px; }
  .nav-links a { font-size: 0.78rem; letter-spacing: 1px; }
  .nav-cta { padding: 9px 18px; font-size: 0.76rem; }
  .nav-logo-img { height: 72px; }
  #navbar.scrolled .nav-logo-img { height: 66px; }
  .container { padding: 0 28px; }
  .section-about,
  .section-programs,
  .section-why,
  .section-faculty,
  .section-testimonials,
  .section-gallery,
  .section-events,
  .section-contact { padding: 90px 0; }
  #hero { padding-top: 170px; padding-bottom: 60px; min-height: 720px; }
  .hero-stats { gap: 32px; }
  .scroll-indicator { right: 20px; bottom: 24px; }
}

/* Tablets */
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 60px; }
  .about-text { padding-right: 0; }
  .img-stack { height: 460px; max-width: 560px; margin: 0 auto; }
  .img-main { height: 360px; }
  .img-secondary { height: 220px; }
  .contact-grid { grid-template-columns: 1fr; gap: 60px; }
  .event-item { grid-template-columns: 80px 1fr; }
  .event-meta { flex-direction: row; grid-column: 1 / -1; justify-content: flex-start; gap: 16px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
  .gallery-item { height: 240px; }
  .gallery-item.tall, .gallery-item.wide { grid-row: auto; grid-column: auto; }
  .hero-stats { gap: 24px; }
  #hero { padding-top: 165px; padding-bottom: 50px; min-height: 700px; height: auto; }
  .hero-subtitle { font-size: 1rem; margin-bottom: 24px; }
  .hero-actions { margin-bottom: 32px; }
  .scroll-indicator { display: none !important; }
  .section-title { font-size: clamp(2rem, 5vw, 2.8rem); }
  .testimonial-card { min-width: calc(100% - 32px); }
}

/* Mobile landscape / small tablets */
@media (max-width: 768px) {
  body { cursor: auto; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .nav-container { padding: 0 20px; }
  .nav-logo-img { height: 64px; }
  #navbar { padding: 14px 0; }
  #navbar.scrolled { padding: 10px 0; }
  #navbar.scrolled .nav-logo-img { height: 60px; }

  .programs-grid { grid-template-columns: 1fr; }
  .faculty-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .numbers-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .testimonial-card { min-width: calc(100% - 16px); padding: 36px 28px; }
  .testimonial-card p { font-size: 1rem; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 28px; }

  #hero {
    padding-top: 130px;
    padding-bottom: 50px;
    min-height: 640px;
    height: auto;
    align-items: center;
  }
  .hero-badge { font-size: 0.7rem; padding: 6px 14px; letter-spacing: 1.5px; margin-bottom: 18px; }
  .hero-title { margin-bottom: 16px; }
  .hero-subtitle { font-size: 0.95rem; margin-bottom: 24px; max-width: 100%; }
  .hero-actions { flex-direction: column; align-items: flex-start; gap: 16px; margin-bottom: 32px; }
  .hero-actions .btn-primary { padding: 14px 28px; }
  .hero-stats { flex-direction: row; flex-wrap: wrap; align-items: flex-start; gap: 24px; }
  .stat-divider { display: none; }
  .stat-num,
  .stat-item > span:nth-child(2) { font-size: 1.9rem; }

  .section-about,
  .section-programs,
  .section-why,
  .section-faculty,
  .section-testimonials,
  .section-gallery,
  .section-events,
  .section-contact { padding: 70px 0; }
  .section-numbers { padding: 70px 0; }

  .footer-bottom .container { flex-direction: column; gap: 12px; text-align: center; }
  .footer-bottom .footer-links { flex-wrap: wrap; justify-content: center; }
  .footer-top { padding: 60px 0 40px; }

  .event-item { padding: 24px; gap: 20px; }
  .marquee-track span { font-size: 0.75rem; }
  .preloader-logo { font-size: 1.8rem; letter-spacing: 5px; }

  .back-to-top { bottom: 20px; right: 20px; width: 44px; height: 44px; }
}

/* Small mobile */
@media (max-width: 480px) {
  html { font-size: 15px; }
  .container { padding: 0 18px; }
  .nav-container { padding: 0 16px; }
  .nav-logo-img { height: 56px; }
  #navbar.scrolled .nav-logo-img { height: 52px; }

  .faculty-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .numbers-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .event-item { grid-template-columns: 1fr; text-align: center; padding: 22px; }
  .event-date { margin: 0 auto; }
  .event-meta { justify-content: center; flex-wrap: wrap; }

  #hero {
    padding-top: 120px;
    padding-bottom: 40px;
    min-height: 600px;
  }
  .hero-badge { font-size: 0.62rem; letter-spacing: 1.2px; margin-bottom: 14px; padding: 5px 12px; }
  .hero-title { margin-bottom: 14px; }
  .hero-subtitle { margin-bottom: 22px; font-size: 0.92rem; }
  .hero-actions { margin-bottom: 26px; gap: 14px; }
  .hero-actions .btn-primary { padding: 12px 24px; font-size: 0.82rem; }
  .hero-stats { gap: 16px; }

  .contact-form { padding: 22px; border-radius: 18px; }
  .form-group input,
  .form-group select,
  .form-group textarea { padding: 14px 14px; font-size: 0.88rem; }

  .testimonial-card { padding: 28px 22px; }
  .testimonial-quote { font-size: 4rem; }
  .testimonial-card p { font-size: 0.95rem; line-height: 1.7; }
  .testimonial-author img { width: 44px; height: 44px; }
  .testimonial-author { gap: 12px; }
  .testimonial-author strong { font-size: 0.88rem; }
  .testimonial-author span { font-size: 0.72rem; }

  .footer-logo-img { height: 64px; }
  .footer-logo { padding: 8px 12px; }
  .footer-socials { flex-wrap: wrap; }
  .footer-form input { padding: 10px 14px; font-size: 0.82rem; }
  .footer-form button { padding: 10px 14px; }

  .program-body { padding: 22px; }
  .program-body h3 { font-size: 1.15rem; }
  .program-body p { font-size: 0.85rem; }
  .program-img { height: 200px; }
  .why-card { padding: 28px 22px; }
  .why-num { font-size: 3rem; }
  .why-card h3 { font-size: 1rem; }
  .faculty-img { height: 240px; }
  .faculty-info { padding: 20px; }
  .faculty-info h3 { font-size: 1.1rem; }

  .img-stack { height: 320px; }
  .img-main { height: 260px; width: 88%; }
  .img-secondary { height: 180px; width: 62%; }
  .img-badge { padding: 12px 18px; bottom: 24px; }
  .badge-num { font-size: 1.4rem; }
  .feature-item { padding: 16px; gap: 12px; margin-bottom: 16px; }
  .feature-item strong { font-size: 0.9rem; }
  .feature-item p { font-size: 0.8rem; }

  .section-title { font-size: clamp(1.8rem, 7vw, 2.4rem); line-height: 1.2; }
  .section-label { font-size: 0.68rem; padding-left: 22px; }
  .section-header { margin-bottom: 40px; }
  .section-desc { font-size: 0.95rem; }

  .back-to-top { bottom: 16px; right: 16px; width: 40px; height: 40px; font-size: 1rem; }

  .stat-num,
  .stat-item > span:nth-child(2) { font-size: 1.8rem; }

  .number-val { font-size: 2.2rem; }
  .number-plus { font-size: 1.8rem; }
  .number-label { font-size: 0.72rem; }

  .event-info h3 { font-size: 1.1rem; }
  .event-info p { font-size: 0.82rem; }
  .event-date { width: 70px; height: 70px; }
  .event-day { font-size: 1.7rem; }
  .event-month { font-size: 0.65rem; }
  .event-meta span { font-size: 0.78rem; }
  .event-ticket { padding: 9px 16px; font-size: 0.72rem; }

  .marquee-track span { font-size: 0.7rem; letter-spacing: 1.5px; }
  .marquee-track { gap: 28px; }

  .preloader-logo { font-size: 1.6rem; letter-spacing: 4px; }
  .preloader-bar { width: 160px; }

  .mobile-menu a { font-size: 1.7rem; }
  .mobile-menu li { margin: 16px 0; }

  .form-success h3 { font-size: 1.5rem; }
  .form-success p { font-size: 0.88rem; }
  .success-icon { width: 56px; height: 56px; font-size: 1.6rem; }

  .contact-info p { font-size: 0.95rem; margin-bottom: 32px; }
  .contact-detail strong { font-size: 0.82rem; }
  .contact-detail span { font-size: 0.85rem; }
  .cd-icon { font-size: 1.3rem; }

  .footer-col h4 { font-size: 0.78rem; }
  .footer-col ul a { font-size: 0.82rem; }
  .footer-brand p { font-size: 0.84rem; }
  .footer-credit { padding: 14px 0 2px; margin-top: 12px; }
  .footer-credit span { font-size: 0.72rem; }
  .footer-credit a { font-size: 0.76rem; }
}

/* Very small phones */
@media (max-width: 360px) {
  .container { padding: 0 14px; }
  .nav-container { padding: 0 12px; }
  .nav-logo-img { height: 48px; }
  #navbar.scrolled .nav-logo-img { height: 46px; }
  .hero-actions .btn-primary { padding: 12px 22px; font-size: 0.78rem; }
  .hero-title { font-size: clamp(2rem, 9vw, 2.6rem); }
  .footer-logo-img { height: 56px; }
  .numbers-grid { grid-template-columns: 1fr; }
  .event-meta { flex-direction: column; align-items: center; gap: 6px; }
  .testimonial-card { padding: 24px 18px; }
  .contact-form { padding: 18px; }
  .form-group input,
  .form-group select,
  .form-group textarea { padding: 12px 12px; }
  .img-stack { height: 280px; }
  .img-main { height: 220px; }
  .img-secondary { height: 150px; }
  .feature-item { flex-direction: column; align-items: flex-start; }
  .mobile-menu a { font-size: 1.4rem; }
}
