:root {
  --primary: #B91C1C;
  --primary-hover: #991B1B;
  --black: #0A0A0A;
  --white: #FFFFFF;
  --gray-50: #FAFAFA;
  --gray-100: #F5F5F5;
  --gray-200: #E5E5E5;
  --gray-300: #D4D4D4;
  --gray-400: #A3A3A3;
  --gray-500: #737373;
  --gray-600: #525252;
  --gray-700: #404040;
  --gray-800: #262626;

  --font-heading: 'Raleway', sans-serif;
  --font-body: 'Roboto', sans-serif;

  --section-padding: 100px 0;
  --container-width: 1200px;
  --border-radius: 16px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray-700);
  background-color: var(--white);
  -webkit-font-smoothing: antialiased;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--black);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

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

/* ========================================
   BUTTONS
   ======================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 25px;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--white);
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(185, 28, 28, 0.3);
}

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

.btn-outline:hover {
  background-color: var(--primary);
  color: var(--white);
}

.btn-white {
  background-color: var(--white);
  color: var(--primary);
}

.btn-white:hover {
  background-color: var(--gray-100);
  transform: translateY(-3px);
}

.btn-dark {
  background-color: var(--gray-800);
  color: var(--white);
}

.btn-dark:hover {
  background-color: var(--black);
  transform: translateY(-3px);
}

.btn-large {
  padding: 12px 34px;
  font-size: 15px;
}

.btn-small {
  padding: 10px 20px;
  font-size: 12px;
}

.btn-block {
  width: 100%;
}

/* Section Label */
.section-label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--primary);
  margin-bottom: 16px;
}

/* ========================================
   HEADER
   ======================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 5;
  padding: 40px 0 16px 0px;
  transition: all 0.3s ease;
}

.header.scrolled {
  background-color: var(--white);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  padding: 12px 0;
}

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

.header-logo {
  position: relative;
  height: 90px;
  transition: height 0.3s ease;
}

.header-logo img {
  height: 100%;
  width: auto;
  transition: opacity 0.3s ease;
}

.header-logo .logo-scrolled {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  pointer-events: none;
}

.header.scrolled .header-logo .logo-default {
  opacity: 0;
  pointer-events: none;
}

.header.scrolled .header-logo .logo-scrolled {
  opacity: 1;
  pointer-events: auto;
}

.header.scrolled .header-logo {
  height: 70px;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.header-nav a {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--white);
  transition: color 0.3s ease;
}

.header.scrolled .header-nav a {
  color: var(--gray-700);
}

.header-nav a:hover {
  color: var(--primary);
}

.header-cta .btn {
  padding: 12px 24px;
  font-size: 12px;
}

.header-mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.header-mobile-toggle span {
  width: 24px;
  height: 2px;
  background-color: var(--white);
  transition: all 0.3s ease;
}

.header-mobile-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.header-mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.header-mobile-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.header.scrolled .header-mobile-toggle span {
  background-color: var(--black);
}

/* ========================================
   ANNOUNCEMENT BAR (Top)
   ======================================== */
.announcement-bar {
  background: var(--primary);
  padding: 6px 0;
  position: relative;
  z-index: 999;
}

.announcement-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.announcement-text {
  color: var(--white);
  font-size: 13px;
}

.announcement-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
}

.announcement-link i {
  font-size: 14px;
}

.announcement-link:hover {
  opacity: 0.9;
}

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

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.hero-bg img,
.hero-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

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

.hero-badge {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--white);
  background-color: var(--primary);
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 24px;
}

.hero h1 {
  font-size: 50px;
  color: var(--white);
  margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 32px;
  line-height: 1.6;
  max-width: 600px;
}

.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 36px;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
}


.hero-feature i {
  width: 20px;
  height: 20px;
  color: var(--primary);
  background: var(--white);
  padding: 4px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  animation: bounce 2s infinite;
}


.hero-scroll i {
  width: 20px;
  height: 20px;
}

@keyframes bounce {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(10px);
  }
}

/* ========================================
   USP STRIP
   ======================================== */
.usp-strip {
  background-color: var(--primary);
  padding: 20px 0;
}

.usp-strip-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}

.usp-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
}


.usp-item span {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ========================================
   WELCOME SECTION
   ======================================== */
.welcome {
  padding: var(--section-padding);
  background-color: var(--white);
}

.welcome-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.welcome-images {
  position: relative;
}

.welcome-image-main {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}

.welcome-image-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.welcome-image-float {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 250px;
  height: 200px;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  border: 5px solid var(--white);
}

.welcome-image-float img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.welcome-content h2 {
  font-size: 35px;
  margin-bottom: 24px;
}

.welcome-content>p {
  font-size: 17px;
  color: var(--gray-600);
  margin-bottom: 20px;
  line-height: 1.6;
}

.welcome-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 32px;
}

.welcome-highlight {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: var(--gray-50);
  border-radius: 12px;
}


.welcome-highlight i {
  width: 24px;
  height: 24px;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.welcome-highlight div h4 {
  font-size: 14px;
  margin-bottom: 4px;
  text-transform: none;
  letter-spacing: 0;
}

.welcome-highlight div p {
  font-size: 13px;
  color: var(--gray-500);
  line-height: 1.5;
}

/* ========================================
   ENROLLMENT HIGHLIGHT SECTION
   ======================================== */
.enrollment-highlight {
  padding: 80px 0;
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
  border-top: 4px solid var(--primary);
}

.enrollment-highlight-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.enrollment-highlight-content h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.enrollment-highlight-content>p {
  font-size: 17px;
  color: var(--gray-600);
  margin-bottom: 40px;
  line-height: 1.7;
}

.enrollment-countdown {
  display: flex;
  gap: 20px;
  margin-bottom: 16px;
}

.countdown-item {
  background: var(--white);
  border-radius: 12px;
  padding: 20px 24px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  min-width: 80px;
}

.countdown-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}

.countdown-label {
  font-size: 12px;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 4px;
  display: block;
}

.countdown-text {
  font-size: 14px;
  color: var(--gray-600);
  margin-bottom: 0;
}

.enrollment-highlight-spots {
  background: var(--white);
  border-radius: var(--border-radius);
  padding: 40px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.enrollment-highlight-spots h3 {
  font-size: 20px;
  margin-bottom: 24px;
  text-align: center;
  color: var(--primary);
}

.spots-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.spot-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 18px;
  background: var(--gray-50);
  border-radius: 10px;
  border: 1px solid var(--gray-100);
}

.spot-program {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-700);
}

.spot-status {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 6px 12px;
  border-radius: 20px;
}

.spot-status.limited {
  background: #fef3c7;
  color: #b45309;
}

.spot-status.available {
  background: #d1fae5;
  color: #047857;
}

.spot-status.full {
  background: #fee2e2;
  color: #b91c1c;
}

/* ========================================
   WHAT SETS US APART
   ======================================== */
.differentiators {
  padding: var(--section-padding);
  background-color: var(--gray-50);
}

.differentiators-header {
  text-align: center;
  margin-bottom: 60px;
}

.differentiators-header h2 {
  font-size: 35px;
  margin-bottom: 16px;
}

.differentiators-header p {
  font-size: 18px;
  color: var(--gray-600);
  max-width: 600px;
  margin: 0 auto;
}

.differentiators-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.differentiator-card {
  background: var(--white);
  border-radius: var(--border-radius);
  padding: 40px 32px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--gray-100);
  transition: all 0.3s ease;
}

.differentiator-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  border-color: var(--primary);
}

.differentiator-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary), #dc2626);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}


.differentiator-icon i {
  width: 40px;
  height: 40px;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
}

.differentiator-icon img {
  width: 50px;
  height: 50px;
}

.differentiator-card h3 {
  font-size: 18px;
  margin-bottom: 12px;
}

.differentiator-card p {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.6;
}

/* ========================================
   PROGRAMS SECTION
   ======================================== */
.programs {
  padding: var(--section-padding);
  background-color: var(--white);
}

.programs-header {
  text-align: center;
  margin-bottom: 60px;
}

.programs-header h2 {
  font-size: 35px;
  margin-bottom: 16px;
}

.programs-header p {
  font-size: 18px;
  color: var(--gray-600);
}

.programs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.program-card {
  background: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border: 1px solid var(--gray-100);
  transition: all 0.3s ease;
}

.program-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.program-image {
  height: 220px;
  overflow: hidden;
}

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

.program-card:hover .program-image img {
  transform: scale(1.1);
}

.program-content {
  padding: 28px;
}

.program-age {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
  background: rgba(185, 28, 28, 0.1);
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.program-content h3 {
  font-size: 20px;
  margin-bottom: 10px;
  text-transform: none;
  letter-spacing: 0;
}

.program-content p {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.6;
}

/* ========================================
   FACILITIES SECTION - Light Theme
   ======================================== */
.facilities {
  padding: var(--section-padding);
  background: var(--gray-50);
}

.facilities-header {
  text-align: center;
  margin-bottom: 60px;
}

.facilities-header h2 {
  font-size: 35px;
  margin-bottom: 16px;
}

.facilities-header p {
  font-size: 18px;
  color: var(--gray-600);
}

.facilities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.facility-card {
  background: var(--white);
  padding: 32px 28px;
  border-radius: var(--border-radius);
  border: 1px solid #e6e6e6;
  transition: all 0.3s ease;
}

.facility-card:hover {
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  transform: translateY(-5px);
}

.facility-icon {
  width: 56px;
  height: 56px;
  background: rgba(185, 28, 28, 0.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}


.facility-icon i {
  width: 28px;
  height: 28px;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.facility-card h4 {
  font-size: 17px;
  margin-bottom: 8px;
  text-transform: none;
  letter-spacing: 0;
}

.facility-card p {
  font-size: 14px;
  color: var(--gray-500);
}

/* ========================================
   VIRTUAL TOUR SECTION - FULL WIDTH
   ======================================== */
.virtual-tour {
  position: relative;
  padding: 120px 0;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.virtual-tour-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.virtual-tour-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;    object-position: 50% 37%;
}

.virtual-tour-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 100%);
}

.virtual-tour .container {
  position: relative;
  z-index: 1;
}

.virtual-tour-content-center {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.virtual-tour-content-center h2 {
  font-size: 40px;
  color: var(--white);
  margin-bottom: 16px;
}

.virtual-tour-content-center>p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 40px;
  line-height: 1.7;
}

.virtual-tour-play-btn {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: var(--white);
  padding: 12px 30px 12px 20px;
  border-radius: 60px;
  transition: all 0.3s ease;
  margin-bottom: 48px;
}

.virtual-tour-play-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.play-icon {
  width: 50px;
  height: 50px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}


.play-icon i {
  width: 24px;
  height: 24px;
  color: var(--white);
  margin-left: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.play-text {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--black);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.virtual-tour-features-row {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.vt-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
}


.vt-feature i {
  width: 24px;
  height: 24px;
  color: var(--primary);
}

.vt-feature span {
  font-size: 14px;
  font-weight: 500;
}

/* ========================================
   GALLERY SECTION
   ======================================== */
.gallery {
  padding: var(--section-padding);
  background-color: var(--white);
}

.gallery-header {
  text-align: center;
  margin-bottom: 50px;
}

.gallery-header h2 {
  font-size: 35px;
  margin-bottom: 16px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 200px);
  gap: 16px;
}

.gallery-item {
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
}

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

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

.gallery-item:nth-child(1) {
  grid-column: span 2;
  grid-row: span 2;
}

/* ========================================
   TESTIMONIALS SECTION
   ======================================== */
.testimonials {
  padding: var(--section-padding);
  background-color: var(--gray-50);
}

.testimonials-header {
  text-align: center;
  margin-bottom: 50px;
}

.testimonials-header h2 {
  font-size: 35px;
  margin-bottom: 16px;
}

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

.testimonial-card {
  background: var(--white);
  border-radius: var(--border-radius);
  padding: 36px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--gray-100);
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}


.testimonial-stars i {
  width: 18px;
  height: 18px;
  color: #FFC107;
  fill: #FFC107;
}

.testimonial-card blockquote {
  font-size: 15px;
  color: var(--gray-700);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
}

.testimonial-author div h4 {
  font-size: 15px;
  margin-bottom: 2px;
  text-transform: none;
  letter-spacing: 0;
}

.testimonial-author div p {
  font-size: 13px;
  color: var(--gray-500);
}

/* ========================================
   ENROLLMENT SECTION - REDESIGNED
   ======================================== */
.enrollment-new {
  position: relative;
  padding: 100px 0;
  background: var(--gray-50);
  overflow: hidden;
}

.enrollment-new-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 350px;
  background: linear-gradient(135deg, var(--primary) 0%, #dc2626 100%);
}

.enrollment-new .container {
  position: relative;
  z-index: 1;
}

.enrollment-new-header {
  text-align: center;
  margin-bottom: 40px;
}

.enrollment-new-header .section-label {
  color: rgba(255, 255, 255, 0.8);
}

.enrollment-new-header h2 {
  font-size: 35px;
  color: var(--white);
  margin-bottom: 12px;
}

.enrollment-new-header p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.85);
}

.enrollment-new-card {
  max-width: 600px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 20px;
  padding: 0;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
  overflow: hidden;
}

.enrollment-new-card-header {
  background: var(--gray-50);
  padding: 32px 40px;
  text-align: center;
  border-bottom: 1px solid var(--gray-100);
}

.enrollment-new-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: var(--white);
  padding: 8px 18px;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

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

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.6;
    transform: scale(1.2);
  }
}

.enrollment-new-card-header h3 {
  font-size: 24px;
  margin-bottom: 6px;
  text-transform: none;
  letter-spacing: 0;
}

.enrollment-new-card-header p {
  font-size: 14px;
  color: var(--gray-500);
  margin: 0;
}

.enrollment-new-form {
  padding: 32px 40px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 24px;
}

.form-field {
  position: relative;
}

.form-field.full-width {
  grid-column: span 2;
}

.form-field input,
.form-field select {
  width: 100%;
  padding: 16px 18px;
  font-family: var(--font-body);
  font-size: 15px;
  border: 2px solid var(--gray-200);
  border-radius: 12px;
  background: var(--white);
  transition: all 0.3s ease;
}

.form-field input::placeholder {
  color: var(--gray-400);
}

.form-field input:focus,
.form-field select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(185, 28, 28, 0.1);
}

.enrollment-new-footer {
  display: flex;
  justify-content: center;
  gap: 48px;
  padding: 24px 40px;
  background: var(--gray-50);
  border-top: 1px solid var(--gray-100);
}

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

.stat-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}

.stat-label {
  font-size: 12px;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 4px;
  display: block;
}

/* ========================================
   LOCATION + CONTACT SECTION
   ======================================== */
.location-contact {
  padding: var(--section-padding);
  background: var(--white);
}

.location-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: stretch;
}

.location-map {
  border-radius: var(--border-radius);
  overflow: hidden;
  min-height: 500px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.location-map iframe {
  width: 100%;
  height: 100%;
  min-height: 500px;
  border: 0;
}

.location-info {
  padding: 20px 0;
}

.location-info h2 {
  font-size: 36px;
  margin-bottom: 12px;
}

.location-info>p {
  font-size: 17px;
  color: var(--gray-600);
  margin-bottom: 32px;
  line-height: 1.7;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

.contact-detail-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: var(--gray-50);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.contact-detail-item:hover {
  background: var(--gray-100);
}

a.contact-detail-item:hover {
  transform: translateX(4px);
}

.contact-detail-icon {
  width: 48px;
  height: 48px;
  background: var(--primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-detail-icon i {
  color: var(--white);
}

.contact-detail-icon.whatsapp {
  background: #25D366;
}

.contact-detail-label {
  display: block;
  font-size: 12px;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 2px;
}

.contact-detail-value {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: var(--black);
}

.contact-location-info span {
  font-size: 14px;
  color: var(--gray-700);
  display: block;
}

.contact-location-info a {
  font-size: 13px;
  color: var(--primary);
  font-weight: 500;
}

.contact-location-mini a:hover {
  text-decoration: underline;
}

/* ========================================
   SIMPLIFIED FOOTER
   ======================================== */
.footer {
  background-color: var(--black);
  color: var(--white);
  padding: 40px 0 24px;
}

.footer-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 24px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-brand img {
  height: 80px;
}

.footer-brand p {
  font-size: 13px;
  color: var(--gray-400);
  max-width: 250px;
}

.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 13px;
  color: var(--gray-400);
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: var(--primary);
}


.footer-bottom {
  text-align: center;
}

.footer-bottom p {
  font-size: 12px;
  color: var(--gray-500);
}

.mobile-book-now {
  display: none;
}

/* Video Modal Styles */
.video-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 2000;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.video-modal.active {
  display: flex;
}

.video-modal-content {
  position: relative;
  width: 100%;
  max-width: 900px;
  background: #000;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  /* 16:9 Aspect Ratio */
  height: 0;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.close-modal {
  position: absolute;
  top: -40px;
  right: 0;
  background: none;
  border: none;
  color: #fff;
  font-size: 40px;
  cursor: pointer;
  z-index: 2001;
  transition: transform 0.3s ease;
}

.close-modal:hover {
  transform: scale(1.2);
}

@media (max-width: 768px) {
  .close-modal {
    top: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.5);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

/* ========================================
   RESPONSIVE STYLES
   ======================================== */
@media (max-width: 1200px) {
  .differentiators-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .enrollment-highlight-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

@media (max-width: 1024px) {
  .mobile-book-now {
    display: block;
    width: 100%;
    text-align: center;
    font-size: 16px;
    padding: 6px;
    background: #B91C1C;
    color: white;
    position: fixed;
    bottom: 0;
    z-index: 999;
    left: 0;
    right: 0;
  }

  .header-nav,
  .announcement-bar,
  .header-cta {
    display: none;
  }

  .header-nav.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--white);
    padding: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    z-index: 100;
  }

  .header-nav.active a {
    color: var(--gray-700) !important;
    padding: 15px 0;
    border-bottom: 1px solid var(--gray-100);
    width: 100%;
    display: block;
    font-size: 14px;
  }

  .header-nav.active a:last-child {
    border-bottom: none;
  }

  .header {
    padding: 16px 0 16px 0px;
  }

  .header-mobile-toggle {
    display: flex;
  }

  .hero h1 {
    font-size: 42px;
  }

  .welcome-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .welcome-images {
    order: -1;
  }

  .announcement-inner {
    flex-direction: column;
    gap: 8px;
  }

  .enrollment-countdown {
    flex-wrap: wrap;
    justify-content: center;
  }

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

  .location-contact-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .location-map {
    order: 1;
    min-height: 350px;
  }

  .location-map iframe {
    min-height: 350px;
  }

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

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

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

  .gallery-item:nth-child(1) {
    grid-column: span 2;
    grid-row: span 1;
  }

  .footer-main {
    flex-direction: column;
    text-align: center;
  }

  .footer-brand {
    flex-direction: column;
  }

  .footer-brand p {
    max-width: none;
  }

  .virtual-tour-content-center h2 {
    font-size: 36px;
  }

  .virtual-tour-features-row {
    gap: 24px;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 60px 0;
  }

  .hero h1 {
    font-size: 32px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .virtual-tour-content-center h2 {
    font-size: 28px;
  }

  .virtual-tour-features-row {
    flex-direction: column;
    gap: 16px;
  }

  .enrollment-new-header h2 {
    font-size: 28px;
  }

  .enrollment-new-form {
    padding: 24px 20px;
  }

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

  .form-field.full-width {
    grid-column: span 1;
  }

  .enrollment-new-footer {
    gap: 32px;
    padding: 20px 24px;
  }

  .enrollment-new-card-header {
    padding: 24px 20px;
  }

  .location-info h2 {
    font-size: 28px;
  }

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

  .hero-features {
    gap: 12px;
  }

  .hero-feature {
    font-size: 12px;
  }

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

  .usp-strip-inner {
    flex-direction: column;
    gap: 20px;
  }

  .welcome-content h2,
  .differentiators-header h2,
  .programs-header h2,
  .facilities-header h2,
  .gallery-header h2,
  .testimonials-header h2,
  .faq-header h2 {
    font-size: 25px;
  }

  .welcome-image-float {
    display: none;
  }

  .welcome-highlights {
    grid-template-columns: 1fr;
  }

  .differentiators-grid,
  .programs-grid,
  .facilities-grid {
    grid-template-columns: 1fr;
  }

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

  .gallery-item:nth-child(1) {
    grid-column: span 1;
  }

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

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .announcement-bar {
    padding: 4px 0;
  }

  .announcement-text {
    font-size: 12px;
  }

  .announcement-link {
    font-size: 12px;
  }

  .enrollment-highlight-content h2 {
    font-size: 26px;
  }

  .countdown-item {
    padding: 14px 18px;
    min-width: 60px;
  }

  .countdown-number {
    font-size: 24px;
  }

  .spots-list {
    gap: 8px;
  }

  .spot-item {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }

  .footer-social {
    justify-content: center;
  }

  .floating-buttons {
    bottom: 20px;
    right: 20px;
  }

  .floating-btn {
    width: 50px;
    height: 50px;
  }
}


















/*footer items chat and modal popup _form.php*/
.chat-badge { transition: ease-in-out 0.3s; position: fixed; right: 0; top: 35%; padding: 17px 32px 17px 32px; border-radius: 40px 0px 0px 40px; border: 1px solid #CF1F25; background: #CF1F25; box-shadow: 2px -2px 22px 2px rgba(0, 0, 0, 0.10); z-index: 30; }
.chat-badge-close { position: absolute; top: 6px; right: 5px; width: 17px; height: 17px; cursor: pointer; }
#chat-badge-step-2 .chat-badge-title, #chat-badge-step-3 .chat-badge-title, #chat-badge-step-3 .chat-badge-top-title { text-align: left; }
.chat-badge-title { line-height: 100%; font-size: 20px; font-weight: 900; letter-spacing: -0.2px; text-transform: uppercase; margin-bottom: 10px; text-align: center; color: #FFF; }
.theme-btn { border: 2px solid var(--main-color); transition: all 0.3s; text-align: center; text-decoration: none; color: #fff; font-size: 18px; line-height: 18px; font-weight: 500; padding: 15.30px 30px; background-color: var(--main-color); border-radius: 60px; font-family: 'Roboto'; max-width: 240px; width: 100%; text-transform: none; box-sizing: border-box; }
.chat-badge .theme-btn { padding: 8px; width: 150px; border: 0; font-size: 14px; justify-content: center; }
.chat-badge .theme-btn.green { background-color: #1DCA5D; color: white; }
.chat-badge .theme-btn.white { background-color: white; color: #1D1D1D; margin-bottom: 4px; }
.chat-badge-top-title { color: white; font-size: 14px; font-style: normal; font-weight: 400; margin-bottom: 4px; }
.chat-badge .iti { width: 100%; margin-bottom: 10px; } 
.iti {width: 100%!important; position: relative; display: inline-block;}
.chat-badge input[type="tel"] { padding: 16px 24px; border-radius: 6px; border: 1px solid #DEDEDE; width: 100%; }
.chat-list { list-style-type: none; margin: 16px 0 24px 0; padding: 0; display: flex; gap: 4px; flex-direction: column; margin-bottom: 10px; }
.chat-list li { padding: 8px 12px; border-radius: 60px; border: 1px solid #FFF; position: relative; min-width: 160px; height: 33px; border-radius: 60px; border: 1px solid #FFF; position: relative; overflow: hidden; }
.chat-list input[type="radio"] { opacity: 0.011; z-index: 100; }
.chat-list label, .chat-list input { display: block; position: absolute; top: 0; left: 0; right: 0; bottom: 0; }
.chat-list label { cursor: pointer; color: white; z-index: 90; font-size: 14px; font-weight: 600; display: flex; justify-content: center; align-items: center; gap: 8px; }
.chat-list label img { display: none; }


.updated_bookTourPopUp .modal-dialog.modal-dialog-centered { max-width: 1175px !important; width: 100% !important; margin: auto; }
#bookTour button.btn-close { position: absolute; right: 10px; top: 10px; z-index: 99; }
.updated_bookTourPopUp .modal-dialog.modal-dialog-centered h2 { text-align: center; max-width: 700px; width: 100%; margin: 15px auto 10px !important; font-size: 36px; line-height: 36px; font-weight: 900;; letter-spacing: -0.36px; text-transform: uppercase;}
.updated_bookTourPopUp ul { padding: 20px 10px; display: flex; justify-content: center; text-align: center; list-style: none; }
.updated_bookTourPopUp ul li { margin: 0 5px; width: 33%; background: #f5f5f5; border-radius: 20px; }
.heading_iconCs { color: white; background: #cd1316; text-align: center; border-radius: 25px; border-bottom-left-radius: 0; border-bottom-right-radius: 0; padding: 20px 10px; }
.updated_bookTourPopUp ul li i.fa { font-size: 24px; box-shadow: 0px 0px 0px 2px white !important; padding: 15px; border-radius: 50%; margin-bottom: 15px; }
.updated_bookTourPopUp .modal-dialog.modal-dialog-centered .heading_iconCs h2 { text-align: center; color:white; max-width: 700px; width: 100%; font-size: 20px; font-weight: 400; max-width: unset; width: unset; margin: 0 !important; }
.updated_bookTourPopUp ul li:nth-child(2) .heading_iconCs { background: #eac474 !important; }
.updated_bookTourPopUp ul li i.fa { font-size: 24px; box-shadow: 0px 0px 0px 2px white !important; padding: 15px; border-radius: 50%; margin-bottom: 15px; }
.content_ListCs { padding: 19px; }
.updated_bookTourPopUp ul li p { text-align: left; font-size: 15px; color: black; }
.updated_bookTourPopUp ul ul { display: inline-block; padding: 0; text-align: left; width: 100%; margin-bottom: 30px; list-style: none; }
.updated_bookTourPopUp ul li ul li { margin: 0 0 5px; width: 100%; padding: 0; font-size: 13px; display: flex; align-items: center; }
.updated_bookTourPopUp ul li ul li i.fa { font-size: 15px; box-shadow: unset !important; padding: 0; border-radius: 0; margin-bottom: 0; color: #cd1316; margin-right: 5px; position: relative; top: 1px; } 
.updated_bookTourPopUp ul li:nth-child(2) a.updated_widget_btn { background: #eac474; }
a.updated_widget_btn { border-radius: 30px !important; padding: 10px !important; text-decoration: unset; background: #cd1316; color: white; text-align: center; background-size: 15px; font-weight: 600; font-size: 16px !important; width: 100% !important; display: inline-block; }
.modal.updated_bookTourPopUp ul li form.contact-form { display: none; }
.contact-form .form-select, .contact-form .form-control { font-size: 16px !important; }
.contact-form.career-form-sc-cs input, .contact-form select { width: 100%; }
form#mc-embedded-subscribe-form .contact-form input, .contact-form select { border: 1px solid #B0B0B0 !important; }
select#nurserySelect-onlineClass1, #nurserySelect-onlineClass12 { border-radius: 30px !important; padding: 10px !important; background: #eac474 !important; color: white; text-align: center; background-image: url(https://mogulsdemo.com/mb-gulf/wp-content/themes/maple-bear-school-wp-theme/static/img/down-arrow-222-white.png) !important; background-repeat: no-repeat !important; background-position: 94% 17px !important; background-size: 15px !important; font-weight: 600; }
.updated_bookTourPopUp ul li:last-child .heading_iconCs { background: #00b73f; }
.updated_bookTourPopUp ul li:last-child a { background: #00b73f !important; border-color: #00b73f; transition: all 0.3s; text-align: center; text-decoration: none; color: #fff; font-size: 16px; line-height: 18px; font-weight: 600; padding: 12px 37.5px; border-radius: 60px; font-family: "Roboto"; text-transform: none; box-sizing: border-box; max-width: 250px; cursor: pointer; width: 100%; }
.chat-list input[type="radio"]:checked + label { background: white; color: #1D1D1D; }
.chat-list input[type="radio"]:checked + label img { display: inline; }

.form-outline.w-100 {
    margin-bottom: 20px;
}
.form-wrapper form input, .form-wrapper form select { border-radius: 6px; border: 1px solid #DEDEDE; height: 53px; color: #2F2F2F; font-family: 'Roboto'; font-size: 16px; font-weight: 400; line-height: 20.8px; padding: 16px 24px; }
button.theme-btn.mt-3.form-submit { background: #b91c1c; border-radius: 6px; }

.contact-form_banner{padding:20px;}


.chat-badge--minimize { padding: 18px 14px 17px 21px; }
.chat-badge--minimize .chat-badge-title, .chat-badge--minimize .theme-btn span, .chat-badge--minimize .chat-badge-close { display: none; }
.chat-badge--minimize { padding: 18px 14px 17px 21px; } 
.chat-badge--minimize .theme-btn { width: auto; } 
.chat-badge--minimize .theme-btn img { margin: 0 !important; }














@media (max-width: 767px) {
    .updated_bookTourPopUp ul {
        padding: 30px 0 0;
        flex-wrap: wrap;
    }
        .updated_bookTourPopUp ul li {
        margin: 0 5px 15px;
        width: 47%;
    }
    .updated_bookTourPopUp .modal-dialog.modal-dialog-centered .heading_iconCs h2 {
        font-size: 14px;
    }
}


@media (max-width: 480px) {
    .updated_bookTourPopUp ul li {
        margin: 0 0 20px !important;
        width: 100%;
    }
}






/*footer items chat and modal popup _form.php*/