/* ═══════════════════════════════════════════════════
   NEW HORIZONS CENTRE FOR AUTISM — SHARED STYLESHEET
   ═══════════════════════════════════════════════════ */

/* ─── CSS Custom Properties ─── */
:root {
   --navy-900: #0F1D36;
   --navy-800: #1B2A4A;
   --navy-700: #263B5E;
   --navy-100: #E8ECF4;
   --yellow-500: #F5C518;
   --yellow-400: #FFD84D;
   --yellow-100: #FFF8E1;
   --warm-white: #FAFBFD;
   --off-white: #F4F5F9;
   --text-primary: #1A1A2E;
   --text-secondary: #5A6178;
   --text-light: #8E95A9;
   --success: #2D8A4E;
   --border: #E2E5ED;
}

/* ─── Reset / Base ─── */
html {
   scroll-behavior: smooth;
   overflow-x: hidden;
}

*,
*::before,
*::after {
   box-sizing: border-box;
}

body {
   font-family: 'DM Sans', sans-serif;
   color: var(--text-primary);
   background: var(--warm-white);
   overflow-x: hidden;
}

h1 {
   font-family: 'Outfit', sans-serif;
   font-weight: 800;
   letter-spacing: -0.03em;
   line-height: 1.08;
}

h2 {
   font-family: 'Outfit', sans-serif;
   font-weight: 700;
   letter-spacing: -0.02em;
   line-height: 1.12;
}

h3 {
   font-family: 'Outfit', sans-serif;
   font-weight: 600;
}

img {
   max-width: 100%;
}

/* ─── Skip Link ─── */
.skip-link {
   position: absolute;
   top: -100px;
   left: 0;
   background: var(--yellow-500);
   color: var(--navy-900);
   padding: 0.5rem 1rem;
   z-index: 9999;
   font-weight: 600;
   transition: top 0.2s;
}

.skip-link:focus {
   top: 0;
}

/* ─── Overline ─── */
.overline {
   font-family: 'DM Mono', monospace;
   font-size: 0.75rem;
   text-transform: uppercase;
   letter-spacing: 0.1em;
   color: var(--yellow-500);
   font-weight: 500;
   display: block;
   margin-bottom: 0.75rem;
}

/* ─── Section Padding ─── */
.section-pad {
   padding: 100px 0;
}

.section-pad-sm {
   padding: 100px 0;
}

.section-pad-lg {
   padding: 120px 0;
}

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



   .section-pad-sm {
      padding: 40px 0;
   }

   .section-pad-lg {
      padding: 70px 0;
   }
}

/* ─── Buttons ─── */
.btn {
   border-radius: 50px;
   padding: 14px 32px;
   font-family: 'DM Sans', sans-serif;
   font-weight: 600;
   font-size: 0.95rem;
   transition: all 0.3s ease;
   text-decoration: none;
   display: inline-flex;
   align-items: center;
   gap: 0.4rem;
   cursor: pointer;
}

.btn-primary-yellow {
   background: var(--yellow-500);
   color: var(--navy-800);
   border: 2px solid var(--yellow-500);
}

.btn-primary-yellow:hover {
   background: var(--yellow-400);
   border-color: var(--yellow-400);
   color: var(--navy-900);
   transform: scale(1.03);
   box-shadow: 0 0 20px rgba(245, 197, 24, 0.35);
}

.btn-outline-navy {
   background: transparent;
   color: var(--navy-800);
   border: 2px solid var(--navy-800);
}

.btn-outline-navy:hover {
   background: var(--navy-800);
   color: #fff;
}

.btn-navy-solid {
   background: var(--navy-800);
   color: #fff;
   border: 2px solid var(--navy-800);
}

.btn-navy-solid:hover {
   background: var(--navy-700);
   border-color: var(--navy-700);
   color: #fff;
}

.btn-outline-navy-on-yellow {
   background: transparent;
   color: var(--navy-800);
   border: 2px solid var(--navy-800);
}

.btn-outline-navy-on-yellow:hover {
   background: var(--navy-800);
   color: #fff;
}

.btn-sm-nav {
   padding: 8px 20px;
   font-size: 0.875rem;
}

.btn-white-outline {
   background: transparent;
   color: #fff;
   border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-white-outline:hover {
   background: rgba(255, 255, 255, 0.1);
   color: #fff;
   border-color: rgba(255, 255, 255, 0.8);
}

/* ─── Utilities ─── */
.text-yellow {
   color: var(--yellow-500) !important;
}

.text-navy {
   color: var(--navy-900) !important;
}

.img-rounded {
   border-radius: 20px;
   object-fit: cover;
}

.section-header {
   max-width: 640px;
   margin: 0 auto 1.875rem;
   text-align: center;
}

.page-cta .section-header {
   max-width: 730px;
}

.content-section .section-header {
   max-width: 640px;
   margin: 0 auto 1.875rem 0;
   text-align: center;
}

.abbt .section-header {
   max-width: 640px;
   margin: 0 auto 1.875rem 0;
   text-align: center;
}

.content-section.cur .section-header {
   max-width: 470px;
   margin: 0 auto 1.875rem auto;
   text-align: center;
}

.contact-section .section-header {
   max-width: 640px;
   margin: 0 auto 1.875rem 0;
   text-align: center;
}

.highlight-card .section-header {
   max-width: 640px;
   margin: 0 auto 1.875rem 0;
   text-align: center;
}

.section-header h2 {
   margin-bottom: 1rem;
   color: var(--navy-900);
}

.section-header p {
   color: var(--text-secondary);
   font-size: 0.98rem;
   line-height: 1.7;
}

/* ═══════════════════════════════════════
   TICKER BAR
═══════════════════════════════════════ */
#ticker-bar {
   background: var(--navy-900);
   height: 40px;
   overflow: hidden;
   display: flex;
   align-items: center;
   position: relative;
   z-index: 1060;
}

.ticker-inner {
   display: flex;
   white-space: nowrap;
   animation: ticker-scroll 35s linear infinite;
   will-change: transform;
}

.ticker-item {
   font-family: 'DM Mono', monospace;
   font-size: 0.8rem;
   color: rgba(255, 255, 255, 0.85);
   padding: 0 2rem;
   flex-shrink: 0;
}

.ticker-item .ticker-phone {
   color: var(--yellow-500);
   font-weight: 500;
}

@keyframes ticker-scroll {
   0% {
      transform: translateX(0);
   }

   100% {
      transform: translateX(-50%);
   }
}

/* ═══════════════════════════════════════
   NAVBAR
═══════════════════════════════════════ */
#main-nav {
   background: #fff;
   z-index: 1050;
   transition: box-shadow 0.3s, backdrop-filter 0.3s;
   border-bottom: 1px solid var(--border);
   padding: 0;
}

#main-nav.scrolled {
   backdrop-filter: blur(12px);
   -webkit-backdrop-filter: blur(12px);
   background: rgba(255, 255, 255, 0.92);
   box-shadow: 0 2px 20px rgba(15, 29, 54, 0.10);
   border-bottom-color: transparent;
}

.nav-logo-text {
   font-family: 'Outfit', sans-serif;
   font-weight: 700;
   font-size: 1.25rem;
   color: var(--navy-900);
   text-decoration: none;
   line-height: 1.2;
   display: inline-block;
}

.nav-logo-text .dot {
   color: var(--yellow-500);
}

.nav-logo-sub {
   font-family: 'DM Sans', sans-serif;
   font-size: 0.72rem;
   color: var(--text-secondary);
   font-weight: 500;
   letter-spacing: 0.02em;
   display: block;
}

.nav-logo-img img {
   height: 80px;
   width: auto;
   display: block;
}

#main-nav .nav-link {
   font-family: 'DM Sans', sans-serif;
   font-weight: 500;
   font-size: 0.9rem;
   color: var(--text-primary);
   padding: 0.5rem 0.75rem;
   transition: color 0.2s;
}

#main-nav .nav-link:hover,
#main-nav .nav-link.active {
   color: var(--navy-800);
}

#main-nav .dropdown-menu {
   border: 1px solid var(--border);
   border-radius: 16px;
   box-shadow: 0 8px 32px rgba(15, 29, 54, 0.12);
   padding: 0.5rem;
   margin-top: 0.5rem;
}

#main-nav .dropdown-item {
   font-family: 'DM Sans', sans-serif;
   font-size: 0.9rem;
   border-radius: 8px;
   padding: 0.5rem 1rem;
   color: var(--text-primary);
}

#main-nav .dropdown-item:hover,
#main-nav .dropdown-item.active {
   background: var(--yellow-100);
   color: var(--navy-800);
}

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
#footer {
   background: var(--navy-900);
   color: #fff;
   padding: 80px 0 30px;
}

.footer-logo-text {
   font-family: 'Outfit', sans-serif;
   font-weight: 700;
   font-size: 1.4rem;
   color: #fff;
}

.footer-logo-text .dot {
   color: var(--yellow-500);
}

.footer-logo-sub {
   font-family: 'DM Sans', sans-serif;
   font-size: 0.72rem;
   color: rgba(255, 255, 255, 0.55);
   letter-spacing: 0.04em;
   display: block;
}

.footer-logo-img {
   display: block;
   margin-bottom: 1rem;
   width: 120px;
   height: auto;
}

.footer-about-para {
   font-size: 0.88rem;
   color: rgba(255, 255, 255, 0.6);
   line-height: 1.7;
   margin-top: 1rem;
   margin-bottom: 1.25rem;
   max-width: 300px;
}

.footer-social-icons a {
   color: rgba(255, 255, 255, 0.6);
   font-size: 1.2rem;
   margin-right: 0.75rem;
   transition: color 0.2s;
   text-decoration: none;
}

.footer-social-icons a:hover {
   color: var(--yellow-500);
}

.footer-heading {
   font-family: 'DM Sans', sans-serif;
   font-weight: 600;
   font-size: 0.8rem;
   text-transform: uppercase;
   letter-spacing: 0.08em;
   color: rgba(255, 255, 255, 0.4);
   margin-bottom: 1.25rem;
}

.footer-link {
   display: block;
   font-size: 0.92rem;
   color: rgba(255, 255, 255, 0.75);
   text-decoration: none;
   margin-bottom: 0.6rem;
   transition: color 0.2s;
}

.footer-link:hover {
   color: var(--yellow-400);
}

.footer-contact-item {
   display: flex;
   align-items: flex-start;
   gap: 0.6rem;
   font-size: 0.88rem;
   color: rgba(255, 255, 255, 0.65);
   margin-bottom: 0.75rem;
   line-height: 1.55;
}

.footer-contact-item .bi {
   color: var(--yellow-500);
   font-size: 0.95rem;
   flex-shrink: 0;
   margin-top: 2px;
}

.footer-contact-item a {
   color: rgba(255, 255, 255, 0.65);
   text-decoration: none;
}

.footer-contact-item a:hover {
   color: var(--yellow-400);
}

.footer-divider {
   border-color: var(--yellow-500);
   opacity: 0.4;
   margin: 2.5rem 0 1.5rem;
}

.footer-bottom {
   font-size: 0.82rem;
   color: rgba(255, 255, 255, 0.4);
}

.footer-bottom a {
   color: rgba(255, 255, 255, 0.5);
   text-decoration: none;
   margin-left: 0.25rem;
}

.footer-bottom a:hover {
   color: var(--yellow-400);
}

/* ═══════════════════════════════════════
   SCROLL ANIMATIONS
═══════════════════════════════════════ */
.animate-fade-up {
   opacity: 0;
   transform: translateY(30px);
   transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.animate-fade-up.visible {
   opacity: 1;
   transform: translateY(0);
}

.stagger-1 {
   transition-delay: 0.05s;
}

.stagger-2 {
   transition-delay: 0.15s;
}

.stagger-3 {
   transition-delay: 0.25s;
}

.stagger-4 {
   transition-delay: 0.35s;
}

.stagger-5 {
   transition-delay: 0.45s;
}

.stagger-6 {
   transition-delay: 0.55s;
}

@media (prefers-reduced-motion: reduce) {
   .animate-fade-up {
      opacity: 1;
      transform: none;
      transition: none;
   }

   .ticker-inner {
      animation: none;
   }

   * {
      transition-duration: 0.001ms !important;
      animation-duration: 0.001ms !important;
   }
}

/* ═══════════════════════════════════════
   PAGE HERO (general inner pages)
═══════════════════════════════════════ */
.page-hero {
   background: var(--navy-800);
   padding: 90px 0 80px;
   position: relative;
   overflow: hidden;
}

.page-hero::after {
   content: '';
   position: absolute;
   left: 0;
   top: 0;
   bottom: 0;
   width: 5px;
   background: var(--yellow-500);
}

.page-hero h1 {
   color: #fff;
   font-size: clamp(2rem, 5vw, 3rem);
   margin-bottom: 1.25rem;
}

.page-hero .overline {
   color: var(--yellow-400);
}

.page-hero .lead {
   color: rgba(255, 255, 255, 0.85);
   font-size: 1.1rem;
   line-height: 1.75;
   max-width: 650px;
   margin-bottom: 0;
   margin: 0 auto;
}

/* Hero text class aliases (inner pages use .hero-* variant class names) */
.page-hero .hero-h1 {
   color: #fff;
   font-size: clamp(2rem, 5vw, 3rem);
   font-family: 'Outfit', sans-serif;
   font-weight: 800;
   margin-bottom: 1.25rem;
   line-height: 1.08;
   letter-spacing: -0.03em;
}

.page-hero .hero-lead {
   color: rgba(255, 255, 255, 0.85);
   font-size: 1.1rem;
   line-height: 1.75;
   max-width: 640px;
   margin: 0 auto;
}

.page-hero .hero-overline {
   color: var(--yellow-400);
   font-family: 'DM Mono', monospace;
   font-size: 0.75rem;
   text-transform: uppercase;
   letter-spacing: 0.1em;
   font-weight: 500;
   display: block;
   margin-bottom: 0.75rem;
}

@media (max-width: 767px) {
   .page-hero {
      padding: 60px 0;
   }
}

/* ═══════════════════════════════════════
   SERVICE / CONTENT SECTIONS
═══════════════════════════════════════ */
.content-section {
   padding: 80px 0;
}

.content-section.bg-alt {
   background: var(--off-white);
}

.content-section h2 {
   color: var(--navy-900);
   font-size: clamp(1.5rem, 3vw, 2.5rem);
   margin-bottom: 1rem;
   text-align: start;
}

.content-section p {
   color: var(--text-secondary);
   line-height: 1.8;
   font-size: 0.98rem;
}

@media (max-width: 767px) {
   .content-section {
      padding: 55px 0;
   }
}

/* ─── Check list ─── */
.check-list {
   list-style: none;
   padding: 0;
   margin: 0;
}

.check-list li {
   display: flex;
   align-items: flex-start;
   gap: 0.75rem;
   padding: 0.7rem 0;
   border-bottom: 1px solid var(--border);
   font-size: 0.95rem;
   color: var(--text-primary);
   line-height: 1.55;
}

.check-list li:last-child {
   border-bottom: none;
}

.check-list .bi {
   color: var(--success);
   font-size: 1.05rem;
   flex-shrink: 0;
   margin-top: 2px;
}

/* ─── Skills boxed columns ─── */
.skills-box {
   background: var(--off-white);
   border-radius: 20px;
   padding: 2rem 2.5rem;
   height: 100%;
   border-top: 4px solid var(--yellow-500);
}

.skills-box-title {
   font-family: 'Outfit', sans-serif;
   font-weight: 700;
   font-size: 0.8rem;
   color: var(--navy-700);
   text-transform: uppercase;
   letter-spacing: 0.1em;
   margin-bottom: 1.25rem;
   display: block;
   text-align: start;
}

/* ─── Section image wrapper (constrains image to match content height) ─── */
.section-img-wrap {
   border-radius: 20px;
   overflow: hidden;
   height: 100%;
   min-height: 380px;
}

.section-img-wrap img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   display: block;
   border-radius: 0 !important;
   box-shadow: none !important;
}

@media (max-width: 991px) {
   .section-img-wrap {
      min-height: 260px;
   }
}

/* ─── Who pills ─── */
.who-pills {
   display: flex;
   flex-wrap: wrap;
   gap: 0.5rem;
   margin-top: 1.25rem;
}

.who-pill {
   background: var(--navy-100);
   color: var(--navy-800);
   font-size: 0.85rem;
   font-weight: 600;
   padding: 0.45rem 1rem;
   border-radius: 50px;
}

/* ─── Highlight card ─── */
.highlight-card {
   background: var(--yellow-100);
   border-left: 4px solid var(--yellow-500);
   border-radius: 0 12px 12px 0;
   padding: 1.5rem 2rem;
   margin: 0rem 0;
}

.highlight-card p {
   color: var(--navy-800);
   font-size: 1rem;
   margin: 0;
   font-weight: 500;
   line-height: 1.65;
}

/* ─── Info box ─── */
.info-box {
   background: var(--navy-100);
   border-radius: 16px;
   padding: 2rem;
}

.info-box h4 {
   font-family: 'Outfit', sans-serif;
   font-weight: 600;
   color: var(--navy-900);
   margin-bottom: 1rem;
}

.info-box ul {
   list-style: none;
   padding: 0;
   margin: 0;
}

.info-box ul li {
   display: flex;
   align-items: center;
   gap: 0.5rem;
   font-size: 0.92rem;
   color: var(--text-secondary);
   padding: 0.35rem 0;
}

.info-box ul li::before {
   content: '';
   width: 6px;
   height: 6px;
   border-radius: 50%;
   background: var(--yellow-500);
   flex-shrink: 0;
}

/* ═══════════════════════════════════════
   FAQ ACCORDION
═══════════════════════════════════════ */
.faq-section {
   background: var(--off-white);
   padding: 80px 0;
}

.faq-section h2 {
   color: var(--navy-900);
   margin-bottom: 2.5rem;
}

.accordion-item {
   background: #fff;
   border: 1px solid var(--border) !important;
   border-radius: 12px !important;
   margin-bottom: 0.75rem;
   overflow: hidden;
}

.accordion-button {
   font-family: 'DM Sans', sans-serif;
   font-weight: 600;
   font-size: 0.98rem;
   color: var(--navy-900);
   background: #fff;
   border-radius: 12px !important;
   padding: 1.25rem 1.5rem;
   box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
   background: var(--yellow-100);
   color: var(--navy-800);
}

.accordion-body {
   font-size: 0.93rem;
   color: var(--text-secondary);
   line-height: 1.75;
   padding: 1rem 1.5rem 1.5rem;
}

/* ═══════════════════════════════════════
   PAGE CTA BLOCK
═══════════════════════════════════════ */
.page-cta {
   background: var(--yellow-500);
   padding: 80px 0;
   text-align: center;
}

.page-cta h2 {
   color: var(--navy-800);
   font-size: clamp(1.8rem, 4vw, 2.4rem);
   margin-bottom: 1rem;
}

.page-cta p {
   color: var(--navy-800);
   max-width: 730px;
   margin: 0 auto 2rem;
   opacity: 0.85;
   line-height: 1.7;
   font-size: 1rem;
}

.page-cta .btn-row {
   display: flex;
   flex-wrap: wrap;
   gap: 0.75rem;
   justify-content: center;
}

/* ═══════════════════════════════════════
   HOW IT WORKS — TIMELINE
═══════════════════════════════════════ */
.timeline-step {
   display: flex;
   align-items: flex-start;
   gap: 2rem;
   padding: 2.5rem 0;
   border-bottom: 1px solid var(--border);
}

.timeline-step:last-child {
   border-bottom: none;
}

.timeline-num {
   font-family: 'DM Mono', monospace;
   font-size: 2.75rem;
   font-weight: 500;
   color: var(--yellow-500);
   line-height: 1;
   flex-shrink: 0;
   width: 90px;
}

.timeline-content h3 {
   color: var(--navy-900);
   font-size: 1.25rem;
   margin-bottom: 0.5rem;
}

.timeline-content p {
   color: var(--text-secondary);
   font-size: 0.95rem;
   line-height: 1.75;
   margin: 0;
}

@media (max-width: 575px) {
   .timeline-step {
      flex-direction: column;
      gap: 0.5rem;
   }

   .timeline-num {
      font-size: 2rem;
      width: auto;
   }
}

.expect-list {
   list-style: none;
   padding: 0;
   margin: 0;
}

.expect-list li {
   display: flex;
   align-items: center;
   gap: 0.75rem;
   padding: 0.8rem 0;
   border-bottom: 1px solid var(--border);
   font-size: 0.95rem;
   color: var(--text-primary);
}

.expect-list li:last-child {
   border-bottom: none;
}

.expect-dot {
   width: 8px;
   height: 8px;
   border-radius: 50%;
   background: var(--yellow-500);
   flex-shrink: 0;
}

/* ═══════════════════════════════════════
   OUR STORY — VALUE CARDS
═══════════════════════════════════════ */
.value-card {
   background: #fff;
   border-radius: 20px;
   box-shadow: 0 4px 20px rgba(15, 29, 54, 0.07);
   padding: 1rem 1rem;
   height: 100%;
   border-top: 4px solid var(--yellow-500);
   transition: transform 0.3s, box-shadow 0.3s;
}

.value-card:hover {
   transform: translateY(-6px);
   box-shadow: 0 12px 40px rgba(15, 29, 54, 0.12);
}

.value-card .bi {
   font-size: 1.75rem;
   color: var(--navy-800);
   margin-bottom: 1rem;
   display: block;
}

.value-card:hover .bi {
   color: var(--yellow-500);
}

.value-card .value-quote {
   font-family: 'Outfit', sans-serif;
   font-weight: 600;
   font-size: 1rem;
   color: var(--navy-800);
   font-style: italic;
   margin-bottom: 0.6rem;
}

.value-card p {
   font-size: 0.9rem;
   color: var(--text-secondary);
   line-height: 1.65;
   margin: 0;
}

/* ═══════════════════════════════════════
   CONTACT PAGE
═══════════════════════════════════════ */
.contact-form .form-label {
   font-weight: 600;
   font-size: 0.88rem;
   color: var(--text-primary);
   margin-bottom: 0.4rem;
}

.contact-form .form-control,
.contact-form .form-select {
   border: 1.5px solid var(--border);
   border-radius: 10px;
   font-family: 'DM Sans', sans-serif;
   font-size: 0.93rem;
   padding: 0.75rem 1rem;
   color: var(--text-primary);
   background: #fff;
   transition: border-color 0.2s;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
   border-color: var(--navy-700);
   box-shadow: 0 0 0 3px rgba(26, 42, 74, 0.1);
}

.contact-form .form-control::placeholder {
   color: var(--text-light);
}

.contact-info-card {
   background: var(--navy-900);
   border-radius: 20px;
   padding: 2.5rem;
   height: 100%;
}

.contact-info-item {
   display: flex;
   align-items: flex-start;
   gap: 1rem;
   margin-bottom: 1.5rem;
   padding-bottom: 1.5rem;
   border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-info-item:last-child {
   border-bottom: none;
   margin-bottom: 0;
   padding-bottom: 0;
}

.ci-icon {
   width: 42px;
   height: 42px;
   border-radius: 10px;
   background: rgba(245, 197, 24, 0.15);
   display: flex;
   align-items: center;
   justify-content: center;
   flex-shrink: 0;
   font-size: 1.1rem;
   color: var(--yellow-500);
}

.ci-label {
   font-family: 'DM Mono', monospace;
   font-size: 0.7rem;
   text-transform: uppercase;
   letter-spacing: 0.08em;
   color: rgba(255, 255, 255, 0.45);
   margin-bottom: 0.2rem;
   display: block;
}

.ci-value {
   color: #fff;
   font-size: 0.92rem;
   font-weight: 500;
   line-height: 1.55;
   display: block;
}

a.ci-value {
   color: rgba(255, 255, 255, 0.85);
   text-decoration: none;
}

a.ci-value:hover {
   color: var(--yellow-400);
}

/* ═══════════════════════════════════════
   SERVICE AREAS
═══════════════════════════════════════ */
.area-card {
   background: #fff;
   border-radius: 16px;
   box-shadow: 0 4px 20px rgba(15, 29, 54, 0.07);
   padding: 2rem;
   text-align: center;
   text-decoration: none;
   display: block;
   color: var(--text-primary);
   transition: transform 0.3s, box-shadow 0.3s;
}

.area-card:hover {
   transform: translateY(-6px);
   box-shadow: 0 12px 40px rgba(15, 29, 54, 0.14);
   color: var(--text-primary);
}

.area-card .bi {
   font-size: 2rem;
   color: var(--navy-800);
   margin-bottom: 0.75rem;
   display: block;
}

.area-card h3 {
   font-size: 1.1rem;
   color: var(--navy-900);
   margin-bottom: 0.3rem;
}

.area-card p {
   font-size: 0.83rem;
   color: var(--text-secondary);
   margin: 0;
}

/* ═══════════════════════════════════════
   BLOG CARDS
═══════════════════════════════════════ */
.blog-card {
   background: #fff;
   border-radius: 16px;
   box-shadow: 0 4px 20px rgba(15, 29, 54, 0.07);
   overflow: hidden;
   height: 100%;
   transition: transform 0.3s, box-shadow 0.3s;
   text-decoration: none;
   display: flex;
   flex-direction: column;
   color: var(--text-primary);
}

.blog-card:hover {
   transform: translateY(-6px);
   box-shadow: 0 12px 40px rgba(15, 29, 54, 0.14);
   color: var(--text-primary);
}

.blog-card-placeholder {
   height: 180px;
   background: var(--navy-100);
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 2.5rem;
   color: var(--navy-700);
}

.blog-card-body {
   padding: 1.5rem;
   flex: 1;
   display: flex;
   flex-direction: column;
}

.blog-cat {
   font-family: 'DM Mono', monospace;
   font-size: 0.7rem;
   text-transform: uppercase;
   letter-spacing: 0.08em;
   color: var(--yellow-500);
   font-weight: 500;
   margin-bottom: 0.5rem;
   display: block;
}

.blog-card h3 {
   font-size: 1.05rem;
   color: var(--navy-900);
   margin-bottom: 0.6rem;
   line-height: 1.35;
   flex: 1;
}

.blog-card p {
   font-size: 0.88rem;
   color: var(--text-secondary);
   line-height: 1.65;
   margin: 0;
}

.blog-read-link {
   font-size: 0.85rem;
   font-weight: 600;
   color: var(--yellow-500);
   text-decoration: none;
   margin-top: 1rem;
   display: inline-flex;
   align-items: center;
   gap: 0.3rem;
}

.blog-read-link:hover {
   color: #c9a000;
   gap: 0.5rem;
}

/* ─── Blog categories ─── */
.blog-cats {
   display: flex;
   flex-wrap: wrap;
   gap: 0.5rem;
   margin-bottom: 2.5rem;
}

.blog-cat-btn {
   font-family: 'DM Sans', sans-serif;
   font-weight: 600;
   font-size: 0.82rem;
   padding: 0.4rem 1rem;
   border-radius: 50px;
   border: 1.5px solid var(--border);
   background: #fff;
   color: var(--text-secondary);
   cursor: pointer;
   transition: all 0.2s;
}

.blog-cat-btn:hover,
.blog-cat-btn.active {
   background: var(--navy-800);
   color: #fff;
   border-color: var(--navy-800);
}

/* ═══════════════════════════════════════
   DOWNLOAD CARDS
═══════════════════════════════════════ */
.download-card {
   background: #fff;
   border-radius: 16px;
   box-shadow: 0 4px 20px rgba(15, 29, 54, 0.07);
   padding: 1.75rem;
   display: flex;
   align-items: center;
   gap: 1.25rem;
   transition: transform 0.3s, box-shadow 0.3s;
   text-decoration: none;
   color: var(--text-primary);
}

.download-card:hover {
   transform: translateY(-4px);
   box-shadow: 0 12px 36px rgba(15, 29, 54, 0.13);
   color: var(--text-primary);
}

.download-icon {
   width: 52px;
   height: 52px;
   border-radius: 12px;
   background: var(--yellow-100);
   display: flex;
   align-items: center;
   justify-content: center;
   flex-shrink: 0;
   font-size: 1.4rem;
   color: var(--navy-800);
}

.download-text {
   flex: 1;
}

.download-text h4 {
   font-size: 0.98rem;
   color: var(--navy-900);
   margin-bottom: 0.2rem;
}

.download-text p {
   font-size: 0.83rem;
   color: var(--text-secondary);
   margin: 0;
}

.download-arrow {
   color: var(--text-light);
   font-size: 1.1rem;
   flex-shrink: 0;
}

.download-card:hover .download-arrow {
   color: var(--navy-800);
}

/* ═══════════════════════════════════════
   CAREER CARDS
═══════════════════════════════════════ */
.career-card {
   background: #fff;
   border-radius: 16px;
   box-shadow: 0 4px 20px rgba(15, 29, 54, 0.07);
   padding: 2rem;
   transition: transform 0.3s, box-shadow 0.3s;
}

.career-card:hover {
   transform: translateY(-4px);
   box-shadow: 0 12px 36px rgba(15, 29, 54, 0.13);
}

.career-badge {
   display: inline-block;
   background: var(--navy-100);
   color: var(--navy-800);
   font-family: 'DM Mono', monospace;
   font-size: 0.7rem;
   padding: 0.25rem 0.75rem;
   border-radius: 50px;
   text-transform: uppercase;
   letter-spacing: 0.05em;
   margin-bottom: 0rem;
}

.career-card h3 {
   font-size: 1.15rem;
   color: var(--navy-900);
   margin-bottom: 0.5rem;
   margin-top: 1rem;
}

.career-card p {
   font-size: 0.9rem;
   color: var(--text-secondary);
   margin-bottom: 1rem;
   line-height: 1.65;
}

/* ─── What we look for ─── */
.trait-card {
   background: var(--off-white);
   border-radius: 16px;
   padding: 1.5rem;
   height: 100%;
}

.trait-card .bi {
   font-size: 1.5rem;
   color: var(--navy-800);
   margin-bottom: 0.75rem;
   display: block;
}

.trait-card h4 {
   font-family: 'Outfit', sans-serif;
   font-weight: 600;
   font-size: 0.98rem;
   color: var(--navy-900);
   margin-bottom: 0.4rem;
}

.trait-card p {
   font-size: 0.87rem;
   color: var(--text-secondary);
   margin: 0;
}

/* ═══════════════════════════════════════
   LEGAL PAGES
═══════════════════════════════════════ */
.legal-wrap {
   max-width: 760px;
   margin: 0 auto;
}

.legal-wrap h2 {
   color: var(--navy-900);
   font-size: 1.35rem;
   margin-top: 2.5rem;
   margin-bottom: 0.75rem;
   padding-top: 1.5rem;
   border-top: 1px solid var(--border);
}

.legal-wrap h2:first-child {
   border-top: none;
   padding-top: 0;
   margin-top: 0;
}

.legal-wrap h3 {
   color: var(--navy-800);
   font-size: 1.05rem;
   margin-top: 1.5rem;
   margin-bottom: 0.5rem;
}

.legal-wrap p,
.legal-wrap li {
   color: var(--text-secondary);
   font-size: 0.95rem;
   line-height: 1.8;
}

.legal-wrap ul {
   padding-left: 1.5rem;
}

.legal-wrap a {
   color: var(--navy-700);
}

.legal-date {
   font-family: 'DM Mono', monospace;
   font-size: 0.78rem;
   color: var(--text-light);
   margin-bottom: 2.5rem;
   display: block;
}

/* ═══════════════════════════════════════
   BREADCRUMB
═══════════════════════════════════════ */
.page-breadcrumb {
   background: var(--off-white);
   padding: 0.75rem 0;
   border-bottom: 1px solid var(--border);
}

.breadcrumb {
   margin: 0;
   font-size: 0.82rem;
}

.breadcrumb-item a {
   color: var(--text-secondary);
   text-decoration: none;
}

.breadcrumb-item a:hover {
   color: var(--navy-800);
}

.breadcrumb-item.active {
   color: var(--text-light);
}

.breadcrumb-item+.breadcrumb-item::before {
   color: var(--text-light);
}

/* Hide breadcrumb on all inner pages */
.breadcrumb-bar {
   display: none;
}

/* ═══════════════════════════════════════
   PROGRAMME DETAIL BOX
═══════════════════════════════════════ */
.program-detail-box {
   background: var(--navy-900);
   border-radius: 20px;
   padding: 2.5rem;
   color: #fff;
}

.program-detail-box h3 {
   color: #fff;
   font-size: 1.15rem;
   margin-bottom: 1.5rem;
}

.program-detail-row {
   display: flex;
   align-items: flex-start;
   gap: 1rem;
   margin-bottom: 1.25rem;
   padding-bottom: 1.25rem;
   border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.program-detail-row:last-child {
   border-bottom: none;
   margin-bottom: 0;
   padding-bottom: 0;
}

.program-detail-icon {
   width: 36px;
   height: 36px;
   border-radius: 8px;
   background: rgba(245, 197, 24, 0.15);
   display: flex;
   align-items: center;
   justify-content: center;
   flex-shrink: 0;
   font-size: 1rem;
   color: var(--yellow-500);
}

.program-detail-label {
   font-family: 'DM Mono', monospace;
   font-size: 0.7rem;
   text-transform: uppercase;
   letter-spacing: 0.06em;
   color: rgba(255, 255, 255, 0.45);
   margin-bottom: 0.15rem;
   display: block;
}

.program-detail-value {
   color: #fff;
   font-size: 0.92rem;
   font-weight: 500;
}
