/* ============================================
   KEY TECHNO PARK — Premium Blue/Gold Theme
   ============================================ */

:root {
  --navy: #0A1628;
  --navy-mid: #0D2347;
  --blue: #1A3A6B;
  --blue-light: #2755A4;
  --gold: #C9960C;
  --gold-light: #F0B429;
  --gold-pale: #FFF8E1;
  --white: #FFFFFF;
  --off-white: #F8F9FD;
  --light-gray: #EEF2F8;
  --text-dark: #0A1628;
  --text-mid: #3D5080;
  --text-soft: #6B7FA3;
  --green: #16A34A;
  --purple: #7C3AED;
  --orange: #EA580C;
  --red: #DC2626;
  --whatsapp: #25D366;
  --shadow-sm: 0 2px 8px rgba(10,22,40,0.08);
  --shadow-md: 0 8px 32px rgba(10,22,40,0.12);
  --shadow-lg: 0 20px 60px rgba(10,22,40,0.16);
  --radius: 16px;
  --radius-sm: 10px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--white);
  color: var(--text-dark);
  line-height: 1.6;
}

/* ---- UTILITY ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.gold-text { color: var(--gold-light); }
.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-pale);
  border: 1px solid rgba(201,150,12,0.3);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 48px;
}

/* ---- NAVBAR ---- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(10,22,40,0.08);
  transition: box-shadow 0.3s;
}
.navbar.scrolled { box-shadow: var(--shadow-md); }
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo-circle {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--blue), var(--navy));
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 20px; font-weight: 900;
  color: var(--gold-light);
  flex-shrink: 0;
}
.logo-title {
  display: block;
  font-size: 15px; font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
}
.logo-sub {
  display: block;
  font-size: 10px; font-weight: 500;
  color: var(--gold);
  letter-spacing: 1px;
  text-transform: uppercase;
}
.nav-links {
  display: flex; align-items: center; gap: 4px;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  font-size: 14px; font-weight: 500;
  color: var(--text-mid);
  padding: 8px 14px;
  border-radius: 8px;
  transition: all 0.2s;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--blue);
  background: var(--light-gray);
}
.nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-light)) !important;
  color: var(--navy) !important;
  font-weight: 700 !important;
  border-radius: 8px !important;
  padding: 8px 20px !important;
}
.nav-cta:hover { opacity: 0.9; transform: translateY(-1px); }
.hamburger {
  display: none;
  background: none; border: none;
  font-size: 22px; color: var(--navy); cursor: pointer;
}

/* ---- BUTTONS ---- */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  color: var(--white);
  padding: 14px 32px;
  border-radius: 10px;
  font-size: 15px; font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
  border: none; cursor: pointer;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(26,58,107,0.35); }
.btn-primary.small { padding: 10px 20px; font-size: 13px; }
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent;
  color: var(--blue);
  padding: 14px 32px;
  border-radius: 10px;
  font-size: 15px; font-weight: 600;
  text-decoration: none;
  border: 2px solid var(--blue);
  transition: all 0.2s;
}
.btn-outline:hover { background: var(--blue); color: white; }
.btn-gold {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
  padding: 14px 32px;
  border-radius: 10px;
  font-size: 15px; font-weight: 700;
  text-decoration: none;
  transition: all 0.2s;
  border: none; cursor: pointer;
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,150,12,0.35); }
.btn-whatsapp {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--whatsapp);
  color: white;
  padding: 14px 32px;
  border-radius: 10px;
  font-size: 15px; font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
}
.btn-whatsapp:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,211,102,0.35); }

/* ---- HERO ---- */
.hero {
  min-height: 100vh;
  background: linear-gradient(150deg, #F0F6FF 0%, #FAFBFF 40%, var(--gold-pale) 100%);
  display: flex; align-items: center;
  padding: 100px 24px 60px;
  position: relative;
  overflow: hidden;
  max-width: 1200px;
  margin: 0 auto;
}
.hero-bg-shapes { position: absolute; inset: 0; pointer-events: none; }
.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.06;
}
.shape1 {
  width: 600px; height: 600px;
  background: var(--blue);
  top: -200px; right: -200px;
}
.shape2 {
  width: 400px; height: 400px;
  background: var(--gold);
  bottom: -150px; left: -100px;
}
.hero-content { flex: 1; max-width: 620px; position: relative; z-index: 2; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
  font-size: 13px; font-weight: 700;
  padding: 8px 18px;
  border-radius: 100px;
  margin-bottom: 24px;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(44px, 7vw, 80px);
  font-weight: 900;
  line-height: 1.05;
  color: var(--navy);
  margin-bottom: 20px;
}
.hero-subtitle {
  font-size: 17px;
  color: var(--text-mid);
  margin-bottom: 28px;
  line-height: 1.6;
}
.hero-free-badge {
  display: inline-flex; align-items: center; gap: 12px;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  color: white;
  padding: 14px 24px;
  border-radius: 12px;
  font-size: 14px;
  margin-bottom: 36px;
  border-left: 4px solid var(--gold-light);
}
.hero-free-badge i { color: var(--gold-light); font-size: 20px; }
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-stats {
  display: flex; align-items: center; gap: 24px;
  padding: 20px 24px;
  background: white;
  border-radius: 14px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--light-gray);
  width: fit-content;
}
.stat { text-align: center; }
.stat-num { display: block; font-size: 18px; font-weight: 800; color: var(--navy); }
.stat-label { display: block; font-size: 11px; color: var(--text-soft); font-weight: 500; }
.stat-divider { width: 1px; height: 36px; background: var(--light-gray); }

.hero-image-area {
  flex: 1;
  display: flex; align-items: center; justify-content: center;
  position: relative; z-index: 2;
}
.hero-emblem {
  position: relative;
  display: flex; align-items: center; justify-content: center;
}
.emblem-ring {
  width: 280px; height: 280px;
  border: 3px solid transparent;
  background: linear-gradient(white, white) padding-box,
              linear-gradient(135deg, var(--gold), var(--blue)) border-box;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 60px rgba(201,150,12,0.2), var(--shadow-lg);
}
.emblem-inner {
  width: 220px; height: 220px;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  border-radius: 50%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 8px;
}
.emblem-inner i { font-size: 56px; color: var(--gold-light); }
.emblem-inner span {
  font-family: 'Playfair Display', serif;
  font-size: 28px; font-weight: 900;
  color: var(--gold-light);
  letter-spacing: 4px;
}
.hero-card {
  position: absolute;
  top: 30px; right: 20px;
  background: white;
  border: 2px solid var(--gold-light);
  border-radius: 12px;
  padding: 12px 20px;
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; font-weight: 600; color: var(--navy);
  box-shadow: var(--shadow-md);
}
.hero-card i { font-size: 20px; }
.floating { animation: float 3s ease-in-out infinite; }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ---- HIGHLIGHTS SECTION ---- */
.highlights-section { background: var(--off-white); }
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.highlight-card {
  background: white;
  border-radius: var(--radius);
  padding: 32px;
  border: 1px solid var(--light-gray);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s;
  cursor: pointer;
  position: relative;
}
.highlight-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--blue-light);
}
.hcard-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; color: white;
  margin-bottom: 20px;
}
.blue-bg { background: linear-gradient(135deg, var(--blue), var(--blue-light)); }
.green-bg { background: linear-gradient(135deg, #16A34A, #22C55E); }
.purple-bg { background: linear-gradient(135deg, #7C3AED, #A855F7); }
.orange-bg { background: linear-gradient(135deg, #EA580C, #F97316); }
.red-bg { background: linear-gradient(135deg, #DC2626, #EF4444); }
.highlight-card h3 { font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.highlight-card p { font-size: 14px; color: var(--text-soft); line-height: 1.6; }
.hcard-arrow {
  position: absolute; top: 32px; right: 32px;
  width: 32px; height: 32px;
  background: var(--light-gray);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; color: var(--text-soft);
  transition: all 0.2s;
}
.highlight-card:hover .hcard-arrow {
  background: var(--blue); color: white;
}
.free-card {
  background: linear-gradient(135deg, var(--navy), var(--blue));
  border-color: var(--gold) !important;
}
.free-card h3 { color: white; }
.free-card p { color: rgba(255,255,255,0.7); }
.free-badge-big {
  font-size: 28px; font-weight: 900;
  color: var(--gold-light);
  margin-bottom: 12px;
}
.free-badge-big i { margin-right: 6px; }

/* ---- WHY SECTION ---- */
.why-section { background: white; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.why-card {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  border: 1px solid var(--light-gray);
  transition: all 0.3s;
}
.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.why-icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; color: var(--gold-light);
  margin: 0 auto 20px;
}
.why-card h4 { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.why-card p { font-size: 14px; color: var(--text-soft); }

/* ---- TUTOR CTA ---- */
.tutor-cta-section { background: var(--off-white); padding: 60px 0; }
.tutor-cta-box {
  background: linear-gradient(135deg, var(--navy), var(--blue));
  border-radius: 20px;
  padding: 40px 48px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px;
  border: 1px solid rgba(201,150,12,0.3);
}
.tutor-cta-text h3 { font-size: 24px; font-weight: 700; color: white; margin-bottom: 8px; }
.tutor-cta-text p { font-size: 15px; color: rgba(255,255,255,0.75); max-width: 500px; }

/* ---- COMPETITION BANNER ---- */
.competition-banner { background: var(--gold-pale); padding: 60px 0; }
.comp-banner-inner {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 20px;
  padding: 40px 48px;
  display: flex; align-items: center; gap: 24px;
}
.trophy-icon { font-size: 48px; color: var(--navy); }
.comp-banner-text { flex: 1; }
.comp-banner-text h3 { font-size: 24px; font-weight: 800; color: var(--navy); margin-bottom: 6px; }
.comp-banner-text p { font-size: 15px; color: rgba(10,22,40,0.75); }

/* ---- FOOTER ---- */
.footer { background: var(--navy); padding: 64px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 2fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand p { font-size: 14px; color: rgba(255,255,255,0.6); margin-top: 16px; line-height: 1.6; }
.footer-brand .nav-logo { text-decoration: none; }
.footer-brand .logo-title { color: white; }
.footer-links h4, .footer-contact h4 { 
  font-size: 14px; font-weight: 700; 
  color: var(--gold-light); 
  margin-bottom: 20px;
  text-transform: uppercase; letter-spacing: 1px;
}
.footer-links ul { list-style: none; }
.footer-links ul li { margin-bottom: 10px; }
.footer-links ul li a { 
  text-decoration: none; 
  color: rgba(255,255,255,0.65); 
  font-size: 14px;
  transition: color 0.2s;
}
.footer-links ul li a:hover { color: var(--gold-light); }
.footer-contact p { 
  font-size: 14px; 
  color: rgba(255,255,255,0.65); 
  margin-bottom: 10px;
  display: flex; gap: 10px;
}
.footer-contact p i { color: var(--gold-light); margin-top: 2px; flex-shrink: 0; }
.footer-contact a { color: rgba(255,255,255,0.65); text-decoration: none; }
.footer-contact a:hover { color: var(--gold-light); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 0;
}
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.4); }
.footer-social a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  color: white; font-size: 16px;
  text-decoration: none;
  transition: all 0.2s;
}
.footer-social a:hover { background: var(--whatsapp); }

/* ============================================
   COURSES PAGE
   ============================================ */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  padding: 130px 24px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 60px;
  background: var(--off-white);
  clip-path: ellipse(55% 100% at 50% 100%);
}
.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 900;
  color: white;
  margin-bottom: 16px;
}
.page-hero p { font-size: 17px; color: rgba(255,255,255,0.8); }

.courses-section { background: var(--off-white); }
.course-category {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--light-gray);
  box-shadow: var(--shadow-sm);
  margin-bottom: 32px;
}
.course-category-header {
  display: flex; align-items: center; gap: 20px;
  padding: 28px 36px;
  border-bottom: 1px solid var(--light-gray);
}
.cat-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; color: white;
  flex-shrink: 0;
}
.course-category-header h2 { font-size: 22px; font-weight: 700; color: var(--navy); }
.course-category-header p { font-size: 14px; color: var(--text-soft); }
.course-items { 
  display: grid; 
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 0;
}
.course-item {
  padding: 20px 28px;
  border-right: 1px solid var(--light-gray);
  border-bottom: 1px solid var(--light-gray);
  display: flex; align-items: center; gap: 12px;
  transition: background 0.2s;
}
.course-item:hover { background: var(--off-white); }
.course-item i { color: var(--gold); font-size: 16px; }
.course-item span { font-size: 14px; font-weight: 500; color: var(--text-dark); }

.tuition-subjects {
  display: flex; flex-wrap: wrap; gap: 12px;
  padding: 28px 36px;
}
.subject-chip {
  display: flex; align-items: center; gap: 8px;
  background: var(--light-gray);
  border-radius: 100px;
  padding: 8px 16px;
  font-size: 14px; font-weight: 500; color: var(--navy);
}
.subject-chip i { color: var(--blue-light); }

.need-tutor-bar {
  background: linear-gradient(135deg, var(--navy), var(--blue));
  padding: 40px;
  text-align: center;
  border-radius: 20px;
  margin-top: 48px;
}
.need-tutor-bar h3 { font-size: 22px; font-weight: 700; color: white; margin-bottom: 8px; }
.need-tutor-bar p { color: rgba(255,255,255,0.7); margin-bottom: 24px; }

/* ============================================
   COMPETITION PAGE
   ============================================ */
.competition-section { background: var(--off-white); }
.comp-steps {
  display: flex; align-items: center; justify-content: center; gap: 0;
  margin-bottom: 60px;
}
.comp-step {
  display: flex; flex-direction: column; align-items: center;
  flex: 1; max-width: 200px;
}
.step-circle {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: white;
  border: 2px solid var(--light-gray);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; font-weight: 800; color: var(--text-soft);
  margin-bottom: 12px;
  transition: all 0.3s;
}
.step-circle.active { 
  background: linear-gradient(135deg, var(--blue), var(--blue-light)); 
  border-color: var(--blue); color: white; 
}
.step-circle.done { 
  background: linear-gradient(135deg, var(--gold), var(--gold-light)); 
  border-color: var(--gold); color: var(--navy); 
}
.step-label { font-size: 13px; font-weight: 600; color: var(--text-mid); text-align: center; }
.step-connector { flex: 1; height: 2px; background: var(--light-gray); max-width: 80px; margin-bottom: 28px; }
.step-connector.done { background: var(--gold-light); }

.comp-panel {
  background: white;
  border-radius: 20px;
  border: 1px solid var(--light-gray);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.comp-panel-header {
  background: linear-gradient(135deg, var(--navy), var(--blue));
  padding: 32px 40px;
}
.comp-panel-header h2 { 
  font-family: 'Playfair Display', serif;
  font-size: 26px; font-weight: 700; color: white; 
  margin-bottom: 6px;
}
.comp-panel-header p { color: rgba(255,255,255,0.75); font-size: 15px; }
.comp-panel-body { padding: 40px; }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { font-size: 13px; font-weight: 600; color: var(--navy); }
.form-group input, .form-group select, .form-group textarea {
  padding: 13px 16px;
  border: 1.5px solid var(--light-gray);
  border-radius: 10px;
  font-size: 15px; font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  background: var(--off-white);
  transition: all 0.2s;
  outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--blue-light);
  background: white;
  box-shadow: 0 0 0 3px rgba(39,85,164,0.1);
}
.form-group textarea { resize: vertical; min-height: 100px; }

.upload-area {
  border: 2px dashed var(--blue-light);
  border-radius: 12px;
  padding: 40px;
  text-align: center;
  background: #F0F6FF;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
}
.upload-area:hover { background: #E3EEFF; border-color: var(--blue); }
.upload-area input[type="file"] {
  position: absolute; inset: 0; opacity: 0; cursor: pointer;
  width: 100%; height: 100%;
}
.upload-icon { font-size: 40px; color: var(--blue-light); margin-bottom: 12px; }
.upload-area h4 { font-size: 16px; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.upload-area p { font-size: 13px; color: var(--text-soft); }
.upload-preview { margin-top: 16px; display: none; }
.upload-preview-item {
  display: flex; align-items: center; gap: 12px;
  background: white; border-radius: 10px; padding: 12px 16px;
  border: 1px solid var(--light-gray);
}
.upload-preview-item i { color: var(--blue-light); font-size: 20px; }
.upload-preview-item span { font-size: 13px; font-weight: 500; color: var(--navy); flex: 1; }

.success-box {
  display: none;
  background: linear-gradient(135deg, #F0FDF4, #DCFCE7);
  border: 2px solid #16A34A;
  border-radius: 16px;
  padding: 40px;
  text-align: center;
}
.success-box i { font-size: 48px; color: #16A34A; margin-bottom: 16px; display: block; }
.success-box h3 { font-size: 22px; font-weight: 700; color: #15803D; margin-bottom: 8px; }
.success-box p { font-size: 15px; color: #166534; }

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-section { background: var(--off-white); }
.about-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; margin-bottom: 80px; }
.about-image-area {
  background: linear-gradient(135deg, var(--navy), var(--blue));
  border-radius: 24px;
  padding: 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.about-image-area::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.about-emblem-large {
  font-size: 80px; color: var(--gold-light);
  margin-bottom: 20px;
}
.about-image-area h3 { font-family: 'Playfair Display', serif; font-size: 28px; color: white; font-weight: 700; }
.about-image-area p { color: rgba(255,255,255,0.7); margin-top: 8px; }
.about-numbers { display: flex; justify-content: center; gap: 32px; margin-top: 32px; }
.about-num { text-align: center; }
.about-num span { display: block; font-size: 28px; font-weight: 800; color: var(--gold-light); }
.about-num small { font-size: 12px; color: rgba(255,255,255,0.6); }

.about-content .section-label { display: inline-block; }
.about-content .section-title { margin-bottom: 24px; }
.about-content p { font-size: 16px; color: var(--text-mid); line-height: 1.8; margin-bottom: 20px; }

.values-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 32px; }
.value-card {
  background: white;
  border-radius: 14px;
  padding: 24px;
  border: 1px solid var(--light-gray);
  display: flex; gap: 16px;
}
.value-icon { font-size: 24px; color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.value-card h4 { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.value-card p { font-size: 13px; color: var(--text-soft); }

.faculty-section { margin-top: 80px; }
.faculty-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.faculty-card {
  background: white;
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  border: 1px solid var(--light-gray);
  box-shadow: var(--shadow-sm);
}
.faculty-avatar {
  width: 72px; height: 72px;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; color: var(--gold-light);
  margin: 0 auto 16px;
}
.faculty-card h4 { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.faculty-card .role { font-size: 13px; color: var(--gold); font-weight: 600; margin-bottom: 8px; }
.faculty-card p { font-size: 13px; color: var(--text-soft); }

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-section { background: var(--off-white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 48px; }
.contact-info-card {
  background: linear-gradient(135deg, var(--navy), var(--blue));
  border-radius: 20px;
  padding: 40px;
  height: fit-content;
}
.contact-info-card h3 { font-size: 22px; font-weight: 700; color: white; margin-bottom: 32px; }
.contact-info-item {
  display: flex; gap: 16px;
  margin-bottom: 28px;
}
.contact-info-icon {
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.1);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: var(--gold-light);
  flex-shrink: 0;
}
.contact-info-text { }
.contact-info-text label { display: block; font-size: 11px; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; }
.contact-info-text a, .contact-info-text p { color: white; font-size: 15px; font-weight: 500; text-decoration: none; display: block; }
.contact-info-text a:hover { color: var(--gold-light); }
.contact-wa-btn { margin-top: 32px; }

.contact-form-card {
  background: white;
  border-radius: 20px;
  padding: 40px;
  border: 1px solid var(--light-gray);
  box-shadow: var(--shadow-sm);
}
.contact-form-card h3 { font-size: 22px; font-weight: 700; color: var(--navy); margin-bottom: 28px; }
.map-embed {
  margin-top: 48px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--light-gray);
  box-shadow: var(--shadow-sm);
}
.map-embed iframe { width: 100%; height: 350px; border: none; display: block; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 900px) {
  .hero { flex-direction: column; gap: 40px; min-height: auto; padding-top: 90px; }
  .hero-image-area { display: none; }
  .highlights-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .about-intro { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .faculty-grid { grid-template-columns: repeat(2, 1fr); }
  .form-grid { grid-template-columns: 1fr; }
  .tutor-cta-box { flex-direction: column; text-align: center; }
  .comp-banner-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 600px) {
  .highlights-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; gap: 12px; }
  .stat-divider { width: 80px; height: 1px; }
  .nav-links { 
    display: none; 
    position: fixed; 
    top: 70px; left: 0; right: 0;
    background: white; 
    flex-direction: column; 
    padding: 16px;
    border-bottom: 1px solid var(--light-gray);
    box-shadow: var(--shadow-md);
    gap: 4px;
  }
  .nav-links.open { display: flex; }
  .hamburger { display: block; }
  .values-grid { grid-template-columns: 1fr; }
  .faculty-grid { grid-template-columns: 1fr; }
  .comp-panel-body { padding: 24px; }
  .footer-grid { grid-template-columns: 1fr; }
  .comp-steps { flex-wrap: wrap; gap: 16px; }
  .step-connector { display: none; }
}

/* ---- Toast Notification ---- */
.toast {
  position: fixed;
  bottom: 24px; right: 24px;
  background: var(--navy);
  color: white;
  padding: 16px 24px;
  border-radius: 12px;
  font-size: 14px; font-weight: 500;
  box-shadow: var(--shadow-lg);
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.3s;
  z-index: 9999;
  display: flex; align-items: center; gap: 10px;
  max-width: 340px;
}
.toast.show { transform: translateY(0); opacity: 1; }
.toast i { color: var(--gold-light); font-size: 18px; }
