/* ========================================
   MAPLE BEAR WORLD CUP SUMMER CAMP - STYLES
   ======================================== */

/* CSS Variables */
:root {
  /* Brand Colors */
  --primary: #ee5a39;
  --primary-hover: #991B1B;
  --white: #FFFFFF;
  --black: #0A0A0A;
  --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;
  --gray-900: #171717;

  /* Fonts */
  --font-heading: 'Childos Arabic';
  --font-body: 'Childos Arabic';

  /* Spacing */
  --section-padding: 100px 0;
  --container-width: 1280px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body); 
  font-size:18px;
  line-height: 1.6;
  color: var(--gray-700);
  background-color: var(--white);
  overflow-x: hidden;
}

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;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.2;
  color: var(--black);
}

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 42px;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: none;
  border-radius: 50px;
  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 15px 40px rgba(185, 28, 28, 0.35);
}

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

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

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

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

.btn-large {
  padding: 18px 40px;
  font-size: 15px;
}

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

.btn-dark:hover {
  background-color: var(--black);
}

/* Section Labels */
.section-label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 13px;
  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: 1000;
  padding: 16px 0;
  background-color: transparent;
  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;
}

.logo {
  position: relative;
  display: inline-block;
  height: 90px;
  transition: height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo img {
  height: 100%;
  width: auto;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  display: block;
}

.logo .logo-black {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transform: translateY(10px);
}

.header.scrolled .logo {
  height: 60px;
}

.header.scrolled .logo .logo-white {
  opacity: 0;
  transform: translateY(-10px);
}

.header.scrolled .logo .logo-black {
  opacity: 1;
  transform: translateY(0);
}

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

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

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

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

/* Menu Toggle Button */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.menu-toggle span {
  width: 100%;
  height: 3px;
  background-color: var(--white);
  border-radius: 10px;
  transition: all 0.3s ease;
}
.menu-toggle.active span { 
  background-color: black; 
}
.header.scrolled .menu-toggle span {
  background-color: var(--black);
}

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

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

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

button#menuClose {
  display: none;
}

.hero {
  position: relative;
  min-height: 100vh;
  height: auto;
  padding: 30px 0px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

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

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgb(0 0 0 / 48%) 0%, rgb(0 0 0 / 32%) 50%, rgb(0 0 0 / 75%) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: left;
  width: 100%;
}

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

.hero-content h1 {
  font-size: 51px;
  font-weight: 800;
  color: var(--white);
  padding-top: 160px;
  margin-bottom: 24px;
  line-height: 1.05;
  text-shadow: 2px 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-content p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 16px;
  line-height: 1.6;
}

.hero-date {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 40px;
  letter-spacing: 0.05em;
}

.hero-cta {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
}

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

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

@keyframes bounce {

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

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

/* ========================================
   HERO CONTENT SECTION - Second Fold
   ======================================== */
.hero-content-section {
  padding: 100px 0 80px;
  background-color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-content-inner {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

/* ========================================
   MASCOT STYLES
   ======================================== */
.mascot {
  position: absolute;
  z-index: 10;
  pointer-events: none;
}

.mascot img {
  max-width: 100%;
  height: auto;
}

/* Mascot peeking from left side */
.mascot-peek-left {
  left: -180px;
  top: 50%;
  transform: translateY(-50%);
  width: 160px;
  animation: peekBounce 3s ease-in-out infinite;
}

/* Mascot celebrating on right side */
.mascot-celebrate-right {
  right: -180px;
  top: 40%;
  transform: translateY(-50%);
  width: 140px;
  animation: celebrateBounce 2.5s ease-in-out infinite;
}

/* Mascot with football in big banner */
.mascot-with-ball {
  position: relative;
  width: 120px;
  margin: 0 auto 24px;
  animation: kickBall 2s ease-in-out infinite;
}

.mascot-with-ball .football-icon {
  position: absolute;
  bottom: -10px;
  right: -20px;
  width: 40px;
  height: 40px;
  color: var(--white);
  animation: ballRoll 2s ease-in-out infinite;
}

.mascot-with-ball .football-icon i {
  width: 100%;
  height: 100%;
}

/* Mascot peeking from corner in join banner */
.mascot-peek-corner {
  position: absolute;
  top: -40px;
  right: -30px;
  width: 100px;
  animation: peekCorner 3s ease-in-out infinite;
}

/* Animations */
@keyframes peekBounce {

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

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

@keyframes celebrateBounce {

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

  25% {
    transform: translateY(-55%) rotate(-5deg);
  }

  75% {
    transform: translateY(-45%) rotate(5deg);
  }
}

@keyframes kickBall {

  0%,
  100% {
    transform: rotate(0deg);
  }

  50% {
    transform: rotate(-5deg);
  }
}

@keyframes ballRoll {

  0%,
  100% {
    transform: translateX(0) rotate(0deg);
  }

  50% {
    transform: translateX(10px) rotate(180deg);
  }
}

@keyframes peekCorner {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-10px) rotate(5deg);
  }
}

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

.hero-content-section h1 {
  font-family: var(--font-heading);
  font-size: 55px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: 0.02em;
  color: var(--black);
  margin-bottom: 24px;
}

.hero-content-section .hero-subtitle {
  font-size: 22px;
  color: var(--gray-700);
  margin-bottom: 12px;
  line-height: 1.5;
}

.hero-content-section .hero-date {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 20px;
}

.hero-content-section .hero-description { 
  color: var(--gray-600);
  margin-bottom: 40px;
}

.hero-features {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

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

.hero-feature i {
  width: 22px;
  height: 22px;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.hero-content-section .hero-cta {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

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

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

.intro-image {
  position: relative;
}

.intro-image-main {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

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

.intro-image-float {
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 220px;
  height: 220px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
  border: 6px solid var(--white);
}

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

.intro-content h2 {
  font-size: 42px;
  margin-bottom: 24px;
  line-height: 1.15;
}

.intro-content>p {
  font-size: 18px;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 32px;
}

.intro-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.intro-feature {
  display: flex;
  align-items: center;
  gap: 14px;
}

.intro-feature-icon {
  width: 50px;
  height: 50px;
  background-color: rgba(185, 28, 28, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

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

.intro-feature span {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  color: var(--black);
}

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

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

.experience-header h2 {
  font-size: 38px;
  max-width: 800px;
  margin: 0px auto 20px auto;
}

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

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

.experience-card {
  background-color: var(--white);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
}

.experience-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}

.experience-card-image {
  height: 260px;
  overflow: hidden;
}

.experience-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  object-position: top;
}
.experience-card:nth-child(2) .experience-card-image img {
    object-position: center;
}


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

.experience-card-content {
  padding: 32px;
}

.experience-card h3 {
  font-size: 20px;
  margin-bottom: 14px;
  color: var(--primary);
}

.experience-card p { 
  color: var(--gray-600);
  line-height: 1.7;
}

/* ========================================
   IMAGE STRIP - Full Width Gallery
   ======================================== */
.image-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
}

.image-strip-item {
  position: relative;
  height: 350px;
  overflow: hidden;
}

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

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

.image-strip-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.image-strip-item:hover::after {
  opacity: 1;
}

/* ========================================
   WHY MAPLE BEAR SECTION
   ======================================== */
.why-section {
  padding: var(--section-padding);
  background-color: var(--white);
}

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

.why-header h2 {
  font-size: 38px;
  margin-bottom: 16px;
}

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

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.why-card {
  text-align: center;
  padding: 40px 28px;
  border-radius: 20px;
  background-color: #f7f7f7;
  transition: all 0.3s ease;
}

.why-card:hover {
  background-color: var(--white);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  transform: translateY(-8px);
}

.why-card-icon {
  width: 80px;
  height: 80px;
  background-color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.why-card-icon i {
  color: white;
}

.why-card-icon i {
  width: 36px;
  height: 36px;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.why-card h4 {
  font-size: 16px;
  margin-bottom: 12px;
}

.why-card p { 
  color: var(--gray-500);
  line-height: 1.6;
}

/* ========================================
   BIG IMAGE BANNER WITH TEXT
   ======================================== */
.big-banner {
  position: relative;
  min-height: 715px;
  display: flex;
  overflow: hidden;
  
}

.big-banner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% 25%;
  z-index: 1;
}

.big-banner-overlay {
  position: relative;
  width: 100%;
  padding: 80px 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.4) 60%, transparent);
  display: flex;
  align-items: center;
  z-index: 2;
}

.big-banner-content {
  max-width: 750px;
  padding: 0 80px;
  color: var(--white);
}

.big-banner-content h2 {
  font-size: 40px;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.15;
}

.big-banner-content p {
  font-size: 18px;
  line-height: 1.8;
  opacity: 0.9;
  margin-bottom: 32px;
}

/* ========================================
   GALLERY MASONRY
   ======================================== */
.gallery {
  padding: var(--section-padding);
  background-color: var(--gray-50);
}

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

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

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

.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 350px;
  gap: 16px;
}

.gallery-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.testimonials-header h2 {
  font-size: 38px;
}

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

.testimonial-card {
  background-color: #f7f7f7;
  border-radius: 20px;
  padding: 36px 28px;
  text-align: center;
  transition: all 0.3s ease;
}

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

.testimonial-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 24px;
  border: 4px solid var(--primary);
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-text {
    font-size: 18px;
    color: var(--gray-700);
    line-height: 1.55;
    margin-bottom: 24px;
    font-style: italic;
}

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

.testimonial-role {
  font-size: 13px;
  color: var(--gray-500);
  margin-top: 4px;
}

/* ========================================
   CTA BANNER - Red Background
   ======================================== */
.cta-banner {
  background-color: var(--primary);
  padding: 100px 0;
  text-align: center;
}

.cta-banner h2 {
  font-size: 38px;
  color: var(--white);
  margin-bottom: 20px;
}

.cta-banner p {
  font-size: 19px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.cta-banner .btn {
  background-color: var(--gray-800);
  color: var(--white);
  padding: 20px 50px;
  font-size: 15px;
}

.cta-banner .btn:hover {
  background-color: var(--black);
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

/* ========================================
   ENROLLMENT FORM SECTION
   ======================================== */
.enrollment {
  padding: var(--section-padding);
  background-color: var(--gray-50);
}

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

.enrollment-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  position: sticky;
  top: 120px;
  height: fit-content;
}

.enrollment-images .img-large {
  grid-column: span 2;
  height: 380px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.enrollment-images .img-small {
  height: 260px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

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

.enrollment-images div:hover img {
  transform: scale(1.05);
}

.enrollment-form-wrapper {
  background-color: var(--white);
  border-radius: 20px;
  padding: 48px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.enrollment-form-wrapper h2 {
  font-size: 32px;
  margin-bottom: 8px;
}

.enrollment-form-wrapper .subtitle {
  font-size: 16px;
  color: var(--gray-600);
  margin-bottom: 32px;
}

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

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gray-700);
  margin-bottom: 8px;
}

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

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary);
}

.phone-input {
  display: flex;
}

.phone-prefix {
  padding: 16px 18px;
  background-color: var(--gray-100);
  border: 2px solid var(--gray-200);
  border-right: none;
  border-radius: 12px 0 0 12px;
  font-size: 15px;
  color: var(--gray-600);
}

.phone-input input {
  border-radius: 0 12px 12px 0;
}

.form-submit {
  margin-top: 28px;
}

.form-submit .btn {
  width: 100%;
  padding: 18px;
  border-radius: 12px;
}

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

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

.faq-header h2 {
  font-size: 40px;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 2px solid var(--gray-200);
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: var(--gray-300);
}

.faq-item.active {
  border-color: var(--primary);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 28px;
  background: var(--white);
  border: none;
  cursor: pointer;
  text-align: left;
}

.faq-question h4 { 
  color: var(--black);
  text-transform: none;
  font-weight: 600;
}

.faq-icon {
  width: 32px;
  height: 32px;
  background-color: var(--gray-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.faq-item.active .faq-icon {
  background-color: var(--primary);
  transform: rotate(45deg);
}

.faq-icon i {
  width: 16px;
  height: 16px;
  color: var(--gray-600);
  transition: color 0.3s ease;
}

.faq-item.active .faq-icon i {
  color: var(--white);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer p {
  padding: 0 28px 28px;
  font-size: 18px;
  color: var(--gray-600);
  line-height: 1.75;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  background-color: var(--gray-900);
  padding: 70px 0 35px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 50px;
}

.footer-brand {
  max-width: 300px;
}

.footer-logo {
  margin-bottom: 24px;
  text-align: center;
}

.footer-logo img {
  height: 85px;
  margin: auto;
}

.footer-brand p { 
  color: var(--gray-400);
  line-height: 1.7;
}

.footer-column h4 { 
  color: var(--white);
  margin-bottom: 24px;
  letter-spacing: 0.1em;
}

.footer-column ul {
  list-style: none;
  margin:0;
  padding-left:0;
}

.footer-column ul li {
  margin-bottom: 14px;
}

.footer-column ul li a { 
  color: var(--gray-400);
}

.footer-column ul li a:hover {
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid var(--gray-800);
  padding-top: 35px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-copyright { 
  color: var(--gray-500);
}

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

.footer-social a {
  width: 44px;
  height: 44px;
  background-color: var(--gray-800);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

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

.footer-social i {
  width: 20px;
  height: 20px;
  color: var(--gray-400);
  display: flex;
  align-items: center;
  justify-content: center;
}

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

/* ========================================
   JOIN BANNER SECTION
   ======================================== */
.join-banner {
  padding: 50px 0px;
  min-height: 450px;
  position: relative;
}

.join-banner h2 {
  font-size: 38px;
  text-align: center;
  max-width: 850px;
  margin: 0px auto 40px auto;
}

.join-banner-img {
  width: 100%;
  height: 500px;
  background-image: url("../images/join-banner1.webp");
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
}

.join-banner-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 60px 50px;
  background-color: var(--primary);
}

.join-banner-content h2 {
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.02em;
  color: var(--white);
  margin-bottom: 32px;
  max-width: 500px;
}

.join-banner-content .btn {
  background-color: var(--white);
  color: var(--primary);
  padding: 16px 40px;
}

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

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

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

.locations-header h2 {
  margin-bottom: 16px;
}

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

.locations-showcase {
  max-width: 1000px;
  margin: 0 auto 50px;
}

/* Major Location Cards (Dubai, Abu Dhabi) */
.location-major {
  background: var(--white);
  border-radius: 20px;
  padding: 36px 40px;
  margin-bottom: 20px;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.06);
  border: 1px solid var(--gray-100);
  transition: all 0.3s ease;
}

.location-major:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
  border-color: var(--primary);
}

.location-major-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.location-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--primary), #dc2626);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.location-icon i {
  width: 28px;
  height: 28px;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
}

.location-major-header h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--black);
  margin-bottom: 4px;
}

.location-badge {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
  background: rgba(185, 28, 28, 0.1);
  padding: 4px 12px;
  border-radius: 20px;
}

.location-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.location-tag {
  display: inline-block;
  padding: 12px 20px;
  background: var(--gray-50);
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-700);
  transition: all 0.2s ease;
  cursor: default;
}

.location-tag:hover {
  background: var(--primary);
  color: var(--white);
}

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

/* Other Emirates Row */
.location-others {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.location-other-card {
  background: var(--white);
  border-radius: 16px;
  padding: 32px 28px;
  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;
}

.location-other-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  border-color: var(--primary);
}

.location-icon-small {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--primary), #dc2626);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

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

.location-other-card h4 {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--black);
  margin-bottom: 8px;
}

.location-other-card p {
  font-size: 15px;
  color: var(--gray-600);
}

.locations-cta {
  text-align: center;
  padding-top: 20px;
}

.locations-cta p {
  font-size: 18px;
  color: var(--gray-600);
  margin-bottom: 20px;
}

/* ========================================
   FLOATING BUTTONS
   ======================================== */
.floating-buttons {
  position: fixed;
  bottom: 100px;
  right: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 999;
}

.float-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease;
}

.float-btn:hover {
  transform: scale(1.1);
}

.float-btn.whatsapp {
  background-color: #25D366;
}

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

.float-btn i {
  width: 30px;
  height: 30px;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 1200px) {
  .hero-content h1 {
    font-size: 56px;
  }

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

  .gallery-masonry {
    grid-template-columns: repeat(6, 1fr);
  }

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

  .gallery-item:nth-child(2),
  .gallery-item:nth-child(3),
  .gallery-item:nth-child(4),
  .gallery-item:nth-child(5),
  .gallery-item:nth-child(6) {
    grid-column: span 3;
    grid-row: span 1;
  }

  /* Hide side mascots on smaller screens */
  .mascot-peek-left,
  .mascot-celebrate-right {
    display: none;
  }
}

@media (max-width: 1024px) {
  .intro-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .intro-image-float {
    right: 20px;
    bottom: -30px;
    width: 180px;
    height: 180px;
  }

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

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

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

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

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

  .join-banner {
    grid-template-columns: 1fr;
  }

  .join-banner-content {
    padding: 50px 40px;
  }

  .join-banner-content h2 {
    font-size: 32px;
  }

  .mascot-peek-corner {
    display: none;
  }
}

@media (max-width: 991px) {
  .mobile-book-now {
    display: block;
    position: fixed;
    bottom: 0px;
    left: 0px;
    width: 100%;
    z-index: 9999;
    background-color: var(--primary);
    color: var(--white);
    text-align: center;
    padding: 10px 0px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
  }

  .menu-toggle {
    display: flex;
  }

  button#menuClose {
    display: block;
  }

  .header-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background-color: var(--white);
    flex-direction: column;
    gap: 30px;
    padding: 130px 40px 0px 40px;
    transition: all 0.4s ease;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    z-index: 1000;
  }

  .header-nav.active {
    right: 0;
  }

  .header-nav a {
    color: var(--gray-800);
    font-size: 18px;
    width: 100%;
    text-align: left;
  }

  .header-cta {
    display: none;
  }

  .logo {
    height: 60px;
  }

  .header.scrolled .logo {
    height: 50px;
  }

  .menu-close {
    display: block;
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 40px;
    line-height: 1;
    color: var(--gray-800);
    cursor: pointer;
    padding: 10px;
  }
}



@media (max-width: 768px) {

  .menu-toggle {
    display: flex;
  }

  .header-nav {
    width: 100%;
    right: -100%;
  }

  .header-nav.active {
    right: 0;
  }

  :root {
    --section-padding: 70px 0;
  }



  .hero {
    min-height: 100vh;
  }

  .hero-content h1 {
    font-size: 38px;
  }

  .hero-content p {
    font-size: 16px;
  }

  .hero-cta {
    flex-direction: column;
    align-items: start;
  }

  .hero-content-section {
    padding: 60px 0;
  }

  .hero-content-section h1 {
    font-size: 36px;
  }

  .hero-content-section .hero-subtitle {
    font-size: 18px;
  }

  .hero-features {
    gap: 20px;
  }

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

  .hero-content-section .hero-cta {
    flex-direction: column;
    align-items: center;
  }

  .btn-large {
    width: auto;
    max-width: none;
    padding: 12px 30px;
    font-size: 15px;
            margin: 0 auto;
  }

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

  .image-strip {
    grid-template-columns: 1fr;
  }

  .image-strip-item {
    height: 350px;
  }

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



  .big-banner {
    min-height: 500px;
  }

  .big-banner-overlay {
    background: rgba(0, 0, 0, 0.6);
    padding: 60px 0;
  }

  .big-banner-content {
    padding: 0 24px;
    text-align: left;
  }

  .big-banner-content h2 {
    font-size: 30px;
  }

  .mascot-with-ball {
    transform: scale(0.8);
    margin-bottom: 20px;
  }

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

  .gallery-item,
  .gallery-item:nth-child(1),
  .gallery-item:nth-child(2),
  .gallery-item:nth-child(3),
  .gallery-item:nth-child(4),
  .gallery-item:nth-child(5),
  .gallery-item:nth-child(6) {
    /* grid-column: span 1; */
    grid-row: span 1;
  }

  .gallery-masonry {
    grid-auto-rows: 350px;
  }

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

  .enrollment-images {
    grid-template-columns: repeat(2, 1fr);
    position: static;
    gap: 12px;
    margin-bottom: 24px;
  }

  .enrollment-images .img-large {
    grid-column: span 2;
    height: 200px;
  }

  .enrollment-images .img-small {
    height: 140px;
  }

  .enrollment-form-wrapper {
    padding: 32px 24px;
  }

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



  .join-banner-content h2 {
    font-size: 26px;
  }

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

  .location-others {
    grid-template-columns: 1fr;
  }

  .location-major {
    padding: 28px 24px;
  }

  .footer-brand {
    max-width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }

  h2 {
    font-size: 32px !important;
  }

  .cta-banner h2 {
    font-size: 36px !important;
  }
}

@media(max-width:600px) {
  h2 {
    font-size: 28px !important;
  }
}





















/*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: 'Childos Arabic'; 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: "Childos Arabic"; 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: 'Childos Arabic'; font-size: 16px; font-weight: 400; line-height: 20.8px; padding: 16px 24px; }
button.theme-btn.mt-3.form-submit { background: #ee5a39; border-radius: 6px; }

.contact-form_banner{padding:20px;}
select#nurserySelect-onlineClass, #nurserySelect-onlineClass22 { border-radius: 30px !important; padding: 10px !important; background: #cd1316; 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); background-repeat: no-repeat; background-position: 94% 17px; background-size: 15px; font-weight: 600; --lzl-bg-img: "https://mogulsdemo.com/mb-gulf/wp-content/themes/maple-bear-school-wp-theme/static/img/down-arrow-222-white.png"; }
select#nurserySelect-onlineClass optgroup, #nurserySelect-onlineClass22 optgroup, #nurserySelect-onlineClass12 optgroup { background: #fff !important; color: black; text-align: left; padding: 5px !important; border-bottom: 1px solid black !important; }
.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: 991px) {
    .join-banner-img {  
        background-attachment: unset;  
        background-position: center;
    }
}
@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%;}
    .hero-content {text-align: center;}
    .contact-form_banner { padding: 0; }
    .footer-column ul li { margin-bottom: 5px; }
    .footer-grid {margin-bottom: 30px; }
}






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