/* ========================================
   ACTIVE ENGLISH GRAMMAR - MAIN STYLESHEET
   ======================================== */

:root {
  --red: #C0392B;
  --red-dark: #96281B;
  --red-light: #E74C3C;
  --dark: #1A1A2E;
  --navy: #0F3460;
  --gold: #F39C12;
  --white: #FFFFFF;
  --light: #F8F9FA;
  --gray: #636E72;
  --text: #2D3436;
  --border: rgba(192,57,43,0.2);
  --shadow: 0 20px 60px rgba(0,0,0,0.1);
  --shadow-red: 0 10px 40px rgba(192,57,43,0.3);
  --transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
  --gradient: linear-gradient(135deg, #C0392B 0%, #96281B 100%);
  --gradient-dark: linear-gradient(135deg, #1A1A2E 0%, #0F3460 100%);
  --radius: 16px;
  --radius-sm: 8px;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 62.5%; }
body {
  font-family: 'Poppins', sans-serif;
  font-size: 1.6rem;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  cursor: none;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; outline: none; font-family: inherit; }
input, textarea, select { font-family: inherit; outline: none; }
section { position: relative; }

/* ===== PRELOADER ===== */
#preloader {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
#preloader.hidden { opacity: 0; visibility: hidden; }
.preloader-content { text-align: center; }
.preloader-ring {
  width: 80px; height: 80px;
  border: 4px solid rgba(255,255,255,0.1);
  border-top: 4px solid var(--red);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 20px;
}
.preloader-logo {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 4px;
}
.preloader-logo span { color: var(--red); }
.preloader-tagline {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 2px;
  text-transform: uppercase;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ===== CUSTOM CURSOR ===== */
.cursor-dot {
  width: 8px; height: 8px;
  background: var(--red);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s;
}
.cursor-circle {
  width: 36px; height: 36px;
  border: 2px solid rgba(192,57,43,0.6);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: all 0.15s ease;
}
.cursor-circle.hovered {
  width: 56px; height: 56px;
  background: rgba(192,57,43,0.1);
  border-color: var(--red);
}

/* ===== UTILITIES ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section-padding { padding: 100px 0; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-badge {
  display: inline-block;
  background: rgba(192,57,43,0.1);
  color: var(--red);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 50px;
  border: 1px solid rgba(192,57,43,0.2);
  margin-bottom: 16px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 4.2rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-title span { color: var(--red); }
.section-subtitle {
  font-size: 1.7rem;
  color: var(--gray);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}
.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 16px;
}
.section-divider span {
  display: block;
  height: 3px;
  background: var(--gradient);
  border-radius: 50px;
}
.section-divider span:nth-child(1) { width: 60px; }
.section-divider span:nth-child(2) { width: 12px; }
.section-divider span:nth-child(3) { width: 30px; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  font-size: 1.5rem;
  font-weight: 600;
  border-radius: 50px;
  transition: var(--transition);
  letter-spacing: 0.5px;
}
.btn-primary {
  background: var(--gradient);
  color: var(--white);
  box-shadow: var(--shadow-red);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 50px rgba(192,57,43,0.45);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.6);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--red);
  border-color: var(--white);
  transform: translateY(-3px);
}
.btn-dark {
  background: var(--dark);
  color: var(--white);
}
.btn-dark:hover {
  background: var(--navy);
  transform: translateY(-3px);
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(10,10,20,0.95);
  backdrop-filter: blur(20px);
  padding: 14px 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-logo-icon {
  width: 46px; height: 46px;
  background: var(--gradient);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--white);
  font-weight: 800;
  box-shadow: var(--shadow-red);
}
.nav-logo-img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  border-radius: 10px;
  flex-shrink: 0;
}
.nav-logo-text .logo-main {
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  letter-spacing: 1px;
}
.nav-logo-text .logo-main span { color: var(--red); }
.nav-logo-text .logo-sub {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 1px;
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-link {
  color: rgba(255,255,255,0.85);
  font-size: 1.4rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 50%;
  width: 0; height: 2px;
  background: var(--red);
  transform: translateX(-50%);
  transition: var(--transition);
  border-radius: 50px;
}
.nav-link:hover { color: var(--white); }
.nav-link:hover::after { width: 60%; }
.nav-link.active { color: var(--red); }
.nav-link.active::after { width: 60%; }
.nav-cta {
  background: var(--gradient);
  color: var(--white) !important;
  padding: 10px 24px !important;
  border-radius: 50px;
  box-shadow: var(--shadow-red);
}
.nav-cta::after { display: none; }
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 15px 35px rgba(192,57,43,0.5); }
/* hamburger styles defined in responsive section below */

/* ===== HERO SECTION ===== */
.hero {
  height: 100vh;
  min-height: 600px;
  position: relative;
  overflow: hidden;
}
.hero-swiper {
  width: 100%;
  height: 100%;
}
.swiper-slide {
  position: relative;
  display: flex;
  align-items: center;
  padding-top: 80px;
  padding-bottom: 90px;
}
.slide-1 { background: linear-gradient(rgba(10,10,20,0.60), rgba(10,10,20,0.55)), url('../img/slide-1.jpg') center/cover no-repeat; }
.slide-2 { background: linear-gradient(rgba(10,10,20,0.60), rgba(10,10,20,0.55)), url('../img/slide-2.jpg') center/cover no-repeat; }
.slide-3 { background: linear-gradient(rgba(10,10,20,0.60), rgba(10,10,20,0.55)), url('../img/slide-3.jpg') center/cover no-repeat; }
.slide-overlay {
  position: absolute;
  inset: 0;
}
.slide-2 .slide-overlay {
  background: radial-gradient(ellipse at 30% 50%, rgba(192,57,43,0.4) 0%, transparent 70%);
}
.slide-3 .slide-overlay {
  background: radial-gradient(ellipse at 70% 50%, rgba(15,52,96,0.6) 0%, transparent 70%);
}
.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.particle {
  position: absolute;
  width: 4px; height: 4px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  animation: floatParticle linear infinite;
}
.slide-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 0 40px;
}
.slide-content .container { max-width: 900px; }
.slide-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(192,57,43,0.2);
  border: 1px solid rgba(192,57,43,0.4);
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 50px;
  backdrop-filter: blur(10px);
  margin-bottom: 24px;
}
.slide-badge i { color: var(--gold); font-size: 1.4rem; }
.slide-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3.5rem, 6vw, 6.5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
}
.slide-title .highlight {
  color: var(--red);
  position: relative;
  display: inline-block;
}
.slide-title .highlight::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 100%; height: 3px;
  background: var(--gold);
  border-radius: 50px;
}
.slide-title .gold { color: var(--gold); }
.slide-subtitle {
  font-size: clamp(1.5rem, 2.5vw, 1.9rem);
  color: rgba(255,255,255,0.85);
  max-width: 600px;
  line-height: 1.7;
  margin-bottom: 40px;
  font-style: italic;
}
.slide-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-bottom {
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; z-index: 5;
}
.hero-stats {
  background: rgba(10,10,20,0.85);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255,255,255,0.08);
}
.hero-stats .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  divide: 1px solid rgba(255,255,255,0.08);
}
.stat-item {
  padding: 24px 20px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.08);
  position: relative;
  overflow: hidden;
}
.stat-item:last-child { border-right: none; }
.stat-item::before {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 0; height: 3px;
  background: var(--gradient);
  transition: var(--transition);
  border-radius: 50px;
}
.stat-item:hover::before { width: 60%; }
.stat-number {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.stat-number .suffix { font-size: 2rem; color: var(--red); }
.stat-label {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 4px;
}
.hero-scroll {
  position: absolute;
  bottom: 120px; left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: bounce 2s ease infinite;
}
.scroll-line {
  width: 2px; height: 50px;
  background: linear-gradient(to bottom, var(--red), transparent);
  border-radius: 50px;
}
.scroll-text {
  font-size: 1rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 2px;
  text-transform: uppercase;
  transform: rotate(90deg) translateX(20px);
  white-space: nowrap;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(12px); }
}
@keyframes floatParticle {
  0% { transform: translateY(100vh) scale(0); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(-20px) scale(1.5); opacity: 0; }
}
.swiper-pagination-bullet { background: rgba(255,255,255,0.5) !important; }
.swiper-pagination-bullet-active { background: var(--red) !important; width: 30px !important; border-radius: 4px !important; }
.swiper-button-next, .swiper-button-prev {
  width: 46px !important; height: 46px !important;
  background: rgba(255,255,255,0.1) !important;
  backdrop-filter: blur(10px);
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white) !important;
  transition: var(--transition) !important;
}
.swiper-button-next:hover, .swiper-button-prev:hover { background: var(--red) !important; }
.swiper-button-next::after, .swiper-button-prev::after { font-size: 1.4rem !important; }
/* Mobile: arrow সরিয়ে দাও — swipe gesture ব্যবহার হবে */
@media (max-width: 768px) {
  .swiper-button-next, .swiper-button-prev { display: none !important; }
}

/* ===== ABOUT SECTION ===== */
.about-section { background: var(--white); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-image-wrap {
  position: relative;
}
.about-main-img {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow);
}
.about-main-img img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: center 20%;
  transition: transform 0.6s ease;
}
.about-main-img:hover img { transform: scale(1.03); }
.about-img-badge {
  position: absolute;
  bottom: 30px; left: -24px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 16px 22px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 220px;
}
.badge-icon {
  width: 52px; height: 52px;
  background: var(--gradient);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 2.2rem;
  flex-shrink: 0;
}
.badge-text .badge-num {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1;
}
.badge-text .badge-label {
  font-size: 1.2rem;
  color: var(--gray);
  margin-top: 2px;
}
.about-float-card {
  position: absolute;
  top: 40px; right: -24px;
  background: var(--gradient);
  color: var(--white);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
  box-shadow: var(--shadow-red);
  width: 130px;
}
.float-card-icon { font-size: 3rem; margin-bottom: 8px; }
.float-card-text { font-size: 1.2rem; font-weight: 600; line-height: 1.3; }
.about-content .section-header { text-align: left; }
.about-content .section-header .section-divider { justify-content: flex-start; }
.about-text {
  font-size: 1.6rem;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 24px;
}
.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 32px;
}
.highlight-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: var(--light);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--red);
  transition: var(--transition);
}
.highlight-item:hover {
  background: rgba(192,57,43,0.05);
  transform: translateX(4px);
}
.highlight-item i { color: var(--red); font-size: 1.8rem; }
.highlight-item span { font-size: 1.4rem; font-weight: 500; color: var(--text); }

/* Mentor Card */
.mentor-card {
  background: var(--gradient-dark);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 32px;
  border: 1px solid rgba(255,255,255,0.05);
}
.mentor-img {
  width: 80px; height: 80px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--red);
  flex-shrink: 0;
}
.mentor-img img { width: 100%; height: 100%; object-fit: cover; object-position: center 10%; }
.mentor-info .mentor-name {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 2px;
}
.mentor-info .mentor-title {
  font-size: 1.3rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 6px;
}
.mentor-info .mentor-schools {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.5;
}
.mentor-contact {
  margin-left: auto;
  text-align: right;
}
.mentor-contact a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-size: 1.3rem;
  font-weight: 600;
  transition: var(--transition);
}
.mentor-contact a:hover { color: var(--white); }

/* ===== FEATURES SECTION ===== */
.features-section {
  background: var(--dark);
  overflow: hidden;
}
.features-section .section-title { color: var(--white); }
.features-section .section-subtitle { color: rgba(255,255,255,0.5); }
.features-section .section-badge { background: rgba(192,57,43,0.15); border-color: rgba(192,57,43,0.3); }
.features-bg-text {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-size: 20rem;
  font-weight: 900;
  color: rgba(255,255,255,0.02);
  white-space: nowrap;
  pointer-events: none;
  letter-spacing: 20px;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}
.feature-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle at center, rgba(192,57,43,0.08) 0%, transparent 60%);
  opacity: 0;
  transition: var(--transition);
}
.feature-card:hover::before { opacity: 1; }
.feature-card:hover {
  border-color: rgba(192,57,43,0.3);
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}
.feature-icon {
  width: 72px; height: 72px;
  background: rgba(192,57,43,0.1);
  border: 1px solid rgba(192,57,43,0.2);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--red);
  margin: 0 auto 20px;
  transition: var(--transition);
}
.feature-card:hover .feature-icon {
  background: var(--gradient);
  border-color: var(--red);
  color: var(--white);
  transform: rotate(-5deg) scale(1.1);
}
.feature-title {
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.feature-desc {
  font-size: 1.4rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
}

/* ===== COURSE SCHEDULE ===== */
.schedule-section { background: var(--light); }
.schedule-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}
.tab-btn {
  padding: 12px 28px;
  border-radius: 50px;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--gray);
  background: var(--white);
  border: 2px solid transparent;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  transition: var(--transition);
}
.tab-btn.active, .tab-btn:hover {
  background: var(--gradient);
  color: var(--white);
  box-shadow: var(--shadow-red);
}
.tab-content { display: none; }
.tab-content.active { display: block; animation: fadeIn 0.4s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.schedule-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.schedule-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: var(--transition);
}
.schedule-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.schedule-header {
  background: var(--gradient);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.schedule-header i {
  font-size: 2.4rem;
  color: rgba(255,255,255,0.8);
}
.schedule-header-text .s-batch {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
}
.schedule-header-text .s-class {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.7);
}
.schedule-body { padding: 20px 24px; }
.schedule-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--light);
}
.schedule-row:last-child { border-bottom: none; }
.schedule-row i { color: var(--red); font-size: 1.6rem; margin-top: 2px; flex-shrink: 0; }
.schedule-row-content .s-title { font-size: 1.4rem; font-weight: 600; color: var(--text); }
.schedule-row-content .s-value { font-size: 1.3rem; color: var(--gray); margin-top: 2px; }

/* ===== ADMISSION GUIDE ===== */
.admission-guide-section {
  background: var(--white);
  overflow: hidden;
}
.guide-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;
}
.guide-steps::before {
  content: '';
  position: absolute;
  top: 60px; left: 10%;
  width: 80%; height: 2px;
  background: linear-gradient(90deg, var(--red), var(--navy));
  z-index: 0;
}
.step-card {
  text-align: center;
  position: relative;
  z-index: 1;
}
.step-number-wrap {
  position: relative;
  margin-bottom: 24px;
}
.step-number {
  width: 80px; height: 80px;
  background: var(--white);
  border: 3px solid var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--red);
  margin: 0 auto;
  transition: var(--transition);
  position: relative;
  z-index: 2;
  box-shadow: 0 0 0 8px var(--white);
}
.step-card:hover .step-number {
  background: var(--gradient);
  color: var(--white);
  border-color: transparent;
  transform: scale(1.1);
}
.step-icon {
  position: absolute;
  top: -8px; right: calc(50% - 52px);
  width: 28px; height: 28px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--dark);
}
.step-title {
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}
.step-desc { font-size: 1.4rem; color: var(--gray); line-height: 1.7; }
.guide-cta {
  text-align: center;
  margin-top: 60px;
  padding: 50px;
  background: var(--gradient-dark);
  border-radius: var(--radius);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 30px;
}
.guide-cta-text .cta-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.guide-cta-text .cta-subtitle { font-size: 1.6rem; color: rgba(255,255,255,0.6); }
.guide-cta-actions { display: flex; gap: 16px; }

/* ===== GALLERY SECTION ===== */
.gallery-section { background: var(--dark); }
.gallery-section .section-title { color: var(--white); }
.gallery-section .section-subtitle { color: rgba(255,255,255,0.5); }
.gallery-section .section-badge { background: rgba(192,57,43,0.15); border-color: rgba(192,57,43,0.3); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 240px 240px;
  gap: 16px;
}
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gallery-item.large { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }
.gallery-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery-item:hover .gallery-img { transform: scale(1.08); }
.gallery-placeholder {
  width: 100%; height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: transform 0.6s ease;
}
.gallery-item:hover .gallery-placeholder { transform: scale(1.05); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,10,20,0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.gallery-item:hover .gallery-overlay { background: rgba(10,10,20,0.6); }
.gallery-overlay-icon {
  width: 56px; height: 56px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 2rem;
  opacity: 0;
  transform: scale(0.5);
  transition: var(--transition);
}
.gallery-item:hover .gallery-overlay-icon { opacity: 1; transform: scale(1); }
.gallery-caption {
  position: absolute;
  bottom: 0; left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  transform: translateY(100%);
  transition: var(--transition);
}
.gallery-item:hover .gallery-caption { transform: translateY(0); }
.gallery-caption h4 { font-size: 1.5rem; font-weight: 600; color: var(--white); }
.gallery-caption p { font-size: 1.2rem; color: rgba(255,255,255,0.7); }
/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}
.lightbox.active { opacity: 1; visibility: visible; }
.lightbox-img { max-width: 90vw; max-height: 90vh; border-radius: var(--radius-sm); }
.lightbox-close {
  position: absolute;
  top: 20px; right: 20px;
  width: 50px; height: 50px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  transition: var(--transition);
}
.lightbox-close:hover { background: var(--red); }

/* ===== TESTIMONIALS ===== */
.testimonials-section { background: var(--light); }
.testimonials-swiper { padding-bottom: 60px !important; }
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: 0 4px 30px rgba(0,0,0,0.06);
  position: relative;
  transition: var(--transition);
  border: 1px solid transparent;
}
.testimonial-card:hover {
  border-color: rgba(192,57,43,0.15);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 20px; right: 30px;
  font-size: 10rem;
  font-family: serif;
  color: rgba(192,57,43,0.08);
  line-height: 1;
}
.stars { display: flex; gap: 4px; margin-bottom: 16px; }
.stars i { color: var(--gold); font-size: 1.6rem; }
.testimonial-text {
  font-size: 1.5rem;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.author-avatar {
  width: 54px; height: 54px;
  border-radius: 50%;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}
.author-name { font-size: 1.6rem; font-weight: 700; color: var(--text); }
.author-class { font-size: 1.3rem; color: var(--red); font-weight: 500; }
.testimonials-swiper .swiper-pagination-bullet { background: rgba(192,57,43,0.3) !important; }
.testimonials-swiper .swiper-pagination-bullet-active { background: var(--red) !important; width: 24px !important; border-radius: 4px !important; }

/* ===== CONTACT SECTION ===== */
.contact-section { background: var(--white); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-info .section-header { text-align: left; margin-bottom: 32px; }
.contact-info .section-header .section-divider { justify-content: flex-start; }
.contact-info-text {
  font-size: 1.6rem;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 32px;
}
.contact-details { display: flex; flex-direction: column; gap: 16px; margin-bottom: 32px; }
.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 20px;
  background: var(--light);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--red);
  transition: var(--transition);
}
.contact-detail-item:hover { background: rgba(192,57,43,0.04); transform: translateX(4px); }
.contact-detail-icon {
  width: 42px; height: 42px;
  background: var(--gradient);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.7rem;
  flex-shrink: 0;
}
.contact-detail-text .detail-label { font-size: 1.2rem; color: var(--gray); text-transform: uppercase; letter-spacing: 1px; }
.contact-detail-text .detail-value { font-size: 1.5rem; font-weight: 600; color: var(--text); margin-top: 2px; }
.map-container {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 340px;
}
.map-container iframe { width: 100%; height: 100%; border: none; }
.contact-form-wrap {
  background: var(--light);
  border-radius: var(--radius);
  padding: 40px;
}
.form-title {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}
.form-subtitle { font-size: 1.5rem; color: var(--gray); margin-bottom: 30px; }
.form-group { margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-label {
  display: block;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.form-input {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid #e9ecef;
  border-radius: var(--radius-sm);
  font-size: 1.5rem;
  color: var(--text);
  background: var(--white);
  transition: var(--transition);
}
.form-input:focus { border-color: var(--red); box-shadow: 0 0 0 3px rgba(192,57,43,0.1); }
.form-input.textarea { min-height: 120px; resize: vertical; }
.form-select { appearance: none; }
.form-submit { width: 100%; }

/* ===== FOOTER ===== */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
}
.footer-top { padding: 80px 0 50px; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 50px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.footer-logo-img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 10px;
  flex-shrink: 0;
}
.footer-logo-text .f-main { font-size: 2rem; font-weight: 800; color: var(--white); }
.footer-logo-text .f-sub { font-size: 1.1rem; color: rgba(255,255,255,0.4); }
.footer-about { font-size: 1.4rem; line-height: 1.8; margin-bottom: 24px; }
.social-links { display: flex; gap: 10px; }
.social-link {
  width: 42px; height: 42px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 1.7rem;
  transition: var(--transition);
}
.social-link:hover { background: var(--red); border-color: var(--red); color: var(--white); transform: translateY(-3px); }
.footer-col-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}
.footer-col-title::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 36px; height: 3px;
  background: var(--gradient);
  border-radius: 50px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-link {
  font-size: 1.4rem;
  color: rgba(255,255,255,0.55);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}
.footer-link i { font-size: 1rem; color: var(--red); }
.footer-link:hover { color: var(--white); padding-left: 6px; }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}
.footer-contact-item i { color: var(--red); font-size: 1.6rem; margin-top: 2px; flex-shrink: 0; }
.footer-contact-item span { font-size: 1.4rem; line-height: 1.6; }
.footer-contact-item a {
  font-size: 1.4rem;
  color: rgba(255,255,255,0.55);
  transition: var(--transition);
  display: block;
}
.footer-contact-item a:hover { color: var(--red); }
.footer-bottom {
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-copy { font-size: 1.3rem; }
.footer-copy span { color: var(--red); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a {
  font-size: 1.3rem;
  color: rgba(255,255,255,0.4);
  transition: var(--transition);
}
.footer-legal a:hover { color: var(--red); }

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed;
  bottom: 100px; right: 30px;
  width: 48px; height: 48px;
  background: var(--gradient);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: var(--shadow-red);
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
  z-index: 500;
}
.back-to-top.visible { opacity: 1; transform: translateY(0); }
.back-to-top:hover { transform: translateY(-4px); }

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed;
  bottom: 30px; right: 30px;
  width: 58px; height: 58px;
  background: #25D366;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.8rem;
  box-shadow: 0 8px 30px rgba(37,211,102,0.4);
  z-index: 500;
  transition: var(--transition);
  animation: waPulse 2.5s ease infinite;
}
.whatsapp-float:hover { transform: scale(1.1) translateY(-4px); }
@keyframes waPulse {
  0%,100%{box-shadow:0 8px 30px rgba(37,211,102,0.4)}
  50%{box-shadow:0 8px 50px rgba(37,211,102,0.7), 0 0 0 10px rgba(37,211,102,0.08)}
}

/* ===== INNER PAGES ===== */
.inner-hero {
  background: linear-gradient(rgba(10,10,20,0.85), rgba(10,10,20,0.85)), url('../img/banner.jpeg') center/cover no-repeat;
  padding: 160px 0 80px;
  text-align: center;
}
.inner-hero-badge {
  display: inline-block;
  background: rgba(192,57,43,0.2);
  border: 1px solid rgba(192,57,43,0.4);
  color: rgba(255,255,255,0.8);
  font-size: 1.2rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.inner-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
}
.inner-hero-title span { color: var(--red); }
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 1.4rem;
  color: rgba(255,255,255,0.5);
}
.breadcrumb a { color: rgba(255,255,255,0.7); transition: var(--transition); }
.breadcrumb a:hover { color: var(--red); }
.breadcrumb i { font-size: 1rem; }

/* Admission Form Page */
.admission-form-section { background: var(--light); padding: 80px 0; }
.form-wrapper {
  max-width: 900px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.form-wrapper-header {
  background: var(--gradient);
  padding: 40px;
  text-align: center;
  color: var(--white);
}
.form-wrapper-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 3.2rem;
  font-weight: 800;
  margin-bottom: 8px;
}
.form-wrapper-header p { font-size: 1.5rem; opacity: 0.85; }
.form-wrapper-body { padding: 50px 60px; }
.admission-form .form-section-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--dark);
  border-left: 4px solid var(--red);
  padding-left: 16px;
  margin: 32px 0 20px;
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-grid.three { grid-template-columns: 1fr 1fr 1fr; }
.form-grid.cols-3-1 { grid-template-columns: 3fr 1fr; }
.full-width { grid-column: 1 / -1; }
.passport-box {
  width: 120px; height: 150px;
  border: 2px dashed var(--red);
  border-radius: var(--radius-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--gray);
  text-align: center;
  padding: 12px;
  float: right;
}
.passport-box i { font-size: 3rem; color: var(--red); margin-bottom: 8px; }
.declaration-box {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 20px;
  margin: 8px 0;
}
.declaration-box p { font-size: 1.4rem; color: var(--gray); line-height: 1.7; font-style: italic; }
.signature-line {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  gap: 20px;
  margin-top: 20px;
}
.sig-item { text-align: center; }
.sig-line {
  width: 180px; height: 1px;
  background: var(--text);
  margin-bottom: 6px;
}
.sig-label { font-size: 1.2rem; color: var(--gray); }
.attachment-box {
  background: rgba(192,57,43,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  margin-top: 20px;
}
.attachment-box .att-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--red);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.attachment-box ul { padding-left: 20px; }
.attachment-box ul li {
  font-size: 1.4rem;
  color: var(--text);
  margin-bottom: 6px;
  position: relative;
  list-style: disc;
}

/* Privacy Policy & Terms */
.policy-section { padding: 80px 0; background: var(--white); }
.policy-content { max-width: 860px; margin: 0 auto; }
.policy-toc {
  background: var(--light);
  border-radius: var(--radius);
  padding: 30px;
  margin-bottom: 50px;
}
.policy-toc h3 { font-size: 1.8rem; font-weight: 700; color: var(--dark); margin-bottom: 16px; }
.policy-toc ol { padding-left: 20px; }
.policy-toc ol li {
  font-size: 1.5rem;
  color: var(--gray);
  margin-bottom: 8px;
}
.policy-toc ol li a { color: var(--red); transition: var(--transition); }
.policy-toc ol li a:hover { color: var(--red-dark); text-decoration: underline; }
.policy-block { margin-bottom: 50px; }
.policy-block h2 {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--light);
}
.policy-block h2 span { color: var(--red); }
.policy-block p {
  font-size: 1.5rem;
  color: var(--gray);
  line-height: 1.9;
  margin-bottom: 16px;
}
.policy-block ul { padding-left: 20px; margin-bottom: 16px; }
.policy-block ul li {
  font-size: 1.5rem;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 8px;
  position: relative;
  list-style: disc;
}
.policy-block strong { color: var(--text); font-weight: 600; }
.policy-contact-box {
  background: var(--gradient-dark);
  border-radius: var(--radius);
  padding: 36px;
  margin-top: 50px;
  text-align: center;
}
.policy-contact-box h3 { font-size: 2.4rem; color: var(--white); margin-bottom: 12px; }
.policy-contact-box p { font-size: 1.5rem; color: rgba(255,255,255,0.6); margin-bottom: 20px; }
.policy-contact-box a { color: var(--gold); text-decoration: underline; }

/* ===== ANIMATIONS ===== */
/* reveal initial state handled by GSAP inline styles */

/* ===== MOBILE MENU OVERLAY ===== */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(3px);
  z-index: 997;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.nav-overlay.active { opacity: 1; pointer-events: auto; }

/* Mobile menu header — hidden on desktop */
.nav-menu-header { display: none; }
.nav-menu-footer { display: none; }

/* Hamburger base — hidden on desktop */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
  z-index: 1001;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  width: 26px; height: 2px;
  background: var(--white);
  border-radius: 50px;
  transition: var(--transition);
  transform-origin: center;
}
.hamburger.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ===== RESPONSIVE ===== */

/* --- 1200px --- */
@media (max-width: 1200px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; gap: 36px; }
  .hero { height: 90vh; min-height: 560px; }
}

/* --- 1024px (tablet) --- */
@media (max-width: 1024px) {
  .section-padding { padding: 80px 0; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-image-wrap { max-width: 480px; margin: 0 auto; }
  .about-float-card { display: none; }
  .guide-steps { grid-template-columns: repeat(2, 1fr); }
  .guide-steps::before { display: none; }
  .guide-cta {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 36px 24px;
  }
  .guide-cta-actions { justify-content: center; flex-wrap: wrap; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .gallery-grid { grid-template-rows: 220px 220px; }
  .hero { height: 90vh; min-height: 520px; }
}

/* --- 768px --- */
@media (max-width: 768px) {
  html { font-size: 57%; }
  .section-padding { padding: 70px 0; }
  .section-title { font-size: 3rem; }
  .section-subtitle { font-size: 1.55rem; }
  .container { padding: 0 16px; }

  /* --- NAVBAR --- */
  .hamburger { display: flex; }
  .nav-overlay { display: block; }

  .nav-menu {
    position: fixed;
    top: 0; right: -100%;
    width: 300px;
    max-width: 85vw;
    height: 100vh;
    height: 100dvh;
    background: #0d0d1f;
    flex-direction: column;
    align-items: stretch;
    padding: 0;
    gap: 0;
    transition: right 0.4s cubic-bezier(0.4,0,0.2,1);
    z-index: 999;
    border-left: 1px solid rgba(255,255,255,0.06);
    overflow-y: auto;
    overflow-x: hidden;
    box-shadow: -10px 0 40px rgba(0,0,0,0.4);
  }
  .nav-menu.open { right: 0; }

  /* Mobile menu header */
  .nav-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    background: rgba(192,57,43,0.08);
    flex-shrink: 0;
    position: sticky;
    top: 0;
    z-index: 2;
    backdrop-filter: blur(10px);
  }
  .nav-menu-logo {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .nav-menu-logo img {
    width: 36px; height: 36px;
    object-fit: contain;
    border-radius: 8px;
  }
  .nav-menu-logo span {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: 1px;
  }
  .nav-close-btn {
    width: 36px; height: 36px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.8);
    font-size: 1.6rem;
    cursor: pointer;
    transition: var(--transition);
    flex-shrink: 0;
  }
  .nav-close-btn:hover { background: var(--red); border-color: var(--red); color: var(--white); }

  /* Nav links */
  .nav-menu > li { width: 100%; }
  .nav-link {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    font-weight: 500;
    color: rgba(255,255,255,0.75);
    padding: 14px 24px;
    width: 100%;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    border-radius: 0;
    transition: var(--transition);
  }
  .nav-link::before {
    content: '';
    width: 3px; height: 0;
    background: var(--red);
    border-radius: 50px;
    flex-shrink: 0;
    transition: height 0.3s ease;
  }
  .nav-link::after { display: none; }
  .nav-link:hover, .nav-link.active {
    color: var(--white);
    background: rgba(255,255,255,0.04);
    padding-left: 28px;
  }
  .nav-link:hover::before, .nav-link.active::before { height: 24px; }
  .nav-link.active { color: var(--red); }

  /* Enroll button in mobile */
  .nav-menu > li:last-of-type { padding: 16px 24px; margin-top: 8px; }
  .nav-cta {
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--gradient) !important;
    color: var(--white) !important;
    padding: 14px 20px !important;
    border-radius: 12px !important;
    font-size: 1.5rem;
    font-weight: 600;
    width: 100%;
    box-shadow: var(--shadow-red);
  }
  .nav-cta::before { display: none !important; }
  .nav-cta:hover { background: var(--gradient) !important; padding-left: 20px !important; opacity: 0.9; }

  /* Mobile menu footer */
  .nav-menu-footer {
    display: flex;
    justify-content: center;
    padding: 20px 24px;
    margin-top: auto;
    border-top: 1px solid rgba(255,255,255,0.06);
    flex-shrink: 0;
  }
  .nav-menu-footer a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.5);
    font-size: 1.4rem;
    transition: var(--transition);
  }
  .nav-menu-footer a i { color: var(--red); }
  .nav-menu-footer a:hover { color: var(--white); }

  /* --- HERO --- */
  .hero {
    height: 70vh;
    min-height: 460px;
  }
  .hero-bottom {
    position: relative;
    bottom: auto;
  }
  .hero-swiper {
    height: calc(70vh - 130px);
    min-height: 330px;
  }
  .swiper-slide {
    padding-top: 76px;
    padding-bottom: 24px;
    align-items: center;
  }
  .hero-scroll { display: none; }
  .slide-content { padding: 0 16px; }
  /* Stats bar: 2-col grid */
  .hero-stats .container {
    grid-template-columns: repeat(2, 1fr);
  }
  .stat-item { padding: 16px 10px; }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-top: 1px solid rgba(255,255,255,0.08); }
  .stat-item:nth-child(4) { border-top: 1px solid rgba(255,255,255,0.08); border-right: none; }
  .stat-number { font-size: 2.6rem; }

  /* --- ABOUT --- */
  .about-img-badge {
    left: 10px; right: auto;
    min-width: 180px;
  }

  /* --- FEATURES --- */
  .features-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }

  /* --- SCHEDULE --- */
  .schedule-grid { grid-template-columns: 1fr; }
  .schedule-tabs { gap: 8px; }
  .tab-btn { padding: 10px 20px; font-size: 1.35rem; }

  /* --- ADMISSION GUIDE --- */
  .guide-steps { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .guide-cta { padding: 30px 20px; }
  .guide-cta-text .cta-title { font-size: 2.2rem; }

  /* --- GALLERY --- */
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 180px 180px 180px;
  }
  .gallery-item.large { grid-row: span 2; }
  .gallery-item.wide { grid-column: span 2; }

  /* --- TESTIMONIALS --- */
  .testimonial-card { padding: 24px; }

  /* --- CONTACT --- */
  .contact-form-wrap { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }

  /* --- FOOTER --- */
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-top { padding: 60px 0 40px; }
  .footer-bottom-inner { flex-direction: column; text-align: center; gap: 12px; }
  .footer-legal { justify-content: center; flex-wrap: wrap; gap: 14px; }

  /* --- INNER PAGES --- */
  .inner-hero { padding: 130px 0 60px; }
  .inner-hero-title { font-size: 3.6rem; }
  .form-wrapper-body { padding: 28px 20px; }
  .form-grid { grid-template-columns: 1fr !important; }
  .signature-line { flex-direction: column; align-items: flex-start; gap: 24px; }
  .sig-line { width: 100%; max-width: 200px; }
  .passport-box { float: none; margin: 0 auto 24px; }
  .policy-section { padding: 60px 0; }
  .policy-toc { padding: 20px; }

  /* --- CURSOR --- */
  .cursor-dot, .cursor-circle { display: none; }
  body { cursor: auto; }
}

/* --- 576px --- */
@media (max-width: 576px) {
  html { font-size: 54%; }
  .section-padding { padding: 60px 0; }
  .section-title { font-size: 2.8rem; }
  .btn { padding: 14px 28px; font-size: 1.4rem; }

  /* Hero */
  .hero { height: 70vh; min-height: 440px; }
  .hero-swiper { min-height: 310px; }
  .swiper-slide {
    padding-top: 72px;
    padding-bottom: 20px;
    align-items: center;
  }
  .slide-title { font-size: clamp(2.4rem, 8vw, 3.2rem) !important; }
  .slide-subtitle { font-size: 1.35rem !important; margin-bottom: 28px; }
  .slide-badge { font-size: 1.1rem; padding: 6px 14px; }
  .slide-actions { flex-direction: column; gap: 10px; }
  .slide-actions .btn { width: 100%; justify-content: center; }
  .stat-number { font-size: 2.2rem; }
  .stat-label { font-size: 1rem; }

  /* About */
  .about-img-badge { position: static; margin: 16px auto 0; max-width: 220px; }
  .about-image-wrap { padding-bottom: 0; }
  .about-main-img img { height: 380px; }
  .about-highlights { grid-template-columns: 1fr; }
  .mentor-card { flex-direction: column; text-align: center; gap: 16px; }
  .mentor-contact { margin: 0; text-align: center; }
  .mentor-contact a { justify-content: center; }

  /* Features */
  .features-grid { grid-template-columns: 1fr; gap: 14px; }
  .feature-card { padding: 28px 20px; }

  /* Guide */
  .guide-steps { grid-template-columns: 1fr; }
  .guide-cta-actions { flex-direction: column; }
  .guide-cta-actions .btn { width: 100%; justify-content: center; }

  /* Gallery */
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: unset;
  }
  .gallery-item { height: 220px; }
  .gallery-item.large, .gallery-item.wide { grid-row: span 1; grid-column: span 1; }

  /* Footer */
  .footer-legal { gap: 10px; }
  .footer-bottom-inner { gap: 8px; }

  /* Inner pages */
  .inner-hero-title { font-size: 3rem; }
  .form-wrapper-header { padding: 28px 20px; }
  .form-wrapper-header h2 { font-size: 2.4rem; }
  .policy-block h2 { font-size: 2rem; }
  .guide-cta-text .cta-title { font-size: 2rem; }
  .tab-btn { padding: 9px 16px; font-size: 1.25rem; }
}

/* --- 400px --- */
@media (max-width: 400px) {
  html { font-size: 51%; }
  .container { padding: 0 14px; }
  .nav-menu { width: 100%; max-width: 100%; border-left: none; }
  .section-title { font-size: 2.5rem; }
  .hero { height: 70vh; min-height: 420px; }
  .hero-swiper { min-height: 290px; }
  .swiper-slide { padding-top: 70px; padding-bottom: 18px; align-items: center; }
  .hero-stats .container { grid-template-columns: repeat(2, 1fr); }
  .stat-item { padding: 12px 6px; }
  .stat-number { font-size: 2rem; }
  .stat-label { font-size: 0.95rem; letter-spacing: 0; }
  .guide-cta { padding: 24px 16px; }
}
