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

:root {
  --primary: #CF1F25;
  --secondary: #B98A2F;
  --cream: #FBF7F0;
  --dark: #232323;
  --light-gray: #F5F1E8;
  --border: #E8E3D8;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Roboto', sans-serif;
  color: var(--dark);
  background: var(--cream);
  line-height: 1.7;
  font-weight: 400;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  line-height: 1.3;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.4s ease, background 0.4s ease;
}

.navbar.scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.98);
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 60px;
  max-width: 1600px;
  margin: 0 auto;
  transition: padding 0.4s ease;
}

.navbar.scrolled .nav-wrapper {
  padding-top: 6px;
  padding-bottom: 6px;
}

.logo img {
  width: 80px;
  transition: width 0.4s ease;
}

.navbar.scrolled .logo img {
  width: 55px;
}

.nav-menu {
  display: flex;
  gap: 50px;
}

.nav-menu a {
  text-decoration: none;
  color: var(--dark);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color 0.3s;
  position: relative;
}

.nav-menu a:after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--secondary);
  transition: width 0.3s;
}

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

.cta-button {
  background: var(--primary);
  color: white;
  padding: 12px 24px;
  border-radius: 4px;
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  transition: all 0.3s;
}

.cta-button:hover {
  background: #B01922;
  transform: translateY(-2px);
}

/* Hero Section */
.hero {
  margin-top: 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 80px 60px;
  max-width: 1600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-content h1 {
  font-size: 72px;
  margin-bottom: 30px;
  color: var(--dark);
  font-weight: 800;
  letter-spacing: -1px;
}

.hero-badge {
  display: inline-block;
  background: rgba(207, 31, 37, 0.1);
  color: var(--primary);
  padding: 12px 24px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.hero-content>p {
  font-size: 18px;
  color: #666;
  margin-bottom: 40px;
  line-height: 1.8;
  max-width: 500px;
}

.hero-buttons {
  display: flex;
  gap: 20px;
}

.btn-primary,
.btn-secondary {
  text-decoration: none;
  padding: 16px 40px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  transition: all 0.3s;
  cursor: pointer;
  border: none;
  display: inline-block;
}

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

.btn-primary:hover {
  background: #B01922;
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(207, 31, 37, 0.2);
}

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

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

.hero-visual {
  position: relative;
}

.hero-visual img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

/* About Us Hero (Full Background) */
.about-hero {
  margin-top: 80px;
  position: relative;
  background: url('../images/banner.jpg') no-repeat center center/cover;
  padding: 140px 60px;
  text-align: center;
  display: flex;
  justify-content: center;
}

.about-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.about-hero .hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.about-hero h1 {
  font-size: 56px;
  margin-bottom: 24px;
  color: white;
  font-weight: 800;
  line-height: 1.2;
}

.about-hero p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
  line-height: 1.8;
  max-width: 700px;
  text-align: center;
}

.about-hero .hero-badge {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  margin-bottom: 24px;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.about-hero .features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px 40px;
  margin: 0 auto;
  text-align: left;
}

.about-hero .features li {
  color: white;
  font-weight: 500;
}

/* Stats Section */
.stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 80px;
  padding: 80px 60px;
  background: white;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  max-width: 1600px;
  margin: 0 auto;
}

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

.stat-item .number {
  display: block;
  font-family: 'Raleway', sans-serif;
  font-size: 56px;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 12px;
}

.stat-item .label {
  display: block;
  font-size: 13px;
  color: #999;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.stat-divider {
  width: 1px;
  height: 50px;
  background: var(--border);
}

/* Programs Section */
.programs {
  padding: 120px 0;
  background: var(--light-gray);
}

.programs-container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 60px;
}

.program-intro {
  margin-bottom: 100px;
  text-align: center;
}

.program-intro h2 {
  font-size: 56px;
  margin-bottom: 20px;
  color: var(--dark);
}

.program-intro p {
  font-size: 18px;
  color: #666;
}

.programs-showcase {
  display: flex;
  flex-direction: column;
  gap: 120px;
}

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

.program-showcase-item.reverse {
  direction: rtl;
}

.program-showcase-item.reverse>* {
  direction: ltr;
}

.program-image {
  position: relative;
}

.program-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  transition: transform 0.4s ease;
}

.program-showcase-item:hover .program-image img {
  transform: scale(1.03);
}

.program-details h3 {
  font-size: 48px;
  margin-bottom: 20px;
  color: var(--dark);
}

.program-details p {
  font-size: 16px;
  color: #666;
  margin-bottom: 20px;
  line-height: 1.8;
}

.age-badge {
  display: inline-block;
  background: rgba(207, 31, 37, 0.08);
  color: var(--primary);
  padding: 8px 16px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.features {
  list-style: none;
  margin-bottom: 30px;
}

.features li {
  padding: 12px 0;
  padding-left: 30px;
  position: relative;
  font-size: 15px;
  color: #666;
}

.features li:before {
  content: '';
  position: absolute;
  left: 0;
  top: 18px;
  width: 8px;
  height: 8px;
  background: var(--secondary);
  border-radius: 50%;
}

.read-more {
  color: var(--primary);
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
  transition: all 0.3s;
  display: inline-block;
}

.read-more:hover {
  transform: translateX(8px);
}

/* Why Section */
.why-maple {
  background: white;
  padding: 120px 60px;
}

.why-container {
  max-width: 1600px;
  margin: 0 auto;
}

.why-maple h2 {
  font-size: 56px;
  margin-bottom: 80px;
  text-align: center;
}

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

.why-card {
  padding: 40px;
  background: var(--light-gray);
  border-radius: 12px;
  position: relative;
}

.why-number {
  font-family: 'Raleway', sans-serif;
  font-size: 64px;
  font-weight: 900;
  color: rgba(207, 31, 37, 0.1);
  position: absolute;
  top: -20px;
  right: 30px;
}

.why-card h3 {
  font-size: 24px;
  margin-bottom: 16px;
  color: var(--dark);
}

.why-card p {
  font-size: 15px;
  color: #666;
  line-height: 1.8;
}

/* Journey Timeline */
.journey {
  background: var(--light-gray);
  padding: 120px 0;
}

.journey-container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 60px;
}

.journey h2 {
  font-size: 56px;
  text-align: center;
  margin-bottom: 20px;
}

.journey-subtitle {
  text-align: center;
  font-size: 16px;
  color: #666;
  margin-bottom: 60px;
}

.journey-timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
  position: relative;
}

.timeline-connector {
  position: absolute;
  top: 140px;
  height: 3px;
  background: linear-gradient(90deg, var(--secondary), var(--primary));
  width: calc(100% - 60px);
  left: 30px;
  z-index: 0;
}

.timeline-stage {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
}

.stage-image {
  width: 100%;
  height: 180px;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

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


.stage-content {
  position: relative;
}

.stage-number {
  font-family: 'Raleway', sans-serif;
  font-size: 32px;
  font-weight: 900;
  color: var(--primary);
}

.stage-content h4 {
  font-size: 18px;
  margin-bottom: 8px;
}

.age-text {
  font-size: 12px;
  color: var(--secondary);
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.stage-content p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

/* Gallery */
.gallery {
  background: white;
  padding: 120px 60px;
}

.gallery-container {
  max-width: 1600px;
  margin: 0 auto;
}

.gallery h2 {
  font-size: 56px;
  margin-bottom: 80px;
  text-align: center;
}

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

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  height: 280px;
}

.gallery-item.large {
  grid-column: span 2;
  grid-row: span 2;
  height: auto;
}

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

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

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: flex-end;
  padding: 30px;
  opacity: 0;
  transition: opacity 0.3s;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay p {
  color: white;
  font-size: 16px;
  font-weight: 700;
}

/* Testimonials */
.testimonials {
  background: var(--light-gray);
  padding: 120px 60px;
}

.testimonials-container {
  max-width: 1600px;
  margin: 0 auto;
}

.testimonials h2 {
  font-size: 56px;
  text-align: center;
  margin-bottom: 80px;
}

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

.testimonial-card {
  background: white;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  border-left: 4px solid var(--primary);
}

.stars {
  color: var(--secondary);
  margin-bottom: 16px;
  display: block;
  font-size: 14px;
}

.testimonial-text {
  font-size: 15px;
  color: #666;
  margin-bottom: 20px;
  line-height: 1.8;
  font-style: italic;
}

.testimonial-author {
  font-size: 13px;
  color: var(--primary);
  font-weight: 700;
}

/* FAQ */
.faq {
  background: white;
  padding: 120px 60px;
}

.faq-container {
  max-width: 1000px;
  margin: 0 auto;
}

.faq h2 {
  font-size: 56px;
  text-align: center;
  margin-bottom: 80px;
}

.faq-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 24px;
  background: var(--light-gray);
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  font-weight: 600;
  color: var(--dark);
  transition: all 0.3s;
}

.faq-question:hover {
  background: rgba(207, 31, 37, 0.05);
  color: var(--primary);
}

.faq-question .toggle {
  font-size: 24px;
  transition: transform 0.3s;
}

.faq-item.open .faq-question .toggle {
  transform: rotate(45deg);
}

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

.faq-item.open .faq-answer {
  max-height: 200px;
}

.faq-answer p {
  padding: 24px;
  font-size: 15px;
  color: #666;
  line-height: 1.8;
}

/* CTA Section */
.cta {
  background: var(--primary);
  padding: 120px 60px;
  text-align: center;
}

.cta-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.cta h2 {
  font-size: 56px;
  color: white;
  margin-bottom: 20px;
}

.cta p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  margin-bottom: 60px;
}

.cta-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.cta-form input,
.cta-form select {
  padding: 16px;
  border: 2px solid transparent;
  border-radius: 4px;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  background: white;
  color: var(--dark);
  transition: border-color 0.3s ease;
}

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

.btn-submit {
  grid-column: span 2;
  background: white;
  color: var(--primary);
  padding: 16px;
  border: none;
  border-radius: 4px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-submit:hover {
  background: var(--secondary);
  color: white;
}

/* Form validation styles */
.form-group {
  display: flex;
  flex-direction: column;
}

.error-msg {
  display: none;
  color: #ffcdd2;
  font-size: 12px;
  margin-top: 6px;
  font-weight: 500;
  letter-spacing: 0.3px;
}

.input-error {
  border-color: #ffcdd2 !important;
  background: white !important;
}

.input-error::placeholder {
  color: #999;
}

/* Specific error styling for light background forms (like Contact form) */
.contact-form .error-msg {
  color: #CF1F25;
}

.contact-form .input-error {
  border-color: #CF1F25 !important;
  background: #FFF5F5 !important;
}

/* Contact Section */
.contact {
  background: var(--light-gray);
  padding: 120px 60px;
}

.contact-wrapper {
  max-width: 1600px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.contact-info h3 {
  font-size: 40px;
  margin-bottom: 40px;
}

.info-item {
  margin-bottom: 40px;
}

.info-label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--secondary);
  margin-bottom: 8px;
}

.info-item p {
  font-size: 16px;
  color: var(--dark);
}

.info-item a {
  color: var(--primary);
  text-decoration: none;
}

.info-item a:hover {
  text-decoration: underline;
}

.contact-map {
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: none;
  height: 500px;
  width: 100%;
}

/* Footer */
.footer {
  background: var(--dark);
}

.footer-main {
  padding: 50px 60px 40px;
}

.footer-container {
  max-width: 1600px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr 2fr 1fr;
  gap: 60px;
  align-items: start;
}

.footer-logo img {
  width: 90px;
}

.footer-col h4 {
  font-family: 'Raleway', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: white;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
  text-decoration: underline;
  text-underline-offset: 6px;
  text-decoration-thickness: 2px;
}

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

.footer-col ul li {
  margin-bottom: 10px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

.footer-col ul li a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-col ul li a:hover {
  color: white;
  text-decoration: underline;
}

.footer-label {
  font-weight: 700;
  color: white;
}

.footer-social-col {
  text-align: right;
}

.footer-social-icons {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}

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

.footer-social-icons a:hover {
  background: white;
  color: var(--dark);
  border-color: white;
}

.footer-bottom {
  background: var(--primary);
  text-align: center;
  padding: 14px 60px;
}

.footer-bottom p {
  color: white;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.3px;
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
  z-index: 1001;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

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

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== Responsive: Tablet (max-width: 1024px) ===== */
@media (max-width: 1024px) {

  /* Hero */
  .hero {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 60px 40px;
  }

  .hero-visual {
    order: -1;
  }

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

  /* Nav */
  .nav-wrapper {
    padding: 15px 30px;
  }

  /* Programs */
  .program-showcase-item {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .program-showcase-item.reverse {
    direction: ltr;
  }

  .programs-showcase {
    gap: 80px;
  }

  .programs-container {
    padding: 0 40px;
  }

  .program-intro {
    margin-bottom: 60px;
  }

  .program-intro h2,
  .why-maple h2,
  .journey h2,
  .gallery h2,
  .testimonials h2,
  .faq h2,
  .cta h2,
  .contact-info h3 {
    font-size: 40px;
  }

  .program-details h3 {
    font-size: 36px;
  }

  /* Journey */
  .journey-timeline {
    grid-template-columns: repeat(3, 1fr);
  }

  .journey-container {
    padding: 0 40px;
  }

  .timeline-connector {
    display: none;
  }

  /* Gallery */
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-item.large {
    grid-column: span 1;
    grid-row: span 1;
  }

  /* Why / Testimonials */
  .why-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  /* Contact */
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-map {
    height: 350px;
  }

  /* Stats */
  .stats {
    gap: 40px;
    padding: 60px 40px;
  }

  .stat-item .number {
    font-size: 40px;
  }

  /* Sections padding */
  .why-maple,
  .gallery,
  .testimonials,
  .faq,
  .cta,
  .contact {
    padding: 80px 40px;
  }

  .programs {
    padding: 80px 0;
  }

  .journey {
    padding: 80px 0;
  }
}

/* ===== Responsive: Small Tablet / Large Phone (max-width: 768px) ===== */
@media (max-width: 768px) {

  /* Hamburger visible */
  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: white;
    flex-direction: column;
    padding: 100px 40px 40px;
    gap: 30px;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    z-index: 999;
  }

  .nav-menu.open {
    right: 0;
  }

  .nav-menu a {
    font-size: 15px;
  }

  .cta-button {
    display: none;
  }

  /* Hero */
  .hero {
    padding: 40px 24px;
    gap: 30px;
    margin-top: 60px;
  }

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

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

  .hero-buttons {
    flex-direction: column;
    gap: 12px;
  }

  .btn-primary,
  .btn-secondary {
    text-align: center;
    padding: 14px 30px;
    font-size: 12px;
  }

  /* Stats */
  .stats {
    flex-direction: column;
    gap: 30px;
    padding: 50px 24px;
  }

  .stat-divider {
    width: 60px;
    height: 1px;
  }

  .stat-item .number {
    font-size: 36px;
  }

  /* Programs */
  .programs-container {
    padding: 0 24px;
  }

  .programs-showcase {
    gap: 60px;
  }

  .program-showcase-item {
    gap: 24px;
  }

  .program-details h3 {
    font-size: 28px;
  }

  .program-intro {
    margin-bottom: 40px;
  }

  /* Why */
  .why-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .why-card {
    padding: 30px;
  }

  .why-number {
    font-size: 48px;
  }

  /* Journey */
  .journey-timeline {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .journey-container {
    padding: 0 24px;
  }

  .journey-subtitle {
    margin-bottom: 40px;
  }

  /* Gallery */
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .gallery-item {
    height: 200px;
  }

  /* Testimonials */
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .testimonial-card {
    padding: 30px;
  }

  /* FAQ */
  .faq-question {
    font-size: 14px;
    padding: 18px;
  }

  /* CTA */
  .cta-form {
    grid-template-columns: 1fr;
  }

  .btn-submit {
    grid-column: span 1;
  }

  /* Contact */
  .contact-map {
    height: 280px;
  }

  /* Sections padding */
  .programs,
  .journey {
    padding: 60px 0;
  }

  .why-maple,
  .gallery,
  .testimonials,
  .faq,
  .cta,
  .contact {
    padding: 60px 24px;
  }

  /* Section headings */
  .program-intro h2,
  .why-maple h2,
  .journey h2,
  .gallery h2,
  .testimonials h2,
  .faq h2,
  .cta h2 {
    font-size: 32px;
    margin-bottom: 40px;
  }

  .contact-info h3 {
    font-size: 28px;
    margin-bottom: 24px;
  }

  /* Footer */
  .footer-main {
    padding: 40px 30px 30px;
  }

  .footer-container {
    grid-template-columns: auto 1fr 1fr;
    gap: 30px;
  }

  .footer-logo {
    grid-column: 1 / -1;
  }

  .footer-social-col {
    text-align: left;
  }

  .footer-social-icons {
    justify-content: flex-start;
  }

  .footer-bottom {
    padding: 12px 30px;
  }
}

/* ===== Responsive: Phone (max-width: 480px) ===== */
@media (max-width: 480px) {

  .nav-wrapper {
    padding: 10px 16px;
  }

  .logo img {
    width: 60px;
  }

  .hero {
    padding: 30px 16px;
    margin-top: 50px;
  }

  .hero-content h1 {
    font-size: 32px;
    margin-bottom: 16px;
  }

  .hero-badge {
    font-size: 10px;
    padding: 8px 16px;
    margin-bottom: 12px;
  }

  .hero-content>p {
    font-size: 14px;
    margin-bottom: 24px;
  }

  /* Stats */
  .stats {
    padding: 40px 16px;
  }

  .stat-item .number {
    font-size: 30px;
  }

  .stat-item .label {
    font-size: 11px;
  }

  /* Programs */
  .programs-container {
    padding: 0 16px;
  }

  .program-details h3 {
    font-size: 24px;
  }

  .program-details p,
  .features li {
    font-size: 14px;
  }

  /* Journey */
  .journey-timeline {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .journey-container {
    padding: 0 16px;
  }

  .stage-image {
    height: 200px;
  }

  /* Gallery */
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .gallery-item {
    height: 220px;
  }

  /* Section headings */
  .program-intro h2,
  .why-maple h2,
  .journey h2,
  .gallery h2,
  .testimonials h2,
  .faq h2,
  .cta h2 {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .contact-info h3 {
    font-size: 24px;
  }

  /* Sections padding */
  .programs,
  .journey {
    padding: 50px 0;
  }

  .why-maple,
  .gallery,
  .testimonials,
  .faq,
  .cta,
  .contact {
    padding: 50px 16px;
  }

  /* Contact */
  .contact-map {
    height: 220px;
  }

  .info-item {
    margin-bottom: 24px;
  }

  /* Footer */
  .footer-main {
    padding: 30px 16px 24px;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-logo img {
    width: 70px;
  }

  .footer-col h4 {
    font-size: 13px;
    margin-bottom: 14px;
  }

  .footer-col ul li {
    font-size: 13px;
  }

  .footer-bottom {
    padding: 10px 16px;
  }

  .footer-bottom p {
    font-size: 11px;
  }
}

/* =========================================
   About Page Specific Sections
   ========================================= */

/* About Page Hero Banner */
.about-page-hero {
  margin-top: 80px;
  position: relative;
  background: url('../images/banner.jpg') no-repeat center center/cover;
  padding: 140px 60px;
  text-align: center;
  display: flex;
  justify-content: center;
}

.about-page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1;
}

.about-page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  color: white;
}

.about-page-hero h1 {
  font-size: 56px;
  color: white;
  font-weight: 800;
  margin-top: 15px;
  margin-bottom: 20px;
}

.about-page-hero p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 30px;
  line-height: 1.8;
}

.about-page-hero .features {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
}

.about-page-hero .features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  color: white;
}

.about-page-hero .features svg {
  width: 24px;
  height: 24px;
  color: var(--primary);
}

@media (max-width: 768px) {
  .about-page-hero {
    padding: 100px 24px;
  }

  .about-page-hero h1 {
    font-size: 36px;
  }

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

/* Mission Section */
.about-mission {
  padding: 100px 60px;
  background: var(--cream);
  display: flex;
  align-items: center;
  max-width: 1600px;
  margin: 0 auto;
}

.about-mission-text {
  flex: 1;
  background: white;
  padding: 60px;
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
  position: relative;
  left: 40px;
  z-index: 2;
}

.about-mission-text h3 {
  font-size: 40px;
  margin-bottom: 24px;
}

.about-mission-img {
  flex: 1.2;
  position: relative;
  z-index: 1;
}

.about-mission-img img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
  height: 500px;
}

/* Journey Section */
.about-journey {
  background: var(--dark);
  color: white;
  padding: 120px 60px;
}

.about-journey-container {
  max-width: 1600px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: center;
}

.about-journey-text h2 {
  color: white;
  font-size: 48px;
  margin-bottom: 24px;
}

.about-journey-text p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
  line-height: 1.8;
}

.about-journey-video {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}

.about-journey-video img {
  width: 100%;
  display: block;
}

/* Values Section */
.about-values {
  padding: 120px 60px;
  background: white;
}

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

.about-values-header h2 {
  font-size: 48px;
}

.about-values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.about-value-card {
  padding: 50px;
  border-radius: 12px;
  transition: all 0.3s ease;
  border-top: 4px solid var(--primary);
  background: var(--light-gray);
}

.about-value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
  background: white;
}

/* Curriculum Section */
.about-curriculum {
  padding: 120px 60px;
  background: var(--cream);
}

.about-curriculum-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  background: white;
  padding: 80px;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
}

.about-curriculum-container h3 {
  font-size: 40px;
  margin-bottom: 30px;
  color: var(--dark);
}

.about-curriculum-container p {
  font-size: 18px;
  color: #666;
  max-width: 900px;
  margin: 0 auto 20px;
  line-height: 1.8;
}

/* Team/Features Section */
.about-team {
  padding: 120px 60px;
  background: white;
}

.about-team-header {
  text-align: center;
}

.about-team-header h2 {
  font-size: 48px;
}

.about-team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1600px;
  margin: 60px auto 0;
}

.about-team-card {
  text-align: center;
  background: var(--light-gray);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.about-team-card:hover {
  transform: translateY(-8px);
}

.about-team-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.about-team-content {
  padding: 40px 30px;
}

.about-team-content h3 {
  font-size: 24px;
  margin-bottom: 16px;
}

.about-team-content p {
  color: #666;
  font-size: 15px;
  line-height: 1.7;
}

/* Responsive adjustments for About Page */
@media (max-width: 1024px) {
  .about-mission {
    flex-direction: column-reverse;
    padding: 60px 40px;
  }

  .about-mission-text {
    left: 0;
    top: -40px;
    margin: 0 20px;
  }

  .about-journey-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-values-grid {
    grid-template-columns: 1fr;
  }

  .about-team-grid {
    grid-template-columns: 1fr 1fr;
  }

  .about-info-block,
  .about-info-block:nth-child(even) {
    flex-direction: column;
    gap: 30px;
  }

  .about-info-img {
    width: 100%;
  }

  .about-info-img img {
    height: 280px;
  }
}

@media (max-width: 768px) {

  .about-mission,
  .about-journey,
  .about-values,
  .about-curriculum,
  .about-team {
    padding: 60px 24px;
  }

  .about-team-grid {
    grid-template-columns: 1fr;
  }

  .about-curriculum-container {
    padding: 40px 20px;
  }

  .about-journey-text h2,
  .about-values-header h2,
  .about-team-header h2 {
    font-size: 36px;
  }

  .about-mission-text {
    padding: 30px;
  }
}

/* =========================================
   Gallery Page Specific Sections
   ========================================= */

.gallery-page-hero {
  margin-top: 80px;
  position: relative;
  background: url('../images/kindergarten.jpg') no-repeat center center/cover;
  padding: 140px 60px;
  text-align: center;
  display: flex;
  justify-content: center;
}

.gallery-page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.gallery-page-hero-content {
  position: relative;
  z-index: 2;
}

.gallery-page-hero h1 {
  font-size: 56px;
  color: white;
  font-weight: 800;
  margin-top: 15px;
}

/* Masonry Layout */
.gallery-masonry-section {
  padding: 100px 60px;
  background: var(--light-gray);
}

.gallery-masonry-container {
  max-width: 1600px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 350px;
  gap: 24px;
  grid-auto-flow: dense;
}

.masonry-item {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  background: white;
}

.masonry-item.wide {
  grid-column: span 2;
}

/* .masonry-item.tall {
  grid-row: span 2;
} */
.masonry-item.large {
  grid-column: span 2;
  grid-row: span 2;
}

.masonry-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.masonry-item:hover img {
  transform: scale(1.05);
}

.masonry-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(207, 31, 37, 0.6);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
}

.masonry-item:hover .masonry-overlay {
  opacity: 1;
}

.masonry-overlay svg {
  width: 48px;
  height: 48px;
  transform: scale(0.5);
  transition: transform 0.3s ease;
}

.masonry-item:hover .masonry-overlay svg {
  transform: scale(1);
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lightbox.active {
  display: flex;
  opacity: 1;
}

.lightbox-content {
  max-width: 90%;
  max-height: 90%;
  border-radius: 8px;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.5);
  transform: scale(0.95);
  transition: transform 0.3s ease;
}

.lightbox.active .lightbox-content {
  transform: scale(1);
}

.lightbox-close {
  position: absolute;
  top: 30px;
  right: 40px;
  color: white;
  font-size: 50px;
  font-weight: 300;
  cursor: pointer;
  transition: color 0.3s ease;
  z-index: 10000;
}

.lightbox-close:hover {
  color: var(--primary);
}

@media (max-width: 1200px) {
  .gallery-masonry-container {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 992px) {
  .gallery-masonry-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .gallery-masonry-container {
    grid-template-columns: 1fr;
    grid-auto-rows: 250px;
  }

  .masonry-item.wide,
  .masonry-item.tall,
  .masonry-item.large {
    grid-column: span 1;
    grid-row: span 1;
  }

  .gallery-masonry-section {
    padding: 60px 24px;
  }

  .gallery-page-hero {
    padding: 100px 24px;
  }
}

/* =========================================
   Curriculum Page Specific Sections
   ========================================= */

.curriculum-page-hero {
  background: url('../images/nursery-program.jpg') no-repeat center center/cover !important;
}

/* Curriculum Intro */
.curr-intro {
  padding: 100px 60px;
  background: white;
}

.curr-intro-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 80px;
}

.curr-intro-text {
  flex: 1;
}

.curr-intro-text p {
  font-size: 17px;
  color: #555;
  line-height: 1.9;
  margin-bottom: 20px;
}

.curr-intro-img {
  flex: 1;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.curr-intro-img img {
  width: 100%;
  display: block;
  transition: transform 0.5s ease;
}

.curr-intro-img:hover img {
  transform: scale(1.03);
}

/* 8 Areas of Development */
.curr-areas {
  padding: 100px 60px;
  background: var(--cream);
  color: var(--dark);
  text-align: center;
}

.curr-areas-header {
  max-width: 700px;
  margin: 0 auto 60px;
}

.curr-areas-header h2 {
  font-size: 48px;
  color: var(--dark);
  font-weight: 800;
  margin-top: 15px;
}

.curr-areas-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.curr-area-card {
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
  border-radius: 16px;
  padding: 40px 25px;
  transition: all 0.3s ease;
  cursor: default;
}

.curr-area-card:hover {
  background: rgba(207, 31, 37, 0.15);
  border-color: var(--primary);
  transform: translateY(-5px);
}

.curr-area-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: rgba(207, 31, 37, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}

.curr-area-icon svg {
  width: 32px;
  height: 32px;
  color: var(--primary);
}

.curr-area-card h4 {
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--dark);
}

/* Age Groups Section */
.curr-age-groups {
  padding: 100px 60px;
  background: var(--light-gray);
}

.curr-age-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.curr-age-header h2 {
  font-size: 48px;
  font-weight: 800;
  margin-top: 15px;
}

.curr-age-header p {
  font-size: 17px;
  color: #666;
  line-height: 1.8;
  margin-top: 15px;
}

.curr-age-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.curr-age-card {
  background: white;
  border-radius: 16px;
  padding: 45px 35px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  border-left: 4px solid var(--primary);
  transition: all 0.3s ease;
}

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

.curr-age-card h3 {
  font-size: 22px;
  color: var(--dark);
  margin-bottom: 15px;
  text-transform: capitalize;
}

.curr-age-card p {
  font-size: 15px;
  color: #666;
  line-height: 1.8;
}

/* Nurturing Section */
.curr-nurturing {
  padding: 100px 60px;
  background: white;
}

.curr-nurturing-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 80px;
}

.curr-nurturing-text {
  flex: 1;
}

.curr-nurturing-text h2 {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 24px;
}

.curr-nurturing-text p {
  font-size: 17px;
  color: #555;
  line-height: 1.9;
  margin-bottom: 30px;
}

.curr-nurturing-img {
  flex: 1;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.curr-nurturing-img img {
  width: 100%;
  display: block;
}

/* Enroll CTA */
.curr-enroll {
  padding: 100px 60px;
  background: var(--primary);
  text-align: center;
  color: white;
}

.curr-enroll-container {
  max-width: 800px;
  margin: 0 auto;
}

.curr-enroll h2 {
  font-size: 42px;
  font-weight: 800;
  color: white;
  margin-bottom: 20px;
}

.curr-enroll p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
  margin-bottom: 35px;
}

.btn-white {
  display: inline-block;
  background: white;
  color: var(--primary);
  padding: 16px 40px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-white:hover {
  background: var(--dark);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Partner to Parents */
.curr-partner {
  padding: 100px 60px;
  background: var(--cream);
}

.curr-partner-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 80px;
}

.curr-partner-img {
  flex: 1;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.curr-partner-img img {
  width: 100%;
  display: block;
}

.curr-partner-text {
  flex: 1;
}

.curr-partner-text h2 {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 24px;
}

.curr-partner-text p {
  font-size: 17px;
  color: #555;
  line-height: 1.9;
  margin-bottom: 30px;
}

/* Curriculum Responsive */
@media (max-width: 992px) {

  .curr-intro-container,
  .curr-nurturing-container,
  .curr-partner-container {
    flex-direction: column;
    gap: 50px;
  }

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

  .curr-age-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {

  .curr-intro,
  .curr-areas,
  .curr-age-groups,
  .curr-nurturing,
  .curr-enroll,
  .curr-partner {
    padding: 60px 24px;
  }

  .curr-areas-header h2,
  .curr-age-header h2,
  .curr-nurturing-text h2,
  .curr-enroll h2,
  .curr-partner-text h2 {
    font-size: 32px;
  }

  .curr-areas-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .curr-age-grid {
    grid-template-columns: 1fr;
  }
}

/* Premium Home Footer Styles */
.home-footer {
  background: linear-gradient(135deg, #111 0%, #1a1a2e 100%);
  color: #f0f0f0;
  padding: 80px 0 0;
  position: relative;
  overflow: hidden;
  font-family: 'DM Sans', sans-serif;
}

.home-footer::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -10%;
  width: 50%;
  height: 100%;
  background: radial-gradient(circle, rgba(207, 31, 37, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.home-footer-main {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr 1.2fr 1.5fr;
  gap: 40px;
  position: relative;
  z-index: 2;
}

.home-footer-brand p {
  margin-top: 20px;
  color: #aaa;
  font-size: 15px;
  line-height: 1.6;
  max-width: 250px;
}

.home-footer-col h4 {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 25px;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.home-footer-col h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 30px;
  height: 3px;
  background: #cf1f25;
  border-radius: 2px;
}

.home-footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.home-footer-col ul li {
  margin-bottom: 15px;
}

.home-footer-col ul li a,
.home-footer-col ul li span {
  color: #bbb;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 15px;
  display: inline-flex;
  align-items: flex-start;
  gap: 10px;
}

.home-footer-col ul li a:hover {
  color: #fff;
  transform: translateX(5px);
}

.home-footer-newsletter h4 {
  margin-bottom: 15px;
}

.home-footer-newsletter p {
  color: #aaa;
  font-size: 14px;
  margin-bottom: 20px;
  line-height: 1.6;
}

.newsletter-form {
  display: flex;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  padding: 5px;
  transition: all 0.3s ease;
}

.newsletter-form:focus-within {
  border-color: #cf1f25;
  background: rgba(255, 255, 255, 0.1);
}

.newsletter-form input {
  background: transparent;
  border: none;
  color: #fff;
  padding: 10px 15px;
  width: 100%;
  outline: none;
  font-size: 14px;
}

.newsletter-form button {
  background: #cf1f25;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

.newsletter-form button:hover {
  background: #a9151a;
  transform: scale(1.05);
}

.home-footer-bottom {
  margin-top: 60px;
  padding: 25px 40px;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.home-footer-bottom p {
  color: #888;
  font-size: 14px;
  margin: 0;
}

.home-social-icons {
  display: flex;
  gap: 15px;
}

.home-social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  color: #fff;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.home-social-icons a:hover {
  background: #cf1f25;
  transform: translateY(-5px) rotate(8deg);
  box-shadow: 0 10px 20px rgba(207, 31, 37, 0.3);
}

@media (max-width: 992px) {
  .home-footer-main {
    grid-template-columns: 1fr 1fr;
  }

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

@media (max-width: 576px) {
  .home-footer-main {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   2026 Refresh — new components
   ============================================================ */

/* Intro Banner (home) */
.intro-banner {
  background: white;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 80px 60px;
}

.intro-banner-head {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px;
}

.intro-banner-head h2 {
  font-size: 38px;
  font-weight: 800;
  color: var(--dark);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 14px;
}

.intro-banner-head p {
  font-size: 17px;
  color: #666;
}

.intro-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.intro-stat {
  border-radius: 12px;
  padding: 40px 24px;
  text-align: center;
  color: white;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.12);
}

.intro-stat .number {
  display: block;
  font-family: 'Raleway', sans-serif;
  font-size: 52px;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 10px;
}

.intro-stat .label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.intro-stat-yellow {
  background: #F2C230;
  color: var(--dark);
}

.intro-stat-red {
  background: var(--primary);
}

.intro-stat-gold {
  background: var(--secondary);
}

/* Program Cards (home) */
.programs-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.program-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.program-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.12);
}

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

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

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

.program-card-body {
  padding: 36px 30px 40px;
  text-align: center;
}

.program-card-body h3 {
  font-size: 34px;
  color: var(--dark);
  margin-bottom: 6px;
}

.program-card-age {
  font-size: 16px;
  color: #666;
  margin-bottom: 24px;
}

/* Why grid — 4 up */
.why-grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

/* Gallery CTA button */
.gallery-cta {
  text-align: center;
  margin-top: 60px;
}

/* From Our Families — Google Reviews */
.reviews {
  background: var(--light-gray);
  padding: 120px 60px;
}

.reviews-container {
  max-width: 1600px;
  margin: 0 auto;
}

.reviews h2 {
  font-size: 56px;
  text-align: center;
  margin-bottom: 24px;
}

.reviews-head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 60px;
}

.reviews-g {
  width: 34px;
  height: 34px;
}

.reviews-rating {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

.reviews-score {
  font-weight: 700;
  color: var(--dark);
  font-size: 15px;
}

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

.review-card {
  background: white;
  padding: 34px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.review-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.review-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  color: white;
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.review-meta {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.review-name {
  font-weight: 700;
  color: var(--dark);
  font-size: 15px;
}

.review-badge {
  font-size: 12px;
  color: #888;
}

.review-g-mark {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.review-card .stars {
  font-size: 16px;
  margin-bottom: 12px;
}

.review-text {
  font-size: 15px;
  color: #555;
  line-height: 1.8;
}

/* About page — info sections */
.about-info {
  background: white;
  padding: 100px 60px;
}

.about-info-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.about-info-block {
  padding-bottom: 60px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 60px;
}

.about-info-block:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.about-info-block:nth-child(even) {
  flex-direction: row-reverse;
}

.about-info-text {
  flex: 1;
}

.about-info-img {
  flex: 1;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
}

.about-info-img img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.about-info-img:hover img {
  transform: scale(1.03);
}

.about-info-block h2 {
  font-size: 34px;
  color: var(--dark);
  margin-bottom: 18px;
  line-height: 1.3;
}

.about-info-block h3 {
  font-size: 28px;
  color: var(--dark);
  margin-bottom: 16px;
  line-height: 1.3;
}

.about-info-block p {
  font-size: 16px;
  color: #666;
  line-height: 1.9;
}

/* Curriculum page — programme sections */
.curr-programmes {
  background: var(--light-gray);
  padding: 100px 60px;
}

.curr-programmes-container {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 70px;
}

.curr-programme {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.curr-programme.reverse {
  direction: rtl;
}

.curr-programme.reverse>* {
  direction: ltr;
}

.curr-programme-img img {
  width: 100%;
  border-radius: 14px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.curr-programme-text h2 {
  font-size: 32px;
  color: var(--dark);
  margin-bottom: 18px;
}

.curr-programme-text p {
  font-size: 16px;
  color: #666;
  line-height: 1.9;
}

/* Masonry captions */
.masonry-caption {
  color: white;
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.5px;
  text-align: center;
  padding: 0 16px;
  transform: translateY(8px);
  transition: transform 0.3s ease;
}

.masonry-item:hover .masonry-caption {
  transform: translateY(0);
}

/* Responsive — new components */
@media (max-width: 1024px) {
  .why-grid-4 {
    grid-template-columns: 1fr 1fr;
  }

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

  .reviews h2 {
    font-size: 40px;
  }

  .reviews {
    padding: 80px 40px;
  }

  .intro-banner {
    padding: 60px 40px;
  }

  .curr-programme {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .curr-programme.reverse {
    direction: ltr;
  }

  .curr-programme-img {
    order: -1;
  }
}

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

  .intro-banner-head h2 {
    font-size: 28px;
  }

  .programs-cards {
    grid-template-columns: 1fr;
    gap: 30px;
  }

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

  .about-info {
    padding: 70px 24px;
  }

  .curr-programmes {
    padding: 70px 24px;
  }

  .reviews {
    padding: 70px 24px;
  }
}

/* =========================================
   Contact Page Styles
   ========================================= */

/* Hero Banner */
.contact-page-hero {
  margin-top: 80px;
  position: relative;
  background: url('../images/banner.jpg') no-repeat center center/cover;
  padding: 120px 60px 100px;
  text-align: center;
  display: flex;
  justify-content: center;
}

.contact-page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.85) 0%, rgba(207, 31, 37, 0.75) 100%);
  z-index: 1;
}

.contact-page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 850px;
  color: white;
}

.contact-page-hero h1 {
  font-size: 52px;
  color: white;
  font-weight: 800;
  margin-top: 15px;
  margin-bottom: 20px;
  line-height: 1.2;
}

.contact-page-hero p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.8;
}

/* Contact Quick Cards */
.contact-cards-section {
  padding: 60px 60px 0;
  background: var(--light-gray);
  margin-top: -40px;
  position: relative;
  z-index: 5;
}

.contact-cards-container {
  max-width: 1400px;
  margin: 0 auto;
}

.contact-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.contact-card {
  background: white;
  padding: 35px 25px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(207, 31, 37, 0.12);
}

.contact-card-icon {
  width: 54px;
  height: 54px;
  border-radius: 12px;
  background: rgba(207, 31, 37, 0.08);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.contact-card-icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--primary);
}

.contact-card h4 {
  font-size: 20px;
  color: var(--dark);
  margin-bottom: 10px;
  font-weight: 700;
}

.contact-card p {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
  flex: 1;
}

.contact-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  transition: gap 0.2s ease;
}

.contact-card-link:hover {
  gap: 12px;
  text-decoration: underline;
}

/* Contact Main Section: Form & Map */
.contact-main-section {
  padding: 80px 60px 100px;
  background: var(--light-gray);
}

.contact-main-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

/* Contact Form Box */
.contact-form-card {
  background: white;
  padding: 45px;
  border-radius: 20px;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.contact-form-header {
  margin-bottom: 30px;
}

.contact-form-header h3 {
  font-size: 32px;
  color: var(--dark);
  margin-bottom: 10px;
  font-weight: 800;
}

.contact-form-header p {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border-radius: 10px;
  border: 1.5px solid #E2E8F0;
  font-size: 15px;
  font-family: inherit;
  color: var(--dark);
  background: #F8FAFC;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  background: white;
  box-shadow: 0 0 0 4px rgba(207, 31, 37, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 130px;
}

.contact-submit-btn {
  background: var(--primary);
  color: white;
  border: none;
  padding: 16px 32px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
  box-shadow: 0 8px 20px rgba(207, 31, 37, 0.25);
  margin-top: 10px;
}

.contact-submit-btn:hover {
  background: #B51A20;
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(207, 31, 37, 0.35);
}

.form-success-box {
  display: none;
  background: #ECFDF5;
  border: 1px solid #10B981;
  color: #065F46;
  padding: 18px 22px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 20px;
}

/* Map Wrapper */
.contact-map-card {
  background: white;
  padding: 45px;
  border-radius: 20px;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.contact-map-header {
  margin-bottom: 25px;
}

.contact-map-header h3 {
  font-size: 32px;
  color: var(--dark);
  margin-bottom: 10px;
  font-weight: 800;
}

.contact-map-header p {
  font-size: 15px;
  color: #666;
}

.map-iframe-container {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  flex: 1;
  min-height: 380px;
}

.map-iframe-container iframe {
  width: 100%;
  height: 100%;
  min-height: 380px;
  border: none;
}

/* Steps / What Happens Next Section */
.contact-steps-section {
  padding: 90px 60px;
  background: white;
}

.contact-steps-container {
  max-width: 1300px;
  margin: 0 auto;
}

.contact-steps-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.contact-steps-header h2 {
  font-size: 38px;
  color: var(--dark);
  margin-bottom: 15px;
  font-weight: 800;
}

.contact-steps-header p {
  font-size: 16px;
  color: #666;
}

.contact-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  position: relative;
}

.contact-step-item {
  background: var(--light-gray);
  padding: 40px 30px;
  border-radius: 16px;
  position: relative;
  text-align: center;
}

.contact-step-number {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  font-size: 20px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 8px 20px rgba(207, 31, 37, 0.25);
}

.contact-step-item h4 {
  font-size: 20px;
  color: var(--dark);
  margin-bottom: 12px;
  font-weight: 700;
}

.contact-step-item p {
  font-size: 15px;
  color: #666;
  line-height: 1.7;
}

/* ===== Reviews / Testimonials Slider ===== */
.reviews {
  padding: 100px 24px;
  background: linear-gradient(135deg, #faf6ef 0%, #f3ede0 100%);
  position: relative;
  overflow: hidden;
}

.reviews::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(207, 31, 37, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.reviews::after {
  content: '';
  position: absolute;
  bottom: -40px;
  left: -40px;
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, rgba(185, 138, 47, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.reviews-container {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.reviews-container h2 {
  text-align: center;
  font-size: 42px;
  color: var(--dark);
  margin-bottom: 12px;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.reviews-subtitle {
  text-align: center;
  font-size: 17px;
  color: #777;
  margin-bottom: 50px;
  font-weight: 400;
}

.reviews-slider-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
}

.reviews-slider {
  overflow: hidden;
  flex: 1;
  border-radius: 16px;
}

.reviews-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  gap: 24px;
}

.review-card {
  flex: 0 0 calc((100% - 48px) / 3);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 20px;
  padding: 32px 28px;
  border: 1px solid rgba(232, 227, 216, 0.6);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04), 0 1px 4px rgba(0, 0, 0, 0.02);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 280px;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  position: relative;
  overflow: hidden;
}

.review-card::before {
  content: '\201C';
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 80px;
  font-family: 'Raleway', serif;
  color: rgba(207, 31, 37, 0.06);
  line-height: 1;
  pointer-events: none;
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
}

.review-stars {
  font-size: 18px;
  color: #f5a623;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.review-text {
  font-size: 15px;
  color: #555;
  line-height: 1.75;
  flex: 1;
  margin-bottom: 24px;
  font-style: italic;
}

.review-bottom {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid rgba(232, 227, 216, 0.5);
}

.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  font-family: 'Raleway', sans-serif;
  flex-shrink: 0;
}

.review-meta {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.review-name {
  font-weight: 700;
  font-size: 15px;
  color: var(--dark);
  font-family: 'Raleway', sans-serif;
}

.review-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: #888;
  font-weight: 500;
}

.review-badge svg {
  flex-shrink: 0;
}

/* Slider Navigation Arrows */
.reviews-arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--border);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--dark);
  transition: all 0.3s ease;
  flex-shrink: 0;
  z-index: 2;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.reviews-arrow:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  transform: scale(1.08);
  box-shadow: 0 4px 20px rgba(207, 31, 37, 0.25);
}

.reviews-arrow:active {
  transform: scale(0.96);
}

.reviews-arrow:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  pointer-events: none;
}

/* Pagination Dots */
.reviews-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 40px;
}

.reviews-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.reviews-dot:hover {
  background: var(--secondary);
  transform: scale(1.2);
}

.reviews-dot.active {
  background: var(--primary);
  width: 28px;
  border-radius: 5px;
}

/* Tablet: 2 cards */
@media (max-width: 1024px) {
  .review-card {
    flex: 0 0 calc((100% - 24px) / 2);
  }

  .reviews-container h2 {
    font-size: 36px;
  }

  .reviews {
    padding: 80px 24px;
  }
}

/* Mobile: 1 card */
@media (max-width: 640px) {
  .review-card {
    flex: 0 0 100%;
  }

  .reviews-container h2 {
    font-size: 28px;
  }

  .reviews-subtitle {
    font-size: 15px;
    margin-bottom: 32px;
  }

  .reviews {
    padding: 60px 16px;
  }

  .reviews-arrow {
    width: 40px;
    height: 40px;
  }

  .reviews-slider-wrapper {
    gap: 8px;
  }

  .review-card {
    padding: 24px 20px;
    min-height: auto;
  }
}

/* Responsive Rules */
@media (max-width: 1200px) {
  .contact-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-main-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .contact-page-hero {
    padding: 90px 24px 70px;
  }

  .contact-page-hero h1 {
    font-size: 36px;
  }

  .contact-cards-section {
    padding: 40px 24px 0;
    margin-top: 0;
  }

  .contact-cards-grid {
    grid-template-columns: 1fr;
  }

  .contact-main-section {
    padding: 50px 24px;
  }

  .contact-form-card,
  .contact-map-card {
    padding: 30px 20px;
  }

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

  .contact-steps-section {
    padding: 60px 24px;
  }

  .contact-steps-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
}

/* =============================================
   Curriculum Page — Hero Banner
   ============================================= */
.curr-hero {
  margin-top: 80px;
  position: relative;
  background: url('../images/banner.jpg') no-repeat center center / cover;
  padding: 140px 60px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.curr-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.curr-hero-content {
  position: relative;
  z-index: 2;
  max-width: 860px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.curr-hero-content h1 {
  font-size: 54px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.2;
}

.curr-hero-content p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.8;
  max-width: 700px;
}

.curr-hero-content .hero-badge {
  margin-bottom: 24px;
}

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

@media (max-width: 768px) {
  .curr-hero {
    padding: 110px 24px 80px;
  }

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

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

/* ==========================================================================
   Thank You Page Styles
   ========================================================================== */
.thankyou-section {
  padding: 140px 24px 100px;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at 50% 20%, rgba(207, 31, 37, 0.05) 0%, rgba(251, 247, 240, 1) 70%);
}

.thankyou-container {
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
}

.thankyou-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 50px 40px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.07);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.thankyou-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.thankyou-icon-box {
  width: 90px;
  height: 90px;
  background: rgba(207, 31, 37, 0.1);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  position: relative;
  animation: pulse-ring 2s infinite ease-in-out;
}

@keyframes pulse-ring {
  0% {
    box-shadow: 0 0 0 0 rgba(207, 31, 37, 0.2);
  }
  70% {
    box-shadow: 0 0 0 20px rgba(207, 31, 37, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(207, 31, 37, 0);
  }
}

.thankyou-icon-box svg {
  width: 44px;
  height: 44px;
  stroke-width: 2.5;
}

.thankyou-card h1 {
  font-size: 38px;
  color: var(--dark);
  margin-bottom: 14px;
  font-weight: 800;
}

.thankyou-card .thankyou-subtitle {
  font-size: 18px;
  color: #555;
  margin-bottom: 32px;
  line-height: 1.6;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.thankyou-steps {
  background: var(--cream);
  border-radius: 16px;
  padding: 28px;
  margin-bottom: 36px;
  text-align: left;
  border: 1px solid rgba(185, 138, 47, 0.2);
}

.thankyou-steps h3 {
  font-size: 18px;
  color: var(--dark);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.thankyou-steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}

.step-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.step-number {
  background: var(--primary);
  color: white;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
}

.step-text h4 {
  font-size: 14px;
  margin-bottom: 2px;
  color: var(--dark);
}

.step-text p {
  font-size: 13px;
  color: #666;
  line-height: 1.4;
}

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

.thankyou-btn-primary {
  background: var(--primary);
  color: white;
  padding: 14px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 15px rgba(207, 31, 37, 0.3);
}

.thankyou-btn-primary:hover {
  background: #b51a20;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(207, 31, 37, 0.4);
}

.thankyou-btn-secondary {
  background: transparent;
  color: var(--dark);
  border: 2px solid var(--border);
  padding: 12px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.thankyou-btn-secondary:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .thankyou-section {
    padding: 120px 16px 60px;
  }
  .thankyou-card {
    padding: 36px 20px;
    border-radius: 18px;
  }
  .thankyou-card h1 {
    font-size: 28px;
  }
  .thankyou-card .thankyou-subtitle {
    font-size: 15px;
  }
  .thankyou-steps {
    padding: 20px 16px;
  }
  .thankyou-steps-grid {
    grid-template-columns: 1fr;
  }
  .thankyou-actions {
    flex-direction: column;
    width: 100%;
  }
  .thankyou-btn-primary, .thankyou-btn-secondary {
    width: 100%;
    justify-content: center;
  }
}

/* ==========================================================================
   Country Code Phone Input Component
   ========================================================================== */
.phone-input-wrapper {
  display: flex;
  align-items: center;
  position: relative;
  background: #ffffff;
  border-radius: 4px;
  border: 2px solid transparent;
  transition: border-color 0.3s ease;
  width: 100%;
}

.cta-form .phone-input-wrapper input[type="tel"] {
  border: none !important;
  outline: none !important;
  flex: 1;
  padding: 16px 14px;
  background: transparent;
  border-radius: 0 4px 4px 0;
  width: 100%;
  font-family: inherit;
  font-size: 14px;
}

.phone-input-wrapper:focus-within {
  border-color: var(--secondary);
}

.phone-input-wrapper.input-error {
  border-color: #ffcdd2 !important;
}

.custom-country-select {
  position: relative;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  user-select: none;
  border-right: 1px solid #e0e0e0;
  background: #ffffff;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}

.selected-country {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 14px 10px;
  cursor: pointer;
  height: 100%;
}

.selected-flag {
  width: 20px;
  height: 14px;
  object-fit: cover;
  border-radius: 2px;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
}

.country-arrow {
  font-size: 10px;
  color: #666;
  margin-right: 2px;
}

.selected-dial-code {
  font-size: 14px;
  font-weight: 500;
  color: #333;
}

.country-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  width: 280px;
  max-height: 280px;
  background: #ffffff;
  border: 1px solid #d0d0d0;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  z-index: 10000;
  display: none;
  flex-direction: column;
  overflow: hidden;
}

.country-search-wrapper {
  padding: 8px 10px;
  border-bottom: 1px solid #eeeeee;
  background: #fafafa;
}

.country-search-input {
  width: 100%;
  padding: 8px 12px !important;
  border: 1px solid #cccccc !important;
  border-radius: 4px !important;
  font-size: 13px !important;
  outline: none !important;
  background: #ffffff !important;
  color: #333333 !important;
}

.country-search-input:focus {
  border-color: var(--primary) !important;
}

.country-list {
  list-style: none;
  margin: 0;
  padding: 0;
  overflow-y: auto;
  max-height: 220px;
}

.country-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  cursor: pointer;
  font-size: 13px;
  color: #333333;
  transition: background 0.15s ease;
}

.country-item:hover {
  background: #f5f5f5;
}

.country-name-text {
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.country-code-text {
  color: #888888;
  font-size: 12px;
  font-weight: 500;
}

.no-country-found {
  padding: 12px;
  text-align: center;
  color: #999999;
  font-size: 13px;
}