/* CAMPUS COMMANDOS | INSTITUTIONAL EXCELLENCE v11.0
   Design Specification: Enhanced Bayside-Inspired Build with Video & Creative Effects
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700;800&family=Lora:ital,wght@0,600;1,600&family=Archivo+Black&display=swap');

:root {
  /* Institutional Palette */
  --uni-navy: #1f3a5f;      
  --uni-navy-dark: #0f172a;
  --uni-blue: #3e92cc;      
  --uni-yellow: #ffcc4d; 
  --uni-yellow-hover: #f1b92d;
  --bg-campus: #ffffff;
  --bg-slate: #f8fafc;
  --text-main: #0f172a;
  --text-muted: #64748b;
  --border-light: #e2e8f0;
  
  /* Component Physics */
  --radius-pill: 50px;
  --radius-card: 12px;
  --shadow-standard: 0 10px 25px -5px rgba(0, 0, 0, 0.05);
  --shadow-elevated: 0 20px 40px -10px rgba(0, 0, 0, 0.15);
  --container-width: 1240px;
  
  /* Animation Speeds */
  --speed-fast: 0.2s;
  --speed-normal: 0.3s;
  --speed-slow: 0.5s;
}

/* 1. GLOBAL RESET & BASE */
* { 
  box-sizing: border-box; 
  margin: 0; 
  padding: 0; 
}

body {
  font-family: 'Inter', -apple-system, sans-serif;
  background-color: var(--bg-campus);
  color: var(--text-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.container { 
  max-width: var(--container-width); 
  margin: 0 auto; 
  padding: 0 24px; 
}

.section { 
  padding: 80px 0; 
  position: relative;
}

.muted { 
  background: var(--bg-slate); 
}

/* Smooth Scroll */
html {
  scroll-behavior: smooth;
}

/* 2. FLOATING "TAKE A TOUR" WIDGET - Enhanced */
.tour-widget {
  position: fixed;
  bottom: 25px;
  left: 25px;
  z-index: 9999;
  background: var(--uni-yellow);
  padding: 1.8rem;
  border-radius: 18px;
  width: 200px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.2);
  text-align: center;
  transition: all var(--speed-normal) ease;
  animation: pulse 3s ease-in-out infinite;
}

.widget-close {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: none;
  background: rgba(0,0,0,0.1);
  color: var(--uni-navy);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transition: all var(--speed-fast) ease;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 300;
  padding: 0;
}

.widget-close:hover {
  background: rgba(0,0,0,0.2);
  transform: rotate(90deg);
}

.widget-close:active {
  transform: rotate(90deg) scale(0.9);
}

.tour-widget:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 25px 60px rgba(0,0,0,0.25);
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 20px 50px rgba(0,0,0,0.2); }
  50% { box-shadow: 0 25px 60px rgba(255, 204, 77, 0.4); }
}

.tour-widget span {
  display: block;
  font-weight: 800;
  font-size: 0.85rem;
  line-height: 1.2;
  margin-bottom: 12px;
  color: var(--uni-navy);
  text-transform: uppercase;
}

.btn-register {
  display: inline-block;
  border: 2px solid #fff;
  padding: 6px 18px;
  border-radius: 25px;
  color: #fff;
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 800;
  transition: all var(--speed-normal) ease;
}

.btn-register:hover { 
  background: #fff; 
  color: var(--uni-yellow);
  transform: scale(1.05);
}

/* 3. TWO-TIER NAVIGATION - Enhanced */
.university-header {
  position: sticky; 
  top: 0; 
  z-index: 1000;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-light);
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.header-top {
  display: flex; 
  justify-content: space-between; 
  align-items: center; 
  padding: 1.2rem 24px;
}

.logo { 
  font-family: 'Lora', serif; 
  font-weight: 600; 
  font-size: 2rem; 
  color: var(--uni-navy);
  transition: color var(--speed-normal) ease;
}

.header-logo-img {
  height: 50px;
  width: auto;
  transition: transform var(--speed-normal) ease;
}

.logo-link:hover .header-logo-img {
  transform: scale(1.05);
}

.logo:hover {
  color: var(--uni-blue);
}

.header-main {
  background: #fff; 
  border-top: 1px solid var(--border-light); 
  border-bottom: 4px solid var(--uni-yellow);
}

.nav-flex { 
  display: flex; 
  justify-content: space-between; 
  align-items: center; 
}

.nav-links { 
  display: flex; 
  gap: 2rem; 
  list-style: none; 
}

.nav-links a {
  padding: 1.2rem 0; 
  color: var(--text-main); 
  text-transform: uppercase;
  font-weight: 700; 
  font-size: 0.8rem; 
  text-decoration: none; 
  letter-spacing: 0.02em;
  position: relative;
  transition: color var(--speed-normal) ease;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--uni-yellow);
  transition: width var(--speed-normal) ease;
}

.nav-links a:hover {
  color: var(--uni-blue);
}

.nav-links a:hover::after {
  width: 100%;
}

/* 4. BUTTONS & PILL SYSTEM - Enhanced */
.btn-pill {
  display: inline-block; 
  font-weight: 800; 
  text-transform: uppercase;
  padding: 0.8rem 2.2rem; 
  border-radius: var(--radius-pill);
  font-size: 0.75rem; 
  transition: all var(--speed-normal) ease; 
  text-decoration: none; 
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn-pill::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.btn-pill:hover::before {
  width: 300px;
  height: 300px;
}

.btn-yellow { 
  background: var(--uni-yellow); 
  color: #000; 
  box-shadow: 0 4px 15px rgba(255, 204, 77, 0.3);
}

.btn-yellow:hover { 
  background: var(--uni-yellow-hover); 
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 204, 77, 0.4);
}

.btn-outline {
  border: 2px solid #fff; 
  padding: 0.9rem 2rem; 
  color: #fff;
  text-decoration: none; 
  border-radius: 50px; 
  font-weight: 800; 
  text-transform: uppercase;
  font-size: 0.8rem; 
  margin: 0 8px;
  transition: all var(--speed-normal) ease;
  display: inline-block;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
}

.btn-outline:hover {
  background: #fff;
  color: var(--uni-navy);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* 5. HERO SECTION WITH VIDEO BACKGROUND - FIXED */
.hero-bayside {
  min-height: 90vh;
  height: auto;
  padding-bottom: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  z-index: 2;
}

/* Video Background */
.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  z-index: 0;
  object-fit: cover;
}

/* Gradient Overlay on Video */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.80) 0%, rgba(31, 58, 95, 0.75) 100%);
  z-index: 1;
}

.hero-content-wrapper {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 1000px;
}

/* Logo Section - FIXED: Logo and EST badge locked together */
.hero-logo-section {
  margin-bottom: 3rem;
  animation: fadeInScale 0.8s ease-out;
  display: flex;
  flex-direction: column;
  align-items: center;
  /* To move both logo and badge together, add margin-left or transform here */
}

.hero-logo-main {
  width: 500px;
  height: auto;
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 10px 30px rgba(0,0,0,0.5)) brightness(1.1);
  animation: fadeInScale 0.8s ease-out;
  /* Don't add positioning here - controlled by parent */
}
/* ----------------------------------------
   HERO LOGO – Subtle Frosted Wordmark Plate
   ---------------------------------------- */

   .logo-frosted-wrap {
    position: relative;
    display: inline-block;
  }
  
  /* Frosted backing behind the wordmark only */
  .logo-frosted-wrap::after {
    content: "";
    position: absolute;
    top: 15%;
    left: 50%;
    transform: translateX(-50%);
    width: 36.5%;
    height: 58%;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(1px);
    border-radius: 14px;
    z-index: 0;
  }
  
  /* Keep logo above the frosted layer */
  .logo-frosted-wrap img {
    position: relative;
    z-index: 1;
  }
  
.hero-est-pill {
  display: inline-block;
  font-family: 'Lora', serif;
  font-weight: 800;
  color: var(--uni-yellow);
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: rgba(0, 0, 0, 0.3);
  border: 2px solid var(--uni-yellow);
  padding: 0.6rem 2rem;
  border-radius: 50px;
  backdrop-filter: blur(10px);
  box-shadow: 0 5px 20px rgba(0,0,0,0.3);
  animation: fadeIn 1s ease-out 0.3s backwards;
  /* Don't add positioning here - controlled by parent */
}

/* Text Section */
.hero-text-section {
  margin-bottom: 3rem;
}

.hero-eyebrow {
  display: block;
  color: var(--uni-yellow);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.8s ease-out 0.4s backwards;
}

.hero-main-title {
  font-family: 'Archivo Black', sans-serif;
  font-size: 4rem;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 30px rgba(0,0,0,0.5);
  animation: fadeInUp 0.8s ease-out 0.5s backwards;
}

.hero-subtitle {
  font-size: 1.3rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.95);
  max-width: 750px;
  margin: 0 auto;
  text-shadow: 0 2px 15px rgba(0,0,0,0.5);
  font-weight: 400;
  animation: fadeInUp 0.8s ease-out 0.6s backwards;
}

/* CTA Buttons */
.hero-cta-group {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease-out 0.7s backwards;
}

.btn-hero {
  display: inline-block;
  padding: 1rem 2.5rem;
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 50px;
  text-decoration: none;
  transition: all var(--speed-normal) ease;
  border: 2px solid transparent;
}

.btn-hero-primary {
  background: var(--uni-yellow);
  color: var(--uni-navy-dark);
  border-color: var(--uni-yellow);
  box-shadow: 0 8px 25px rgba(255, 204, 77, 0.4);
}

.btn-hero-primary:hover {
  background: var(--uni-yellow-hover);
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(255, 204, 77, 0.5);
}

.btn-hero-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
}

.btn-hero-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

@keyframes fadeInScale {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

/* 6. PROGRAM SELECTOR - Enhanced */
.program-selector { 
  display: flex; 
  align-items: center; 
  gap: 5rem; 
  padding: 80px 0; 
}

.selector-head h2 { 
  font-family: 'Archivo Black', sans-serif; 
  font-size: 2.8rem; 
  line-height: 0.9;
  border-top: 5px solid var(--uni-navy); 
  padding-top: 1.5rem;
  color: var(--uni-navy);
  position: relative;
}

.selector-btns {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.btn-dark-selector {
  background: var(--uni-navy-dark); 
  color: #fff; 
  padding: 1.8rem 3.5rem;
  border-radius: 12px; 
  font-weight: 900; 
  text-decoration: none; 
  font-size: 1.5rem;
  transition: all var(--speed-normal) ease;
  position: relative;
  overflow: hidden;
}

.btn-dark-selector::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
  transition: left 0.5s ease;
}

.btn-dark-selector:hover::before {
  left: 100%;
}

.btn-dark-selector:hover {
  background: var(--uni-blue);
  transform: translateX(10px);
  box-shadow: var(--shadow-elevated);
}

/* 7. STUDENT LIFE / QUOTE SECTION - Enhanced */
.student-quote {
  font-family: 'Inter', sans-serif; 
  font-size: 1.6rem; 
  font-weight: 400;
  max-width: 700px; 
  margin: 2rem 0; 
  line-height: 1.4;
  position: relative;
  animation: fadeIn 1s ease-out;
}

.eyebrow { 
  font-weight: 800; 
  letter-spacing: 0.1em; 
  color: var(--uni-yellow); 
  font-size: 0.9rem;
  display: inline-block;
}

/* 8. STATS CARDS - Enhanced with Hover Effects */
.stats-grid { 
  display: grid; 
  grid-template-columns: repeat(3, 1fr); 
  gap: 2rem; 
}

.stat-card {
  background: linear-gradient(135deg, var(--uni-navy-dark) 0%, #1a2a44 100%);
  color: #fff; 
  padding: 4rem 2.5rem; 
  border-radius: 10px; 
  text-align: center;
  transition: all var(--speed-normal) ease;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,204,77,0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity var(--speed-slow) ease;
}

.stat-card:hover::before {
  opacity: 1;
}

.stat-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
  background: linear-gradient(135deg, #1a2a44 0%, var(--uni-blue) 100%);
}

.stat-card strong {
  font-size: 5rem; 
  display: block; 
  line-height: 1;
  border-bottom: 3px solid var(--uni-yellow); 
  margin-bottom: 1.5rem; 
  padding-bottom: 0.5rem;
  transition: all var(--speed-normal) ease;
  font-family: 'Archivo Black', sans-serif;
}

.stat-card:hover strong {
  color: var(--uni-yellow);
  transform: scale(1.1);
}

.stat-card p { 
  font-size: 1rem; 
  opacity: 0.9; 
  max-width: 250px; 
  margin: 0 auto; 
  line-height: 1.6;
}

/* 9. PHOTO CARDS - Enhanced with Image Overlays */
.photo-card {
  position: relative; 
  height: 500px; 
  overflow: hidden; 
  border-radius: 8px;
  box-shadow: var(--shadow-standard);
  transition: all var(--speed-normal) ease;
}

.photo-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-elevated);
}

.photo-card-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
}

.photo-card:hover .photo-card-bg {
  transform: scale(1.1);
}

.photo-card-overlay-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.7) 100%);
  z-index: 1;
}

.card-overlay {
  position: absolute; 
  bottom: 0; 
  left: 0; 
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  padding: 2.5rem;
  z-index: 2;
  transition: all var(--speed-normal) ease;
}

.photo-card:hover .card-overlay {
  padding-bottom: 3rem;
}

.card-overlay h3 { 
  font-family: 'Archivo Black', sans-serif; 
  font-size: 1.6rem; 
  margin-bottom: 1rem; 
  color: var(--uni-navy); 
}

.btn-card {
  background: var(--uni-navy-dark); 
  color: #fff; 
  display: inline-flex; 
  align-items: center;
  padding: 0.8rem 1.5rem; 
  text-decoration: none; 
  font-weight: 700; 
  border-radius: 4px;
  transition: all var(--speed-normal) ease;
  gap: 0.5rem;
}

.btn-card:hover {
  background: var(--uni-blue);
  transform: translateX(5px);
  gap: 1rem;
}

/* 10. DROPDOWN ENGINE - Enhanced */
.dropdown { 
  position: relative; 
}

.dropdown-content {
  display: none; 
  position: absolute; 
  top: 100%; 
  left: 0;
  background: #fff; 
  min-width: 350px; 
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
  padding: 2rem; 
  border-top: 5px solid var(--uni-yellow);
  border-radius: 0 0 8px 8px;
  opacity: 0;
  transform: translateY(-10px);
  transition: all var(--speed-normal) ease;
  z-index: 1000;
}

.dropdown:hover .dropdown-content { 
  display: flex; 
  flex-direction: column;
  opacity: 1;
  transform: translateY(0);
}

.drop-heading h3 { 
  font-family: 'Archivo Black', sans-serif; 
  color: var(--uni-navy); 
  margin-bottom: 0.5rem; 
  font-size: 1.3rem;
}

.drop-heading p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  line-height: 1.4;
}

.drop-links {
  display: flex;
  flex-direction: column;
}

.drop-links a { 
  text-transform: none; 
  font-size: 0.95rem; 
  border-bottom: 1px solid var(--border-light); 
  padding: 1rem 0;
  transition: all var(--speed-fast) ease;
  text-decoration: none;
  color: var(--text-main);
}

.drop-links a:hover {
  padding-left: 10px;
  color: var(--uni-blue);
  border-bottom-color: var(--uni-yellow);
}

.drop-links a strong {
  display: block;
  margin-bottom: 0.3rem;
  color: var(--uni-navy);
}

.drop-links a small {
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* MEGA MENU - 4 Column Layout */
.mega-dropdown {
  position: static;
}

.mega-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
  padding: 3rem 0;
  border-top: 5px solid var(--uni-yellow);
  opacity: 0;
  transform: translateY(-10px);
  transition: all var(--speed-normal) ease;
  z-index: 1000;
}

.mega-dropdown:hover .mega-menu {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.mega-menu-header {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px 2rem;
  border-bottom: 2px solid var(--border-light);
  margin-bottom: 2rem;
}

.mega-menu-header h3 {
  font-family: 'Archivo Black', sans-serif;
  color: var(--uni-navy);
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.mega-menu-header p {
  color: var(--text-muted);
  font-size: 1rem;
}

.mega-menu-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

.mega-column h4 {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--uni-yellow);
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--uni-yellow);
}

.mega-column a {
  display: block;
  padding: 0.8rem 0;
  color: var(--text-main);
  text-decoration: none;
  font-size: 0.95rem;
  border-bottom: 1px solid var(--border-light);
  transition: all var(--speed-fast) ease;
  position: relative;
}

.mega-column a:last-child {
  border-bottom: none;
}

.mega-column a::before {
  content: '→';
  position: absolute;
  left: -20px;
  opacity: 0;
  transition: all var(--speed-fast) ease;
  color: var(--uni-blue);
}

.mega-column a:hover {
  color: var(--uni-blue);
  padding-left: 20px;
  font-weight: 600;
}

.mega-column a:hover::before {
  opacity: 1;
  left: 0;
}

/* 10.5. NEW HOMEPAGE VISUAL SECTIONS */

/* Video Feature Section - "Why Campus Commandos?" */
.video-feature-section {
  background: linear-gradient(135deg, var(--uni-navy-dark) 0%, #1a2a44 100%);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.video-feature-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(255,204,77,0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(62,146,204,0.1) 0%, transparent 50%);
  pointer-events: none;
}

.video-player-container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.video-placeholder {
  background: linear-gradient(135deg, rgba(31, 58, 95, 0.5), rgba(26, 42, 68, 0.5));
  border: 3px solid rgba(255,204,77,0.3);
  border-radius: 12px;
  padding: 120px 40px;
  cursor: pointer;
  transition: all var(--speed-normal) ease;
  backdrop-filter: blur(10px);
}

.video-placeholder:hover {
  border-color: var(--uni-yellow);
  transform: scale(1.02);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.play-button {
  display: inline-block;
  animation: pulsePlay 2s ease-in-out infinite;
}

@keyframes pulsePlay {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

.play-button svg {
  filter: drop-shadow(0 10px 20px rgba(0,0,0,0.3));
  transition: transform var(--speed-normal) ease;
}

.video-placeholder:hover .play-button svg {
  transform: scale(1.1);
}

/* Client Success Section - Large Image with Quote */
.client-success-section {
  min-height: 600px;
  display: flex;
  align-items: center;
  padding: 120px 0;
  position: relative;
  background: 
    linear-gradient(135deg, rgba(15, 23, 42, 0.85) 0%, rgba(31, 58, 95, 0.85) 100%),
    url('https://images.unsplash.com/photo-1522202176988-66273c2fd55f?w=1600&q=80') center/cover;
  background-attachment: fixed; /* Parallax effect */
}

.success-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at center, transparent 0%, rgba(15, 23, 42, 0.4) 100%);
  z-index: 1;
}

.client-success-section blockquote {
  position: relative;
  padding-left: 3rem;
  border-left: 5px solid var(--uni-yellow);
}

/* Brand Showcase Grid */
.brand-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 0 auto;
  max-width: 1000px;
}

.brand-placeholder {
  background: var(--bg-slate);
  border: 2px solid var(--border-light);
  border-radius: 8px;
  padding: 60px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 700;
  color: var(--text-muted);
  font-size: 1rem;
  transition: all var(--speed-normal) ease;
  min-height: 160px;
}

.brand-placeholder:hover {
  border-color: var(--uni-yellow);
  background: #fff;
  transform: translateY(-5px);
  box-shadow: var(--shadow-elevated);
  color: var(--uni-navy);
}

/* Campus Network Section - Image & Stats */
.campus-network-section {
  background: 
    linear-gradient(135deg, rgba(15, 23, 42, 0.90) 0%, rgba(31, 58, 95, 0.85) 100%),
    url('https://images.unsplash.com/photo-1541339907198-e08756dedf3f?w=1600&q=80') center/cover;
  padding: 120px 0;
  position: relative;
  background-attachment: fixed; /* Parallax effect */
}

.network-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 30% 50%, rgba(255,204,77,0.1) 0%, transparent 50%),
    linear-gradient(90deg, rgba(15, 23, 42, 0.8) 0%, transparent 100%);
  z-index: 1;
}

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

.network-stat-item {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 204, 77, 0.3);
  border-radius: 12px;
  padding: 2.5rem;
  text-align: center;
  transition: all var(--speed-normal) ease;
}

.network-stat-item:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--uni-yellow);
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.network-stat-item strong {
  display: block;
  font-family: 'Archivo Black', sans-serif;
  font-size: 3.5rem;
  color: var(--uni-yellow);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.network-stat-item span {
  display: block;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  font-weight: 600;
}

/* 11. FORM STYLING - Enhanced */
input[type="text"],
input[type="email"],
textarea {
  font-family: 'Inter', sans-serif;
  transition: all var(--speed-normal) ease;
  background: #fff;
}

input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus {
  outline: none;
  border-color: var(--uni-blue);
  box-shadow: 0 0 0 3px rgba(62, 146, 204, 0.1);
  transform: translateY(-2px);
}

/* 12. RESULT CALLOUT - Enhanced */
.result-callout h3 {
  position: relative;
  display: inline-block;
}

.result-callout h3::before,
.result-callout h3::after {
  content: '"';
  font-size: 4rem;
  color: var(--uni-yellow);
  opacity: 0.3;
  position: absolute;
  font-family: Georgia, serif;
}

.result-callout h3::before {
  top: -20px;
  left: -40px;
}

.result-callout h3::after {
  bottom: -40px;
  right: -40px;
}

/* 13. RESPONSIVE DESIGN */
@media (max-width: 1024px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .program-selector {
    flex-direction: column;
    gap: 3rem;
  }
  
  .mega-menu-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .brand-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .campus-network-section > .container > div {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .network-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
  
  .nav-links {
    flex-direction: column;
    gap: 0;
  }
  
  .mega-menu-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .mega-menu {
    position: fixed;
    left: 0;
    right: 0;
    top: auto;
    max-height: 70vh;
    overflow-y: auto;
  }
  
  .dropdown-content {
    position: fixed;
    left: 0;
    right: 0;
    min-width: 100%;
  }
  
  .photo-card {
    height: 400px;
  }
  
  .hero-bayside {
    padding-bottom: 140px
  }
  
  .selector-head h2 {
    font-size: 2rem;
  }
  
  .btn-dark-selector {
    font-size: 1.2rem;
    padding: 1.5rem 2.5rem;
  }

  .brand-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .network-stats {
    grid-template-columns: 1fr;
  }

  .client-success-section blockquote {
    font-size: 1.4rem;
    padding-left: 1.5rem;
  }

  .client-success-section h2 {
    font-size: 2rem;
  }

  .campus-network-section h2 {
    font-size: 2rem;
  }

  .video-feature-section h2 {
    font-size: 2rem;
  }

  .video-placeholder {
    padding: 80px 20px;
  }

  .hero-logo-main {
    width: 300px;
  }

  .hero-main-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .hero-cta-group {
    flex-direction: column;
    gap: 0.8rem;
  }

  .btn-hero {
    width: 100%;
    max-width: 300px;
  }

  .header-logo-img {
    height: 40px;
  }

  .logo {
    font-size: 1.5rem;
  }
}

/* 14. ACCESSIBILITY ENHANCEMENTS */
a:focus,
button:focus {
  outline: 3px solid var(--uni-yellow);
  outline-offset: 2px;
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
/* ============================================
   INTERACTIVE CAMPUS MAP MODAL STYLES
   ============================================ */

/* Background slate color for feature boxes */
--bg-slate: #f1f5f9;

/* Modal fade in animation */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Modal slide up animation */
@keyframes slideUp {
  from { 
    opacity: 0; 
    transform: translateY(30px) scale(0.95);
  }
  to { 
    opacity: 1; 
    transform: translateY(0) scale(1);
  }
}

/* Modal overlay base styles */
#modal-overlay {
  backdrop-filter: blur(5px);
}

/* Modal content scrollbar styling */
#tool-card-content::-webkit-scrollbar {
  width: 8px;
}

#tool-card-content::-webkit-scrollbar-track {
  background: rgba(0,0,0,0.1);
  border-radius: 10px;
}

#tool-card-content::-webkit-scrollbar-thumb {
  background: var(--uni-yellow);
  border-radius: 10px;
}

#tool-card-content::-webkit-scrollbar-thumb:hover {
  background: var(--uni-yellow-hover);
}

/* Map zone hotspot hover states */
.map-zone-hotspot {
  border: none;
  font-family: inherit;
  outline: none;
}

.map-zone-hotspot:focus {
  outline: 2px solid var(--uni-yellow);
  outline-offset: 2px;
}