/*
Theme Name: Lahore CSS Academy
Theme URI: https://lahorecssacademy.edu.pk/
Author: LCA Development Team
Description: Custom Premium Theme for Lahore CSS Academy
Version: 1.0.0
*/

/* =============================================
   LAHORE CSS ACADEMY – Premium Website Styles
   Color Palette: Navy Blue + Gold + White
   ============================================= */

/* ===== CSS CUSTOM PROPERTIES ===== */
:root {
  --navy: #0d1b3e;
  --navy-dark: #080f22;
  --navy-mid: #132050;
  --navy-light: #1a2d6b;
  --gold: #d4a944;
  --gold-light: #e8c56a;
  --gold-dark: #b8902e;
  --white: #ffffff;
  --off-white: #f8f9fc;
  --gray-100: #f1f3f8;
  --gray-200: #e2e6f0;
  --gray-400: #9aa3b8;
  --gray-600: #5a6382;
  --gray-800: #2c3350;
  --text-dark: #1a2035;
  --text-mid: #4a5270;
  --text-light: #8892aa;
  --shadow-sm: 0 2px 8px rgba(13,27,62,0.08);
  --shadow-md: 0 8px 30px rgba(13,27,62,0.12);
  --shadow-lg: 0 20px 60px rgba(13,27,62,0.18);
  --shadow-gold: 0 8px 30px rgba(212,169,68,0.25);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', system-ui, sans-serif;
  --font-display: 'Cinzel', serif;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--font-sans);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; }

/* ===== UTILITIES ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-pad { padding: 5rem 0; }

.dark-section {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 60%, var(--navy-light) 100%);
  color: var(--white);
  position: relative;
}

.dark-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23d4a944' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.section-header { text-align: center; margin-bottom: 3.5rem; }

.section-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
  padding: 0.3rem 1rem;
  border: 1px solid rgba(212,169,68,0.3);
  border-radius: 100px;
  background: rgba(212,169,68,0.08);
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.5vw, 2.75rem);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-title.white { color: var(--white); }

.section-desc {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 600px;
  margin: 0 auto;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.8rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.15);
  opacity: 0;
  transition: opacity 0.2s;
}

.btn:hover::before { opacity: 1; }

.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--navy-dark);
  box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(212,169,68,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
  backdrop-filter: blur(8px);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.7);
  transform: translateY(-2px);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--navy-dark);
  font-weight: 700;
  box-shadow: var(--shadow-gold);
}

.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(212,169,68,0.35); }

.btn-nav {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--navy-dark) !important;
  padding: 0.55rem 1.3rem;
  border-radius: var(--radius-md);
  font-weight: 700;
}

.btn-sm { padding: 0.55rem 1.2rem; font-size: 0.875rem; }
.btn-full { width: 100%; justify-content: center; }

/* ===== TOP BAR ===== */
.topbar {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.8);
  font-size: 0.78rem;
  padding: 0.45rem 0;
  border-bottom: 1px solid rgba(212,169,68,0.2);
}

.topbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.topbar a { color: rgba(255,255,255,0.8); transition: color 0.2s; }
.topbar a:hover { color: var(--gold); }

.topbar-social {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.topbar-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  transition: var(--transition);
}

.topbar-social a:hover { background: var(--gold); color: var(--navy-dark); }

/* ===== HEADER / NAV ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(8, 15, 34, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(212,169,68,0.15);
  transition: var(--transition);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-logo {
  height: 46px;
  width: auto;
  object-fit: contain;
  transition: var(--transition);
}

.logo-text { display: flex; flex-direction: column; }

.logo-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.03em;
  line-height: 1.1;
}

.logo-sub {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-link {
  color: rgba(255,255,255,0.8);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  position: relative;
}

.nav-link:hover, .nav-link.active { color: var(--gold); }

.has-dropdown { position: relative; }

.dropdown {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  background: var(--navy-dark);
  border: 1px solid rgba(212,169,68,0.15);
  border-radius: var(--radius-md);
  min-width: 220px;
  padding: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: var(--transition);
  box-shadow: var(--shadow-lg);
  z-index: 100;
}

.has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown li a {
  display: block;
  padding: 0.6rem 1rem;
  color: rgba(255,255,255,0.75);
  font-size: 0.875rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.dropdown li a:hover { background: rgba(212,169,68,0.1); color: var(--gold); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(8, 15, 34, 0.88) 0%,
    rgba(13, 27, 62, 0.78) 50%,
    rgba(8, 15, 34, 0.70) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  padding-top: 4rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(212,169,68,0.15);
  border: 1px solid rgba(212,169,68,0.4);
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 0.4rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(8px);
  animation: fadeInUp 0.8s ease both;
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 8px #4ade80;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.25rem;
  animation: fadeInUp 0.8s ease 0.1s both;
}

.hero-highlight {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 2.5rem;
  line-height: 1.7;
  animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 1.25rem 2rem;
  width: fit-content;
  margin-bottom: 2.5rem;
  animation: fadeInUp 0.8s ease 0.3s both;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 2rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
}

.stat-num {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.2rem;
}

.stat-label { font-size: 0.75rem; letter-spacing: 0.05em; }

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.15);
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.scroll-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.4);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
}

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

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

/* ===== TICKER ===== */
.ticker-wrap {
  background: linear-gradient(90deg, var(--navy-dark) 0%, var(--navy) 100%);
  border-bottom: 1px solid rgba(212,169,68,0.2);
  display: flex;
  align-items: center;
  overflow: hidden;
  height: 44px;
}

.ticker-label {
  flex-shrink: 0;
  background: var(--gold);
  color: var(--navy-dark);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  padding: 0 1.25rem;
  height: 100%;
  display: flex;
  align-items: center;
  white-space: nowrap;
  z-index: 1;
}

.ticker-content {
  flex: 1;
  overflow: hidden;
  position: relative;
}

.ticker-track {
  display: flex;
  gap: 3rem;
  white-space: nowrap;
  animation: ticker 45s linear infinite;
}

.ticker-track span {
  color: rgba(255,255,255,0.8);
  font-size: 0.82rem;
  flex-shrink: 0;
}

@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ===== FEATURES GRID ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.feature-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(212,169,68,0.3);
}

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

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}

.feature-card h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.65rem;
}

.feature-card p { color: var(--text-mid); font-size: 0.925rem; line-height: 1.65; }

/* ===== ABOUT SPLIT ===== */
.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.split-image {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.split-image img { width: 100%; height: 520px; object-fit: cover; }

.image-badge {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  background: var(--gold);
  color: var(--navy-dark);
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-md);
}

.badge-num {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 800;
  line-height: 1;
}

.badge-txt {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.split-text {
  color: rgba(255,255,255,0.8);
  line-height: 1.75;
  margin-bottom: 1rem;
}

.achievement-list {
  margin: 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.achievement-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
}

.check {
  color: var(--gold);
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* ===== COURSES ===== */
.courses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
}

.course-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
}

.course-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(212,169,68,0.3);
}

.course-card.featured {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border-color: var(--gold);
  color: var(--white);
  box-shadow: 0 8px 40px rgba(13,27,62,0.3);
}

.course-badge {
  position: absolute;
  top: -12px;
  right: 1.5rem;
  background: var(--gold);
  color: var(--navy-dark);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.9rem;
  border-radius: 100px;
}

.course-icon {
  font-size: 2.2rem;
  margin-bottom: 0.75rem;
}

.course-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.65rem;
  color: inherit;
}

.course-card:not(.featured) .course-title { color: var(--navy); }

.course-desc {
  font-size: 0.9rem;
  line-height: 1.65;
  margin-bottom: 1.25rem;
  color: inherit;
  opacity: 0.85;
}

.course-features {
  list-style: none;
  margin-bottom: 1.5rem;
  flex: 1;
}

.course-features li {
  font-size: 0.875rem;
  padding: 0.35rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.course-card.featured .course-features li {
  border-bottom-color: rgba(255,255,255,0.1);
}

.course-features li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
}

.course-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(0,0,0,0.08);
}

.course-card.featured .course-footer { border-top-color: rgba(255,255,255,0.15); }

.course-duration {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.05em;
}

/* ===== RESULTS ===== */
.results-groups {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
  margin-bottom: 3rem;
}

.result-group {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(212,169,68,0.2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.group-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
}

.group-header.pas { background: linear-gradient(90deg, rgba(212,169,68,0.3), rgba(212,169,68,0.1)); border-bottom: 1px solid rgba(212,169,68,0.3); }
.group-header.pcs { background: linear-gradient(90deg, rgba(59,130,246,0.3), rgba(59,130,246,0.1)); border-bottom: 1px solid rgba(59,130,246,0.3); }
.group-header.irs { background: linear-gradient(90deg, rgba(34,197,94,0.3), rgba(34,197,94,0.1)); border-bottom: 1px solid rgba(34,197,94,0.3); }
.group-header.paas { background: linear-gradient(90deg, rgba(168,85,247,0.3), rgba(168,85,247,0.1)); border-bottom: 1px solid rgba(168,85,247,0.3); }

.group-icon { font-size: 1.4rem; }

.qualifier-list { padding: 0.75rem; }

.qualifier-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.55rem 0.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.qualifier-list li:last-child { border-bottom: none; }

.qualifier-name {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.9);
  font-weight: 500;
}

.qualifier-rank {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold);
  background: rgba(212,169,68,0.12);
  padding: 0.2rem 0.6rem;
  border-radius: 100px;
}

.results-hero-img {
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  max-height: 480px;
  box-shadow: var(--shadow-lg);
}

.results-hero-img img { width: 100%; height: 480px; object-fit: cover; }

.results-img-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(8,15,34,0.9));
  color: var(--gold);
  text-align: center;
  padding: 2rem 1rem 1rem;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}

/* ===== FACULTY ===== */
.faculty-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.faculty-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  transition: var(--transition);
}

.faculty-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(212,169,68,0.3);
}

.faculty-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--gold);
  box-shadow: var(--shadow-gold);
}

.avatar-initials {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold);
}

.faculty-name {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.3rem;
}

.faculty-role {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold);
  margin-bottom: 0.35rem;
}

.faculty-subject {
  display: block;
  font-size: 0.82rem;
  color: var(--text-mid);
  margin-bottom: 0.85rem;
}

.faculty-bio {
  font-size: 0.875rem;
  color: var(--text-mid);
  line-height: 1.6;
}

/* ===== TESTIMONIALS ===== */
.testimonial-slider {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.testimonial-track {
  position: relative;
  min-height: 280px;
}

.testimonial-card {
  display: none;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(212,169,68,0.2);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  backdrop-filter: blur(16px);
  animation: fadeSlide 0.5s ease;
}

.testimonial-card.active { display: block; }

@keyframes fadeSlide {
  from { opacity: 0; transform: translateX(20px); }
  to { opacity: 1; transform: translateX(0); }
}

.quote-icon {
  font-size: 4rem;
  line-height: 0.8;
  color: var(--gold);
  font-family: Georgia, serif;
  opacity: 0.6;
  margin-bottom: 0.5rem;
}

.testimonial-card p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.85);
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--navy-dark);
  font-size: 0.9rem;
  flex-shrink: 0;
}

.testimonial-author strong { display: block; color: var(--white); font-size: 0.95rem; }
.testimonial-author span { color: var(--gold); font-size: 0.8rem; }

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.slider-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.slider-btn:hover { background: var(--gold); color: var(--navy-dark); border-color: var(--gold); }

.slider-dots { display: flex; gap: 0.5rem; }

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  transition: var(--transition);
  cursor: pointer;
}

.dot.active { background: var(--gold); width: 24px; border-radius: 4px; }

/* ===== SUBJECTS ===== */
.subjects-tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 2rem;
  background: var(--gray-100);
  padding: 0.35rem;
  border-radius: var(--radius-md);
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.tab-btn {
  padding: 0.65rem 1.5rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-mid);
  transition: var(--transition);
  cursor: pointer;
}

.tab-btn.active {
  background: var(--navy);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}

.tab-content { display: none; }
.tab-content.active { display: block; }

.subjects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}

.subject-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.1rem 1.25rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  transition: var(--transition);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--navy);
}

.subject-item:hover {
  border-color: var(--gold);
  background: rgba(212,169,68,0.05);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.subj-icon { font-size: 1.3rem; }

.marks {
  margin-left: auto;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold);
  background: rgba(212,169,68,0.1);
  padding: 0.2rem 0.6rem;
  border-radius: 100px;
}

/* ===== ADMISSIONS ===== */
.admissions-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.admission-steps {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.step {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}

.step-num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border: 2px solid rgba(212,169,68,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-info strong {
  display: block;
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.step-info span { color: rgba(255,255,255,0.6); font-size: 0.875rem; }

.contact-highlights {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.contact-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.25rem;
  border-radius: 100px;
  border: 1px solid rgba(212,169,68,0.4);
  color: var(--gold);
  font-size: 0.9rem;
  font-weight: 600;
  background: rgba(212,169,68,0.08);
  transition: var(--transition);
}

.contact-chip:hover { background: var(--gold); color: var(--navy-dark); border-color: var(--gold); }
.contact-chip.whatsapp:hover { background: #25d366; border-color: #25d366; color: white; }

/* ===== FORM ===== */
.admissions-form {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(212,169,68,0.2);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  backdrop-filter: blur(16px);
}

.form-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.75rem;
}

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

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  margin-bottom: 0.45rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-md);
  color: var(--white);
  font-size: 0.9rem;
  font-family: var(--font-sans);
  transition: var(--transition);
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.35); }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: rgba(212,169,68,0.08);
  box-shadow: 0 0 0 3px rgba(212,169,68,0.12);
}

.form-group select option { background: var(--navy-dark); color: var(--white); }
.form-group textarea { resize: vertical; }

.form-note {
  text-align: center;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  margin-top: 0.75rem;
}

/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 2rem;
  align-items: start;
}

.contact-info-panel {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: var(--shadow-md);
}

.contact-info-panel h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--gold);
}

.contact-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.ci-icon { font-size: 1.5rem; flex-shrink: 0; margin-top: 0.1rem; }

.contact-item strong { display: block; color: var(--navy); font-size: 0.875rem; font-weight: 700; margin-bottom: 0.3rem; }

.contact-item p {
  color: var(--text-mid);
  font-size: 0.9rem;
  line-height: 1.6;
}

.contact-item a { color: var(--gold); }
.contact-item a:hover { text-decoration: underline; }

.social-links { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-top: 0.5rem; }

.social-btn {
  padding: 0.4rem 0.9rem;
  border-radius: var(--radius-sm);
  font-size: 0.78rem;
  font-weight: 700;
  transition: var(--transition);
}

.social-btn.fb { background: #1877f2; color: white; }
.social-btn.ig { background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045); color: white; }
.social-btn.yt { background: #ff0000; color: white; }
.social-btn:hover { opacity: 0.85; transform: translateY(-2px); }

.map-container {
  border-radius: var(--radius-xl);
  overflow: hidden;
  height: 400px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-200);
}

/* ===== FOOTER ===== */
.footer { background: var(--navy-dark); color: rgba(255,255,255,0.8); }

.footer-top { padding: 4rem 0 2rem; }

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
}

.footer-logo {
  height: 52px;
  width: auto;
  object-fit: contain;
  margin-bottom: 1rem;
  transition: var(--transition);
}

.footer-brand h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.footer-brand p { font-size: 0.875rem; line-height: 1.7; color: rgba(255,255,255,0.6); margin-bottom: 1.25rem; }

.footer-socials { display: flex; gap: 0.5rem; }

.social-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  transition: var(--transition);
}

.social-icon:hover { background: var(--gold); color: var(--navy-dark); border-color: var(--gold); }

.footer-links-col h4 {
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.footer-links-col ul { display: flex; flex-direction: column; gap: 0.6rem; }

.footer-links-col a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
  line-height: 1.5;
}

.footer-links-col a:hover { color: var(--gold); }
.footer-links-col li { color: rgba(255,255,255,0.6); font-size: 0.875rem; line-height: 1.6; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 1.5rem 0;
  text-align: center;
}

.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.4); margin-bottom: 0.25rem; }
.footer-tagline { color: var(--gold) !important; font-style: italic; }

/* ===== FLOATING WHATSAPP ===== */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(37,211,102,0.4);
  transition: var(--transition);
  animation: floatPulse 3s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(37,211,102,0.6);
}

@keyframes floatPulse {
  0%, 100% { box-shadow: 0 4px 24px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 4px 40px rgba(37,211,102,0.65); }
}

.wa-tooltip {
  position: absolute;
  right: 70px;
  background: var(--navy-dark);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.4rem 0.8rem;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}

.whatsapp-float:hover .wa-tooltip { opacity: 1; }

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed;
  bottom: 6rem;
  right: 2rem;
  z-index: 999;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(212,169,68,0.3);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  opacity: 0;
  visibility: hidden;
  cursor: pointer;
}

.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { background: var(--gold); color: var(--navy-dark); transform: translateY(-3px); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .split-grid { grid-template-columns: 1fr; }
  .admissions-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
  .section-pad { padding: 3.5rem 0; }

  .topbar-inner { flex-direction: column; gap: 0.3rem; font-size: 0.72rem; }

  .nav-toggle { display: flex; }

  .nav-links {
    position: fixed;
    inset: 0 0 0 30%;
    z-index: 999;
    flex-direction: column;
    align-items: flex-start;
    padding: 6rem 2rem 2rem;
    background: rgba(8, 15, 34, 0.98);
    backdrop-filter: blur(20px);
    border-left: 1px solid rgba(212,169,68,0.2);
    gap: 0.25rem;
    transform: translateX(100%);
    transition: transform 0.35s ease;
    overflow-y: auto;
  }

  .nav-links.open { transform: translateX(0); }

  .nav-link { padding: 0.75rem 0; font-size: 1rem; width: 100%; }

  .btn-nav {
    display: inline-flex;
    margin-top: 1rem;
    padding: 0.75rem 1.5rem;
  }

  .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: rgba(255,255,255,0.05);
    border: none;
    border-left: 2px solid var(--gold);
    border-radius: 0;
    padding: 0.25rem 0 0.25rem 1rem;
    margin-top: 0.25rem;
    box-shadow: none;
  }

  .hero-stats {
    flex-wrap: wrap;
    padding: 1rem 1.25rem;
    gap: 0.5rem;
  }

  .stat-item { padding: 0.5rem 1rem; }

  .stat-divider { display: none; }

  .features-grid { grid-template-columns: 1fr; }
  .courses-grid { grid-template-columns: 1fr; }
  .faculty-grid { grid-template-columns: 1fr; }
  .results-groups { grid-template-columns: 1fr; }
  .subjects-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }

  .hero-cta { flex-direction: column; }

  .split-image img { height: 280px; }
  .map-container { height: 280px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2rem; }
  .testimonial-card { padding: 1.5rem; }
  .admissions-form { padding: 1.5rem; }
  .contact-info-panel { padding: 1.5rem; }
  .whatsapp-float { bottom: 1.25rem; right: 1.25rem; }
  .back-to-top { bottom: 5rem; right: 1.25rem; }
}

/* ===== AOS-LIKE ANIMATIONS ===== */
[data-aos] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-aos].aos-animate {
  opacity: 1;
  transform: translateY(0);
}

[data-aos-delay="100"] { transition-delay: 0.1s; }
[data-aos-delay="200"] { transition-delay: 0.2s; }
[data-aos-delay="300"] { transition-delay: 0.3s; }
[data-aos-delay="400"] { transition-delay: 0.4s; }
[data-aos-delay="500"] { transition-delay: 0.5s; }
