/* =========================================================
   BRIGHT ACADEMY MONTESSORI — MAIN STYLESHEET
   Palette derived as a placeholder (no logo/brand assets supplied yet).
   Swap the CSS variables below once real brand colors are provided.
   ========================================================= */

:root {
  /* ---- Brand palette (EDITABLE — replace with real brand colors) ---- */
  --ba-primary: #FF7A45;        /* warm coral-orange — energetic, friendly */
  --ba-primary-dark: #E85D2C;
  --ba-primary-light: #FFE8D6;
  --ba-secondary: #0B3D62;      /* deep navy — professional, trustworthy */
  --ba-secondary-light: #14507F;
  --ba-accent: #FFC93C;         /* warm yellow accent */
  --ba-cream: #FFFBF6;          /* section background */
  --ba-teal-tint: #EAF4F4;
  --ba-dark: #1F2937;
  --ba-gray: #5B6472;
  --ba-light-gray: #F4F6F8;
  --ba-white: #FFFFFF;
  --ba-border: #ECE3D9;

  --ba-radius: 16px;
  --ba-radius-sm: 10px;
  --ba-shadow: 0 10px 30px rgba(11, 61, 98, 0.08);
  --ba-shadow-lg: 0 20px 50px rgba(11, 61, 98, 0.14);
  --ba-transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);

  --ba-font-heading: 'Poppins', 'Segoe UI', sans-serif;
  --ba-font-body: 'Inter', 'Segoe UI', sans-serif;
}

/* ---------------- Base ---------------- */
html { scroll-behavior: smooth; }

body {
  font-family: var(--ba-font-body);
  color: var(--ba-dark);
  background-color: var(--ba-white);
  font-size: 1rem;
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--ba-font-heading);
  font-weight: 700;
  color: var(--ba-secondary);
  line-height: 1.25;
}

p { color: var(--ba-gray); }

a { text-decoration: none; transition: color var(--ba-transition); }

.section-pad { padding: 90px 0; }
@media (max-width: 767.98px) { .section-pad { padding: 60px 0; } }

.bg-cream { background-color: var(--ba-cream); }
.bg-teal-tint { background-color: var(--ba-teal-tint); }
.bg-navy { background-color: var(--ba-secondary); }

.eyebrow {
  display: inline-block;
  font-family: var(--ba-font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ba-primary);
  background: var(--ba-primary-light);
  padding: 6px 18px;
  border-radius: 30px;
  margin-bottom: 16px;
}

.section-title { font-size: clamp(1.7rem, 3vw, 2.6rem); margin-bottom: 14px; }
.section-subtitle { color: var(--ba-gray); max-width: 680px; margin: 0 auto; }
.section-heading-wrap { margin-bottom: 50px; }
.section-heading-wrap.text-center { text-align: center; }

/* ---------------- Buttons ---------------- */
.btn-ba-primary {
  background: var(--ba-primary);
  border: 2px solid var(--ba-primary);
  color: var(--ba-white);
  font-family: var(--ba-font-heading);
  font-weight: 600;
  padding: 13px 32px;
  border-radius: 50px;
  transition: all var(--ba-transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-ba-primary:hover, .btn-ba-primary:focus {
  background: var(--ba-primary-dark);
  border-color: var(--ba-primary-dark);
  color: var(--ba-white);
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(255, 122, 69, 0.35);
}

.btn-ba-outline {
  background: transparent;
  border: 2px solid var(--ba-secondary);
  color: var(--ba-secondary);
  font-family: var(--ba-font-heading);
  font-weight: 600;
  padding: 13px 32px;
  border-radius: 50px;
  transition: all var(--ba-transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-ba-outline:hover, .btn-ba-outline:focus {
  background: var(--ba-secondary);
  color: var(--ba-white);
  transform: translateY(-3px);
}

.btn-ba-white {
  background: var(--ba-white);
  border: 2px solid var(--ba-white);
  color: var(--ba-secondary);
  font-family: var(--ba-font-heading);
  font-weight: 600;
  padding: 13px 32px;
  border-radius: 50px;
  transition: all var(--ba-transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-ba-white:hover { transform: translateY(-3px); box-shadow: 0 12px 24px rgba(0,0,0,0.2); }

/* ---------------- Header / Nav ---------------- */
.ba-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1030;
  background: var(--ba-white);
  box-shadow: 0 2px 20px rgba(11,61,98,0.06);
  transition: all var(--ba-transition);
  padding: 10px 0;
  max-height: 100vh;
  overflow-y: auto;
}
.ba-header .navbar-brand img { height: 52px; transition: height var(--ba-transition); }
.ba-header.scrolled { padding: 4px 0; box-shadow: 0 4px 24px rgba(11,61,98,0.12); }
.ba-header.scrolled .navbar-brand img { height: 38px; }

.ba-nav .nav-link {
  font-family: var(--ba-font-heading);
  font-weight: 600;
  font-size: 14px;
  color: var(--ba-secondary);
  padding: 10px 16px !important;
  position: relative;
}
.ba-nav .nav-link::after {
  content: '';
  position: absolute;
  left: 16px; right: 16px; bottom: 4px;
  height: 2px;
  background: var(--ba-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--ba-transition);
}
.ba-nav .nav-link:hover::after,
.ba-nav .nav-link.active::after { transform: scaleX(1); }
.ba-nav .nav-link:hover, .ba-nav .nav-link.active { color: var(--ba-primary); }

.ba-header .btn-ba-primary { padding: 10px 26px; font-size: 0.92rem; }

/* ---------------- Hero ---------------- */
.hero-section {
  position: relative;
  padding: 160px 0 100px;
  background: linear-gradient(160deg, var(--ba-primary-light) 0%, var(--ba-cream) 55%, var(--ba-teal-tint) 100%);
  overflow: hidden;
}
.hero-section .blob {
  position: absolute;
  border-radius: 50%;
  opacity: 0.35;
  filter: blur(10px);
  z-index: 0;
}
.hero-section .blob-1 { width: 340px; height: 340px; background: var(--ba-accent); top: -80px; right: -80px; }
.hero-section .blob-2 { width: 260px; height: 260px; background: var(--ba-primary); bottom: -60px; left: -60px; opacity: 0.18; }

.hero-content { position: relative; z-index: 1; }
.hero-badge-row { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 22px; }
.hero-pill {
  background: var(--ba-white);
  border: 1px solid var(--ba-border);
  border-radius: 30px;
  padding: 7px 16px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ba-secondary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: var(--ba-shadow);
}
.hero-pill .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--ba-primary); display: inline-block; }

.hero-title { font-size: clamp(2.1rem, 4.2vw, 3.4rem); margin-bottom: 20px; }
.hero-title .highlight { color: var(--ba-primary); position: relative; }
.hero-lead { font-size: 1.1rem; color: var(--ba-gray); margin-bottom: 30px; max-width: 560px; }
.hero-cta-row { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 34px; }

.hero-image-wrap { position: relative; z-index: 1; }
.hero-image-wrap img {
  border-radius: 28px;
  box-shadow: var(--ba-shadow-lg);
  width: 100%;
}
.hero-floating-card {
  position: absolute;
  bottom: 24px; left: -30px;
  background: var(--ba-white);
  border-radius: var(--ba-radius);
  box-shadow: var(--ba-shadow-lg);
  padding: 16px 22px;
  display: flex;
  align-items: center;
  gap: 12px;
}
@media (max-width: 991.98px) { .hero-floating-card { left: 10px; } }
.hero-floating-card .icon-circle {
  width: 46px; height: 46px;
  background: var(--ba-primary-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--ba-primary);
  flex-shrink: 0;
}
.hero-floating-card strong { display: block; color: var(--ba-secondary); font-family: var(--ba-font-heading); }

/* ---------------- About ---------------- */
.about-photo-wrap { position: relative; }
.about-photo-wrap img { border-radius: var(--ba-radius); box-shadow: var(--ba-shadow); width: 100%; }
.about-accent-box {
  position: absolute; bottom: -26px; right: -26px;
  background: var(--ba-secondary);
  color: var(--ba-white);
  border-radius: var(--ba-radius);
  padding: 22px 26px;
  box-shadow: var(--ba-shadow-lg);
  max-width: 220px;
}
@media (max-width: 767.98px) { .about-accent-box { position: static; margin-top: 20px; max-width: 100%; } }

.about-points { list-style: none; padding: 0; margin: 26px 0; }
.about-points li {
  display: flex; align-items: flex-start; gap: 12px;
  margin-bottom: 14px; color: var(--ba-dark);
}
.about-points li .chk {
  width: 26px; height: 26px; flex-shrink: 0;
  background: var(--ba-primary-light);
  color: var(--ba-primary);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem;
}

/* ---------------- Program / Course Cards ---------------- */
.program-card {
  background: var(--ba-white);
  border-radius: var(--ba-radius);
  overflow: hidden;
  box-shadow: var(--ba-shadow);
  transition: transform var(--ba-transition), box-shadow var(--ba-transition);
  height: 100%;
  border: 1px solid var(--ba-border);
}
.program-card:hover { transform: translateY(-8px); box-shadow: var(--ba-shadow-lg); }
.program-card .program-img { position: relative; overflow: hidden; }
.program-card .program-img img { width: 100%; height: 230px; object-fit: cover; transition: transform 0.5s ease; }
.program-card:hover .program-img img { transform: scale(1.06); }
.program-card .program-tag {
  position: absolute; top: 16px; left: 16px;
  background: var(--ba-white);
  color: var(--ba-primary);
  font-family: var(--ba-font-heading);
  font-weight: 600;
  font-size: 0.78rem;
  padding: 6px 14px;
  border-radius: 30px;
}
.program-card .program-body { padding: 26px; }
.program-card h3 { font-size: 1.3rem; margin-bottom: 10px; }
.program-meta { display: flex; flex-wrap: wrap; gap: 10px; margin: 14px 0; }
.program-meta span {
  background: var(--ba-light-gray);
  border-radius: 8px;
  padding: 6px 12px;
  font-size: 0.82rem;
  color: var(--ba-secondary);
  font-weight: 600;
}
.program-card .program-list { list-style: none; padding: 0; margin: 14px 0 0; }
.program-card .program-list li {
  padding-left: 24px; position: relative; margin-bottom: 8px;
  font-size: 0.94rem; color: var(--ba-gray);
}
.program-card .program-list li::before {
  content: '\2713';
  position: absolute; left: 0; top: 0;
  color: var(--ba-primary); font-weight: 700;
}

/* ---------------- Methodology ---------------- */
.method-list { list-style: none; padding: 0; margin: 0; }
.method-list li {
  display: flex; gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid var(--ba-border);
}
.method-list li:last-child { border-bottom: none; }
.method-num {
  font-family: var(--ba-font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--ba-primary);
  background: var(--ba-primary-light);
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.method-list h4 { font-size: 1.05rem; margin-bottom: 4px; }
.method-list p { margin: 0; font-size: 0.94rem; }

/* ---------------- Outcomes / Opportunities ---------------- */
.outcome-card {
  background: var(--ba-white);
  border-radius: var(--ba-radius);
  padding: 30px 26px;
  height: 100%;
  box-shadow: var(--ba-shadow);
  border-top: 4px solid var(--ba-primary);
  transition: transform var(--ba-transition);
}
.outcome-card:hover { transform: translateY(-6px); }
.outcome-card .icon-circle {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: var(--ba-primary-light);
  color: var(--ba-primary);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.outcome-card h4 { font-size: 1.05rem; margin-bottom: 8px; }
.outcome-card p { font-size: 0.92rem; margin: 0; }

.outcome-card.alt { border-top-color: var(--ba-secondary); }
.outcome-card.alt .icon-circle { background: var(--ba-teal-tint); color: var(--ba-secondary); }

/* ---------------- Certification ---------------- */
.cert-card {
  background: var(--ba-white);
  border-radius: var(--ba-radius);
  overflow: hidden;
  box-shadow: var(--ba-shadow);
  border: 1px solid var(--ba-border);
  cursor: pointer;
  padding: 15px;
  text-align: center;
}
.cert-card img { 
  width: 150px;
  /*width: 100%;*/
  /*display: block; */
  transition: transform 0.4s ease; 
}
.cert-card:hover img { transform: scale(1.03); }
.cert-card .cert-label {
  padding: 16px 20px;
  margin-top: 10px;
  font-family: var(--ba-font-heading);
  font-weight: 600;
  color: var(--ba-secondary);
  border-top: 1px solid var(--ba-border);
}
.cert-note {
  border: 1px solid #ff7a45;
  background-color: #ffe8d6;
  /*background: var(--ba-teal-tint);
  border-radius: var(--ba-radius-sm);*/
  color: #29303b;
  font-size: 16px;
  padding: 32px;
  border-radius: 15px;
  box-shadow: 0px 20px 50px rgba(0, 0, 0, 0.05);
}

/* ---------------- Why Consider ---------------- */
.why-card {
  display: flex; gap: 16px;
  background: var(--ba-white);
  border-radius: var(--ba-radius);
  padding: 24px;
  height: 100%;
  box-shadow: var(--ba-shadow);
}
.why-card .icon-circle {
  width: 50px; height: 50px; flex-shrink: 0;
  border-radius: 50%;
  background: var(--ba-accent);
  color: var(--ba-secondary);
  display: flex; align-items: center; justify-content: center;
}
.why-card h4 { font-size: 1rem; margin-bottom: 6px; }
.why-card p { font-size: 0.9rem; margin: 0; }

/* ---------------- Gallery ---------------- */
.gallery-item {
  position: relative;
  border-radius: var(--ba-radius-sm);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 1 / 1;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery-item .gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(11,61,98,0.75), rgba(11,61,98,0));
  display: flex; align-items: flex-end; padding: 16px;
  opacity: 0; transition: opacity var(--ba-transition);
}
.gallery-item:hover img { transform: scale(1.1); }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span { color: var(--ba-white); font-weight: 600; font-family: var(--ba-font-heading); font-size: 0.9rem; }

/* Lightbox */
.ba-lightbox {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(0,0,0,0.50);
  /*background: rgba(11,61,98,0.92);*/
  display: none;
  align-items: center; justify-content: center;
  padding: 30px;
}
.ba-lightbox.active { display: flex; }
.ba-lightbox img { max-width: 90vw; max-height: 82vh; border-radius: 10px; box-shadow: 0 20px 60px rgba(0,0,0,0.5); }
.ba-lightbox-close, .ba-lightbox-prev, .ba-lightbox-next {
  position: absolute;
  background: rgba(255,255,255,0.15);
  color: var(--ba-white);
  border: none;
  width: 46px; height: 46px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  cursor: pointer;
  transition: background var(--ba-transition);
}
.ba-lightbox-close:hover, .ba-lightbox-prev:hover, .ba-lightbox-next:hover { background: rgba(255,255,255,0.3); }
.ba-lightbox-close { top: 24px; right: 24px; }
.ba-lightbox-prev { left: 24px; top: 50%; transform: translateY(-50%); }
.ba-lightbox-next { right: 24px; top: 50%; transform: translateY(-50%); }
@media (max-width: 575.98px) {
  .ba-lightbox-prev { left: 8px; } .ba-lightbox-next { right: 8px; }
}

/* ---------------- Location / Map ---------------- */
.map-wrap { border-radius: var(--ba-radius); overflow: hidden; box-shadow: var(--ba-shadow); }
.map-wrap iframe { width: 100%; height: 420px; border: 0; display: block; }
.location-card {
  background: var(--ba-white);
  border-radius: var(--ba-radius);
  padding: 28px;
  box-shadow: var(--ba-shadow);
}
.location-card .loc-row { display: flex; gap: 14px; margin-bottom: 18px; }
.location-card .icon-circle {
  width: 42px; height: 42px; flex-shrink: 0;
  border-radius: 50%;
  background: var(--ba-primary-light);
  color: var(--ba-primary);
  display: flex; align-items: center; justify-content: center;
}

/* ---------------- Enquiry CTA Band ---------------- */
.enquiry-cta-band {
  background: var(--ba-secondary);
  border-radius: var(--ba-radius);
  padding: 50px;
  position: relative;
  overflow: hidden;
  color: var(--ba-white);
}
.enquiry-cta-band::before {
  content: '';
  position: absolute; top: -60px; right: -60px;
  width: 220px; height: 220px; border-radius: 50%;
  background: rgba(255,122,69,0.25);
}
.enquiry-cta-band h2 { color: var(--ba-white); }
.enquiry-cta-band p { color: rgba(255,255,255,0.8); }
@media (max-width: 767.98px) { .enquiry-cta-band { padding: 34px 24px; text-align: center; } }

/* ---------------- Contact Section ---------------- */
.contact-form-card {
  background: var(--ba-white);
  border-radius: var(--ba-radius);
  padding: 34px;
  box-shadow: var(--ba-shadow-lg);
}
.contact-info-item { display: flex; gap: 16px; margin-bottom: 22px; }
.contact-info-item .icon-circle {
  width: 46px; height: 46px; flex-shrink: 0;
  border-radius: 50%;
  background: var(--ba-teal-tint);
  color: var(--ba-secondary);
  display: flex; align-items: center; justify-content: center;
}
.contact-info-item h5 { font-size: 1rem; margin-bottom: 2px; }
.contact-info-item p { margin: 0; font-size: 16px; }

.form-control, .form-select {
  border-radius: 10px;
  border: 1px solid var(--ba-border);
  padding: 12px 16px;
  font-size: 0.95rem;
}
.form-control:focus, .form-select:focus {
  border-color: var(--ba-primary);
  box-shadow: 0 0 0 3px rgba(255,122,69,0.15);
}
.form-label { font-weight: 600; color: var(--ba-secondary); font-size: 0.9rem; margin-bottom: 6px; }
.invalid-feedback { font-size: 0.82rem; }

/* ---------------- Enquiry Modal ---------------- */
.ba-modal .modal-content { border-radius: var(--ba-radius); border: none; overflow: hidden; }
.ba-modal .modal-header {
  background: linear-gradient(135deg, var(--ba-primary), var(--ba-primary-dark));
  color: var(--ba-white);
  border: none;
  padding: 24px 28px;
}
.ba-modal .modal-header .btn-close { filter: invert(1); }
.ba-modal .modal-body { padding: 28px; }
.ba-modal .modal-title { font-family: var(--ba-font-heading); color: #ffffff;}

/* ---------------- Floating Quick Contact (LEFT side) ---------------- */
.floating-contact {
  position: fixed;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1040;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.floating-contact a {
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--ba-white);
  box-shadow: var(--ba-shadow);
  transition: transform var(--ba-transition);
}
.floating-contact a:hover { transform: scale(1.12); }
.floating-contact .fc-whatsapp { background: #25D366; }
.floating-contact .fc-download { background: #0b3d62; }
.floating-contact .fc-call { background: var(--ba-primary); }
.floating-contact .fc-social { background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); }
@media (max-width: 767.98px) {
  .floating-contact {
    left: 10px;
    top: auto;
    bottom: 16px;
    transform: none;
    gap: 10px;
  }
  .floating-contact a { width: 42px; height: 42px; }
}

/* ---------------- Footer ---------------- */
.ba-footer { background: var(--ba-secondary); color: rgba(255,255,255,0.75); padding: 70px 0 0; }
.ba-footer h5 { color: var(--ba-white); font-size: 1.05rem; margin-bottom: 20px; }
.ba-footer a { color: rgba(255,255,255,0.75); }
.ba-footer a:hover { color: var(--ba-accent); }
.ba-footer ul { list-style: none; padding: 0; margin: 0; }
.ba-footer ul li { margin-bottom: 10px; }
.ba-footer .footer-logo { margin-bottom: 18px; }
/*.ba-footer .footer-logo img { height: 44px; }*/
.ba-footer .footer-logo img {
    /* height: 44px; */
    background: #ffffff;
    padding: 10px;
    width: 220px;
    border-radius: 10px;
}
.ba-footer p.small-note { font-size: 0.85rem; }
.ba-footer .social-icons { display: flex; gap: 10px; margin-top: 18px; }
.ba-footer .social-icons a {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
}
.ba-footer .social-icons a:hover { background: var(--ba-primary); color: var(--ba-white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  margin-top: 40px;
  padding: 22px 0;
  font-size: 0.85rem;
}
.footer-bottom a { margin-left: 4px; }

/* ---------------- Scroll reveal ---------------- */
/* Progressive enhancement: content is visible by default so it never
   depends on JavaScript running (no-JS users, slow connections, search
   engine crawlers). JS adds "reveal-init" right before it starts
   observing an element, which is the only thing that hides it — so a
   page where script.js fails to load simply shows everything, instead
   of leaving sections blank. */
.reveal-up { opacity: 1; transform: none; transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-up.reveal-init { opacity: 0; transform: translateY(30px); }
.reveal-up.reveal-init.in-view { opacity: 1; transform: translateY(0); }

/* ---------------- Simple pages (contact/privacy/terms) ---------------- */
.page-hero {
  background: linear-gradient(160deg, var(--ba-primary-light) 0%, var(--ba-cream) 100%);
  padding: 150px 0 60px;
  text-align: center;
}
.legal-content { padding: 60px 0; }
.legal-content h2 { margin-top: 34px; font-size: 1.4rem; }
.legal-content p, .legal-content li { color: var(--ba-gray); }
.back-home-link { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; color: var(--ba-primary); margin-bottom: 20px; }

/* ---------------- Outcomes highlight card (navy, arrow-list) ---------------- */
.outcomes-highlight {
  background: var(--ba-secondary);
  border-radius: var(--ba-radius);
  padding: 50px;
  position: relative;
  overflow: hidden;
  color: var(--ba-white);
}
.outcomes-highlight::before {
  content: '';
  position: absolute; top: -50px; right: -50px;
  width: 220px; height: 220px; border-radius: 50%;
  border: 40px solid rgba(255,255,255,0.06);
}
.outcomes-highlight h2, .outcomes-highlight h3 { color: var(--ba-white); }
.outcomes-highlight .eyebrow { background: rgba(255,201,60,0.15); color: var(--ba-accent); }
.outcomes-highlight p { color: rgba(255,255,255,0.75); }
.outcomes-highlight .outcomes-list { list-style: none; padding: 0; margin: 0; position: relative; z-index: 1; }
.outcomes-highlight .outcomes-list li {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  color: var(--ba-white);
  font-weight: 500;
}
.outcomes-highlight .outcomes-list li:last-child { border-bottom: none; }
.outcomes-highlight .outcomes-list .arrow-dot {
  width: 30px; height: 30px; flex-shrink: 0;
  border-radius: 50%;
  background: rgba(255,201,60,0.18);
  color: var(--ba-accent);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
}
@media (max-width: 767.98px) { .outcomes-highlight { padding: 34px 24px; } }

/* ---------------- Font Awesome icon sizing (replaces inline SVGs) ---------------- */
.icon-circle i { font-size: 1.2rem; line-height: 1; }
.hero-floating-card .icon-circle i { font-size: 1.35rem; }
.location-card .icon-circle i,
.contact-info-item .icon-circle i { font-size: 1.05rem; }
.why-card .icon-circle i { font-size: 1.1rem; }
.outcome-card .icon-circle i { font-size: 1.4rem; }
.social-icons a i,
.floating-contact a i { font-size: 1.15rem; }
.btn-ba-outline i,
.btn-ba-primary i,
.btn-ba-white i { font-size: 0.95rem; }
.program-meta i { margin-right: 4px; }

/* ---------------- Thank You page ---------------- */
.thank-you-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 0 60px;
  background: linear-gradient(160deg, var(--ba-primary-light) 0%, var(--ba-cream) 55%, var(--ba-teal-tint) 100%);
}
.thank-you-card {
  max-width: 620px;
  margin: 0 auto;
  background: var(--ba-white);
  border-radius: var(--ba-radius);
  box-shadow: var(--ba-shadow-lg);
  padding: 56px 40px;
}
.thank-you-icon {
  width: 84px; height: 84px;
  margin: 0 auto 22px;
  border-radius: 50%;
  background: #E8F8EE;
  color: #1FA971;
  display: flex; align-items: center; justify-content: center;
  font-size: 2.2rem;
}
.thank-you-contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 24px;
}
.thank-you-contact a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 30px;
  background: var(--ba-light-gray);
  color: var(--ba-secondary);
  font-weight: 600;
  font-size: 0.92rem;
}
.thank-you-contact a:hover { background: var(--ba-primary-light); color: var(--ba-primary); }
@media (max-width: 575.98px) { .thank-you-card { padding: 40px 22px; } }

/* ---------------- Misc ---------------- */
.editable-note {
  font-size: 0.72rem;
  color: #b45309;
  background: #fffbea;
  border: 1px dashed #f5c451;
  padding: 3px 8px;
  border-radius: 6px;
  display: inline-block;
  margin-top: 6px;
}

.cus-footer-par{
  color: #ffffffbf;
  /*color: #fff3e4;*/
}
