/* =========================================
   FAIRYTALES â€” ADMISSION PAGE CSS
   ========================================= */

:root {
  --purple-dark:   #3b1f6b;
  --purple-mid:    #6b3fa0;
  --pink:          #e91e8c;
  --pink-hero:     #f06292;   /* hero section bg */
  --teal:          #1aabbb;
  --section-bg:    #faf5ff;
  --white:         #ffffff;
  --text-body:     #4a4a5a;
  --text-muted:    #7a7a8a;
  --font-display:  'Playfair Display', Georgia, serif;
  --font-body:     'Playfair Display', Georgia, serif;
}


/* =========================================
   SECTION 1 â€” HERO
   ========================================= */
.admission_hero {
  background: #f472b6;   /* vivid pink matching Figma */
  background: linear-gradient(135deg, #f472b6 0%, #ec4899 100%);
  border-radius: 28px;
  margin: 32px auto;
  max-width: 1280px;
  overflow: hidden;
  padding: 60px 60px 0;
  background: linear-gradient(121.25deg, #E77FB1 0%, #FF9CCB 100%);
}

.admission_hero_wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
}

/* Left */
.admission_hero_left {
  padding-bottom: 60px;
}

/* Badge */
.admission_hero_left .top_txt_badge {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  border: 1.5px solid rgba(255,255,255,0.5);
  padding: 6px 18px;
  border-radius: 100px;
  margin-bottom: 24px;
  backdrop-filter: blur(8px);
  border: 1px solid #FFFFFF4D;
}

/* H1 */
.admission_hero_left h1 {
  font-family: var(--font-display);
  font-size: 71px;
  font-weight: bold;
  line-height: 1.1;
  color: var(--white);
  margin: 0 0 20px;
}

/* Paragraph */
.admission_hero_left p {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.75;
  color: rgba(255,255,255,0.88);
  margin: 0 0 36px;
  max-width: 440px;
}

/* Buttons */
.admission_hero_btns {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 260px;
}

.btn_hero {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  padding: 16px 28px;
  border-radius: 9999px;
  text-align: center;
  transition: opacity 0.2s, transform 0.2s;
  display: block;
}

.btn_hero:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

.btn_hero--solid {
  background: #602C7F;
  color: var(--white);
  box-shadow: 0px 8px 24px 0px #602C7F33;
}
.btn_hero--solid:hover{color: #fff}

.btn_hero--ghost {
  background: rgba(255,255,255,0.2);
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.5);
}
.btn_hero--ghost:hover{color: #fff}
/* Right â€” circular image */
.admission_hero_right {
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.admission_hero_image {
  position: relative;
  width: 100%;
  max-width: 460px;
}

.admission_hero_image img {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}

/* 98% stat pill â€” overlapping bottom of circle */
.hero_stat_badge {
  position: absolute;
  bottom: -23px;
  left: 23px;
  background: #4ECDC4;
  border-radius: 100px;
  padding: 22px 38px;
  box-shadow: 0px 25px 50px -12px #00000040;
  border: 4px solid #FFFFFF80;
  transform: rotateZ(-5.8deg);
}

.hero_stat_badge span {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  white-space: nowrap;
}


/* =========================================
   SECTION 2 â€” ENROLLMENT & CHECKLIST
   ========================================= */
.enrollment_checklist {
  background: #F8EFF4;
  padding: 80px 0 90px;
}

.enrollment_checklist .heading {
  text-align: center;
  margin-bottom: 56px;
}

.enrollment_checklist .heading h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 800;
  color: #602C7F;
  margin: 0 0 14px;
}

.enrollment_checklist .heading p {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto;
}

/* 3-col grid */
.checklist_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Card */
.checklist_card {
  background: var(--white);
  border-radius: 20px;
  padding: 36px 28px 36px;
  border-top: 6px solid var(--step-color, #ccc);
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Icon circle */
.step_icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--step-icon-bg, #eee);
  color: var(--step-color, #666);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  flex-shrink: 0;
}

/* Step heading */
.checklist_card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--purple-dark);
  margin: 0 0 12px;
}

/* Description */
.checklist_card > p {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-body);
  margin: 0 0 24px;
  flex: 1;
}

/* Checklist items */
.step_checklist {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.step_checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: #1a1a2e;
}

.step_checklist li svg {
  color: var(--step-color, #ccc);
  flex-shrink: 0;
}


/* =========================================
   SECTION 3 â€” BOOK A DISCOVERY TOUR
   ========================================= */
.book_tour {
  background: var(--white);
  padding: 80px 0 90px;
}

.book_tour_wrap {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 4px 40px rgba(107, 63, 160, 0.1);
}

/* Left â€” purple panel */
.book_tour_left {
  background: var(--purple-mid);
  padding: 52px 44px;
  display: flex;
  flex-direction: column;
  background: linear-gradient(137.33deg, #602C7F 0%, #8E44AD 100%);
}

.book_tour_left h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 800;
  color: var(--white);
  margin: 0 0 16px;
  line-height: 1.15;
}

.book_tour_left > p {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.75;
  color: rgba(255,255,255,0.8);
  margin: 0 0 36px;
}

/* Branch list */
.tour_branches {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.tour_branches li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

/* Icon circle */
.tour_branch_icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid #FFFFFF4D;
}

.tour_branches li div {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding-top: 0px;
}

.tour_branches li strong {
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
}

.tour_branches li span {
  font-family: var(--font-body);
  font-size: 15px;
  color: #FFFFFFB2;
  font-weight: 400;
}

/* Right â€” form panel */
.book_tour_right {
  background: var(--white);
  padding: 52px 48px;
}

/* Form layout */
.tour_form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form_row {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form_row--two {
  flex-direction: row;
  gap: 20px;
}

.form_row--two .form_group {
  flex: 1;
}

.form_group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form_group label {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: #602C7F99;
}

.form_group input,
.form_group select {
  font-family: var(--font-body);
  font-size: 15px;
  color: #1a1a2e;
  background: #F8EFFF;
  border: none;
  border-radius: 100px;
  padding: 16px 22px;
  outline: none;
  width: 100%;
  box-sizing: border-box;
  appearance: none;
  -webkit-appearance: none;
  transition: background 0.2s, box-shadow 0.2s;
}

.form_group input::placeholder {
  color: #b0a8c8;
}

.form_group input:focus,
.form_group select:focus {
  background: #e8e0f8;
  box-shadow: 0 0 0 3px rgba(107,63,160,0.15);
}

/* Select arrow */
.form_group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236b3fa0' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  padding-right: 44px;
}

/* Submit button */
.btn_submit {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  background: linear-gradient(135deg, #e91e8c, #f472b6);
  border: none;
  border-radius: 100px;
  padding: 20px 36px;
  cursor: pointer;
  width: 100%;
  transition: opacity 0.2s, transform 0.2s;
}

.btn_submit:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}


/* =========================================
   SECTION 4 â€” FAQ
   ========================================= */
.admission_faq {
  background: var(--section-bg);
  padding: 80px 0 100px;
}

.admission_faq .heading {
  text-align: center;
  margin-bottom: 52px;
}

.admission_faq .heading .top_txt_badge {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 12px;
}

.admission_faq .heading h2 {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 54px);
  font-weight: 800;
  color: #602C7F;
  margin: 0;
}
.admission_faq .heading .colored {
    font-size: 14px;
    font-weight: 700;
    color: #E77FB1;
    letter-spacing: 4.2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: inline-flex;
}
/* FAQ list */
.faq_list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 860px;
  margin: 0 auto;
}

/* FAQ item card */
.faq_item {
  background: var(--white);
  border-radius: 20px;
  padding: 28px 32px;
  display: flex;
  align-items: flex-start;
  gap: 22px;
}

/* Icon circle */
.faq_icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--faq-icon-bg, #eee);
  color: var(--faq-icon-color, #666);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.faq_txt h4 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: #602C7F;
  margin: 0 0 10px;
}

.faq_txt p {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.75;
  color: #312E2C99;
  margin: 0;
  max-width: 688px;
}


/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 991px) {
  .admission_hero {
    padding: 48px 32px 0;
    margin: 16px;
  }

  .admission_hero_wrap {
    grid-template-columns: 1fr;
  }

  .admission_hero_right {
    justify-content: center;
  }

  .admission_hero_image {
    max-width: 320px;
  }

  .hero_stat_badge {
    bottom: 10px;
    left: 0;
  }

  .checklist_grid {
    grid-template-columns: 1fr;
  }

  .book_tour_wrap {
    grid-template-columns: 1fr;
  }

  .book_tour_left {
    padding: 40px 28px;
  }

  .book_tour_right {
    padding: 40px 28px;
  }

  .form_row--two {
    flex-direction: column;
  }
}

@media (max-width: 767px) {
  .admission_hero {
    border-radius: 20px;
  }

  .admission_hero_left p {
    max-width: 100%;
  }

  .admission_hero_btns {
    max-width: 100%;
  }

  .faq_item {
    flex-direction: column;
    gap: 16px;
  }
}