/* =========================
   BASIC SETTINGS
========================= */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #fffdf7;
  color: #333;
}

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

a {
  text-decoration: none;
}


/* =========================
   COLORS
========================= */

:root {
  --purple: #6f2da8;
  --red: #ef3d35;
  --blue: #1f62d9;
  --green: #55a630;
  --yellow: #ffd84d;
  --light-blue: #dff5ff;
  --cream: #fffaf0;
  --dark: #333333;
}


/* =========================
   HEADER
========================= */

#main-header {
  width: 100%;
  background: white;
  padding: 12px 20px;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.header-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}

.logo-area {
  display: flex;
  align-items: center;
}

.site-logo {
  width: 115px;
  height: 115px;
  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.main-nav a {
  color: var(--purple);
  font-weight: bold;
  font-size: 16px;
  transition: 0.25s;
}

.main-nav a:hover {
  color: var(--red);
}


/* =========================
   HOME BANNER
========================= */

.hero-section {
  width: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background: white;
}

.home-banner {
  display: block;
  width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
}

/* DESKTOP */
@media (min-width: 769px) {

  .hero-section {
    width: 100%;
    height: auto;
    overflow: visible;
  }

  .home-banner {
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center;
    display: block;
  }

}

/* PHONE / TABLET */
@media (max-width: 768px) {

  .hero-section {
    height: auto;
    min-height: 0;
  }

  .home-banner {
    width: 100%;
    height: auto;
    object-fit: contain;
  }

}


/* =========================
   BUTTONS
========================= */

.main-button,
.second-button,
.quality-button {
  display: inline-block;
  padding: 14px 25px;
  border-radius: 12px;
  font-weight: bold;
  border: none;
  cursor: pointer;
  font-size: 16px;
}

.main-button {
  background: var(--red);
  color: white;
}

.main-button:hover {
  background: #d72d27;
}

.second-button {
  background: var(--purple);
  color: white;
}

.second-button:hover {
  background: #582185;
}


/* =========================
   QUALITY SECTION
========================= */

.quality-box {
  width: min(650px, 92%);
  margin: auto;
  padding: 20px;
  background: white;
  border-radius: 24px;
  box-shadow: 0 12px 35px rgba(0,0,0,0.12);
  text-align: center;
}

.quality-rated-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
  margin-bottom: 20px;
}

.quality-button {
  display: inline-block;
  background: var(--red);
  color: white;
  padding: 14px 28px;
  border-radius: 12px;
  font-weight: bold;
  font-size: 16px;
}

.quality-button:hover {
  background: #d72d27;
}
.mission-text {
  max-width: 760px;
  margin: 55px auto 0;
  padding: 0 20px;
  text-align: center;
}

.mission-text h2 {
  color: #6f2da8;
  font-size: 36px;
  font-weight: 800;
  margin: 0 0 18px;
}

.mission-text p {
  color: #444;
  font-size: 19px;
  line-height: 1.7;
  margin: 0 auto;
  max-width: 700px;
}
/* =========================
   FEATURE CARDS
========================= */

.features-section {
  padding: 30px 20px 90px;
  background: white;
}

.features-container {
  max-width: 1150px;
  margin: auto;

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature-card {
  min-height: 310px;
  color: white;
  padding: 35px 25px;
  border-radius: 25px;
  text-align: center;

  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.feature-blue {
  background: var(--blue);
}

.feature-purple {
  background: var(--purple);
}

.feature-red {
  background: var(--red);
}

.feature-icon {
  font-size: 52px;
  margin-bottom: 15px;
}

.feature-card h3 {
  font-size: 25px;
  margin: 10px 0 15px;
}

.feature-card p {
  font-size: 17px;
  line-height: 1.6;
}


/* =========================
   GENERAL SECTIONS
========================= */

.section-container {
  max-width: 1100px;
  margin: auto;
  padding: 85px 25px;
  text-align: center;
}

.section-small-title {
  color: var(--red);
  font-size: 18px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.section-container h2 {
  font-size: 40px;
  color: var(--purple);
  margin: 10px 0 20px;
}

.section-container > p {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  font-size: 18px;
  line-height: 1.7;
}


/* =========================
   ABOUT
========================= */

.about-section {
  background: var(--cream);
}


/* =========================
   PROGRAMS
========================= */

.programs-section {
  background: #edf9ff;
}

.program-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 45px;
}

.program-card {
  background: white;
  padding: 30px 20px;
  border-radius: 22px;

  box-shadow: 0 8px 22px rgba(0,0,0,0.08);
  border-top: 7px solid var(--green);
}

.program-card:nth-child(2) {
  border-top-color: var(--blue);
}

.program-card:nth-child(3) {
  border-top-color: var(--red);
}

.program-card:nth-child(4) {
  border-top-color: var(--purple);
}

.program-card h3 {
  color: var(--purple);
  font-size: 24px;
}

.program-card p {
  line-height: 1.6;
}


/* =========================
   ENROLLMENT
========================= */

.enrollment-section {
  padding: 90px 20px;

  background:
    linear-gradient(
      135deg,
      #6f2da8,
      #8d49bf
    );
}

.enrollment-container {
  max-width: 850px;
  margin: auto;
  background: white;
  border-radius: 30px;
  padding: 50px 35px;
  text-align: center;
}

.enrollment-container h2 {
  color: var(--purple);
  font-size: 38px;
}

.enrollment-container > p {
  font-size: 18px;
  line-height: 1.6;
}

.enrollment-form {
  margin-top: 35px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.enrollment-form input,
.enrollment-form select,
.enrollment-form textarea,
.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 2px solid #e2e2e2;
  border-radius: 12px;
  padding: 15px;
  font-size: 16px;
  font-family: inherit;
}

.enrollment-form textarea {
  grid-column: 1 / -1;
  min-height: 130px;
  resize: vertical;
}

.enrollment-form button {
  grid-column: 1 / -1;
  justify-self: center;
}

#enrollment-status {
  grid-column: 1 / -1;
}


/* =========================
   CALENDAR
========================= */

.calendar-section {
  background: white;
}

#calendar-events {
  margin-top: 35px;
}


/* =========================
   GALLERY
========================= */

.gallery-section {
  background: var(--cream);
}

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

.gallery-photo {
  border-radius: 22px;
  overflow: hidden;
  height: 300px;
  background: #eee;
}

.gallery-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/* =========================
   CONTACT
========================= */

.contact-section {
  background: #eaf7ff;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 45px;
  text-align: left;
}

.contact-info {
  background: var(--purple);
  color: white;
  border-radius: 25px;
  padding: 35px;
}

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

.contact-info p {
  font-size: 18px;
  line-height: 1.7;
}

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

.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}


/* =========================
   FOOTER
========================= */

footer {
  background: var(--purple);
  color: white;
  text-align: center;
  padding: 50px 20px;
}

.footer-logo img {
  width: 125px;
  margin: auto;
  border-radius: 50%;
  background: white;
}

footer h3 {
  font-size: 26px;
  margin-bottom: 5px;
}

footer p {
  line-height: 1.5;
}


/* =========================
   SCROLL REVEAL
========================= */

.scroll-reveal {
  opacity: 0;
  transform: translateY(55px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

.scroll-reveal.show {
  opacity: 1;
  transform: translateY(0);
}


/* =========================
   MOBILE
========================= */

@media (max-width: 850px) {

  #main-header {
    padding: 10px 12px;
  }

  .header-container {
    flex-direction: column;
    gap: 8px;
  }

  .site-logo {
    width: 85px;
    height: 85px;
  }

  .main-nav {
    width: 100%;
    justify-content: center;
    gap: 12px 16px;
  }

  .main-nav a {
    font-size: 14px;
  }


  .hero-section {
    background-position: center;
  }

  .hero-overlay {
    background: rgba(255,255,255,0.78);
  }

  .hero-content {
    text-align: center;
    padding: 55px 20px;
  }

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

  .hero-content h2 {
    font-size: 27px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons {
    justify-content: center;
  }


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

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

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

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

}


@media (max-width: 550px) {

  .main-nav {
    gap: 8px 12px;
  }

  .main-nav a {
    font-size: 13px;
  }


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

  .hero-content h2 {
    font-size: 23px;
  }

  .hero-description {
    font-size: 17px;
  }


  .quality-section {
    padding-top: 65px;
  }

  .quality-box h2 {
    font-size: 23px;
  }

  .mission-text h2 {
    font-size: 29px;
  }

  .mission-text p {
    font-size: 17px;
  }


  .section-container {
    padding: 65px 18px;
  }

  .section-container h2 {
    font-size: 31px;
  }


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


  .enrollment-container {
    padding: 40px 20px;
  }

  .enrollment-container h2 {
    font-size: 30px;
  }

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

  .enrollment-form textarea,
  .enrollment-form button,
  #enrollment-status {
    grid-column: auto;
  }

}
.quality-box .quality-button {
  display: inline-block;
  margin: 5px auto 10px;
  padding: 14px 30px;
  background: #ef3d35;
  color: white;
  border-radius: 12px;
  font-size: 17px;
  font-weight: bold;
  text-decoration: none;
}

.quality-box .quality-button:hover {
  background: #d72d27;
  transform: translateY(-2px);
}
/* =========================
   FEATURE CARD ANIMATIONS
========================= */

.feature-card {
  opacity: 0;
  transform: translateY(60px) scale(0.95);

  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.feature-card.show {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Makes them appear one after another */

.feature-card:nth-child(1) {
  transition-delay: 0.1s;
}

.feature-card:nth-child(2) {
  transition-delay: 0.25s;
}

.feature-card:nth-child(3) {
  transition-delay: 0.4s;
}


/* MOBILE CARD LOOK */

@media (max-width: 850px) {

  .features-section {
    padding: 25px 18px 70px;
  }

  .features-container {
    display: flex;
    flex-direction: column;
    gap: 18px;
  }

  .feature-card {
    width: 100%;
    min-height: 230px;
    padding: 30px 22px;
    border-radius: 22px;
  }

  .feature-icon {
    font-size: 45px;
  }

  .feature-card h3 {
    font-size: 24px;
  }

  .feature-card p {
    font-size: 16px;
  }

}
/* =========================
   MOBILE MENU
========================= */

.menu-toggle {
  display: none;
  background: #6f2da8;
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 26px;
  padding: 8px 13px;
  cursor: pointer;
}


@media (max-width: 850px) {

  .header-container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
  }

  .site-logo {
    width: 80px;
    height: 80px;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    gap: 0;
    padding: 10px 0;
  }

  .main-nav.show-menu {
    display: flex;
  }

  .main-nav a {
    width: 100%;
    text-align: center;
    padding: 13px 10px;
    font-size: 16px;
    border-top: 1px solid #eee;
  }

}
/* =========================
   HOMEPAGE HERO - MOBILE
========================= */

@media (max-width: 850px) {

  .hero-section {
    width: 100%;
    height: auto;
    min-height: 0;
    margin: 0;
    padding: 0;
    background: white;
    overflow: hidden;
  }

  .home-banner {
    display: block;
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
  }

}
/* =========================
   ABOUT US
========================= */

.about-section {
  padding: 90px 25px;
  background: #fffaf0;
}

.about-container {
  max-width: 1100px;
  margin: auto;

  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 55px;
}

.about-photo {
  position: relative;
}

.about-photo img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 30px;

  box-shadow:
    12px 12px 0 #ffd84d,
    22px 22px 0 #6f2da8;
}

.about-content {
  text-align: left;
}

.about-content h2 {
  color: #6f2da8;
  font-size: 42px;
  line-height: 1.15;
  margin: 10px 0 22px;
}

.about-content > p {
  font-size: 18px;
  line-height: 1.7;
  color: #444;
}

.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;

  margin: 28px 0;
}

.about-highlights span {
  background: white;
  padding: 13px;
  border-radius: 12px;

  font-weight: bold;
  color: #555;

  box-shadow: 0 5px 15px rgba(0,0,0,0.07);
}

.about-button {
  display: inline-block;

  background: #ef3d35;
  color: white;

  padding: 15px 27px;
  border-radius: 12px;

  font-size: 17px;
  font-weight: bold;
}


/* MOBILE */

@media (max-width: 850px) {

  .about-section {
    padding: 65px 20px;
  }

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

  .about-photo {
    padding-right: 15px;
    padding-bottom: 15px;
  }

  .about-photo img {
    height: 340px;
  }

  .about-content {
    text-align: center;
  }

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

  .about-content > p {
    font-size: 17px;
  }

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

}


@media (max-width: 480px) {

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

}
/* =========================
   PROGRAMS
========================= */

.programs-section {
  background: #eef9ff;
}

.program-grid {
  margin-top: 45px;

  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.program-card {
  position: relative;

  background: white;
  padding: 32px 22px;

  border-radius: 25px;

  text-align: center;

  box-shadow: 0 10px 25px rgba(0,0,0,0.09);

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.program-card:hover {
  transform: translateY(-7px);

  box-shadow: 0 15px 35px rgba(0,0,0,0.14);
}

.infant-card {
  border-top: 8px solid #ef3d35;
}

.toddler-card {
  border-top: 8px solid #ffd84d;
}

.preschool-card {
  border-top: 8px solid #55a630;
}

.school-card {
  border-top: 8px solid #6f2da8;
}

.program-icon {
  width: 75px;
  height: 75px;

  margin: 0 auto 18px;

  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 38px;

  background: #fff7df;
}

.program-card h3 {
  margin: 0 0 8px;

  color: #6f2da8;

  font-size: 27px;
}

.program-age {
  font-weight: bold;
  color: #ef3d35;

  margin-bottom: 15px;
}

.program-card p {
  line-height: 1.6;
}

.program-button {
  display: inline-block;

  margin-top: 15px;

  padding: 12px 22px;

  border-radius: 12px;

  background: #6f2da8;
  color: white;

  font-weight: bold;
}

.program-button:hover {
  background: #ef3d35;
}


/* MOBILE */

@media (max-width: 950px) {

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

}


@media (max-width: 600px) {

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

  .program-card {
    padding: 30px 22px;
  }

}
/* =========================
   CALENDAR / EVENTS
========================= */

.calendar-section {
  background: white;
}

.events-grid {
  max-width: 900px;
  margin: 45px auto 0;

  display: flex;
  flex-direction: column;
  gap: 18px;
}

.event-card {
  background: #fffaf0;

  display: grid;
  grid-template-columns: 100px 1fr;

  align-items: center;

  border-radius: 22px;
  overflow: hidden;

  box-shadow: 0 8px 22px rgba(0,0,0,0.08);

  text-align: left;
}

.event-date {
  height: 100%;
  min-height: 130px;

  background: #ef3d35;
  color: white;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.purple-date {
  background: #6f2da8;
}

.green-date {
  background: #55a630;
}

.event-month {
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 2px;
}

.event-day {
  font-size: 38px;
  font-weight: bold;
}

.event-info {
  padding: 24px;
}

.event-info h3 {
  color: #6f2da8;
  font-size: 24px;

  margin: 0 0 8px;
}

.event-info p {
  margin: 0;

  color: #555;

  font-size: 16px;
  line-height: 1.6;
}


/* MOBILE */

@media (max-width: 600px) {

  .event-card {
    grid-template-columns: 82px 1fr;
  }

  .event-date {
    min-height: 125px;
  }

  .event-day {
    font-size: 32px;
  }

  .event-info {
    padding: 18px;
  }

  .event-info h3 {
    font-size: 21px;
  }

}
/* =========================
   GALLERY
========================= */

.gallery-section {
  background: #fffaf0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 45px;
}

.gallery-card {
  background: white;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.gallery-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 32px rgba(0,0,0,0.13);
}

.gallery-placeholder {
  width: 100%;
  height: 230px;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 70px;

  background:
    linear-gradient(
      135deg,
      #dff5ff,
      #fff1aa
    );
}

.gallery-card:nth-child(2) .gallery-placeholder {
  background:
    linear-gradient(
      135deg,
      #f3e5ff,
      #ffdede
    );
}

.gallery-card:nth-child(3) .gallery-placeholder {
  background:
    linear-gradient(
      135deg,
      #e7ffd9,
      #dff5ff
    );
}

.gallery-card:nth-child(4) .gallery-placeholder {
  background:
    linear-gradient(
      135deg,
      #fff1aa,
      #f3e5ff
    );
}

.gallery-card:nth-child(5) .gallery-placeholder {
  background:
    linear-gradient(
      135deg,
      #dff5ff,
      #e7ffd9
    );
}

.gallery-card:nth-child(6) .gallery-placeholder {
  background:
    linear-gradient(
      135deg,
      #ffdede,
      #fff1aa
    );
}

.gallery-card p {
  margin: 0;
  padding: 18px;

  color: #6f2da8;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
}


/* MOBILE */

@media (max-width: 850px) {

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

}


@media (max-width: 550px) {

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

  .gallery-placeholder {
    height: 210px;
  }

}
/* =========================
   ENROLLMENT FORM
========================= */

.enrollment-section {
  padding: 90px 20px;

  background:
    linear-gradient(
      135deg,
      #6f2da8,
      #8f4cc0
    );
}

.enrollment-container {
  max-width: 900px;
  margin: auto;

  background: white;

  padding: 50px 35px;

  border-radius: 30px;

  text-align: center;

  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.enrollment-container h2 {
  color: #6f2da8;
  font-size: 38px;
  margin-bottom: 15px;
}

.enrollment-container > p {
  max-width: 650px;
  margin: 0 auto;

  color: #555;

  font-size: 18px;
  line-height: 1.6;
}

.enrollment-form {
  margin-top: 35px;

  display: grid;
  grid-template-columns: 1fr 1fr;

  gap: 16px;
}

.enrollment-form input,
.enrollment-form select,
.enrollment-form textarea {
  width: 100%;

  padding: 15px;

  border: 2px solid #e6e6e6;
  border-radius: 12px;

  background: white;

  font-size: 16px;
  font-family: inherit;
}

.enrollment-form input:focus,
.enrollment-form select:focus,
.enrollment-form textarea:focus {
  outline: none;
  border-color: #6f2da8;
}

.date-field {
  text-align: left;
}

.date-field label {
  display: block;
  margin-bottom: 7px;

  color: #6f2da8;

  font-size: 14px;
  font-weight: bold;
}

.enrollment-form textarea {
  grid-column: 1 / -1;

  min-height: 140px;

  resize: vertical;
}

.enrollment-form button {
  grid-column: 1 / -1;

  justify-self: center;

  padding: 15px 30px;
}

#enrollment-status {
  grid-column: 1 / -1;
}


/* MOBILE */

@media (max-width: 650px) {

  .enrollment-section {
    padding: 65px 18px;
  }

  .enrollment-container {
    padding: 38px 20px;
  }

  .enrollment-container h2 {
    font-size: 31px;
  }

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

  .enrollment-form textarea,
  .enrollment-form button,
  #enrollment-status {
    grid-column: auto;
  }

}
/* =========================
   CONTACT
========================= */

.contact-section {
  background: #eef9ff;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 35px;
  margin-top: 45px;
  text-align: left;
}

.contact-info {
  background: #6f2da8;
  color: white;

  padding: 40px 30px;

  border-radius: 28px;

  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.contact-info h3 {
  margin-top: 0;
  font-size: 30px;
}

.contact-info p {
  font-size: 17px;
  line-height: 1.7;
}

.contact-call-button {
  display: inline-block;

  margin-top: 15px;

  padding: 13px 25px;

  background: #ef3d35;
  color: white;

  border-radius: 12px;

  font-weight: bold;
}

.contact-form {
  background: white;

  padding: 30px;

  border-radius: 28px;

  box-shadow: 0 12px 30px rgba(0,0,0,0.08);

  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;

  padding: 15px;

  border: 2px solid #e5e5e5;

  border-radius: 12px;

  font-size: 16px;
  font-family: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #6f2da8;
}

.contact-form textarea {
  min-height: 160px;
  resize: vertical;
}

.contact-form button {
  align-self: flex-start;
}


/* MOBILE */

@media (max-width: 750px) {

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

  .contact-info,
  .contact-form {
    padding: 28px 22px;
  }

  .contact-form button {
    width: 100%;
  }

}
/* =========================
   FOOTER
========================= */

.site-footer {
  background: #6f2da8;
  color: white;
  padding: 60px 25px 20px;
}

.footer-container {
  max-width: 1100px;
  margin: auto;

  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 45px;
}

.footer-logo {
  width: 110px;
  height: 110px;
  object-fit: contain;

  background: white;

  border-radius: 50%;

  margin-bottom: 15px;
}

.footer-brand h3 {
  font-size: 27px;
  margin: 0 0 8px;
}

.footer-brand p {
  line-height: 1.6;
  max-width: 300px;
}

.footer-links,
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links h4,
.footer-contact h4 {
  font-size: 20px;
  margin: 0 0 10px;
  color: #ffd84d;
}

.footer-links a,
.footer-contact a {
  color: white;
  text-decoration: none;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: #ffd84d;
}

.footer-contact p {
  margin: 0;
  line-height: 1.6;
}

.footer-bottom {
  max-width: 1100px;
  margin: 45px auto 0;

  padding-top: 20px;

  border-top: 1px solid rgba(255,255,255,0.25);

  text-align: center;

  font-size: 14px;
}


/* MOBILE */

@media (max-width: 750px) {

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

  .footer-logo {
    margin-left: auto;
    margin-right: auto;
  }

  .footer-brand p {
    margin-left: auto;
    margin-right: auto;
  }

}
/* =========================
   PARENTS DROPDOWN
========================= */

.parent-nav-item {
  position: relative;
}

.parent-link {
  cursor: pointer;
}

.parent-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 160px;
  background: white;
  border-radius: 12px;
  padding: 8px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  z-index: 1000;
}

.parent-dropdown a {
  display: block;
  padding: 10px 16px;
  text-align: center;
  text-decoration: none;
  border-radius: 8px;
}

.parent-dropdown a:hover {
  background: #f3f3f3;
}

.parent-nav-item:hover .parent-dropdown {
  display: block;
}


/* MOBILE */
@media (max-width: 768px) {

  .parent-nav-item {
    width: 100%;
    text-align: center;
  }

  .parent-dropdown {
    position: static;
    transform: none;
    display: block;
    box-shadow: none;
    background: transparent;
    padding: 0;
    min-width: 0;
  }

  .parent-dropdown a {
    padding: 8px 15px;
    font-size: 0.9rem;
  }

}
/* HIDE ENROLLMENT UNTIL ENROLL NOW IS CLICKED */

#enrollment {
  display: none;
}

#enrollment.show-enrollment {
  display: block;
}
/* =========================
   ADMIN LOGIN
========================= */

.admin-login-section {
  min-height: 100vh;
  padding: 60px 20px;

  background:
    linear-gradient(
      135deg,
      #6f2da8,
      #8f4cc0
    );

  display: flex;
  align-items: center;
  justify-content: center;
}

.admin-login-container {
  width: min(480px, 100%);
  background: white;
  padding: 40px 30px;
  border-radius: 28px;
  text-align: center;

  box-shadow:
    0 18px 45px rgba(0,0,0,0.18);
}

.admin-logo {
  width: 95px;
  height: 95px;
  object-fit: contain;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: white;
}

.admin-login-container h2 {
  color: #6f2da8;
  font-size: 34px;
  margin: 10px 0 12px;
}

.admin-login-text {
  color: #555;
  line-height: 1.6;
  margin-bottom: 25px;
}

#admin-login-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

#admin-login-form input {
  width: 100%;
  padding: 15px;

  border: 2px solid #e5e5e5;
  border-radius: 12px;

  font-size: 16px;
  font-family: inherit;
}

#admin-login-form input:focus {
  outline: none;
  border-color: #6f2da8;
}

#admin-login-status {
  margin: 5px 0 0;
  font-weight: bold;
}

.admin-back-button {
  display: block;
  margin: 0 0 20px;

  background: transparent;
  border: none;

  color: #6f2da8;
  font-weight: bold;
  font-size: 15px;

  cursor: pointer;
}


/* =========================
   ADMIN DASHBOARD
========================= */

.admin-dashboard-section {
  min-height: 100vh;
  background: #f7f4fb;
  padding: 40px 20px 70px;
}

.admin-dashboard-container {
  max-width: 1150px;
  margin: auto;
}

.admin-dashboard-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;

  background: white;
  padding: 28px;

  border-radius: 24px;

  box-shadow:
    0 8px 24px rgba(0,0,0,0.08);

  margin-bottom: 25px;
}

.admin-dashboard-header h2 {
  color: #6f2da8;
  margin: 5px 0 8px;
  font-size: 34px;
}

#admin-user-email {
  color: #666;
  margin: 0;
}

.admin-logout-button {
  background: #ef3d35;
  color: white;

  border: none;
  border-radius: 12px;

  padding: 12px 20px;

  font-weight: bold;
  font-size: 15px;

  cursor: pointer;
}


/* =========================
   ADMIN TABS
========================= */

.admin-tabs {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;

  margin-bottom: 25px;
}

.admin-tab {
  border: none;
  border-radius: 12px;

  padding: 13px 18px;

  background: white;
  color: #6f2da8;

  font-weight: bold;
  font-size: 15px;

  cursor: pointer;

  box-shadow:
    0 5px 15px rgba(0,0,0,0.07);
}

.admin-tab.active {
  background: #6f2da8;
  color: white;
}


/* =========================
   ADMIN PANELS
========================= */

.admin-panel {
  background: white;

  padding: 28px;

  border-radius: 24px;

  box-shadow:
    0 8px 24px rgba(0,0,0,0.08);
}

.admin-panel-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;

  margin-bottom: 20px;
}

.admin-panel-heading h3 {
  margin: 0 0 8px;

  color: #6f2da8;

  font-size: 26px;
}

.admin-panel-heading p {
  margin: 0;
  color: #666;
}

.admin-refresh-button {
  background: #6f2da8;
  color: white;

  border: none;
  border-radius: 12px;

  padding: 11px 18px;

  font-weight: bold;

  cursor: pointer;
}

.admin-count {
  display: inline-block;

  margin-bottom: 20px;

  padding: 9px 14px;

  background: #f2e8fb;
  color: #6f2da8;

  border-radius: 999px;

  font-weight: bold;
}


/* =========================
   ENROLLMENT REQUEST CARDS
========================= */

.admin-enrollment-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.admin-enrollment-card {
  border: 2px solid #eee;

  border-radius: 18px;

  padding: 20px;

  background: #fffdf7;
}

.admin-enrollment-card h4 {
  margin: 0 0 15px;

  color: #6f2da8;

  font-size: 22px;
}

.admin-enrollment-card p {
  margin: 7px 0;

  color: #444;
  line-height: 1.5;
}

.admin-enrollment-card strong {
  color: #333;
}

.admin-request-actions {
  margin-top: 18px;

  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.admin-contacted-button,
.admin-delete-button {
  border: none;
  border-radius: 10px;

  padding: 10px 14px;

  font-weight: bold;
  cursor: pointer;
}

.admin-contacted-button {
  background: #55a630;
  color: white;
}

.admin-delete-button {
  background: #ef3d35;
  color: white;
}

.admin-empty-message {
  text-align: center;

  padding: 30px 15px;

  color: #777;
}


/* =========================
   ADMIN FOOTER LINK
========================= */

.admin-footer-link {
  margin-top: 8px;

  background: transparent;

  border: none;

  color: rgba(255,255,255,0.65);

  font-size: 12px;

  cursor: pointer;

  text-decoration: underline;
}

.admin-footer-link:hover {
  color: #ffd84d;
}


/* =========================
   HIDDEN ADMIN AREAS
========================= */

[hidden] {
  display: none !important;
}


/* =========================
   ADMIN MOBILE
========================= */

@media (max-width: 700px) {

  .admin-login-section {
    padding: 30px 16px;
  }

  .admin-login-container {
    padding: 32px 20px;
  }

  .admin-login-container h2 {
    font-size: 29px;
  }

  .admin-dashboard-section {
    padding: 25px 14px 55px;
  }

  .admin-dashboard-header {
    flex-direction: column;
    align-items: flex-start;
    padding: 22px;
  }

  .admin-logout-button {
    width: 100%;
  }

  .admin-tabs {
    flex-direction: column;
  }

  .admin-tab {
    width: 100%;
  }

  .admin-panel {
    padding: 20px 16px;
  }

  .admin-panel-heading {
    flex-direction: column;
    align-items: flex-start;
  }

  .admin-refresh-button {
    width: 100%;
  }

  .admin-request-actions {
    flex-direction: column;
  }

  .admin-contacted-button,
  .admin-delete-button {
    width: 100%;
  }

}
/* =====================================================
   LADDER OF LEARNING - FINAL CUTE POLISH
===================================================== */


/* SOFTER PAGE LOOK */

body {
  background: #fffdf8;
  overflow-x: hidden;
}


/* COLORFUL SECTION TITLE */

.section-small-title {
  display: inline-block;
  margin-bottom: 5px;
  padding: 7px 14px;

  background: #fff0ee;
  color: #ef3d35;

  border-radius: 999px;

  font-size: 14px;
  font-weight: 800;

  letter-spacing: 1.5px;
}


/* MAIN HEADINGS */

.section-container h2,
.mission-text h2,
.about-content h2,
.enrollment-container h2 {

  font-weight: 800;
  letter-spacing: -0.5px;
}


/* BUTTON ANIMATION */

.main-button,
.second-button,
.quality-button,
.about-button,
.program-button,
.contact-call-button {

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}


.main-button:hover,
.second-button:hover,
.quality-button:hover,
.about-button:hover,
.program-button:hover,
.contact-call-button:hover {

  transform: translateY(-3px);

  box-shadow:
    0 9px 20px
    rgba(0,0,0,0.16);
}


/* QUALITY AREA */

.quality-section {

  padding:
    75px 20px
    80px;

  background:
    linear-gradient(
      180deg,
      #ffffff,
      #fffaf0
    );

  position: relative;
}


.quality-section::before {

  content: "🌈";

  position: absolute;

  left: 4%;
  top: 45px;

  font-size: 42px;

  opacity: 0.2;
}


.quality-section::after {

  content: "⭐";

  position: absolute;

  right: 5%;
  bottom: 55px;

  font-size: 38px;

  opacity: 0.2;
}


/* FEATURE CARDS */

.feature-card {

  position: relative;

  overflow: hidden;

  border:
    3px solid
    rgba(255,255,255,0.4);
}


.feature-card::after {

  content: "";

  position: absolute;

  width: 120px;
  height: 120px;

  right: -35px;
  top: -35px;

  border-radius: 50%;

  background:
    rgba(255,255,255,0.12);
}


.feature-icon {

  width: 82px;
  height: 82px;

  margin:
    0 auto
    15px;

  display: flex;
  align-items: center;
  justify-content: center;

  background:
    rgba(255,255,255,0.18);

  border-radius: 50%;
}


/* ABOUT */

.about-section {

  position: relative;

  background:
    linear-gradient(
      180deg,
      #fffaf0,
      #fffdf7
    );
}


.about-highlights span {

  border:
    2px solid
    #f4ebfb;

  transition:
    transform 0.25s ease,
    border-color 0.25s ease;
}


.about-highlights span:hover {

  transform:
    translateY(-3px);

  border-color:
    #ffd84d;
}


/* PROGRAM CARDS */

.program-card {

  overflow: hidden;
}


.program-icon {

  transition:
    transform 0.3s ease;
}


.program-card:hover
.program-icon {

  transform:
    scale(1.12)
    rotate(-4deg);
}


.infant-card
.program-icon {

  background:
    #ffe7e5;
}


.toddler-card
.program-icon {

  background:
    #fff5bd;
}


.preschool-card
.program-icon {

  background:
    #e6f8dc;
}


.school-card
.program-icon {

  background:
    #efe1fa;
}


/* ENROLLMENT */

.enrollment-section {

  position: relative;

  overflow: hidden;

  background:
    linear-gradient(
      135deg,
      #5d2491,
      #8440b9,
      #6f2da8
    );
}


.enrollment-section::before {

  content: "✏️";

  position: absolute;

  top: 45px;
  left: 5%;

  font-size: 58px;

  opacity: 0.12;
}


.enrollment-section::after {

  content: "📚";

  position: absolute;

  right: 5%;
  bottom: 45px;

  font-size: 58px;

  opacity: 0.12;
}


.enrollment-container {

  position: relative;

  z-index: 2;

  border:
    4px solid
    rgba(255,255,255,0.5);
}


.enrollment-form input,
.enrollment-form select,
.enrollment-form textarea {

  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}


.enrollment-form input:focus,
.enrollment-form select:focus,
.enrollment-form textarea:focus {

  border-color:
    #6f2da8;

  box-shadow:
    0 0 0 4px
    rgba(111,45,168,0.1);

  transform:
    translateY(-1px);
}


/* CALENDAR */

.event-card {

  border:
    2px solid
    #f3edf8;

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}


.event-card:hover {

  transform:
    translateY(-4px);

  box-shadow:
    0 13px 30px
    rgba(0,0,0,0.11);
}


.event-date {

  position: relative;
}


.event-date::after {

  content: "";

  position: absolute;

  width: 45px;
  height: 45px;

  right: -17px;
  bottom: -17px;

  border-radius: 50%;

  background:
    rgba(255,255,255,0.17);
}


/* GALLERY */

.gallery-card {

  border:
    3px solid
    white;
}


.gallery-card img {

  width: 100%;
  height: 250px;

  object-fit: cover;

  display: block;
}


.gallery-card p {

  background:
    white;
}


/* CONTACT */

.contact-info {

  position: relative;

  overflow: hidden;
}


.contact-info::after {

  content: "💜";

  position: absolute;

  right: 22px;
  bottom: 15px;

  font-size: 55px;

  opacity: 0.12;
}


.contact-form {

  border:
    2px solid
    #e9f3f8;
}


.contact-form input:focus,
.contact-form textarea:focus {

  box-shadow:
    0 0 0 4px
    rgba(111,45,168,0.1);
}


/* FOOTER */

.site-footer {

  background:
    linear-gradient(
      135deg,
      #54207e,
      #6f2da8
    );
}


.footer-logo {

  border:
    4px solid
    #ffd84d;

  box-shadow:
    0 8px 22px
    rgba(0,0,0,0.18);
}


.footer-links a,
.footer-contact a {

  transition:
    color 0.2s ease,
    transform 0.2s ease;
}


.footer-links a:hover,
.footer-contact a:hover {

  transform:
    translateX(3px);
}


/* MOBILE POLISH */

@media (max-width: 600px) {

  .section-container {

    padding:
      60px 18px;
  }


  .section-small-title {

    font-size:
      12px;

    letter-spacing:
      1.2px;
  }


  .quality-section {

    padding:
      55px 15px
      65px;
  }


  .quality-box {

    width:
      96%;

    padding:
      14px;

    border-radius:
      22px;
  }


  .feature-card {

    min-height:
      auto;
  }


  .program-card {

    border-radius:
      22px;
  }


  .event-card {

    border-radius:
      18px;
  }


  .gallery-card img {

    height:
      235px;
  }


  .enrollment-container {

    border-radius:
      24px;
  }


  .contact-info,
  .contact-form {

    border-radius:
      22px;
  }

}



  /* =========================
   ADMIN LOGIN OPEN / CLOSE
========================= */

#admin-login {
  display: none;
}

#admin-login:target {
  display: flex;
}

.admin-footer-link {
  display: inline-block;
  margin-top: 8px;
  color: rgba(255,255,255,0.65);
  font-size: 12px;
  text-decoration: underline;
  cursor: pointer;
}

.admin-footer-link:hover {
  color: #ffd84d;
}
 /* =========================
   ADMIN FULL PAGE MODE
========================= */

body.admin-mode #main-header,
body.admin-mode #home,
body.admin-mode .quality-section,
body.admin-mode .features-section,
body.admin-mode #about,
body.admin-mode #programs,
body.admin-mode #enrollment,
body.admin-mode #calendar,
body.admin-mode #gallery,
body.admin-mode #contact,
body.admin-mode #site-footer {
  display: none !important;
}

body.admin-mode #admin-login,
body.admin-mode #admin-dashboard {
  width: 100%;
  min-height: 100vh;
}
  /* =========================
   BIGGER ABOUT US PHOTO
========================= */

.about-image {
  width: 100%;
  max-width: 750px;
  margin: 0 auto 55px;
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 35px;
}


/* MOBILE */
@media (max-width: 768px) {

  .about-image {
    width: 96%;
    max-width: none;
    margin: 0 auto 45px;
  }

  .about-image img {
    width: 100%;
    border-radius: 28px;
  }

}
  /* FORCE ABOUT IMAGE FULL WIDTH */

#about {
  width: 100%;
  overflow: hidden;
}

#about .about-container {
  width: 100% !important;
  max-width: none !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

#about .about-photo {
  width: 100% !important;
  max-width: none !important;
  margin: 0 auto 40px !important;
  padding: 0 !important;
}

#about .about-photo img {
  width: 100% !important;
  max-width: none !important;
  height: auto !important;
  display: block !important;
  object-fit: cover;
  border-radius: 0;
}
  /* =========================
   ADMIN AS SEPARATE PAGE
========================= */

body.admin-view #main-header,
body.admin-view #home,
body.admin-view .quality-section,
body.admin-view .features-section,
body.admin-view #about,
body.admin-view #programs,
body.admin-view #enrollment,
body.admin-view #calendar,
body.admin-view #gallery,
body.admin-view #contact,
body.admin-view #site-footer {
  display: none !important;
}

body.admin-view #admin-login {
  display: block !important;
  min-height: 100vh;
}

body.admin-view #admin-dashboard:not([hidden]) {
  display: block !important;
  min-height: 100vh;
}
  /* =========================
   ADMIN ENROLLMENT CARDS
========================= */

.admin-enrollment-list {
  display: grid;
  gap: 20px;
  margin-top: 25px;
}

.admin-enrollment-card {
  background: #ffffff;
  border-radius: 22px;
  padding: 22px;
  box-shadow:
    0 8px 30px
    rgba(0, 0, 0, 0.08);
  border: 2px solid #eee;
}

.admin-request-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 18px;
}

.admin-request-header h3 {
  margin: 0;
  color: #5b3b93;
  font-size: 23px;
}

.admin-request-date {
  margin: 5px 0 0;
  color: #888;
  font-size: 13px;
}

.admin-request-details {
  display: grid;
  gap: 10px;
}

.admin-detail-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  padding-bottom: 9px;
  border-bottom: 1px solid #eee;
}

.admin-detail-row strong {
  color: #333;
}

.admin-detail-row span {
  color: #555;
}

.admin-request-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.admin-action-button,
.admin-delete-button {
  border: none;
  border-radius: 12px;
  padding: 11px 18px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  font-family: inherit;
  font-size: 14px;
}

.admin-action-button {
  background: #5b3b93;
  color: white;
}

.admin-delete-button {
  background: #e64b4b;
  color: white;
}


/* MOBILE */

@media (max-width: 768px) {

  .admin-enrollment-card {
    padding: 18px;
    border-radius: 18px;
  }

  .admin-request-header h3 {
    font-size: 20px;
  }

  .admin-request-actions {
    flex-direction: column;
  }

  .admin-action-button,
  .admin-delete-button {
    width: 100%;
    text-align: center;
  }

}
  /* =========================
   ADMIN DASHBOARD TABS FIX
========================= */

.admin-tabs {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 12px !important;
  width: 100% !important;
  margin: 25px 0 !important;
}

.admin-tab {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;

  width: 100% !important;
  padding: 16px 10px !important;

  border: none !important;
  border-radius: 15px !important;

  background: #ffffff !important;
  color: #6f2da8 !important;

  font-size: 15px !important;
  font-weight: 700 !important;

  cursor: pointer !important;
}

.admin-tab.active {
  background: #6f2da8 !important;
  color: #ffffff !important;
}

/* Website button can fill the bottom row */
.admin-tab:last-child {
  grid-column: 1 / -1;
}

/* Only show the admin panel that is selected */
.admin-panel[hidden] {
  display: none !important;
}

.admin-panel:not([hidden]) {
  display: block !important;
}

@media (max-width: 600px) {

  .admin-tabs {
    grid-template-columns: 1fr 1fr !important;
  }

  .admin-tab {
    font-size: 14px !important;
    padding: 15px 7px !important;
  }
}
/* =========================
   EXPLORE WEBSITE BUTTON
========================= */

.explore-site-section {
  width: 100%;
  text-align: center;
  padding: 24px 20px 34px;
  background: white;
}

.explore-site-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;

  padding: 15px 28px;

  background: #6f2da8;
  color: white;

  border-radius: 999px;

  font-size: 17px;
  font-weight: 800;

  box-shadow:
    0 8px 20px
    rgba(111, 45, 168, 0.22);

  transition:
    transform 0.25s ease,
    background 0.25s ease,
    box-shadow 0.25s ease;
}

.explore-site-button:hover {
  background: #ef3d35;

  transform: translateY(-3px);

  box-shadow:
    0 12px 25px
    rgba(0, 0, 0, 0.15);
}

.explore-site-button span {
  display: inline-block;

  font-size: 22px;

  animation:
    exploreBounce
    1.2s
    infinite;
}

@keyframes exploreBounce {

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

  50% {
    transform: translateY(5px);
  }

}


/* MOBILE */

@media (max-width: 600px) {

  .explore-site-section {
    padding: 18px 15px 28px;
  }

  .explore-site-button {
    width: min(92%, 340px);

    padding: 14px 22px;

    font-size: 16px;
  }

}
/* =========================
   FIX QUALITY RAINBOW
========================= */

.quality-section::before {
  content: "🌈";
  position: absolute;
  left: 5%;
  top: 12px;
  font-size: 48px;
  opacity: 0.35;
  z-index: 5;
  pointer-events: none;
}

.quality-section::after {
  z-index: 5;
  pointer-events: none;
}


/* PHONE */
@media (max-width: 600px) {

  .quality-section::before {
    left: 18px;
    top: 8px;
    font-size: 45px;
    opacity: 0.4;
  }

}
/* =========================
   WELCOME / TOUR SECTION
========================= */

.quality-section {
  padding: 55px 20px 75px;
  background:
    linear-gradient(
      180deg,
      #ffffff,
      #fffaf0
    );
}

.quality-section::before,
.quality-section::after {
  display: none;
}

.mission-text {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

.tour-rainbow {
  font-size: 52px;
  margin-bottom: 10px;
}

.mission-text h2 {
  color: #6f2da8;
  font-size: 36px;
  font-weight: 800;
  margin: 0 0 15px;
}

.mission-text p {
  max-width: 650px;
  margin: 0 auto 28px;
  color: #555;
  font-size: 18px;
  line-height: 1.7;
}

.mission-text .quality-button {
  display: inline-block;
  margin: 0 auto;

  padding: 15px 30px;

  background: #ef3d35;
  color: white;

  border-radius: 14px;

  font-size: 17px;
  font-weight: 800;

  box-shadow:
    0 8px 20px
    rgba(239, 61, 53, 0.2);
}


/* MOBILE */

@media (max-width: 600px) {

  .quality-section {
    padding: 45px 18px 60px;
  }

  .tour-rainbow {
    font-size: 46px;
  }

  .mission-text h2 {
    font-size: 29px;
  }

  .mission-text p {
    font-size: 17px;
  }

  .mission-text .quality-button {
    width: min(100%, 320px);
  }

}
/* =========================
   FIX BOTTOM QUALITY RATED
========================= */

.bottom-quality-container {
  overflow: hidden;
}

.bottom-quality-image {
  display: flex;
  justify-content: center;
}

.bottom-quality-image img {
  width: 100%;
  max-width: 430px;
  height: auto;
  object-fit: contain;

  border-radius: 18px;
}


/* MOBILE */

@media (max-width: 700px) {

  .bottom-quality-section {
    padding: 50px 16px;
  }

  .bottom-quality-container {
    padding: 28px 20px;
    border-radius: 24px;
  }

  .bottom-quality-image img {
    width: 92%;
    max-width: 360px;
    margin: 0 auto;
  }

}
/* =====================================================
   PRIVATE ADMIN MONTHLY CALENDAR
===================================================== */

.private-calendar-section {
  margin-bottom: 35px;
  padding: 28px;

  background:
    linear-gradient(
      135deg,
      #f5eaff,
      #fff7dc,
      #e9f7ff
    );

  border-radius: 26px;
}

.private-calendar-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-bottom: 25px;
}

.private-calendar-heading h3 {
  margin: 8px 0;
  color: #6f2da8;
  font-size: 28px;
}

.private-calendar-heading p {
  margin: 0;
  color: #666;
}


.private-calendar {
  background: white;
  padding: 22px;
  border-radius: 24px;

  box-shadow:
    0 10px 30px
    rgba(0,0,0,0.08);
}


.private-calendar-header {
  display: grid;
  grid-template-columns: 50px 1fr 50px;
  align-items: center;
  gap: 12px;

  margin-bottom: 20px;
}

.private-calendar-header h3 {
  margin: 0;
  text-align: center;

  color: #6f2da8;
  font-size: 26px;
}

.private-calendar-nav {
  width: 46px;
  height: 46px;

  border: none;
  border-radius: 50%;

  background: #6f2da8;
  color: white;

  font-size: 29px;
  cursor: pointer;
}


.private-calendar-weekdays,
.private-calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
}

.private-calendar-weekdays {
  margin-bottom: 8px;
}

.private-calendar-weekdays span {
  padding: 8px 3px;

  text-align: center;
  font-weight: 800;

  color: #6f2da8;
  font-size: 13px;
}


.private-calendar-day {
  min-height: 115px;

  padding: 8px;

  border: 1px solid #ece7f0;

  background: white;

  position: relative;

  cursor: pointer;
}

.private-calendar-day:hover {
  background: #fffaf0;
}


.private-calendar-day.empty {
  background: #fafafa;
  cursor: default;
}


.private-calendar-day-number {
  display: inline-flex;

  width: 28px;
  height: 28px;

  align-items: center;
  justify-content: center;

  border-radius: 50%;

  font-size: 13px;
  font-weight: 800;

  color: #444;
}


.private-calendar-day.today
.private-calendar-day-number {
  background: #6f2da8;
  color: white;
}


.private-calendar-event {
  display: block;

  width: 100%;

  margin-top: 5px;
  padding: 5px 7px;

  border: none;
  border-radius: 7px;

  color: white;

  font-size: 11px;
  font-weight: 800;

  text-align: left;

  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;

  cursor: pointer;
}


/* MODAL */

.private-calendar-modal {
  position: fixed;
  inset: 0;

  z-index: 5000;

  padding: 20px;

  background:
    rgba(0,0,0,0.45);

  display: flex;
  align-items: center;
  justify-content: center;
}


.private-calendar-modal-card {
  width: min(520px, 100%);
  max-height: 90vh;
  overflow-y: auto;

  position: relative;

  padding: 30px;

  background: white;

  border-radius: 26px;

  box-shadow:
    0 18px 50px
    rgba(0,0,0,0.22);
}


.private-calendar-modal-card h3 {
  color: #6f2da8;
  margin-top: 0;
  font-size: 27px;
}


.private-calendar-close {
  position: absolute;

  top: 14px;
  right: 17px;

  border: none;
  background: transparent;

  color: #777;

  font-size: 32px;

  cursor: pointer;
}


#private-calendar-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}


#private-calendar-form label {
  margin-top: 5px;

  color: #444;

  font-weight: 800;
}


#private-calendar-form input,
#private-calendar-form textarea {
  width: 100%;

  padding: 13px;

  border: 2px solid #e7e1ec;

  border-radius: 12px;

  font: inherit;
}


#private-calendar-form textarea {
  min-height: 110px;
  resize: vertical;
}


#private-calendar-color {
  width: 85px !important;
  height: 50px;

  padding: 3px !important;
}


.private-calendar-time-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.private-calendar-time-row > div {
  display: flex;
  flex-direction: column;
  gap: 10px;
}


.private-calendar-form-buttons {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}


/* PHONE */

@media (max-width: 700px) {

  .private-calendar-section {
    padding: 18px 10px;
  }

  .private-calendar-heading {
    flex-direction: column;
    align-items: stretch;
  }

  .private-calendar-heading .main-button {
    width: 100%;
  }

  .private-calendar {
    padding: 10px 5px 15px;
  }

  .private-calendar-header h3 {
    font-size: 21px;
  }

  .private-calendar-nav {
    width: 40px;
    height: 40px;
    font-size: 25px;
  }

  .private-calendar-weekdays span {
    font-size: 10px;
  }

  .private-calendar-day {
    min-height: 78px;
    padding: 4px 2px;
  }

  .private-calendar-day-number {
    width: 22px;
    height: 22px;

    font-size: 11px;
  }

  .private-calendar-event {
    padding: 4px;

    font-size: 8px;

    border-radius: 5px;
  }

  .private-calendar-modal {
    padding: 12px;
  }

  .private-calendar-modal-card {
    padding: 26px 18px;
  }

  .private-calendar-time-row {
    grid-template-columns: 1fr;
  }

  .private-calendar-form-buttons {
    flex-direction: column;
  }

  .private-calendar-form-buttons button {
    width: 100%;
  }

}