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

:root, [data-theme="dark"] {
  --primary: #3B1F8C;
  --primary-dark: #1A0F3C;
  --primary-light: #6B3FD4;
  --gold: #F5B042;
  --gold-light: #FFD166;
  --dark-bg: #0A0817;
  --dark-card: #120F2B;
  --dark-surface: #1A1540;
  --text-light: #E8E4F8;
  --text-muted: #9B97B8;
  --rose: #F43F5E;
  --teal: #06B6D4;
  --emerald: #10B981;
  --grad-gold: linear-gradient(135deg, #F5B042, #FFD166);
  --grad-purple: linear-gradient(135deg, #2D1B69, #6B3FD4, #8B5CF6);
  --grad-dark: linear-gradient(135deg, #0A0817, #1A0F3C, #120F2B);
  --grad-hero: linear-gradient(135deg, rgba(10,8,23,0.92), rgba(45,27,105,0.85), rgba(10,8,23,0.8));
  --glass-bg: rgba(255,255,255,0.06);
  --glass-border: rgba(255,255,255,0.10);
  --glass-shadow: 0 8px 32px rgba(0,0,0,0.3);
  --shadow-sm: 0 4px 20px rgba(0,0,0,0.3);
  --shadow-md: 0 10px 40px rgba(0,0,0,0.35);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.4);
  --shadow-xl: 0 30px 80px rgba(0,0,0,0.5);
  --shadow-gold: 0 0 20px rgba(245,176,66,0.15);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --radius-xl: 36px;
  --transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-spring: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

[data-theme="light"] {
  --primary-dark: #4A2FA8;
  --dark-bg: #F5F3FA;
  --dark-card: #FFFFFF;
  --dark-surface: #EDE9F5;
  --text-light: #1E1647;
  --text-muted: #6B6390;
  --glass-bg: rgba(0,0,0,0.03);
  --glass-border: rgba(0,0,0,0.06);
  --glass-shadow: 0 8px 32px rgba(0,0,0,0.06);
  --shadow-sm: 0 4px 20px rgba(0,0,0,0.05);
  --shadow-md: 0 10px 40px rgba(0,0,0,0.07);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.09);
  --shadow-xl: 0 30px 80px rgba(0,0,0,0.11);
  --shadow-gold: 0 0 20px rgba(245,176,66,0.2);
}
/* ---- Light theme overrides for text & borders ---- */
[data-theme="light"] body { background: var(--dark-bg); color: var(--text-light); }
[data-theme="light"] ::-webkit-scrollbar-track { background: var(--dark-bg); }
[data-theme="light"] #preloader { background: var(--dark-bg); }
[data-theme="light"] .preloader-ring { border-color: rgba(0,0,0,0.05); border-top-color: var(--gold); }
[data-theme="light"] .header { background: rgba(255,255,255,0.92); border-bottom: 1px solid rgba(0,0,0,0.06); }
[data-theme="light"] .header.scrolled { background: rgba(255,255,255,0.98); box-shadow: 0 4px 30px rgba(0,0,0,0.08); }
[data-theme="light"] .header .nav-link { color: var(--text-light) !important; }
[data-theme="light"] .logo-text .school-name { color: var(--primary-dark); }
[data-theme="light"] .logo-text .motto { color: var(--text-muted); }
[data-theme="light"] .navbar-toggler.text-white { color: var(--text-light) !important; }
[data-theme="light"] .theme-toggle { color: var(--text-light); }
[data-theme="light"] .theme-toggle:hover { background: rgba(0,0,0,0.06); }
/* Hero section */
[data-theme="light"] .hero-overlay { background: linear-gradient(135deg, rgba(10,8,23,0.75), rgba(45,27,105,0.6), rgba(10,8,23,0.7)); }
[data-theme="light"] .hero-text h1 { color: #fff; text-shadow: 0 2px 30px rgba(0,0,0,0.3); }
[data-theme="light"] .hero-text .lead { color: rgba(255,255,255,0.7); }
[data-theme="light"] .hero-scroll-indicator span { color: rgba(255,255,255,0.3); }
[data-theme="light"] .hero-scroll-indicator .scroll-mouse { border-color: rgba(255,255,255,0.15); }
[data-theme="light"] .hero-badge { background: rgba(245,176,66,0.2); color: #fff; border-color: rgba(245,176,66,0.4); }
/* Section backgrounds - different colors for each in light theme */
[data-theme="light"] .stats-section { background: #EDE9F5; }
[data-theme="light"] .about-section { background: #FFFFFF; }
[data-theme="light"] .about-section .lead { color: var(--text-light); }
[data-theme="light"] .vision-section { background: #F5F0FF; }
[data-theme="light"] .leadership-section { background: #EDE9F5; }
[data-theme="light"] .principal-section { background: #F8F4E8; }
[data-theme="light"] .academics-section { background: #FFFFFF; }
[data-theme="light"] .academics-section .lead { color: var(--text-light); }
[data-theme="light"] .campus-section { background: #F0ECF8; }
[data-theme="light"] .infra-section { background: #F5F3FA; }
[data-theme="light"] .green-section { background: #F0F8F0; }
[data-theme="light"] .events-section { background: #FFF5F5; }
[data-theme="light"] .achievements-section { background: #EDE9F5; }
[data-theme="light"] .testimonials-section { background: #FFFFFF; }
[data-theme="light"] .faq-section { background: #F5F3FA; }
[data-theme="light"] .downloads-section { background: #EDE9F5; }
[data-theme="light"] .footer-section { border-top: 1px solid rgba(0,0,0,0.06); }
[data-theme="light"] .footer-section .text-white-50 { color: var(--text-muted) !important; }
/* Cards & surfaces */
[data-theme="light"] .stat-card { background: var(--dark-card); border: 1px solid rgba(0,0,0,0.06); }
[data-theme="light"] .stat-label { color: var(--text-muted); }
[data-theme="light"] .vision-card { background: var(--dark-card); border: 1px solid rgba(0,0,0,0.06); }
[data-theme="light"] .vision-card p { color: var(--text-muted); }
[data-theme="light"] .philosophy-list li { color: var(--text-muted); border-bottom: 1px solid rgba(0,0,0,0.04); }
[data-theme="light"] .msg-card { background: var(--dark-card); border: 1px solid rgba(0,0,0,0.06); }
[data-theme="light"] .infra-card { background: var(--dark-card); border: 1px solid rgba(0,0,0,0.06); }
[data-theme="light"] .infra-card .content h4 { color: var(--primary-dark); }
[data-theme="light"] .infra-card .content p { color: var(--text-muted); }
[data-theme="light"] .event-card { background: var(--dark-card); border: 1px solid rgba(0,0,0,0.06); }
[data-theme="light"] .testimonial-card { background: var(--dark-card); border: 1px solid rgba(0,0,0,0.06); }
[data-theme="light"] .achieve-card { background: var(--dark-card); border: 1px solid rgba(0,0,0,0.06); }
[data-theme="light"] .achieve-card h5 { color: var(--text-light); }
[data-theme="light"] .green-list li { color: var(--text-muted); border-bottom: 1px solid rgba(0,0,0,0.04); }
[data-theme="light"] .academic-point { color: var(--text-light); border-bottom: 1px solid rgba(0,0,0,0.04); }
[data-theme="light"] .academics-section .lead { color: var(--text-light); }
/* News ticker */
[data-theme="light"] .news-ticker { background: var(--dark-card); border: 1px solid rgba(0,0,0,0.06); }
[data-theme="light"] .news-item { color: var(--text-light); }
/* Accordion */
[data-theme="light"] .accordion-item { background: var(--dark-card); border: 1px solid rgba(0,0,0,0.06); }
[data-theme="light"] .accordion-button { background: var(--dark-card); color: var(--text-light); }
[data-theme="light"] .accordion-button:not(.collapsed) { background: var(--dark-surface); color: var(--gold); }
[data-theme="light"] .accordion-body { background: var(--dark-card); color: var(--text-muted); }
/* Modals */
[data-theme="light"] .modal-content { background: var(--dark-card); color: var(--text-light); }
[data-theme="light"] .modal-header { border-bottom: 1px solid rgba(0,0,0,0.06); }
[data-theme="light"] .btn-close { filter: none; }
/* Page content */
[data-theme="light"] .page-content { background: var(--dark-bg); }
[data-theme="light"] .page-content .card { background: var(--dark-card); border: 1px solid rgba(0,0,0,0.06); color: var(--text-light); }
[data-theme="light"] .page-content .table-dark { background: var(--dark-card) !important; }
[data-theme="light"] .page-content .table th { color: var(--primary-dark); border-color: rgba(0,0,0,0.06); }
[data-theme="light"] .page-content .table td { border-color: rgba(0,0,0,0.06); }
[data-theme="light"] .page-content .list-group-item { background: var(--dark-card); border-color: rgba(0,0,0,0.06); color: var(--text-muted); }
[data-theme="light"] .page-content .form-control,
[data-theme="light"] .page-content .form-select { background: var(--dark-card); border: 1.5px solid rgba(0,0,0,0.25); color: var(--text-light); }
[data-theme="light"] .page-content .bg-light { background: var(--dark-surface) !important; }
/* Sub-page hero stays dark so text is readable */
[data-theme="light"] .page-hero { background: linear-gradient(135deg, var(--primary-dark), #2D1B69) !important; }
[data-theme="light"] .page-hero,
[data-theme="light"] .page-hero h1,
[data-theme="light"] .page-hero .breadcrumb .active,
[data-theme="light"] .page-hero .lead { color: #fff !important; }
[data-theme="light"] .page-hero + .page-content .text-white-50 { color: var(--text-muted) !important; }
/* Slick dots */
[data-theme="light"] .slick-dots li button:before { color: rgba(0,0,0,0.2) !important; }
/* WhatsApp */
[data-theme="light"] .btn-whatsapp { box-shadow: 0 6px 25px rgba(37,211,102,0.2); }

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--dark-bg);
  color: var(--text-light);
  overflow-x: hidden;
  scroll-behavior: smooth;
  line-height: 1.7;
}

::selection { background: var(--gold); color: var(--primary-dark); }

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--dark-bg); }
::-webkit-scrollbar-thumb { background: var(--primary-light); border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

#preloader {
  position: fixed; inset: 0; z-index: 99999;
  background: var(--dark-bg);
  display: flex; align-items: center; justify-content: center; flex-direction: column;
  transition: opacity 0.6s, visibility 0.6s;
}
#preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader-ring { width: 90px; height: 90px; border-radius: 50%; border: 4px solid rgba(255,255,255,0.05); border-top-color: var(--gold); animation: preloaderSpin 1s linear infinite; display: flex; align-items: center; justify-content: center; margin-bottom: 24px; }
.preloader-ring-inner { width: 60px; height: 60px; border-radius: 50%; border: 3px solid transparent; border-bottom-color: var(--gold-light); animation: preloaderSpin 0.7s linear infinite reverse; }
.preloader-text { color: var(--gold); font-weight: 800; font-size: 1.2rem; letter-spacing: 3px; }
.preloader-bar { width: 220px; height: 3px; background: rgba(255,255,255,0.06); border-radius: 4px; margin-top: 20px; overflow: hidden; position: relative; }
.preloader-bar span { display: block; height: 100%; width: 0; background: var(--grad-gold); border-radius: 4px; animation: preloaderFill 1.5s ease-in-out forwards; }
@keyframes preloaderSpin { to { transform: rotate(360deg); } }
@keyframes preloaderFill { 0% { width: 0; } 100% { width: 100%; } }

#scrollProgress { position: fixed; top: 0; left: 0; height: 3px; background: var(--grad-gold); z-index: 9999; width: 0%; transition: width 0.05s linear; }

#particles-canvas { position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: 0; pointer-events: none; opacity: 0.4; }

h1, h2, h3, h4, h5, h6 { font-weight: 800; letter-spacing: -0.02em; line-height: 1.2; }

h2 {
  font-size: 2.6rem;
  background: linear-gradient(135deg, var(--gold), #FFE28A, var(--gold-light));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
}

.block-title { text-align: center; margin-bottom: 3rem; }
.block-title h2:after {
  content: ''; display: block; width: 80px; height: 4px;
  background: var(--grad-gold); margin: 16px auto 0; border-radius: 4px;
  box-shadow: 0 0 12px rgba(245,176,66,0.4);
}
.block-title .subtitle { color: var(--text-muted); font-size: 1.1rem; margin-top: 10px; font-weight: 400; }

section { position: relative; z-index: 1; padding-top: 6rem; padding-bottom: 6rem; }
section > .container { position: relative; z-index: 2; }

/* ===== HEADER / NAVBAR ===== */
.header {
  background: transparent;
  padding: 16px 0;
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1030;
  transition: var(--transition);
}
.header.scrolled {
  background: rgba(10,8,23,0.95);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}
.header.hide-header { transform: translateY(-100%); }

.logo-container {
  display: flex; align-items: center; gap: 14px;
  padding: 6px 0;
  transition: var(--transition);
}
.logo-icon {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--grad-purple);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 15px rgba(245,176,66,0.2);
  transition: var(--transition); flex-shrink: 0;
  overflow: hidden;
}
.logo-icon img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.logo-text { line-height: 1.2; }
.logo-text .school-name { font-size: 1.25rem; font-weight: 800; color: var(--text-light); letter-spacing: -0.3px; }
.logo-text .school-name span { color: var(--gold); }
.logo-text .location { font-size: 0.65rem; color: var(--text-muted); letter-spacing: 2px; text-transform: uppercase; }
.logo-text .motto { font-size: 0.6rem; font-style: italic; color: rgba(255,255,255,0.4); }
.header.scrolled .logo-icon { width: 38px; height: 38px; }
.header.scrolled .logo-text .school-name { font-size: 1.1rem; }

.header .nav-link {
  color: rgba(255,255,255,0.85) !important; font-weight: 600; margin: 0 10px;
  transition: var(--transition); position: relative;
  font-size: 0.9rem; letter-spacing: 0.3px;
}
.header .nav-link::after {
  content: ''; position: absolute; bottom: 0; left: 50%;
  width: 0; height: 2px; background: var(--grad-gold);
  transition: var(--transition); transform: translateX(-50%); border-radius: 2px;
}
.header .nav-link:hover::after { width: 80%; }
.header .nav-link:hover { color: var(--gold) !important; }
.header .nav-link.active-link { color: var(--gold) !important; }
.header .nav-link.active-link::after { width: 80%; }

.theme-toggle {
  background: none; border: none; color: var(--gold); font-size: 1.2rem;
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: var(--transition);
}
.theme-toggle:hover { background: rgba(255,255,255,0.08); }

.navbar-toggler { padding: 0; width: 40px; height: 40px; position: relative; }
.navbar-toggler-icon-custom {
  display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 5px;
  width: 24px; height: 18px; position: relative;
}
.navbar-toggler-icon-custom span {
  display: block; width: 100%; height: 2px; background: var(--gold);
  border-radius: 4px; transition: var(--transition-spring);
}
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon-custom span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon-custom span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon-custom span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.btn-gold {
  background: var(--grad-gold); color: var(--primary-dark); font-weight: 800;
  border-radius: 50px; padding: 12px 30px; transition: var(--transition-spring);
  border: none; position: relative; overflow: hidden;
  font-size: 0.9rem; letter-spacing: 0.5px;
}
.btn-gold:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 12px 35px rgba(245,176,66,0.35); }
.btn-gold:active { transform: scale(0.96); }

.btn-outline-gold {
  border: 2px solid var(--gold); background: transparent; color: var(--gold);
  border-radius: 50px; padding: 12px 30px; transition: var(--transition-spring);
  font-weight: 700; font-size: 0.9rem;
}
.btn-outline-gold:hover { background: var(--gold); color: var(--primary-dark); transform: translateY(-3px); box-shadow: 0 12px 35px rgba(245,176,66,0.2); }

/* ===== HERO ===== */
.hero-section {
  position: relative; height: 100vh; min-height: 600px; overflow: hidden;
  background: var(--dark-bg);
}
.hero-canvas-bg { position: absolute; inset: 0; z-index: 0; }
.hero-slides-wrapper { position: absolute; inset: 0; z-index: 1; }
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1.5s ease;
}
.hero-slide.active { opacity: 1; }
.hero-slide::after {
  content: ''; position: absolute; inset: 0;
  background: var(--grad-hero);
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(180deg, transparent 0%, rgba(10,8,23,0.3) 50%, var(--dark-bg) 100%);
}
.hero-content {
  position: relative; z-index: 3;
  display: flex; align-items: center; height: 100vh; min-height: 600px;
  padding-top: 80px;
}
.hero-text { max-width: 750px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(245,176,66,0.2);
  padding: 8px 20px; border-radius: 50px;
  margin-bottom: 24px;
  animation: fadeInUp 0.6s ease;
}
.hero-badge span { color: var(--gold); font-weight: 700; font-size: 0.8rem; letter-spacing: 2px; text-transform: uppercase; }
.hero-badge .pulse-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--emerald); animation: pulseDot 2s infinite; }
@keyframes pulseDot { 0% { box-shadow: 0 0 0 0 rgba(16,185,129,0.6); } 70% { box-shadow: 0 0 0 10px rgba(16,185,129,0); } 100% { box-shadow: 0 0 0 0 rgba(16,185,129,0); } }
.hero-text h1 {
  font-size: 4.2rem; font-weight: 800; color: var(--text-light); line-height: 1.1;
  margin-bottom: 16px;
  animation: fadeInUp 0.6s ease 0.1s both;
}
.hero-text h1 .highlight { background: linear-gradient(135deg, var(--gold), #FFE28A); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-text .lead {
  font-size: 1.2rem; color: rgba(255,255,255,0.7); line-height: 1.8;
  max-width: 600px; margin-bottom: 32px;
  animation: fadeInUp 0.6s ease 0.2s both;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; animation: fadeInUp 0.6s ease 0.3s both; }
.hero-actions .btn-gold { padding: 14px 36px; font-size: 1rem; }
.hero-scroll-indicator {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%); z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  animation: fadeInUp 0.6s ease 0.5s both;
}
.hero-scroll-indicator span { color: rgba(255,255,255,0.3); font-size: 0.7rem; letter-spacing: 2px; text-transform: uppercase; }
.hero-scroll-indicator .scroll-mouse { width: 24px; height: 38px; border-radius: 12px; border: 2px solid rgba(255,255,255,0.15); display: flex; justify-content: center; padding-top: 6px; }
.hero-scroll-indicator .scroll-mouse::after { content: ''; width: 3px; height: 10px; border-radius: 2px; background: var(--gold); animation: scrollWheel 2s infinite; }
@keyframes scrollWheel { 0% { transform: translateY(0); opacity: 1; } 100% { transform: translateY(10px); opacity: 0; } }

.hero-shapes { position: absolute; inset: 0; z-index: 1; pointer-events: none; overflow: hidden; }
.hero-shape {
  position: absolute; border-radius: 50%;
  filter: blur(80px); opacity: 0.15;
}
.hero-shape-1 { width: 600px; height: 600px; background: var(--primary); top: -200px; right: -200px; animation: floatShape 8s ease-in-out infinite; }
.hero-shape-2 { width: 400px; height: 400px; background: var(--gold); bottom: -100px; left: -100px; animation: floatShape 6s ease-in-out infinite reverse; }
.hero-shape-3 { width: 300px; height: 300px; background: var(--rose); top: 40%; right: 30%; animation: floatShape 10s ease-in-out infinite; }
@keyframes floatShape { 0%,100% { transform: translate(0, 0) scale(1); } 50% { transform: translate(30px, -30px) scale(1.1); } }

@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }

/* ===== STATS ===== */
.stats-section { background: linear-gradient(180deg, var(--dark-bg) 0%, var(--dark-card) 100%); }
.stat-card {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 32px 20px;
  text-align: center;
  transition: var(--transition-spring);
  position: relative; overflow: hidden;
}
.stat-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--grad-gold);
  transform: scaleX(0); transition: transform 0.5s; transform-origin: left;
}
.stat-card:hover::before { transform: scaleX(1); }
.stat-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); border-color: rgba(245,176,66,0.2); }
.stat-icon { font-size: 2rem; color: var(--gold); margin-bottom: 12px; }
.stat-number { font-size: 3rem; font-weight: 800; background: linear-gradient(135deg, var(--gold), #FFE28A); -webkit-background-clip: text; background-clip: text; color: transparent; line-height: 1; }
.stat-label { font-weight: 600; margin-top: 8px; color: var(--text-muted); font-size: 0.95rem; }

/* ===== ABOUT ===== */
.about-section { background: var(--dark-card); }
.about-section .lead { color: rgba(255,255,255,0.85); font-size: 1.15rem; }
.about-section p { color: var(--text-muted); }
.about-image-wrapper {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
}
.about-image-wrapper img { width: 100%; border-radius: var(--radius-lg); transition: transform 0.6s; }
.about-image-wrapper:hover img { transform: scale(1.05); }
.about-image-wrapper::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(45,27,105,0.2), transparent);
  pointer-events: none;
}
.about-exp-badge {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--grad-gold); color: var(--primary-dark);
  width: 100px; height: 100px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; flex-direction: column;
  font-weight: 800; font-size: 1.5rem; line-height: 1.1;
  box-shadow: 0 10px 30px rgba(245,176,66,0.3);
  z-index: 2;
}
.about-exp-badge small { font-size: 0.6rem; font-weight: 600; }

/* ===== VISION ===== */
.vision-section { background: var(--grad-dark); position: relative; overflow: hidden; }
.vision-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(45,27,105,0.3) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 50%, rgba(245,176,66,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.vision-section .block-title h2 { background: linear-gradient(135deg, var(--gold), #FFE28A); -webkit-background-clip: text; background-clip: text; }
.vision-card {
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  padding: 36px;
  height: 100%;
  transition: var(--transition-spring);
}
.vision-card:hover { transform: translateY(-8px); background: rgba(255,255,255,0.07); box-shadow: var(--shadow-md); }
.vision-icon {
  width: 56px; height: 56px; border-radius: 16px;
  background: var(--grad-gold); display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; font-size: 1.3rem; color: var(--primary-dark);
}
.vision-card h4 { color: var(--gold); font-weight: 700; margin-bottom: 16px; }
.vision-card p { color: rgba(255,255,255,0.75); line-height: 1.8; font-size: 0.95rem; }
.philosophy-list li {
  padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.04);
  color: rgba(255,255,255,0.75); display: flex; gap: 12px; align-items: flex-start;
  font-size: 0.95rem;
}
.philosophy-list li:last-child { border-bottom: none; }
.philosophy-list li i { color: var(--gold); margin-top: 4px; flex-shrink: 0; font-size: 1.1rem; }

/* ===== LEADERSHIP ===== */
.leadership-section { background: var(--dark-card); }
.msg-card {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 30px 24px;
  text-align: center;
  transition: var(--transition-spring);
  height: 100%;
}
.msg-card:hover { transform: translateY(-12px); box-shadow: var(--shadow-lg); border-color: rgba(245,176,66,0.15); }
.msg-card img { transition: transform 0.5s; box-shadow: 0 0 20px rgba(245,176,66,0.2); }
.msg-card:hover img { transform: scale(1.1); }
.msg-card h4 { color: var(--gold); margin-top: 16px; }
.msg-card .text-muted { color: var(--text-muted) !important; }

.btn-readmore {
  background: transparent; border: 1px solid var(--gold); color: var(--gold);
  border-radius: 50px; padding: 8px 22px; font-size: 0.85rem;
  font-weight: 600; margin-top: 12px; transition: var(--transition-spring); cursor: pointer;
}
.btn-readmore:hover { background: var(--gold); color: var(--primary-dark); transform: translateX(6px); }

/* ===== PRINCIPAL ===== */
.principal-section { background: linear-gradient(135deg, var(--dark-bg), var(--dark-card), var(--dark-bg)); }
.principal-img-wrapper {
  position: relative; display: inline-block;
}
.principal-img-wrapper img {
  border: 4px solid var(--gold); box-shadow: 0 0 40px rgba(245,176,66,0.15);
}
.principal-badge {
  position: absolute; bottom: 10px; right: 10px;
  background: var(--grad-gold); color: var(--primary-dark); font-weight: 800;
  padding: 6px 18px; border-radius: 50px; font-size: 0.75rem; letter-spacing: 1px;
}
.principal-section .msg-card { text-align: left; }

/* ===== NEWS TICKER ===== */
.news-section { padding-top: 0 !important; padding-bottom: 0 !important; margin-top: -30px; position: relative; z-index: 5; }
.news-ticker {
  background: var(--dark-surface);
  border-radius: 60px;
  overflow: hidden; white-space: nowrap;
  box-shadow: 0 10px 40px rgba(0,0,0,0.3);
  border: 1px solid rgba(255,255,255,0.05);
  display: flex; align-items: center;
}
.ticker-label {
  background: var(--grad-gold); color: var(--primary-dark); font-weight: 800;
  padding: 16px 28px; border-radius: 60px;
  flex-shrink: 0; font-size: 0.85rem; letter-spacing: 2px; text-transform: uppercase;
}
.ticker-move { display: inline-block; animation: tickerScroll 40s linear infinite; padding-left: 20px; }
.ticker-move:hover { animation-play-state: paused; }
@keyframes tickerScroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.news-item { display: inline-block; padding: 16px 40px; font-weight: 600; color: var(--text-light); }
.news-item i { margin-right: 8px; color: var(--gold); }

/* ===== CAMPUS ===== */
.campus-section { background: var(--dark-card); }
.img-hover-zoom { overflow: hidden; border-radius: var(--radius-md); position: relative; }
.img-hover-zoom img { transition: transform 0.6s; width: 100%; }
.img-hover-zoom:hover img { transform: scale(1.08); }
.img-hover-zoom::after {
  content: '\f00e'; font-family: 'Font Awesome 6 Free'; font-weight: 900;
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%) scale(0);
  color: white; font-size: 1.5rem; opacity: 0; z-index: 2; transition: var(--transition);
}
.img-hover-zoom::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(45,27,105,0.3), rgba(10,8,23,0.5));
  opacity: 0; z-index: 1; transition: opacity 0.4s;
}
.img-hover-zoom:hover::before { opacity: 1; }
.img-hover-zoom:hover::after { opacity: 1; transform: translate(-50%, -50%) scale(1); }

/* ===== INFRASTRUCTURE ===== */
.infra-section { background: var(--dark-bg); }
.infra-card {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition-spring);
  height: 100%;
}
.infra-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); }
.infra-card img { width: 100%; height: 220px; object-fit: cover; transition: transform 0.6s; }
.infra-card:hover img { transform: scale(1.1); }
.infra-card .content { padding: 24px; }
.infra-card .content h4 { color: var(--gold); font-weight: 700; }
.infra-card .content p { color: var(--text-muted); font-size: 0.9rem; }

/* ===== GREEN ===== */
.green-section { background: linear-gradient(135deg, #0A1F0A, #0F2B0F, #0A1F0A); }
.green-section .block-title h2:after { box-shadow: 0 0 12px rgba(16,185,129,0.3); }
.green-list li {
  padding: 12px 0; display: flex; gap: 14px; align-items: flex-start;
  color: rgba(255,255,255,0.8); border-bottom: 1px solid rgba(255,255,255,0.04);
}
.green-list li:last-child { border-bottom: none; }
.green-list li i { color: var(--emerald); margin-top: 4px; flex-shrink: 0; font-size: 1.2rem; }

/* ===== ACADEMICS ===== */
.academics-section { background: linear-gradient(135deg, var(--dark-card), #1A1540); }
.academics-section .lead { color: rgba(255,255,255,0.85); }
.academic-point {
  padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.04);
  color: var(--text-light);
}
.academic-point:last-child { border-bottom: none; }
.academic-point i { color: var(--gold); margin-right: 12px; }

/* ===== EVENTS ===== */
.events-section { background: var(--dark-card); }
.event-card {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  transition: var(--transition-spring);
  margin: 8px;
  border-left: 4px solid var(--teal);
}
.event-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: rgba(6,182,212,0.2); }
.event-card h5 { color: var(--gold); }
.event-card p { color: var(--text-muted); font-size: 0.9rem; }
.event-date-badge { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.event-date-badge i { font-size: 1.3rem; color: var(--gold); }
.event-date-badge span { font-weight: 700; color: var(--gold); font-size: 0.9rem; }

/* ===== ACHIEVEMENTS ===== */
.achievements-section { background: linear-gradient(135deg, var(--dark-bg), #2A1040); }
.achieve-card {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 28px 20px;
  text-align: center;
  transition: var(--transition-spring);
  margin: 8px;
}
.achieve-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.achieve-img-wrapper {
  width: 90px; height: 90px; margin: 0 auto; border-radius: 50%;
  padding: 4px; background: var(--grad-gold);
  box-shadow: 0 0 20px rgba(245,176,66,0.2);
}
.achieve-card img { border-radius: 50%; width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.achieve-card:hover img { transform: scale(1.08); }
.achieve-card h5 { color: var(--text-light); margin-top: 16px; }
.achieve-card .text-warning { font-size: 0.85rem; }
.achieve-card .text-muted { color: var(--text-muted) !important; font-size: 0.8rem; }

/* ===== TESTIMONIALS ===== */
.testimonials-section { background: var(--dark-card); }
.testimonial-card {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  transition: var(--transition-spring);
  margin: 8px;
  border-top: 4px solid var(--gold);
}
.testimonial-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.testimonial-card p { color: var(--text-muted); }
.testimonial-card h6 { color: var(--gold); }

/* ===== FAQ ===== */
.faq-section { background: var(--dark-bg); }
.accordion-item {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border) !important;
  margin-bottom: 16px;
  border-radius: var(--radius-md) !important;
  overflow: hidden;
  transition: var(--transition);
}
.accordion-item:hover { box-shadow: var(--shadow-sm); }
.accordion-button {
  background: transparent !important;
  color: var(--text-light) !important;
  font-weight: 700;
  padding: 20px 24px;
  font-size: 1rem;
  box-shadow: none !important;
}
.accordion-button:not(.collapsed) { color: var(--gold) !important; }
.accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23F5B042'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
.accordion-body { padding: 0 24px 20px; color: var(--text-muted); }

/* ===== DOWNLOADS ===== */
.downloads-section { background: linear-gradient(135deg, var(--dark-bg), var(--dark-card)); }
.download-card {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition-spring);
  height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.download-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); border-color: rgba(245,176,66,0.2); }
.download-icon {
  width: 64px; height: 64px; border-radius: 18px;
  background: var(--grad-purple);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px; font-size: 1.5rem; color: var(--gold);
  transition: var(--transition-spring);
}
.download-card:hover .download-icon { transform: scale(1.1) rotate(-5deg); box-shadow: 0 0 25px rgba(245,176,66,0.2); }
.download-card h5 { color: var(--gold); font-weight: 700; font-size: 1rem; }
.download-card p { margin-bottom: 16px; }
.download-card .btn-gold { padding: 8px 20px; font-size: 0.8rem; }
[data-theme="light"] .download-card { background: var(--dark-card); border: 1px solid rgba(0,0,0,0.06); }

/* ===== FOOTER ===== */
.footer-section {
  background: var(--dark-bg);
  border-top: 1px solid rgba(255,255,255,0.06);
  position: relative;
}
.footer-section::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.footer-section h3 { color: var(--gold); }
.footer-section a { color: var(--text-muted); text-decoration: none; transition: var(--transition); }
.footer-section a:hover { color: var(--gold); padding-left: 5px; }
.footer-links li { margin-bottom: 10px; }
.footer-links li a { font-size: 0.9rem; }
.social-links a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,0.04); transition: var(--transition-spring);
  color: var(--text-muted) !important;
}
.social-links a:hover {
  background: var(--grad-gold); color: var(--primary-dark) !important;
  transform: translateY(-4px); box-shadow: 0 8px 25px rgba(245,176,66,0.2);
}

/* ===== SCROLL TOP / STICKY ===== */
.scroll-top {
  background: var(--grad-gold); color: var(--primary-dark);
  position: fixed; bottom: 30px; left: 30px;
  width: 48px; height: 48px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; cursor: pointer;
  z-index: 1040;
  box-shadow: 0 4px 20px rgba(245,176,66,0.3);
  transition: var(--transition-spring); opacity: 0;
  transform: translateY(20px); pointer-events: none;
}
.scroll-top.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.scroll-top:hover { transform: scale(1.1); box-shadow: 0 8px 30px rgba(245,176,66,0.4); }

/* ===== LIGHTBOX ===== */
.lightbox-overlay {
  position: fixed; inset: 0; z-index: 99998;
  background: rgba(0,0,0,0.92);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: opacity 0.3s, visibility 0.3s;
  cursor: zoom-out; padding: 20px;
}
.lightbox-overlay.active { opacity: 1; visibility: visible; }
.lightbox-overlay img {
  max-width: 90vw; max-height: 90vh; object-fit: contain;
  border-radius: 8px; box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  transform: scale(0.9); transition: transform 0.3s;
}
.lightbox-overlay.active img { transform: scale(1); }
.lightbox-close {
  position: fixed; top: 20px; right: 30px;
  color: white; font-size: 2rem; cursor: pointer; z-index: 99999;
  width: 48px; height: 48px; display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.1); border-radius: 50%;
  transition: background 0.3s; border: none;
}
.lightbox-close:hover { background: rgba(255,255,255,0.2); }

.sticky-buttons .btn-sticky {
  background: var(--grad-gold); border-radius: 50px;
  position: fixed; bottom: 80px; right: 30px; z-index: 1040;
  padding: 14px 30px; font-weight: 800; color: var(--primary-dark);
  box-shadow: 0 8px 25px rgba(245,176,66,0.3);
  transition: var(--transition-spring); text-decoration: none;
  border: none; display: flex; align-items: center; gap: 8px;
  font-size: 0.9rem;
}
.sticky-buttons .btn-sticky-admission {
  background: var(--grad-purple); border-radius: 50px;
  position: fixed; bottom: 15px; right: 30px; z-index: 1040;
  padding: 14px 30px; font-weight: 800; color: #fff;
  box-shadow: 0 8px 25px rgba(45,27,105,0.3);
  transition: var(--transition-spring); text-decoration: none;
  border: none; display: flex; align-items: center; gap: 8px;
  font-size: 0.9rem;
}
.sticky-buttons .btn-sticky:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(245,176,66,0.4); }
.sticky-buttons .btn-sticky-admission:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(45,27,105,0.4); }
.sticky-buttons .btn-whatsapp {
  background: #25D366; color: white; border-radius: 50%;
  width: 56px; height: 56px; padding: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; position: fixed; bottom: 145px; right: 30px;
  z-index: 1040;
  box-shadow: 0 6px 25px rgba(37,211,102,0.35);
  transition: var(--transition-spring); text-decoration: none;
  animation: pulseWhatsApp 2.5s infinite;
}
.sticky-buttons .btn-whatsapp:hover { transform: scale(1.1); box-shadow: 0 10px 35px rgba(37,211,102,0.5); color: white; }

@keyframes pulseWhatsApp { 0% { box-shadow: 0 6px 25px rgba(37,211,102,0.35); } 70% { box-shadow: 0 6px 35px rgba(37,211,102,0.15); } 100% { box-shadow: 0 6px 25px rgba(37,211,102,0.35); } }
@keyframes starFloat { 0% { transform: translateY(0) rotate(0deg); opacity: 0; } 20% { opacity: 0.6; } 80% { opacity: 0.6; } 100% { transform: translateY(-80px) rotate(180deg); opacity: 0; } }

/* ===== RIPPLE ===== */
.ripple { position: relative; overflow: hidden; }
.ripple-effect {
  position: absolute; border-radius: 50%;
  background: rgba(255,255,255,0.4);
  transform: scale(0);
  animation: rippleAnim 0.6s linear;
  pointer-events: none;
}
@keyframes rippleAnim { to { transform: scale(4); opacity: 0; } }

/* ===== SLICK OVERRIDES ===== */
.slick-dots { bottom: -35px !important; }
.slick-dots li button:before { color: rgba(255,255,255,0.2) !important; font-size: 8px !important; opacity: 1 !important; }
.slick-dots li.slick-active button:before { color: var(--gold) !important; }
.slick-prev, .slick-next { z-index: 10; width: 44px !important; height: 44px !important; }
.slick-prev { left: -15px !important; }
.slick-next { right: -15px !important; }
.slick-prev:before, .slick-next:before { color: var(--gold) !important; font-size: 28px !important; opacity: 0.6 !important; transition: var(--transition); }
.slick-prev:hover:before, .slick-next:hover:before { opacity: 1 !important; }
.slick-slide { margin: 0 10px; }
.slick-list { margin: 0 -10px; }

/* ===== NAV PILLS (Sidebar) ===== */
.nav-pills .nav-link { color: var(--text-muted); font-weight: 600; border-radius: var(--radius-sm); transition: var(--transition); margin: 2px 0; }
.nav-pills .nav-link:hover { color: var(--gold); background: rgba(245,176,66,0.08); }
.nav-pills .nav-link.active, .nav-pills .nav-pills .show > .nav-link { background: rgba(245,176,66,0.12); color: var(--gold); }

/* ===== FORM SECTION (home page themed) ===== */
.form-section { background: var(--dark-bg); }
.form-section .block-title .subtitle { color: var(--text-muted); }
.form-section .form-step-card { background: var(--dark-card); border: 1px solid var(--glass-border); color: var(--text-light); }
.form-section .form-step-card hr { border-color: var(--glass-border); }
.form-section .form-step-card .border-end { border-color: var(--glass-border) !important; }
.form-section .form-control, .form-section .form-select { background: var(--dark-bg); border: 1px solid rgba(255,255,255,0.12); color: var(--text-light); border-radius: 12px; padding: 10px 14px; transition: var(--transition); }
.form-section .form-control:focus, .form-section .form-select:focus { background: var(--dark-card); border-color: var(--gold); box-shadow: 0 0 0 3px rgba(245,176,66,0.12); }
.form-section .form-control::placeholder { color: var(--text-muted); }
.form-section .form-label { color: var(--text-light); font-weight: 600; font-size: 0.9rem; }
.form-section .text-muted { color: var(--text-muted) !important; }
[data-theme="light"] .form-section { background: var(--dark-bg); }
[data-theme="light"] .form-section .form-step-card { background: var(--dark-card); border-color: var(--glass-border); }
[data-theme="light"] .form-section .form-control,
[data-theme="light"] .form-section .form-select { background: #FFFFFF; border: 1.5px solid rgba(0,0,0,0.22); color: var(--text-light); }
[data-theme="light"] .form-section .form-control:focus,
[data-theme="light"] .form-section .form-select:focus { background: #FFFFFF; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(245,176,66,0.15); }
[data-theme="light"] .form-section .form-control::placeholder { color: #9CA3AF; }
[data-theme="light"] .form-section .form-label { color: var(--text-light); }

/* ===== MODALS ===== */
.modal-content {
  background: var(--dark-card);
  color: var(--text-light);
}
.modal-header { border-bottom: 1px solid rgba(255,255,255,0.06); }
.modal-header .btn-close { filter: invert(1) brightness(200%); }
.modal-body { color: var(--text-muted); }

/* ===== PAGE HERO OVERRIDES ===== */
.page-hero {
  background: linear-gradient(135deg, var(--primary-dark), var(--dark-bg));
  padding: 140px 0 80px;
  text-align: center;
  color: var(--text-light);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(45,27,105,0.4) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 50%, rgba(245,176,66,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.page-hero h1 { color: var(--text-light); font-size: 2.8rem; background: none; -webkit-background-clip: unset; background-clip: unset; position: relative; z-index: 1; }
.page-hero .breadcrumb { background: transparent; justify-content: center; position: relative; z-index: 1; }
.page-hero .breadcrumb a { color: var(--gold); text-decoration: none; }
.page-hero .breadcrumb .active { color: var(--text-muted); }
.page-hero .lead { position: relative; z-index: 1; }
.page-content { padding: 60px 0; min-height: 50vh; background: var(--dark-bg); }
.page-content h3 { color: var(--gold); margin-top: 30px; margin-bottom: 15px; }
.page-content p { color: var(--text-muted); }
.page-content ul li { margin-bottom: 10px; color: var(--text-muted); }
.page-content .table { color: var(--text-light); }
.page-content .table th { color: var(--gold); border-color: rgba(255,255,255,0.06); }
.page-content .table td { border-color: rgba(255,255,255,0.06); }
.page-content .table-dark { background: var(--dark-surface) !important; }
.page-content .card { background: var(--dark-card); border: 1px solid rgba(255,255,255,0.06); color: var(--text-light); }
.page-content .card h5, .page-content .card h6 { color: var(--gold); }
.page-content .card small { color: var(--text-muted) !important; }
.page-content .bg-light { background: var(--dark-surface) !important; }
.page-content .alert-warning { background: rgba(245,176,66,0.1); border: 1px solid rgba(245,176,66,0.2); color: var(--gold); }
.page-content .list-group-item { background: var(--dark-card); border-color: rgba(255,255,255,0.06); color: var(--text-muted); }
.page-content .form-control, .page-content .form-select { background: var(--dark-bg); border: 1px solid rgba(255,255,255,0.1); color: var(--text-light); }
.page-content .form-control:focus, .page-content .form-select:focus { background: var(--dark-card); border-color: var(--gold); box-shadow: 0 0 0 3px rgba(245,176,66,0.1); color: var(--text-light); }
.page-content .form-control::placeholder { color: var(--text-muted); }
.page-content .form-label { color: var(--text-light); font-weight: 600; }

/* ===== UTILITIES ===== */
.text-gold { color: var(--gold) !important; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
  .hero-text h1 { font-size: 3.6rem; }
}
@media (max-width: 992px) {
  .hero-text h1 { font-size: 2.8rem; }
  .hero-text .lead { font-size: 1rem; }
  h2 { font-size: 2rem; }
  section { padding-top: 4rem; padding-bottom: 4rem; }
  .slick-prev { left: 5px !important; }
  .slick-next { right: 5px !important; }
}
@media (max-width: 768px) {
  .hero-section { height: 90vh; min-height: 500px; }
  .hero-content { height: 90vh; min-height: 500px; padding-top: 60px; }
  .hero-text h1 { font-size: 2.2rem; }
  .hero-text .lead { font-size: 0.95rem; max-width: 100%; }
  .hero-actions .btn-gold { padding: 12px 24px; font-size: 0.85rem; }
  .hero-scroll-indicator { display: none; }
  .hero-badge { padding: 6px 14px; }
  .hero-badge span { font-size: 0.7rem; }
  h2 { font-size: 1.8rem; }
  section { padding-top: 3rem; padding-bottom: 3rem; }
  .block-title { margin-bottom: 2rem; }
  .stat-number { font-size: 2.2rem; }
  .sticky-buttons .btn-sticky { padding: 10px 20px; font-size: 0.8rem; bottom: 65px; right: 20px; }
  .sticky-buttons .btn-sticky-admission { padding: 10px 20px; font-size: 0.8rem; bottom: 15px; right: 20px; }
  .sticky-buttons .btn-whatsapp { width: 48px; height: 48px; font-size: 1.3rem; bottom: 120px; right: 20px; }
  .scroll-top { width: 40px; height: 40px; bottom: 20px; left: 20px; font-size: 0.9rem; }
  .ticker-label { padding: 12px 16px; font-size: 0.7rem; letter-spacing: 1px; }
  .news-ticker { border-radius: 30px; }
  .page-hero { padding: 120px 0 60px; }
  .page-hero h1 { font-size: 2rem; }
  .page-content { padding: 40px 0; }
  .news-section { margin-top: -20px; }
  .logo-text .location { display: none; }
  .logo-text .motto { display: none; }
  .logo-icon { width: 38px; height: 38px; }
  .header.scrolled .logo-icon { width: 32px; height: 32px; }
}
@media (max-width: 576px) {
  .hero-text h1 { font-size: 1.8rem; }
  .hero-badge span { font-size: 0.6rem; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  section { padding-top: 2.5rem; padding-bottom: 2.5rem; }
}
