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

:root {
  --navy:      #0f2447;
  --blue:      #1a3a6b;
  --blue-mid:  #2356a8;
  --gold:      #d4af37;
  --gold-light:#f5d061;
  --gold-dark: #b8960c;
  --white:     #ffffff;
  --bg-light:  #f8f9ff;
  --bg-dark:   #0a1628;
  --text-dark: #1a1a2e;
  --text-mid:  #4a5568;
  --text-light:#718096;
  --radius:    16px;
  --shadow:    0 20px 60px rgba(15,36,71,0.12);
  --shadow-lg: 0 30px 80px rgba(15,36,71,0.18);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.section-pad { padding: 5rem 0; }

/* ===== TYPOGRAPHY ===== */
.section-tag {
  display: inline-block;
  background: linear-gradient(135deg, #e8f0fe, #d0e4ff);
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 100px;
  border: 1px solid rgba(35,86,168,0.2);
  margin-bottom: 1rem;
}
.light-tag { background: rgba(255,255,255,0.12); color: var(--gold-light); border-color: rgba(255,255,255,0.2); }
.section-title { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 4vw, 2.8rem); line-height: 1.25; color: var(--navy); margin-bottom: 1rem; }
.light-title { color: #fff; }
.section-desc { font-size: 1.05rem; color: var(--text-mid); max-width: 580px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 3.5rem; }

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

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.85rem 2rem;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}
.btn-primary {
  background: linear-gradient(135deg, var(--blue-mid), var(--navy));
  color: #fff;
  box-shadow: 0 8px 24px rgba(35,86,168,0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(35,86,168,0.5); }
.btn-outline {
  background: transparent;
  color: var(--blue);
  border: 2px solid var(--blue-mid);
}
.btn-outline:hover { background: var(--blue); color: #fff; transform: translateY(-2px); }
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy);
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(212,175,55,0.4);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(212,175,55,0.55); }
.btn-outline-light {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.5);
}
.btn-outline-light:hover { background: rgba(255,255,255,0.12); transform: translateY(-2px); }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 999;
  padding: 0.4rem 0;
  background: #ffffff;
  backdrop-filter: blur(20px);
  border-bottom: 3px solid var(--gold);
  box-shadow: 0 2px 20px rgba(15,36,71,0.1);
  transition: all 0.3s ease;
}
.navbar.scrolled { padding: 0.3rem 0; box-shadow: 0 4px 24px rgba(15,36,71,0.18); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.nav-logo { display: flex; align-items: center; gap: 0.75rem; text-decoration: none; }
.logo-icon { width: 48px; height: 48px; flex-shrink: 0; }
.logo-icon.small { width: 38px; height: 38px; }

/* Real logo image styles */
.nav-logo-img {
  height: 70px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.15));
  transition: transform 0.2s ease;
}
.nav-logo-img:hover { transform: scale(1.03); }
.footer-logo-img {
  height: 45px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1) drop-shadow(0 2px 4px rgba(0,0,0,0.4));
  margin-bottom: 0.5rem;
}
.about-logo-img {
  width: 160px;
  height: auto;
  object-fit: contain;
  margin-bottom: 0.5rem;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.3));
}
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-main { font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 700; color: #fff; }
.logo-sub { font-size: 0.7rem; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); }
.nav-links { display: flex; align-items: center; gap: 0.25rem; list-style: none; }
.nav-links a { color: var(--navy); text-decoration: none; font-size: 0.88rem; font-weight: 600; padding: 0.5rem 0.85rem; border-radius: 8px; transition: all 0.2s; }
.nav-links a:hover { color: var(--blue-mid); background: rgba(35,86,168,0.07); }
.nav-cta { background: linear-gradient(135deg, var(--navy), var(--blue-mid)) !important; color: #fff !important; font-weight: 700 !important; border-radius: 100px !important; padding: 0.5rem 1.2rem !important; }
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(35,86,168,0.35); background: var(--gold) !important; color: var(--navy) !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { width: 24px; height: 2px; background: var(--navy); border-radius: 2px; transition: all 0.3s; display: block; }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background: linear-gradient(135deg, #0a1628 0%, #0f2447 40%, #1a3a6b 70%, #0e203d 100%);
  overflow: hidden;
  padding-top: 80px;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: 
    radial-gradient(ellipse 800px 600px at 80% 30%, rgba(212,175,55,0.08) 0%, transparent 70%),
    radial-gradient(ellipse 600px 400px at 20% 70%, rgba(35,86,168,0.3) 0%, transparent 70%);
}
.hero-particles { position: absolute; inset: 0; pointer-events: none; }
.particle {
  position: absolute;
  border-radius: 50%;
  background: rgba(212,175,55,0.15);
  animation: float linear infinite;
}
@keyframes float {
  0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(-100px) rotate(720deg); opacity: 0; }
}
.hero-inner { position: relative; z-index: 1; text-align: center; padding: 3rem 0; }
.hero-badge {
  display: inline-block;
  background: rgba(212,175,55,0.15);
  border: 1px solid rgba(212,175,55,0.4);
  color: var(--gold-light);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.5rem 1.2rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
  animation: pulse-gold 2s ease-in-out infinite;
}
@keyframes pulse-gold { 0%,100% { box-shadow: 0 0 0 0 rgba(212,175,55,0.3); } 50% { box-shadow: 0 0 0 12px rgba(212,175,55,0); } }
.hero-title { font-family: 'Playfair Display', serif; font-size: clamp(2.2rem, 6vw, 4.5rem); color: #fff; line-height: 1.15; margin-bottom: 1.5rem; }
.hero-sub { font-size: clamp(1rem, 2vw, 1.2rem); color: rgba(255,255,255,0.75); max-width: 600px; margin: 0 auto 2.5rem; line-height: 1.7; }
.hero-sub strong { color: var(--gold-light); }
.hero-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 3.5rem; }
.hero-btns .btn-outline { color: #fff; border-color: rgba(255,255,255,0.4); }
.hero-btns .btn-outline:hover { background: rgba(255,255,255,0.1); }
.hero-stats { display: flex; align-items: center; justify-content: center; gap: 2rem; flex-wrap: wrap; }
.stat { text-align: center; }
.stat-num { display: block; font-size: 2rem; font-weight: 800; color: var(--gold-light); font-family: 'Playfair Display', serif; }
.stat-label { font-size: 0.78rem; color: rgba(255,255,255,0.6); letter-spacing: 0.5px; }
.stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.15); }
.hero-wave { position: absolute; bottom: 0; left: 0; right: 0; line-height: 0; }
.hero-wave svg { width: 100%; height: 80px; }
.animate-fade-up { animation: fadeUp 0.8s ease both; }
.animate-fade-up:nth-child(2) { animation-delay: 0.1s; }
.animate-fade-up:nth-child(3) { animation-delay: 0.2s; }
.animate-fade-up:nth-child(4) { animation-delay: 0.3s; }
.animate-fade-up:nth-child(5) { animation-delay: 0.4s; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }

/* ===== MARQUEE ===== */
.marquee-bar { background: linear-gradient(135deg, var(--gold), var(--gold-dark)); padding: 0.75rem 0; overflow: hidden; }
.marquee-track { display: flex; gap: 3rem; white-space: nowrap; animation: marquee 25s linear infinite; }
.marquee-track span { font-weight: 700; font-size: 0.88rem; color: var(--navy); letter-spacing: 0.5px; flex-shrink: 0; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ===== ABOUT ===== */
.about { background: var(--bg-light); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-visual { display: flex; flex-direction: column; gap: 1.5rem; align-items: center; }
.about-card.glass-card {
  background: #ffffff;
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  color: var(--navy);
  border: 2px solid rgba(212,175,55,0.4);
  box-shadow: var(--shadow-lg);
  width: 100%;
  max-width: 320px;
}
.about-card h3 { font-family: 'Playfair Display', serif; font-size: 1.3rem; color: var(--navy); margin: 0.75rem 0 0.3rem; }
.about-card p { color: var(--text-mid); font-size: 0.9rem; }
.about-highlight { display: flex; flex-direction: column; gap: 0.75rem; width: 100%; max-width: 320px; }
.highlight-item {
  display: flex; align-items: center; gap: 1rem;
  background: #fff; border-radius: 12px; padding: 1rem 1.25rem;
  box-shadow: 0 4px 16px rgba(15,36,71,0.08);
  border-left: 4px solid var(--gold);
}
.hi-icon { font-size: 1.5rem; }
.highlight-item strong { font-size: 0.9rem; color: var(--navy); display: block; }
.highlight-item small { color: var(--text-mid); font-size: 0.8rem; }
.about-content { display: flex; flex-direction: column; gap: 1rem; align-items: flex-start; }
.about-desc { color: var(--text-mid); line-height: 1.8; font-size: 1rem; }
.about-location {
  display: flex; align-items: flex-start; gap: 1rem;
  background: linear-gradient(135deg, #e8f0fe, #d0e4ff);
  border-radius: 12px; padding: 1.25rem; margin-top: 0.5rem;
  border: 1px solid rgba(35,86,168,0.15);
}
.loc-icon { font-size: 1.5rem; margin-top: 2px; }
.about-location strong { color: var(--navy); font-weight: 700; display: block; margin-bottom: 0.25rem; }
.about-location p { color: var(--text-mid); font-size: 0.9rem; line-height: 1.5; }

/* ===== COURSES ===== */
.courses { background: var(--white); }
.courses-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; }
.course-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  border: 1px solid rgba(15,36,71,0.08);
  box-shadow: 0 4px 24px rgba(15,36,71,0.06);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.course-card::before {
  content: '';
  position: absolute; inset: 0; opacity: 0;
  background: linear-gradient(135deg, rgba(35,86,168,0.03), rgba(212,175,55,0.03));
  transition: opacity 0.3s;
  pointer-events: none;
}
.course-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(35,86,168,0.2); }
.course-card:hover::before { opacity: 1; }
.featured-card { border-color: var(--gold); border-width: 2px; background: linear-gradient(135deg, #fff8e7, #fff); }
.featured-badge {
  position: absolute; top: 1rem; right: 1rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy); font-size: 0.72rem; font-weight: 700;
  padding: 0.3rem 0.8rem; border-radius: 100px;
}
.course-icon { width: 56px; height: 56px; border-radius: 16px; display: flex; align-items: center; justify-content: center; font-size: 1.6rem; margin-bottom: 1rem; }
.course-tag { font-size: 0.72rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--blue-mid); margin-bottom: 0.5rem; }
.course-card h3 { font-family: 'Playfair Display', serif; font-size: 1.2rem; color: var(--navy); margin-bottom: 0.5rem; }
.course-card p { font-size: 0.88rem; color: var(--text-mid); line-height: 1.6; margin-bottom: 1rem; }
.course-list { list-style: none; display: flex; flex-direction: column; gap: 0.35rem; margin-bottom: 1.5rem; }
.course-list li { font-size: 0.85rem; color: var(--text-mid); }
.course-btn {
  display: inline-block; padding: 0.6rem 1.4rem; border-radius: 100px;
  background: linear-gradient(135deg, var(--blue-mid), var(--navy));
  color: #fff; font-size: 0.85rem; font-weight: 600; text-decoration: none;
  transition: all 0.3s;
}
.course-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(35,86,168,0.35); }

/* ===== FEATURES ===== */
.features { position: relative; overflow: hidden; }
.features-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #0a1628, #0f2447, #1a3a6b, #0e203d);
}
.features .container { position: relative; z-index: 1; }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; }
.feature-item {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 2rem;
  transition: all 0.3s;
  position: relative;
  backdrop-filter: blur(10px);
}
.feature-item:hover { background: rgba(255,255,255,0.08); transform: translateY(-4px); border-color: rgba(212,175,55,0.3); }
.feature-num { font-size: 3.5rem; font-weight: 800; color: rgba(212,175,55,0.12); font-family: 'Playfair Display', serif; line-height: 1; margin-bottom: -0.5rem; }
.feature-icon { font-size: 2rem; margin-bottom: 0.75rem; }
.feature-item h3 { color: #fff; font-size: 1.1rem; font-weight: 700; margin-bottom: 0.5rem; }
.feature-item p { color: rgba(255,255,255,0.65); font-size: 0.9rem; line-height: 1.7; }

/* ===== ADMISSION CTA ===== */
.admission-cta { background: var(--bg-light); }
.cta-box {
  background: linear-gradient(135deg, var(--navy), var(--blue));
  border-radius: 24px;
  padding: 4rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(212,175,55,0.2);
}
.cta-glow {
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,175,55,0.15) 0%, transparent 70%);
  top: 50%; left: 50%; transform: translate(-50%, -50%);
}
.cta-content { position: relative; z-index: 1; }
.cta-badge { display: inline-block; background: rgba(212,175,55,0.2); border: 1px solid rgba(212,175,55,0.4); color: var(--gold-light); font-size: 0.85rem; font-weight: 600; padding: 0.4rem 1rem; border-radius: 100px; margin-bottom: 1rem; }
.cta-box h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.6rem, 3.5vw, 2.5rem); color: #fff; margin-bottom: 1rem; }
.cta-box p { color: rgba(255,255,255,0.7); max-width: 560px; margin: 0 auto 2rem; line-height: 1.7; }
.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ===== CONTACT ===== */
.contact { background: var(--white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.contact-card { display: flex; flex-direction: column; gap: 1rem; margin-top: 1.5rem; }
.contact-item { display: flex; align-items: flex-start; gap: 1rem; }
.ci-icon { font-size: 1.4rem; width: 44px; height: 44px; background: linear-gradient(135deg, #e8f0fe, #d0e4ff); border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-item strong { color: var(--navy); font-weight: 700; display: block; margin-bottom: 0.2rem; }
.contact-item p, .contact-item a { color: var(--text-mid); font-size: 0.92rem; text-decoration: none; line-height: 1.5; }
.contact-item a:hover { color: var(--blue-mid); }
.map-container { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.map-placeholder {
  height: 380px;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  display: flex; align-items: center; justify-content: center;
  border: 2px solid rgba(212,175,55,0.3);
  border-radius: var(--radius);
  position: relative; overflow: hidden;
}
.map-placeholder::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at center, rgba(212,175,55,0.1) 0%, transparent 70%);
}
.map-inner { text-align: center; color: #fff; position: relative; z-index: 1; }
.map-pin-anim { font-size: 3rem; display: block; animation: bounce 1.5s ease-in-out infinite; margin-bottom: 1rem; }
@keyframes bounce { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
.map-inner h3 { font-family: 'Playfair Display', serif; font-size: 1.4rem; color: var(--gold-light); margin-bottom: 0.3rem; }
.map-inner p { color: rgba(255,255,255,0.7); }
.map-inner .btn-outline { border-color: rgba(255,255,255,0.4); color: #fff; }

/* ===== FOOTER ===== */
.footer { background: var(--bg-dark); padding: 4rem 0 0; }
.footer-inner { display: grid; grid-template-columns: 1.5fr 1fr 1.5fr 1.5fr; gap: 3rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-brand .nav-logo { margin-bottom: 1rem; }
.footer-tagline { color: var(--gold-light); font-size: 0.85rem; font-weight: 600; letter-spacing: 1px; margin-bottom: 0.5rem; }
.footer-addr { color: rgba(255,255,255,0.5); font-size: 0.83rem; line-height: 1.6; }
.footer h4 { color: #fff; font-size: 0.95rem; font-weight: 700; margin-bottom: 1rem; }
.footer ul { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.footer ul li a { color: rgba(255,255,255,0.55); font-size: 0.88rem; text-decoration: none; transition: color 0.2s; }
.footer ul li a:hover { color: var(--gold-light); }
.footer-contact-col p { color: rgba(255,255,255,0.6); font-size: 0.88rem; line-height: 1.8; }
.footer-bottom { text-align: center; padding: 1.25rem; }
.footer-bottom p { color: rgba(255,255,255,0.35); font-size: 0.8rem; }

/* ===== ENQUIRY PAGE ===== */
.enquiry-hero {
  min-height: 46vh;
  background: linear-gradient(135deg, #0a1628, #0f2447, #1a3a6b);
  display: flex; align-items: center; padding-top: 100px; padding-bottom: 80px;
  position: relative; overflow: hidden;
}
.enquiry-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 600px 400px at 80% 50%, rgba(212,175,55,0.1) 0%, transparent 70%);
}
.enquiry-hero-inner { position: relative; z-index: 1; }
.enquiry-form-section { background: var(--bg-light); padding: 5rem 0; }
.enquiry-layout { display: grid; grid-template-columns: 1fr 1.6fr; gap: 4rem; align-items: start; }
.form-sidebar { display: flex; flex-direction: column; gap: 1.5rem; }
.sidebar-card {
  background: #fff; border-radius: var(--radius); padding: 1.5rem;
  border: 1px solid rgba(15,36,71,0.08);
  box-shadow: 0 4px 16px rgba(15,36,71,0.06);
}
.sidebar-card h4 { color: var(--navy); font-weight: 700; margin-bottom: 1rem; font-size: 1rem; display: flex; align-items: center; gap: 0.5rem; }
.sidebar-card ul { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.sidebar-card ul li { font-size: 0.88rem; color: var(--text-mid); display: flex; align-items: center; gap: 0.5rem; }
.sidebar-card ul li::before { content: '✓'; color: var(--blue-mid); font-weight: 700; }
.contact-shortcut { display: flex; flex-direction: column; gap: 0.75rem; }
.cs-item { display: flex; align-items: center; gap: 0.75rem; }
.cs-item .ci-icon { width: 38px; height: 38px; font-size: 1.1rem; }
.cs-item strong { display: block; font-size: 0.83rem; color: var(--navy); }
.cs-item span { font-size: 0.82rem; color: var(--text-mid); }

/* ===== FORM ===== */
.enquiry-form-card {
  background: #fff;
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(15,36,71,0.08);
}
.form-title { font-family: 'Playfair Display', serif; font-size: 1.6rem; color: var(--navy); margin-bottom: 0.4rem; }
.form-subtitle { color: var(--text-mid); font-size: 0.92rem; margin-bottom: 2rem; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { font-size: 0.83rem; font-weight: 600; color: var(--navy); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.8rem 1rem;
  border: 1.5px solid rgba(15,36,71,0.12);
  border-radius: 10px;
  font-size: 0.92rem;
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  background: var(--bg-light);
  transition: all 0.25s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue-mid);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(35,86,168,0.1);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-group select { cursor: pointer; }
.form-submit { margin-top: 1.5rem; }
.btn-submit {
  width: 100%;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, var(--blue-mid), var(--navy));
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  font-family: 'Inter', sans-serif;
}
.btn-submit:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(35,86,168,0.4); }
.btn-submit.loading { opacity: 0.75; pointer-events: none; }
.form-note { text-align: center; margin-top: 0.75rem; font-size: 0.8rem; color: var(--text-light); }

/* Success message */
.success-msg {
  display: none;
  background: #d4edda;
  border: 1px solid #c3e6cb;
  color: #155724;
  border-radius: 12px;
  padding: 1.25rem;
  text-align: center;
  margin-bottom: 1.5rem;
  font-weight: 600;
}
.success-msg.show { display: block; animation: fadeUp 0.4s ease; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .about-grid { gap: 3rem; }
  .enquiry-layout { gap: 2.5rem; }
}
@media (max-width: 900px) {
  .courses-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}
@media (max-width: 768px) {
  .nav-links {
    display: none; flex-direction: column;
    position: fixed; top: 80px; left: 0; right: 0;
    background: #fff;
    border-top: 2px solid var(--gold);
    border-bottom: 2px solid rgba(15,36,71,0.1);
    padding: 1rem 1.5rem 1.5rem;
    gap: 0.3rem;
    box-shadow: 0 8px 30px rgba(15,36,71,0.12);
  }
  .nav-links.open { display: flex; }
  .nav-links a { color: var(--navy); padding: 0.7rem 1rem; border-radius: 8px; font-size: 0.95rem; }
  .nav-links a:hover { background: rgba(35,86,168,0.08); }
  .nav-cta { background: linear-gradient(135deg, var(--navy), var(--blue-mid)) !important; color: #fff !important; text-align: center; border-radius: 10px !important; }
  .hamburger { display: flex; }
  .hamburger span { background: var(--navy); }
  .about-grid, .enquiry-layout { grid-template-columns: 1fr; gap: 2rem; }
  .hero-stats { gap: 1rem; }
  .stat-divider { display: none; }
  .stat-num { font-size: 1.6rem; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .form-grid { grid-template-columns: 1fr; }
  .cta-box { padding: 2.5rem 1.5rem; }
  .enquiry-layout { grid-template-columns: 1fr; }
  .hero-title { font-size: clamp(1.8rem, 6vw, 3rem); }
  .about-card.glass-card { max-width: 100%; }
  .about-highlight { max-width: 100%; }
}
@media (max-width: 580px) {
  .section-pad { padding: 3rem 0; }
  .courses-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 1.5rem; }
  .enquiry-form-card { padding: 1.5rem 1rem; }
  .cta-box { padding: 2rem 1rem; }
  .hero-stats { flex-direction: column; gap: 0.75rem; }
  .nav-logo-img { height: 55px; }
  .hero-btns { flex-direction: column; align-items: center; }
  .hero-btns .btn { width: 100%; justify-content: center; max-width: 280px; }
  .map-placeholder { height: 260px; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 380px) {
  .container { padding: 0 1rem; }
  .section-title { font-size: 1.5rem; }
  .enquiry-form-card { padding: 1.2rem 0.8rem; }
  .form-group input, .form-group select, .form-group textarea { font-size: 0.85rem; }
}
