:root {
  /* Master Luxury & High-Contrast Palette */
  --primary-light: #34d399;
  --primary: #059669; /* Emerald 600 */
  --primary-dark: #047857; /* Emerald 700 */
  --accent-gold: #fbbf24;
  
  --gradient-emerald: linear-gradient(135deg, #059669 0%, #10b981 50%, #34d399 100%);
  --gradient-gold: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
  --gradient-dark: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  --gradient-animated: linear-gradient(-45deg, #059669, #10b981, #047857, #34d399);
  
  /* Slate Tint Backgrounds for High Contrast White Cards */
  --bg-light: #f1f5f9; /* Slate 100 */
  --bg-section-alt: #f8fafc; /* Slate 50 */
  --bg-card: #ffffff; /* Crisp Snow White */
  --text-main: #334155;
  --text-muted: #64748b;
  --text-dark: #0f172a;
  
  --border-card: #cbd5e1; /* Slate 300 - Crisp defined border */
  --border-card-hover: #059669; /* Emerald border highlight */
  
  --shadow-glow: 0 12px 30px -5px rgba(5, 150, 105, 0.35);
  --shadow-sm: 0 4px 14px -2px rgba(15, 23, 42, 0.08), 0 2px 4px -1px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 12px 28px -6px rgba(15, 23, 42, 0.12);
  --shadow-lg: 0 22px 45px -12px rgba(15, 23, 42, 0.16);
  --shadow-hover: 0 22px 45px -8px rgba(15, 23, 42, 0.18), 0 0 0 1.5px #059669;
  
  --radius-xl: 24px;
  --radius-lg: 16px;
  --radius-md: 12px;
  --transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  
  /* Fluid Typography */
  --fs-xs: clamp(0.75rem, 0.7vw + 0.5rem, 0.875rem);
  --fs-sm: clamp(0.875rem, 0.8vw + 0.6rem, 1rem);
  --fs-base: clamp(1rem, 0.9vw + 0.7rem, 1.125rem);
  --fs-md: clamp(1.125rem, 1vw + 0.8rem, 1.25rem);
  --fs-lg: clamp(1.25rem, 1.5vw + 0.9rem, 1.5rem);
  --fs-xl: clamp(1.5rem, 2vw + 1rem, 2rem);
  --fs-2xl: clamp(2rem, 3vw + 1.2rem, 2.5rem);
  --fs-3xl: clamp(2.5rem, 4vw + 1.5rem, 3.5rem);
  --fs-4xl: clamp(3rem, 5vw + 2rem, 4.5rem);
}

/* Global Reset & Smooth Behavior */
html {
  scroll-behavior: smooth;
  width: 100%;
}

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

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background-color: var(--bg-light);
  color: var(--text-main);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-size: var(--fs-base);
  width: 100%;
}

/* Keyframe Animations */
@keyframes gradientAnimation {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes floatSmooth {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-8px) rotate(0.5deg); }
}

@keyframes pulseLive {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(34, 197, 94, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

/* Typography & Text Effects */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-dark);
  line-height: 1.25;
  word-wrap: break-word;
}

h1 { font-size: var(--fs-4xl); }
h2 { font-size: var(--fs-3xl); }
h3 { font-size: var(--fs-xl); }
h4 { font-size: var(--fs-lg); }
h5 { font-size: var(--fs-md); }
h6 { font-size: var(--fs-sm); }
p { font-size: var(--fs-base); word-wrap: break-word; }

.text-gradient {
  background: var(--gradient-emerald);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

/* Live Pulsing Dot Indicator */
.pulse-dot {
  width: 10px;
  height: 10px;
  background-color: #22c55e;
  border-radius: 50%;
  display: inline-block;
  animation: pulseLive 2s infinite;
  margin-right: 0.4rem;
}

/* Luxury Interactive Pill Badges */
.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1.15rem;
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: rgba(5, 150, 105, 0.1);
  color: var(--primary-dark);
  border: 1px solid rgba(5, 150, 105, 0.25);
  margin-bottom: 1.25rem;
  animation: floatSmooth 4s ease-in-out infinite;
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 15px rgba(5, 150, 105, 0.1);
  transition: var(--transition);
  max-width: 100%;
}

.badge-pill:hover {
  background: rgba(5, 150, 105, 0.18);
  transform: translateY(-2px) scale(1.03);
}

/* Layout Container */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
}

main {
  flex: 1;
}

/* Top Announcement Mini Bar */
.top-bar {
  background: #0f172a;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.82rem;
  padding: 0.45rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-bar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1600px;
  width: 95%;
  margin: 0 auto;
}

.top-bar-info {
  display: flex;
  gap: 1.75rem;
  align-items: center;
}

.top-bar-info span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

/* Sticky Frosted Navbar (Guaranteed Sticky on Scroll) */
.navbar {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.navbar.scrolled {
  background: #ffffff;
  box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.12);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 74px;
  width: 95%;
  max-width: 1600px;
  margin: 0 auto;
  position: relative;
}

.mobile-nav-actions {
  display: none;
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-dark);
  transition: var(--transition);
}

.logo img {
  height: 44px;
  width: auto;
  border-radius: var(--radius-md);
}

.logo:hover {
  transform: scale(1.04) rotate(-1deg);
}

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

.nav-links a {
  text-decoration: none;
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  position: relative;
  padding: 0.35rem 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 3px;
  background: var(--gradient-emerald);
  border-radius: 3px;
  transform: translateX(-50%);
  transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary-dark);
}

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

/* Master Interactive Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.9rem;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: var(--fs-md);
  text-decoration: none;
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  gap: 0.5rem;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: 0.6s ease;
  z-index: 2;
}

.btn:hover::before {
  left: 100%;
}

.btn:active {
  transform: scale(0.96) !important;
}

.btn-sm {
  padding: 0.55rem 1.35rem;
  font-size: var(--fs-sm);
}

.btn-primary {
  background: var(--gradient-emerald);
  color: #ffffff !important;
  box-shadow: var(--shadow-glow);
  border-color: transparent;
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 15px 35px -5px rgba(5, 150, 105, 0.5);
  color: #ffffff !important;
}

.btn-outline {
  background: #ffffff !important;
  border: 2px solid #059669 !important;
  color: #047857 !important;
  box-shadow: var(--shadow-sm);
}

.btn-outline:hover {
  background: var(--gradient-emerald) !important;
  color: #ffffff !important;
  border-color: transparent !important;
  transform: translateY(-3px) scale(1.02);
  box-shadow: var(--shadow-glow);
}

.btn-outline-light {
  background: rgba(255, 255, 255, 0.15) !important;
  border: 2px solid rgba(255, 255, 255, 0.85) !important;
  color: #ffffff !important;
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-outline-light:hover {
  background: #ffffff !important;
  color: #047857 !important;
  border-color: #ffffff !important;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 25px rgba(255, 255, 255, 0.4);
}

/* High Contrast Defined White Cards (Compact & Elegant Proportions) */
.card, .stat-card, .news-card, .event-card {
  background: #ffffff !important;
  border: 1px solid var(--border-card) !important;
  border-radius: var(--radius-lg);
  padding: 1.65rem 1.4rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm) !important;
  display: flex;
  flex-direction: column;
}

.card::before, .stat-card::before, .news-card::before, .event-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-emerald);
  opacity: 0;
  transition: var(--transition);
}

.card:hover, .stat-card:hover, .news-card:hover, .event-card:hover {
  transform: translateY(-8px) scale(1.015);
  box-shadow: var(--shadow-hover) !important;
  border-color: var(--border-card-hover) !important;
}

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

/* Multi-Directional Scroll Entrance Animation Engine */
.anim-slide-up {
  opacity: 0;
  transform: translateY(45px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.anim-slide-down {
  opacity: 0;
  transform: translateY(-45px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.anim-slide-left {
  opacity: 0;
  transform: translateX(-55px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.anim-slide-right {
  opacity: 0;
  transform: translateX(55px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.anim-scale-in {
  opacity: 0;
  transform: scale(0.86);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.anim-flip-in {
  opacity: 0;
  transform: perspective(600px) rotateX(25deg) translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

/* Active Visible Trigger */
.anim-slide-up.visible,
.anim-slide-down.visible,
.anim-slide-left.visible,
.anim-slide-right.visible,
.anim-scale-in.visible,
.anim-flip-in.visible {
  opacity: 1;
  transform: translate(0) scale(1) rotate(0);
}

/* Hero Section Base */
.slider-container {
    position: relative;
    width: 100%;
    min-height: 85vh;
    overflow: hidden;
    background: #0f172a;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1;
}

.slide.active {
    opacity: 1;
    z-index: 2;
}

.slide-media {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
    transition: transform 6s ease-out;
}

.slide.active .slide-media {
    transform: scale(1);
}

.slider-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    z-index: 3;
    padding: 2rem;
    background: radial-gradient(circle at 50% 50%, rgba(15, 23, 42, 0.35) 0%, rgba(15, 23, 42, 0.75) 100%);
}

.hero-title {
    color: #ffffff;
    margin-bottom: 1.5rem;
    font-size: var(--fs-4xl);
    line-height: 1.15;
    text-shadow: 0 4px 16px rgba(0,0,0,0.6);
}

.hero-subtitle {
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: 2.5rem;
    font-size: var(--fs-lg);
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 10px rgba(0,0,0,0.6);
}

.hero-buttons {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
}

.floating-experience-badge {
    position: absolute;
    bottom: -20px;
    right: 20px;
    background: var(--gradient-emerald);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-glow);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    z-index: 5;
    transition: var(--transition);
}

.slider-controls {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    display: flex;
    gap: 1rem;
    align-items: center;
}

.slider-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(8px);
    color: white;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition);
}

.slider-btn:hover {
    background: var(--gradient-emerald);
    border-color: transparent;
    transform: scale(1.1);
}

.video-controls {
    position: absolute;
    bottom: 2.5rem;
    right: 2.5rem;
    z-index: 4;
    display: flex;
    gap: 0.5rem;
}

/* Page Hero Banner (for Inner Pages) */
.page-hero {
  padding: 5.5rem 0 4.5rem;
  text-align: center;
  background: radial-gradient(circle at 50% 0%, rgba(5, 150, 105, 0.15) 0%, rgba(241, 245, 249, 1) 75%);
  border-bottom: 1px solid rgba(5, 150, 105, 0.12);
  position: relative;
}

.page-hero h1 {
  margin-bottom: 0.75rem;
}

.page-hero p {
  color: var(--text-muted);
  max-width: 650px;
  margin: 0 auto;
}

/* Section Wrapper & High-Contrast Section Alt */
.section {
  padding: 5.5rem 0;
  background: var(--bg-light); /* Slate 100 tint */
}

.section-alt {
  padding: 5.5rem 0;
  background: var(--bg-section-alt); /* Slate 50 tint */
  border-top: 1px solid rgba(15, 23, 42, 0.05);
  border-bottom: 1px solid rgba(15, 23, 42, 0.05);
}

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

.section-header h2 {
  font-size: var(--fs-2xl);
  margin-bottom: 0.75rem;
}

.section-header p {
  color: var(--text-muted);
  max-width: 650px;
  margin: 0 auto;
}

.section-header .accent-line {
  width: 65px;
  height: 4px;
  background: var(--gradient-emerald);
  border-radius: 3px;
  margin: 1.25rem auto 0;
  transition: width 0.6s ease;
}

.section-header:hover .accent-line {
  width: 100px;
}

/* News Cards */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.75rem;
}

.news-card {
  padding: 0 !important;
}

.news-card-img {
  height: 165px;
  overflow: hidden;
}

.news-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.news-card:hover .news-card-img img {
  transform: scale(1.08);
}

.news-card-body {
  padding: 1.25rem 1.25rem 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.news-card-body h3, .event-card-body h3, .card h3 {
  font-size: 1.15rem !important;
  line-height: 1.35;
  margin-bottom: 0.5rem;
  font-weight: 700;
  color: var(--text-dark);
}

.news-card-body p, .event-card-body p, .card p {
  font-size: 0.875rem !important;
  line-height: 1.6;
  color: var(--text-muted);
}

.news-card-body .date-badge {
  display: inline-block;
  padding: 0.2rem 0.65rem;
  background: rgba(5, 150, 105, 0.12);
  color: var(--primary-dark);
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  width: fit-content;
}

/* Events Grid */
.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.75rem;
}

.event-card {
  padding: 0 !important;
  display: flex;
  flex-direction: row;
}

.event-date-badge {
  background: var(--gradient-emerald);
  color: white;
  min-width: 78px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 1rem 0.65rem;
  text-align: center;
  transition: var(--transition);
}

.event-card:hover .event-date-badge {
  background: var(--gradient-dark);
}

.event-date-badge .day {
  font-size: 1.65rem;
  font-weight: 800;
  line-height: 1;
}

.event-date-badge .month {
  font-size: 0.72rem;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.event-card-body {
  padding: 1.15rem 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Gallery Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.gallery-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  position: relative;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--border-card);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-item:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-6px);
  border-color: var(--border-card-hover);
}

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

/* Live Stats Section */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.75rem;
  text-align: center;
}

.stat-card {
  padding: 2.5rem 1.5rem !important;
}

.stat-card .stat-icon {
  font-size: 2.75rem;
  margin-bottom: 0.75rem;
  display: inline-block;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.stat-card:hover .stat-icon {
  transform: scale(1.25) rotate(5deg);
}

.stat-card .stat-number {
  font-family: 'Outfit', sans-serif;
  font-size: var(--fs-3xl);
  font-weight: 800;
  background: var(--gradient-emerald);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
}

.stat-card .stat-label {
  color: var(--text-muted);
  font-size: var(--fs-sm);
  margin-top: 0.4rem;
  font-weight: 600;
}

/* Page Content Grid */
.page-content-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
}

@media (max-width: 992px) {
  .page-content-grid {
      grid-template-columns: 1fr;
      gap: 2rem;
  }
}

/* Footer Redesign */
.footer {
  background: #0f172a;
  padding: 5.5rem 0 2.5rem;
  color: white;
  position: relative;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer h3 {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  color: white;
  position: relative;
  display: inline-block;
}

.footer h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 36px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
}

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

.social-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  text-decoration: none;
  font-weight: bold;
  transition: var(--transition);
}

.social-icon:hover {
  background: var(--gradient-emerald);
  transform: translateY(-4px) scale(1.1);
  color: white;
  box-shadow: var(--shadow-glow);
}

.footer-links ul {
  list-style: none;
}

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

.footer-links a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-size: 0.95rem;
  transition: var(--transition);
  display: inline-block;
}

.footer-links a:hover {
  color: var(--primary-light);
  transform: translateX(6px);
}

.contact-info {
  list-style: none;
}

.contact-info li {
  display: flex;
  gap: 0.85rem;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
  align-items: flex-start;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.5);
  font-size: var(--fs-xs);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  margin-left: 1.5rem;
  transition: var(--transition);
}

.footer-bottom-links a:hover {
  color: white;
}

/* Forms */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 600;
    font-size: var(--fs-sm);
}

.form-control {
    width: 100%;
    padding: 0.85rem 1.15rem;
    border-radius: var(--radius-md);
    border: 1.5px solid var(--border-card);
    background: #ffffff;
    color: var(--text-main);
    font-family: inherit;
    font-size: var(--fs-base);
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(5, 150, 105, 0.18);
    transform: translateY(-1px);
}

/* Brand Social Media Buttons */
.social-brand-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
}

.social-brand-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1.25rem;
    border-radius: var(--radius-md);
    font-size: var(--fs-sm);
    font-weight: 600;
    color: #ffffff !important;
    text-decoration: none;
    transition: var(--transition);
    border: none;
    box-shadow: var(--shadow-sm);
}

.social-brand-btn:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.22);
    color: #ffffff !important;
}

.social-brand-btn svg {
    flex-shrink: 0;
}

.social-brand-btn.facebook { background: #1877F2; }
.social-brand-btn.twitter { background: #0f172a; }
.social-brand-btn.instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.social-brand-btn.whatsapp { background: #25D366; }
.social-brand-btn.tiktok { background: #000000; }
.social-brand-btn.youtube { background: #FF0000; }
.social-brand-btn.linkedin { background: #0A66C2; }

/* Responsive Google Maps Container */
.map-responsive-wrapper {
    width: 100%;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border-card);
}

.map-responsive-wrapper iframe {
    width: 100% !important;
    height: 280px !important;
    border: 0 !important;
    border-radius: var(--radius-md) !important;
    display: block;
}

/* ======================================================
   MASTER RESPONSIVE & SPECIAL MOBILE MODE SYSTEM
   ====================================================== */

/* Hamburger Button */
.hamburger {
    display: none;
    background: none;
    border: none;
    font-size: 1.6rem;
    color: var(--text-dark);
    cursor: pointer;
    padding: 0.25rem 0.5rem;
}

@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
  .page-content-grid {
      grid-template-columns: 1fr;
  }
}

/* Tablet & Mobile Screens (<= 768px) */
@media (max-width: 768px) {
  :root {
      --fs-4xl: 2.1rem;
      --fs-3xl: 1.75rem;
      --fs-2xl: 1.45rem;
      --fs-xl: 1.25rem;
      --fs-lg: 1.1rem;
      --fs-base: 0.95rem;
  }
  
  .container {
      padding: 0 1.25rem;
  }

  .section, .section-alt {
      padding: 3.5rem 0;
  }

  .page-hero {
      padding: 4rem 0 3rem;
  }

  .top-bar-info {
    display: none;
  }

  /* Mobile Navbar: Hide School Name Text, Show Only Logo Badge & Hamburger */
  .nav-school-name {
      display: none !important;
  }

  .hamburger {
      display: block;
      margin-left: auto;
  }

  .nav-desktop-actions {
      display: none;
  }

  .nav-links {
      position: absolute;
      top: 74px;
      left: 0;
      right: 0;
      background: rgba(255, 255, 255, 0.98);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      flex-direction: column;
      gap: 0;
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
      overflow: hidden;
      max-height: 0;
      transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
      border-bottom: 1px solid rgba(0,0,0,0.08);
  }

  .nav-links.active {
      max-height: 550px;
  }

  .nav-links li {
      width: 100%;
  }

  .nav-links a {
      display: block;
      padding: 0.95rem 1.75rem;
      border-bottom: 1px solid rgba(0,0,0,0.05);
      font-size: 1rem;
  }

  .mobile-nav-actions {
      display: block;
      padding: 1.25rem 1.75rem;
  }

  /* Hero Mobile Slider & Sleek Compact Side-by-Side Pill Buttons */
  .slider-container {
      min-height: 520px;
  }

  .slider-overlay {
      padding: 2.5rem 1rem 5rem !important;
  }

  .hero-title {
      font-size: 1.75rem;
      margin-bottom: 0.75rem;
      line-height: 1.25;
  }

  .hero-subtitle {
      font-size: 0.88rem;
      margin-bottom: 1.25rem;
      line-height: 1.5;
  }

  .hero-buttons {
      flex-direction: row !important;
      flex-wrap: wrap;
      justify-content: center;
      width: 100%;
      gap: 0.65rem !important;
      margin-bottom: 0.5rem;
  }

  .hero-buttons .btn {
      width: auto !important;
      padding: 0.6rem 1.15rem !important;
      font-size: 0.85rem !important;
      border-radius: 30px !important;
      flex: 0 1 auto;
  }

  /* Slider Controls Mobile Placement - No Collision */
  .slider-controls {
      bottom: 0.85rem !important;
      left: 50% !important;
      transform: translateX(-50%) !important;
      gap: 0.5rem !important;
  }

  .video-controls {
      bottom: 0.85rem !important;
      right: 0.85rem !important;
      gap: 0.4rem !important;
  }

  .slider-btn {
      width: 38px !important;
      height: 38px !important;
  }

  /* Floating Experience Badge Mobile Shift - No Text Collision */
  .floating-experience-badge {
      position: relative !important;
      bottom: auto !important;
      right: auto !important;
      margin: 1.25rem auto 0 !important;
      width: 100% !important;
      max-width: 320px !important;
      justify-content: center !important;
      padding: 0.85rem 1.25rem !important;
  }

  /* Cards & Sections Mobile Scaling */
  .card, .stat-card, .news-card, .event-card {
      padding: 1.6rem 1.25rem !important;
      border-radius: var(--radius-md);
  }

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

  .stat-card .stat-icon {
      font-size: 2.2rem;
  }

  .stat-card .stat-number {
      font-size: 2rem;
  }

  .news-grid, .events-grid {
      grid-template-columns: 1fr;
      gap: 1.5rem;
  }

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

  /* Admission Step Cards Mobile Adjustment */
  .card.anim-slide-left, .card.anim-slide-right {
      flex-direction: column !important;
      text-align: center !important;
      gap: 1rem !important;
      padding: 1.75rem 1.25rem !important;
  }

  .card.anim-slide-left > div:first-child,
  .card.anim-slide-right > div:first-child {
      margin: 0 auto;
      width: 60px !important;
      height: 60px !important;
      min-width: 60px !important;
      font-size: 1.3rem !important;
  }

  .card.anim-slide-left .badge-pill,
  .card.anim-slide-right .badge-pill {
      margin: 0.5rem auto 0 !important;
  }

  /* Footer Mobile */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    justify-content: center;
    gap: 1.25rem;
    text-align: center;
  }

  .footer-bottom-links a {
    margin: 0 0.5rem;
  }

  .social-brand-btn {
      width: 100%;
      justify-content: center;
      padding: 0.75rem 1rem;
  }
}

/* Small Smartphone Devices (<= 480px) */
@media (max-width: 480px) {
  :root {
      --fs-4xl: 1.85rem;
      --fs-3xl: 1.55rem;
      --fs-2xl: 1.35rem;
  }

  .container {
      padding: 0 1rem;
  }

  .slider-container {
      min-height: 65vh;
  }

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

  .gallery-grid {
      grid-template-columns: 1fr;
  }

  .hero-title {
      font-size: 1.8rem;
  }

  .btn {
      padding: 0.75rem 1.25rem;
      font-size: 0.9rem;
      width: 100%;
  }

  .map-responsive-wrapper iframe {
      height: 200px !important;
  }
}
