/* ==========================================================================
   ZARA Coaching Institute - Ladnun
   Modern, Educational, Vibrant Theme (Blue, Red, Yellow)
   ========================================================================== */

:root {
  /* Brand Color Palette */
  --primary-blue: #1e3a8a;       /* Deep Royal Blue */
  --primary-blue-dark: #0f172a;  /* Dark Slate Navy */
  --primary-blue-light: #2563eb; /* Vivid Electric Blue */
  --primary-blue-soft: #eff6ff;  /* Soft Blue Ice Tint */
  
  --accent-red: #dc2626;         /* Urgent Crimson Red */
  --accent-red-hover: #b91c1c;   /* Darker Crimson */
  --accent-red-soft: #fef2f2;    /* Soft Red Tint */

  --highlight-yellow: #f59e0b;   /* Warm Gold Amber */
  --highlight-yellow-light: #fbbf24; /* Bright Canary */
  --highlight-yellow-soft: #fffbeb;  /* Warm Pale Yellow */

  /* Neutral Shades */
  --text-main: #1e293b;
  --text-muted: #64748b;
  --text-light: #94a3b8;
  --bg-page: #f8fafc;
  --bg-white: #ffffff;
  --bg-card: #ffffff;
  --border-color: #e2e8f0;
  --border-focus: #2563eb;

  /* Elevation Shadows */
  --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.08);
  --shadow-md: 0 4px 6px -1px rgba(15, 23, 42, 0.1), 0 2px 4px -2px rgba(15, 23, 42, 0.06);
  --shadow-lg: 0 10px 25px -3px rgba(30, 58, 138, 0.12), 0 4px 6px -4px rgba(30, 58, 138, 0.06);
  --shadow-xl: 0 20px 35px -5px rgba(30, 58, 138, 0.18), 0 8px 10px -6px rgba(30, 58, 138, 0.08);
  --shadow-glow: 0 0 25px rgba(220, 38, 38, 0.35);

  /* Typography */
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);

  /* Radii */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-full: 9999px;
}

/* Base Styles & Reset */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text-main);
  background-color: var(--bg-page);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button, input, select, textarea {
  font-family: inherit;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

/* ==========================================================================
   Typography & Reusable Utilities
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
  color: var(--primary-blue-dark);
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3.5rem auto;
}

.badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.badge-tag.badge-blue {
  background-color: var(--primary-blue-soft);
  color: var(--primary-blue);
  border: 1px solid rgba(37, 99, 235, 0.2);
}

.badge-tag.badge-red {
  background-color: var(--accent-red-soft);
  color: var(--accent-red);
  border: 1px solid rgba(220, 38, 38, 0.2);
}

.badge-tag.badge-yellow {
  background-color: var(--highlight-yellow-soft);
  color: #b45309;
  border: 1px solid rgba(245, 158, 11, 0.3);
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.section-title span.highlight-red {
  color: var(--accent-red);
  position: relative;
}

.section-title span.highlight-blue {
  color: var(--primary-blue-light);
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.85rem 1.8rem;
  border-radius: var(--radius-md);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: all var(--transition-normal);
  text-align: center;
  white-space: nowrap;
}

.btn-primary-red {
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(220, 38, 38, 0.4);
}

.btn-primary-red:hover {
  background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(220, 38, 38, 0.5);
  color: #ffffff;
}

.btn-primary-blue {
  background: linear-gradient(135deg, #2563eb 0%, #1e3a8a 100%);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35);
}

.btn-primary-blue:hover {
  background: linear-gradient(135deg, #1d4ed8 0%, #172554 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(37, 99, 235, 0.45);
  color: #ffffff;
}

.btn-accent-yellow {
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  color: #1e1b4b;
  box-shadow: 0 4px 14px rgba(245, 158, 11, 0.35);
}

.btn-accent-yellow:hover {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(245, 158, 11, 0.45);
}

.btn-outline-white {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
}

.btn-outline-white:hover {
  background: #ffffff;
  color: var(--primary-blue);
  transform: translateY(-2px);
}

.btn-outline-blue {
  background: transparent;
  color: var(--primary-blue);
  border: 2px solid var(--primary-blue);
}

.btn-outline-blue:hover {
  background: var(--primary-blue);
  color: #ffffff;
  transform: translateY(-2px);
}

.btn-sm {
  padding: 0.55rem 1.2rem;
  font-size: 0.9rem;
  border-radius: var(--radius-sm);
}

/* ==========================================================================
   Top Alert Bar
   ========================================================================== */
.top-bar {
  background: linear-gradient(90deg, #dc2626 0%, #b91c1c 50%, #991b1b 100%);
  color: #ffffff;
  font-size: 0.88rem;
  font-weight: 600;
  padding: 0.55rem 0;
  position: relative;
  z-index: 1001;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.top-bar-announcement {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.pulse-dot {
  width: 9px;
  height: 9px;
  background-color: var(--highlight-yellow);
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 0 0 rgba(251, 191, 36, 0.7);
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(251, 191, 36, 0.7);
  }
  70% {
    box-shadow: 0 0 0 8px rgba(251, 191, 36, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(251, 191, 36, 0);
  }
}

.top-bar-contact {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.top-bar-contact a {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: #ffffff;
  transition: opacity var(--transition-fast);
}

.top-bar-contact a:hover {
  opacity: 0.85;
}

/* ==========================================================================
   Header & Sticky Navigation
   ========================================================================== */
.main-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  z-index: 1000;
  transition: all var(--transition-normal);
}

.main-header.scrolled {
  box-shadow: var(--shadow-md);
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 0;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.logo-badge {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
  border: 2px solid var(--highlight-yellow);
  color: #ffffff;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 800;
  font-family: var(--font-heading);
  box-shadow: var(--shadow-sm);
}

.logo-text h1 {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--primary-blue-dark);
  line-height: 1.1;
}

.logo-text h1 span {
  color: var(--accent-red);
}

.logo-tagline {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-main);
  position: relative;
  padding: 0.4rem 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-red);
  transition: width var(--transition-fast);
}

.nav-link:hover, .nav-link.active {
  color: var(--primary-blue-light);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-phone-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--primary-blue);
  background: var(--primary-blue-soft);
  padding: 0.55rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(37, 99, 235, 0.15);
}

.nav-phone-btn:hover {
  background: #dbeafe;
  color: var(--primary-blue-dark);
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--primary-blue-dark);
  cursor: pointer;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
  position: relative;
  background: linear-gradient(135deg, #0b192c 0%, #1e3a8a 60%, #172554 100%);
  color: #ffffff;
  padding: 5rem 0 6rem 0;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -10%;
  right: -5%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.18) 0%, rgba(245, 158, 11, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: -15%;
  left: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(220, 38, 38, 0.22) 0%, rgba(220, 38, 38, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 620px;
}

.hero-highlight-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(251, 191, 36, 0.5);
  padding: 0.45rem 1.1rem;
  border-radius: var(--radius-full);
  color: var(--highlight-yellow-light);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 1.3rem;
  backdrop-filter: blur(8px);
}

.hero-title {
  font-size: 3.4rem;
  font-weight: 800;
  line-height: 1.12;
  color: #ffffff;
  margin-bottom: 1.2rem;
  letter-spacing: -0.03em;
}

.hero-title span.city-name {
  color: var(--highlight-yellow-light);
  display: inline-block;
  position: relative;
}

.hero-tagline {
  font-size: 1.7rem;
  font-weight: 700;
  color: #fca5a5;
  margin-bottom: 0.75rem;
  font-family: var(--font-heading);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-tagline i {
  color: var(--highlight-yellow);
}

.hero-subtext {
  font-size: 1.2rem;
  color: #cbd5e1;
  margin-bottom: 2.2rem;
  font-weight: 400;
  line-height: 1.5;
}

.hero-subtext strong {
  color: #ffffff;
  font-weight: 600;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  margin-bottom: 2.5rem;
}

.hero-trust-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 1.8rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.trust-item-icon {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--highlight-yellow-light);
  font-size: 1.15rem;
  flex-shrink: 0;
}

.trust-item-text h4 {
  color: #ffffff;
  font-size: 1.05rem;
  margin-bottom: 0.15rem;
}

.trust-item-text p {
  color: #94a3b8;
  font-size: 0.8rem;
}

/* Hero Media Box */
.hero-media-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-image-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.6);
  border: 3px solid rgba(255, 255, 255, 0.2);
  background: #0f172a;
}

.hero-image-card img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.hero-image-card:hover img {
  transform: scale(1.03);
}

/* Floating Badges on Hero Image */
.floating-badge {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  color: var(--primary-blue-dark);
  padding: 0.75rem 1.1rem;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(255, 255, 255, 0.8);
  z-index: 5;
  animation: float 4s ease-in-out infinite;
}

.floating-badge.badge-top {
  top: 1.5rem;
  left: -1.5rem;
}

.floating-badge.badge-bottom {
  bottom: 1.5rem;
  right: -1.2rem;
  animation-delay: 2s;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-8px);
  }
}

.badge-icon-box {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.badge-icon-box.icon-blue {
  background: var(--primary-blue-soft);
  color: var(--primary-blue);
}

.badge-icon-box.icon-yellow {
  background: var(--highlight-yellow-soft);
  color: #b45309;
}

.badge-details h5 {
  font-size: 0.95rem;
  margin-bottom: 0.1rem;
  color: var(--primary-blue-dark);
}

.badge-details p {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 600;
}

/* ==========================================================================
   Urgent Admissions Callout Banner
   ========================================================================== */
.admission-banner-strip {
  background: linear-gradient(135deg, #fffbeb 0%, #fef2f2 100%);
  border-top: 3px solid var(--accent-red);
  border-bottom: 3px solid var(--highlight-yellow);
  padding: 2.2rem 0;
  box-shadow: var(--shadow-sm);
}

.admission-strip-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.admission-strip-left {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.urgent-icon-pill {
  width: 56px;
  height: 56px;
  background: var(--accent-red);
  color: #ffffff;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  box-shadow: 0 6px 16px rgba(220, 38, 38, 0.35);
  flex-shrink: 0;
}

.admission-strip-text h3 {
  font-size: 1.5rem;
  margin-bottom: 0.2rem;
  color: var(--primary-blue-dark);
}

.admission-strip-text h3 span {
  color: var(--accent-red);
}

.admission-strip-text p {
  font-size: 0.98rem;
  color: var(--text-muted);
  font-weight: 600;
}

.admission-strip-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* ==========================================================================
   About Imran Khan Sir & Institute Section
   ========================================================================== */
.about-section {
  padding: 6.5rem 0;
  background-color: #ffffff;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 4rem;
  align-items: center;
}

.about-image-wrapper {
  position: relative;
}

.about-image-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 4px solid #ffffff;
}

.about-image-card img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.experience-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1rem;
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
  color: #ffffff;
  border: 3px solid var(--highlight-yellow);
  padding: 1.2rem 1.6rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  text-align: center;
}

.experience-badge .num {
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1;
  color: var(--highlight-yellow-light);
  font-family: var(--font-heading);
}

.experience-badge .text {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.about-content-box .educator-subtitle {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--accent-red);
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.about-content-box h2 {
  font-size: 2.5rem;
  margin-bottom: 1.2rem;
  line-height: 1.2;
}

.sir-pills-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
}

.sir-pill {
  background: var(--primary-blue-soft);
  color: var(--primary-blue);
  border: 1px solid rgba(37, 99, 235, 0.2);
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.sir-pill i {
  color: var(--accent-red);
}

.about-description {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.sir-quote-box {
  background: var(--highlight-yellow-soft);
  border-left: 4px solid var(--highlight-yellow);
  padding: 1rem 1.4rem;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin-bottom: 2rem;
  font-style: italic;
  color: #78350f;
  font-weight: 500;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
  margin-top: 2rem;
  border-top: 1px solid var(--border-color);
  padding-top: 2rem;
}

.stat-card {
  text-align: center;
}

.stat-number {
  font-size: 2rem;
  font-weight: 800;
  font-family: var(--font-heading);
  color: var(--primary-blue);
  line-height: 1.1;
}

.stat-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 600;
  margin-top: 0.25rem;
}

/* ==========================================================================
   Courses Section
   ========================================================================== */
.courses-section {
  padding: 6.5rem 0;
  background-color: var(--bg-page);
}

.course-filter-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 3.5rem;
}

.filter-tab {
  background: #ffffff;
  color: var(--text-main);
  border: 1px solid var(--border-color);
  padding: 0.6rem 1.4rem;
  border-radius: var(--radius-full);
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition-normal);
}

.filter-tab:hover {
  border-color: var(--primary-blue-light);
  color: var(--primary-blue);
}

.filter-tab.active {
  background: var(--primary-blue);
  color: #ffffff;
  border-color: var(--primary-blue);
  box-shadow: 0 4px 12px rgba(30, 58, 138, 0.25);
}

.courses-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.course-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  position: relative;
}

.course-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(37, 99, 235, 0.3);
}

.course-card-header {
  padding: 1.8rem 1.8rem 1.2rem 1.8rem;
  position: relative;
}

.course-card-header.header-blue {
  background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
  color: #ffffff;
}

.course-card-header.header-red {
  background: linear-gradient(135deg, #b91c1c 0%, #dc2626 100%);
  color: #ffffff;
}

.course-card-header.header-yellow {
  background: linear-gradient(135deg, #b45309 0%, #d97706 100%);
  color: #ffffff;
}

.course-card-header.header-purple {
  background: linear-gradient(135deg, #4c1d95 0%, #6d28d9 100%);
  color: #ffffff;
}

.course-card-header.header-teal {
  background: linear-gradient(135deg, #0f766e 0%, #0d9488 100%);
  color: #ffffff;
}

.course-card-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #ffffff;
  margin-bottom: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.course-class-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: rgba(255, 255, 255, 0.25);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  margin-bottom: 0.5rem;
}

.course-card-title {
  font-size: 1.4rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.25;
}

.course-card-body {
  padding: 1.8rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.course-feature-list {
  margin-bottom: 2rem;
}

.course-feature-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--text-main);
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.course-feature-list li i {
  color: #16a34a;
  font-size: 1rem;
  background: #dcfce7;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.course-card-footer {
  border-top: 1px solid var(--border-color);
  padding-top: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.course-card-footer .batch-info {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 600;
}

.course-card-footer .batch-info span {
  color: var(--accent-red);
  font-weight: 700;
}

/* ==========================================================================
   Features Section (Why Choose ZARA)
   ========================================================================== */
.features-section {
  padding: 6.5rem 0;
  background: #ffffff;
  position: relative;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.feature-box {
  background: var(--bg-page);
  border-radius: var(--radius-lg);
  padding: 2.2rem 1.8rem;
  border: 1px solid var(--border-color);
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.feature-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--primary-blue-light);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-normal);
}

.feature-box:hover::before {
  transform: scaleX(1);
}

.feature-box:hover {
  transform: translateY(-6px);
  background: #ffffff;
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-blue-light);
}

.feature-icon-wrapper {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  transition: transform var(--transition-bounce);
}

.feature-box:hover .feature-icon-wrapper {
  transform: scale(1.1) rotate(5deg);
}

.feature-icon-blue {
  background: var(--primary-blue-soft);
  color: var(--primary-blue);
}

.feature-icon-red {
  background: var(--accent-red-soft);
  color: var(--accent-red);
}

.feature-icon-yellow {
  background: var(--highlight-yellow-soft);
  color: #b45309;
}

.feature-icon-purple {
  background: #f3e8ff;
  color: #7e22ce;
}

.feature-box h3 {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
}

.feature-box p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ==========================================================================
   Admission Section (Urgent Application Box)
   ========================================================================== */
.admission-cta-section {
  padding: 6.5rem 0;
  background: linear-gradient(135deg, #0b192c 0%, #1e3a8a 100%);
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.admission-cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(circle, rgba(220, 38, 38, 0.2) 0%, transparent 70%);
  pointer-events: none;
}

.admission-cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.admission-cta-info h2 {
  color: #ffffff;
  font-size: 2.8rem;
  line-height: 1.15;
  margin-bottom: 1.2rem;
}

.admission-cta-info p {
  font-size: 1.15rem;
  color: #cbd5e1;
  margin-bottom: 2rem;
}

.urgent-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(220, 38, 38, 0.25);
  border: 1px solid #ef4444;
  color: #fca5a5;
  padding: 0.4rem 1.1rem;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.admission-perks-list {
  margin-bottom: 2.5rem;
}

.admission-perks-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.05rem;
  color: #f1f5f9;
  margin-bottom: 0.85rem;
  font-weight: 500;
}

.admission-perks-list li i {
  color: var(--highlight-yellow-light);
  font-size: 1.1rem;
}

/* Fast Application Card */
.admission-form-card {
  background: #ffffff;
  color: var(--text-main);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-xl);
  border: 2px solid rgba(251, 191, 36, 0.3);
}

.admission-form-card h3 {
  font-size: 1.7rem;
  margin-bottom: 0.4rem;
}

.admission-form-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-bottom: 1.8rem;
}

.form-group {
  margin-bottom: 1.2rem;
}

.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  color: var(--primary-blue-dark);
}

.form-control {
  width: 100%;
  padding: 0.8rem 1rem;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border-color);
  font-size: 0.95rem;
  outline: none;
  transition: border-color var(--transition-fast);
  background: #f8fafc;
}

.form-control:focus {
  border-color: var(--primary-blue-light);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

/* ==========================================================================
   Gallery Section
   ========================================================================== */
.gallery-section {
  padding: 6.5rem 0;
  background: var(--bg-page);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 4 / 3;
  cursor: pointer;
  background: #000;
}

.gallery-item.featured {
  grid-column: span 2;
  aspect-ratio: 16 / 9;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.85) 0%, rgba(15, 23, 42, 0.1) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  color: #ffffff;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay h4 {
  color: #ffffff;
  font-size: 1.25rem;
  margin-bottom: 0.2rem;
}

.gallery-overlay p {
  color: #cbd5e1;
  font-size: 0.85rem;
}

.gallery-zoom-icon {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--primary-blue-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}

/* ==========================================================================
   Testimonials Section
   ========================================================================== */
.testimonials-section {
  padding: 6.5rem 0;
  background: #ffffff;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.testimonial-card {
  background: var(--bg-page);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all var(--transition-normal);
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--highlight-yellow);
}

.testimonial-stars {
  color: #f59e0b;
  font-size: 1rem;
  margin-bottom: 1.2rem;
  display: flex;
  gap: 0.2rem;
}

.testimonial-text {
  font-size: 0.98rem;
  color: var(--text-main);
  line-height: 1.6;
  margin-bottom: 1.8rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  border-top: 1px solid var(--border-color);
  padding-top: 1.2rem;
}

.author-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--primary-blue);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  border: 2px solid var(--highlight-yellow);
}

.author-info h5 {
  font-size: 1rem;
  margin-bottom: 0.1rem;
}

.author-info p {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 600;
}

/* ==========================================================================
   Contact Section
   ========================================================================== */
.contact-section {
  padding: 6.5rem 0;
  background: var(--bg-page);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
}

.contact-info-wrapper h2 {
  font-size: 2.4rem;
  margin-bottom: 1rem;
}

.contact-info-wrapper .lead-text {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 2.2rem;
}

.contact-cards-stack {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.contact-detail-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1.4rem 1.6rem;
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
}

.contact-detail-card:hover {
  transform: translateX(6px);
  border-color: var(--primary-blue-light);
  box-shadow: var(--shadow-md);
}

.contact-card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.contact-card-icon.icon-red {
  background: var(--accent-red-soft);
  color: var(--accent-red);
}

.contact-card-icon.icon-blue {
  background: var(--primary-blue-soft);
  color: var(--primary-blue);
}

.contact-card-icon.icon-green {
  background: #dcfce7;
  color: #16a34a;
}

.contact-card-content h4 {
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
}

.contact-card-content p {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.contact-card-content a {
  font-weight: 700;
  color: var(--primary-blue);
}

.contact-card-content a:hover {
  color: var(--accent-red);
}

.direct-phone-callout {
  margin-top: 1.5rem;
  background: linear-gradient(135deg, var(--accent-red) 0%, #b91c1c 100%);
  color: #ffffff;
  padding: 1.4rem 1.6rem;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 8px 20px rgba(220, 38, 38, 0.35);
}

.direct-phone-callout h4 {
  color: #ffffff;
  font-size: 1.1rem;
  margin-bottom: 0.2rem;
}

.direct-phone-callout .phone-num {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--highlight-yellow-light);
  font-family: var(--font-heading);
}

/* Contact Form */
.contact-form-box {
  background: #ffffff;
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
}

.contact-form-box h3 {
  font-size: 1.8rem;
  margin-bottom: 0.4rem;
}

.contact-form-box p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 2rem;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.main-footer {
  background: #0b192c;
  color: #94a3b8;
  padding-top: 5rem;
  border-top: 4px solid var(--accent-red);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr 0.9fr 1.2fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-brand h2 {
  color: #ffffff;
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}

.footer-brand h2 span {
  color: var(--accent-red);
}

.footer-brand p {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.footer-social-links {
  display: flex;
  gap: 0.75rem;
}

.social-btn {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transition: all var(--transition-fast);
}

.social-btn:hover {
  background: var(--primary-blue-light);
  transform: translateY(-2px);
}

.footer-col h4 {
  color: #ffffff;
  font-size: 1.15rem;
  margin-bottom: 1.3rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 35px;
  height: 2px;
  background: var(--highlight-yellow);
}

.footer-links-list li {
  margin-bottom: 0.65rem;
}

.footer-links-list a {
  font-size: 0.92rem;
  color: #cbd5e1;
  transition: all var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.footer-links-list a:hover {
  color: var(--highlight-yellow-light);
  transform: translateX(4px);
}

.footer-bottom-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.8rem 0;
  font-size: 0.88rem;
  text-align: center;
  color: #64748b;
}

.footer-bottom-bar span.heart {
  color: var(--accent-red);
}

/* ==========================================================================
   Floating Action Buttons (WhatsApp & Scroll to Top)
   ========================================================================== */
.floating-whatsapp {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  z-index: 999;
  transition: all var(--transition-bounce);
  animation: pulse-wa 2.5s infinite;
}

.floating-whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
  color: #ffffff;
}

.whatsapp-tooltip {
  position: absolute;
  right: 70px;
  background: #1e293b;
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.4rem 0.8rem;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transform: translateX(10px);
  transition: all var(--transition-fast);
}

.floating-whatsapp:hover .whatsapp-tooltip {
  opacity: 1;
  transform: translateX(0);
}

@keyframes pulse-wa {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
  }
  70% {
    box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

.back-to-top {
  position: fixed;
  bottom: 95px;
  right: 28px;
  width: 44px;
  height: 44px;
  background: #ffffff;
  border: 1px solid var(--border-color);
  color: var(--primary-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--primary-blue);
  color: #ffffff;
  transform: translateY(-3px);
}

/* ==========================================================================
   Admission Modal Popup
   ========================================================================== */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
}

.modal-backdrop.open {
  opacity: 1;
  visibility: visible;
}

.modal-dialog {
  background: #ffffff;
  width: 100%;
  max-width: 580px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  transform: scale(0.92) translateY(20px);
  transition: all var(--transition-bounce);
  position: relative;
}

.modal-backdrop.open .modal-dialog {
  transform: scale(1) translateY(0);
}

.modal-header {
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
  color: #ffffff;
  padding: 1.8rem;
  position: relative;
}

.modal-header h3 {
  color: #ffffff;
  font-size: 1.5rem;
  margin-bottom: 0.3rem;
}

.modal-header p {
  color: #cbd5e1;
  font-size: 0.9rem;
}

.modal-close-btn {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  background: rgba(255, 255, 255, 0.15);
  border: none;
  color: #ffffff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: all var(--transition-fast);
}

.modal-close-btn:hover {
  background: var(--accent-red);
  transform: rotate(90deg);
}

.modal-body {
  padding: 2rem;
  max-height: 75vh;
  overflow-y: auto;
}

/* Toast Notifications */
.toast-container {
  position: fixed;
  bottom: 30px;
  left: 30px;
  z-index: 3000;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.toast {
  background: #1e293b;
  color: #ffffff;
  padding: 1rem 1.4rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.92rem;
  font-weight: 600;
  animation: slideInLeft 0.3s ease;
  border-left: 4px solid var(--highlight-yellow);
}

.toast.success {
  border-left-color: #22c55e;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ==========================================================================
   Special Batches & Official Notices Showcase
   ========================================================================== */
.special-batches-section {
  padding: 6rem 0;
  background: linear-gradient(180deg, #f8fafc 0%, #eef2f6 100%);
  position: relative;
}

.batch-filter-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 3.5rem;
}

.batch-tab {
  background: #ffffff;
  color: var(--text-main);
  border: 1.5px solid var(--border-color);
  padding: 0.6rem 1.3rem;
  border-radius: var(--radius-full);
  font-size: 0.92rem;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all var(--transition-normal);
  box-shadow: var(--shadow-sm);
}

.batch-tab i {
  color: var(--primary-blue-light);
}

.batch-tab:hover {
  border-color: var(--accent-red);
  color: var(--accent-red);
  transform: translateY(-2px);
}

.batch-tab.active {
  background: linear-gradient(135deg, var(--accent-red) 0%, #991b1b 100%);
  color: #ffffff;
  border-color: var(--accent-red);
  box-shadow: 0 4px 14px rgba(220, 38, 38, 0.35);
}

.batch-tab.active i {
  color: #ffffff;
}

/* Flyers Grid */
.flyers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.2rem;
}

.flyer-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1.5px solid var(--border-color);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  position: relative;
}

.flyer-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-blue-light);
}

/* Flyer Image Wrapper */
.flyer-image-wrapper {
  position: relative;
  overflow: hidden;
  background: #0f172a;
  aspect-ratio: 3 / 4;
  cursor: pointer;
}

.flyer-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.5s ease;
}

.flyer-card:hover .flyer-image-wrapper img {
  transform: scale(1.04);
}

.flyer-badge-top {
  position: absolute;
  top: 1rem;
  left: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #ffffff;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.flyer-badge-top.red {
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
}

.flyer-badge-top.blue {
  background: linear-gradient(135deg, #2563eb 0%, #1e3a8a 100%);
}

.flyer-badge-top.green {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.flyer-badge-top.yellow {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: #0f172a;
}

.flyer-zoom-btn {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  transition: all var(--transition-fast);
  z-index: 2;
  backdrop-filter: blur(6px);
}

.flyer-zoom-btn:hover {
  background: var(--accent-red);
  transform: scale(1.1);
  color: #ffffff;
}

/* Flyer Content */
.flyer-content {
  padding: 1.6rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.flyer-tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 0.75rem;
}

.mini-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-full);
}

.mini-tag.tag-red {
  background: #fee2e2;
  color: #b91c1c;
}

.mini-tag.tag-blue {
  background: #e0f2fe;
  color: #0369a1;
}

.mini-tag.tag-green {
  background: #dcfce7;
  color: #15803d;
}

.mini-tag.tag-yellow {
  background: #fef3c7;
  color: #b45309;
}

.flyer-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--primary-blue-dark);
  margin-bottom: 0.4rem;
  line-height: 1.3;
}

.flyer-hook {
  font-size: 0.92rem;
  color: var(--accent-red);
  font-weight: 700;
  font-style: italic;
  margin-bottom: 1rem;
  line-height: 1.4;
}

.flyer-points-list {
  margin-bottom: 1.4rem;
}

.flyer-points-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-size: 0.88rem;
  color: var(--text-main);
  margin-bottom: 0.55rem;
  line-height: 1.45;
}

.flyer-points-list li i {
  color: #16a34a;
  font-size: 0.95rem;
  margin-top: 0.15rem;
  flex-shrink: 0;
}

/* Wings Strip (NDA) */
.defence-wings-strip {
  display: flex;
  gap: 0.4rem;
  margin-bottom: 1rem;
  background: #f1f5f9;
  padding: 0.5rem 0.6rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-color);
}

.wing-item {
  flex: 1;
  text-align: center;
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--primary-blue);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
}

.wing-item i {
  font-size: 1rem;
  color: var(--accent-red);
}

/* English Guarantee Alert */
.english-guarantee-alert {
  background: #ecfdf5;
  border: 1.5px solid #10b981;
  border-radius: var(--radius-sm);
  padding: 0.65rem 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.82rem;
  color: #065f46;
  margin-bottom: 1rem;
}

.english-guarantee-alert i {
  font-size: 1.3rem;
  color: #059669;
  flex-shrink: 0;
}

/* Fee Pricing Cards for Spoken English */
.fee-pricing-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  margin-bottom: 1.2rem;
}

.fee-tier-card {
  background: #f8fafc;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 0.6rem 0.4rem;
  text-align: center;
  position: relative;
}

.fee-tier-card.popular {
  border-color: #f59e0b;
  background: #fffbeb;
}

.fee-tier-badge {
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  background: #f59e0b;
  color: #ffffff;
  font-size: 0.62rem;
  font-weight: 800;
  text-transform: uppercase;
  padding: 0.1rem 0.4rem;
  border-radius: var(--radius-full);
}

.fee-tier-duration {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-muted);
}

.fee-tier-level {
  font-size: 0.72rem;
  color: var(--primary-blue);
  font-weight: 600;
}

.fee-tier-price {
  font-size: 1rem;
  font-weight: 800;
  color: var(--accent-red);
  margin-top: 0.2rem;
  font-family: var(--font-heading);
}

/* 12th Batch Time Strip */
.batch-time-highlight-box {
  background: #fffbeb;
  border: 1px solid #fde68a;
  border-radius: var(--radius-sm);
  padding: 0.75rem 0.9rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.1rem;
}

.time-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
}

.time-item i {
  color: #d97706;
  font-size: 1.1rem;
}

.time-item span {
  color: #b45309;
  font-weight: 700;
}

/* Board Pillars Grid */
.board-pillars-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
  margin-bottom: 1.1rem;
}

.pillar-mini-item {
  background: #f8fafc;
  border: 1px solid var(--border-color);
  padding: 0.45rem 0.6rem;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--primary-blue-dark);
}

.pillar-mini-item i {
  color: var(--accent-red);
  font-size: 0.9rem;
}

/* Flyer Footer */
.flyer-footer {
  border-top: 1px solid var(--border-color);
  padding-top: 1.1rem;
  margin-top: 0.5rem;
}

.flyer-mentor-badge {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 700;
  margin-bottom: 0.9rem;
}

.flyer-mentor-badge i {
  color: var(--highlight-yellow);
}

.flyer-action-group {
  display: flex;
  gap: 0.6rem;
}

.flyer-action-group .btn {
  flex: 1;
  padding: 0.65rem 0.8rem;
  font-size: 0.88rem;
}

/* Course Fee Strip Highlight inside course-card */
.course-fees-strip-highlight {
  display: flex;
  justify-content: space-between;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  padding: 0.4rem 0.75rem;
  border-radius: var(--radius-sm);
  margin-bottom: 1.2rem;
  font-size: 0.82rem;
  color: #166534;
}

.course-fees-strip-highlight span strong {
  color: var(--accent-red);
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
  .hero-content {
    max-width: 100%;
  }
  .hero-tagline {
    justify-content: center;
  }
  .hero-cta-group {
    justify-content: center;
  }
  .hero-trust-bar {
    max-width: 600px;
    margin: 0 auto;
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }
  .flyers-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .courses-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .admission-cta-grid {
    grid-template-columns: 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .top-bar-contact {
    display: none;
  }
  .top-bar-announcement {
    width: 100%;
    justify-content: center;
    font-size: 0.82rem;
  }
  .nav-menu {
    position: fixed;
    top: 75px;
    left: 0;
    width: 100%;
    background: #ffffff;
    flex-direction: column;
    padding: 2rem;
    gap: 1.2rem;
    box-shadow: var(--shadow-lg);
    border-bottom: 2px solid var(--primary-blue);
    transform: translateY(-150%);
    transition: transform var(--transition-normal);
    z-index: 999;
  }
  .nav-menu.open {
    transform: translateY(0);
  }
  .mobile-toggle {
    display: block;
  }
  .nav-phone-btn {
    display: none;
  }
  .hero-title {
    font-size: 2.5rem;
  }
  .hero-trust-bar {
    grid-template-columns: 1fr;
    gap: 1.2rem;
    text-align: left;
  }
  .floating-badge.badge-top {
    left: 0;
  }
  .floating-badge.badge-bottom {
    right: 0;
  }
  .flyers-grid {
    grid-template-columns: 1fr;
  }
  .courses-grid {
    grid-template-columns: 1fr;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .gallery-item.featured {
    grid-column: span 1;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
}
