/* ==========================================================================
   Way2Admission — theme variables & component styles (Bootstrap 5 base)
   ========================================================================== */

:root {
  --navy: #14203E;
  --blue: #1F4494;
  --blue-dark: #183774;
  --orange: #F5921E;
  --orange-dark: #DD7F0D;
  --green: #2E9E5B;
  --cream: #FDFCFA;
  --cream-alt: #F4F2EC;
  --border: #E4E2DB;
  --border-soft: #E8E6E0;
  --input-border: #D9D7CF;
  --text-body: #4B5468;
  --text-muted: #8A90A0;
  --text-label: #5A6275;
  --text-quote: #2A3550;
  --font-serif: 'Source Serif 4', Georgia, serif;
  --font-sans: 'Public Sans', system-ui, sans-serif;
}

body {
  margin: 0;
  background: var(--cream);
  font-family: var(--font-sans);
  color: var(--text-body);
}

.serif-heading {
  font-family: var(--font-serif);
}

details summary::-webkit-details-marker {
  display: none;
}

.container-xxl {
  max-width: 1440px;
}

/* ===== Navbar ===== */
.site-navbar {
  background: var(--cream);
  border-bottom: 1px solid var(--border-soft);
}

.site-navbar .nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--navy);
}

.site-navbar .nav-link:hover {
  color: var(--blue);
}

/* ===== Buttons ===== */
.btn-primary-brand {
  background: var(--blue);
  color: #fff;
  font-weight: 600;
  border-radius: 6px;
  padding: 11px 22px;
  border: none;
}
.btn-primary-brand:hover {
  background: var(--blue-dark);
  color: #fff;
}

.btn-link-brand {
  color: var(--blue);
  font-weight: 600;
  padding: 15px 20px;
  border-radius: 6px;
}
.btn-link-brand:hover {
  background: #EFF2F9;
  color: var(--blue-dark);
}

.btn-accent {
  background: var(--orange);
  color: #fff;
  font-weight: 700;
  border-radius: 6px;
  padding: 14px 28px;
  border: none;
}
.btn-accent:hover {
  background: var(--orange-dark);
  color: #fff;
}

/* ===== Hero ===== */
.hero-section {
  padding-top: 40px;
}

.eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
}

.display-heading {
  font-size: 48px;
  line-height: 1.15;
  font-weight: 600;
  color: var(--navy);
}

@media (min-width: 992px) {
  .display-heading {
    font-size: 56px;
  }
}

.lead-text {
  font-size: 18px;
  line-height: 1.65;
  color: var(--text-body);
  max-width: 560px;
}

.hero-note {
  font-size: 13.5px;
  color: #6B7386;
}

.dot-indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  display: inline-block;
}

/* ===== Enquiry card ===== */
.enquiry-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 12px 32px rgba(20, 32, 62, 0.08);
  padding: 30px;
}

.enquiry-title {
  font-size: 22px;
  font-weight: 600;
  color: var(--navy);
}

.enquiry-subtitle {
  font-size: 13.5px;
  color: var(--text-muted);
  margin-top: 4px;
}

.enquiry-fineprint {
  font-size: 12.5px;
  color: var(--text-muted);
  text-align: center;
}

.form-label-brand {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text-label);
  margin-bottom: 6px;
  display: block;
}

.form-control-brand {
  border: 1px solid var(--input-border);
  border-radius: 6px;
  padding: 12px 14px;
  font-size: 14px;
  color: #3A4358;
}

.form-control-brand:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 0.2rem rgba(31, 68, 148, 0.15);
}

/* ===== Courses strip ===== */
.courses-strip {
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
  background: var(--cream-alt);
}

.courses-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-label);
}

.course-pill {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 99px;
  padding: 9px 20px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--navy);
}

.course-more {
  border-radius: 99px;
  padding: 9px 8px;
  font-size: 14px;
  color: var(--text-muted);
}

/* ===== Stats strip ===== */
.stats-strip {
  background: var(--navy);
  color: #fff;
}

.stat-number {
  font-size: 34px;
  font-weight: 600;
}

.stat-label {
  font-size: 14px;
  color: #A9B4CE;
  margin-top: 4px;
}

/* ===== Sections ===== */
.section-py {
  padding: 84px 0;
}

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

.section-heading {
  font-size: 38px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.2;
  max-width: 640px;
}

/* ===== Feature cards ===== */
.feature-card {
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 30px;
  background: #fff;
}

.feature-index {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  background: #EFF2F9;
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 18px;
}

.feature-title {
  font-size: 19px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.feature-text {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-body);
  margin: 0;
}

/* ===== How it works steps ===== */
.step-card {
  border-top: 3px solid var(--blue);
  padding-top: 22px;
}

.step-label {
  font-size: 17px;
  color: var(--blue);
  font-weight: 600;
  margin-bottom: 10px;
}

.step-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}

/* ===== Testimonials ===== */
.testimonial-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 28px;
}

.quote-mark {
  font-size: 30px;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 8px;
}

.testimonial-text {
  font-family: var(--font-serif);
  font-size: 17px;
  line-height: 1.6;
  color: var(--text-quote);
  margin: 8px 0 20px;
}

.avatar-badge {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 15px;
  flex-shrink: 0;
}

.testimonial-name {
  font-weight: 600;
  font-size: 14.5px;
  color: var(--navy);
}

.testimonial-role {
  font-size: 13px;
  color: var(--text-muted);
}

.text-brand-blue {
  color: var(--blue);
}

/* ===== FAQ accordion ===== */
.accordion-brand .accordion-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px !important;
  overflow: hidden;
  margin-bottom: 12px;
}

.accordion-brand .accordion-button {
  font-weight: 600;
  font-size: 16px;
  color: var(--navy);
  box-shadow: none;
}

.accordion-brand .accordion-button:not(.collapsed) {
  background: #fff;
  color: var(--navy);
}

.accordion-brand .accordion-button:focus {
  box-shadow: none;
}

.accordion-brand .accordion-body {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--text-body);
  padding-top: 0;
}

/* ===== Footer CTA ===== */
.footer-cta {
  background: var(--navy);
  padding-top: 72px;
}

.footer-cta-text h2 {
  font-size: 36px;
  font-weight: 600;
  line-height: 1.25;
}

.text-muted-light {
  color: #A9B4CE;
  font-size: 16px;
}

.border-bottom-light {
  border-bottom: 1px solid #2A3A63;
}

.footer-bottom {
  color: #7C89A8;
  font-size: 13.5px;
}

.footer-links a {
  color: #7C89A8;
  text-decoration: none;
}

.footer-links a:hover {
  color: #fff;
}

/* ===== Floating WhatsApp button ===== */
.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  z-index: 1050;
  animation: whatsapp-pulse 2.2s infinite;
  transition: transform 0.2s ease;
}

.whatsapp-float:hover {
  transform: scale(1.08);
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: #fff;
}

@keyframes whatsapp-pulse {
  0% {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25), 0 0 0 0 rgba(37, 211, 102, 0.55);
  }
  70% {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25), 0 0 0 14px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25), 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

@media (max-width: 576px) {
  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    width: 54px;
    height: 54px;
  }

  .whatsapp-float svg {
    width: 28px;
    height: 28px;
  }
}
