/* Reset */

* {
    margin: 0;
    padding: 0;
}


:root {
  --nav-bg: #ffffff;
  --nav-text: #273952;        /* deep academic blue */
  --nav-muted: #5f6b7a;       /* softer blue-grey */
  --nav-accent: #C4B089;      /* muted academic gold */
  --topbar-h: 0px;

  /* Typography tokens */
  --font-body: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  --font-heading: Georgia, "Times New Roman", Times, serif;
}

body{
  font-family: var(--font-body);
}

h1, h2, h3, h4, h5, h6{
  font-family: var(--font-heading);
}


/* -----------------------------
   TopBar Section
-------------------------------- */
.topbar {
  background: #273952;
  color: #ffffff;
  font-size: 0.95rem;
}

.topbar_inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.topbar_item {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  opacity: 1;
  transition: opacity 0.2s ease;
}

.topbar_item:hover {
  opacity: 0.65;
}

.topbar_item i {
  font-size: 0.95rem;
}

@media (max-width: 768px) {
  .topbar {
    font-size: 0.85rem;
  }

  .topbar_inner {
    padding: 6px 12px;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .topbar_item {
    gap: 6px;
    font-weight: 500;
  }

  .topbar_item i {
    font-size: 0.85rem;
  }
}

/* -----------------------------
   Navbar Section
-------------------------------- */

#sticky{
  position: sticky;
  top: 0;
  z-index: 1030;
  background: #fff;
  transition: box-shadow 200ms ease, backdrop-filter 200ms ease, transform 200ms ease;
}

#sticky.is-scrolled {
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.nav-link:hover {
  color: var(--nav-accent);
}

.nav-link.active {
  color: var(--nav-text);
  font-weight: 600;
}

.navbar-logo {
  height: 60px;
  width: auto;
}

.tlh-dropdown{
  position: relative;
}

.tlh-dropdown-menu{
  position: absolute;
  top: 100%;
  left: 100%;
  transform: translateX(-50%) translateY(6px);

  min-width: 260px;
  padding: 10px;
  background: var(--nav-bg);
  border-radius: 16px;
  border: 1px solid rgba(16, 24, 40, 0.1);

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms;
  
}

.tlh-dropdown:hover .tlh-dropdown-menu{
  opacity: 1;
  visibility: visible;
  transform: translate(-50%) translateY(0);
  pointer-events: auto;
}

.tlh-dropdown-items{
  display:block;
  padding: 10px 0;
  border-radius: 12px;

  text-decoration: none;
  font-family: var(--font-body);
  color: var(--nav-text);
  font-size: 0.95rem;

  transition: opacity 140ms ease, transform 140ms ease;
}

.tlh-dropdown-items:hover{
  opacity: 0.9;
  transform: translateX(2px);
}

.navbar .btn-primary {
  background-color: var(--nav-text); /* blue */
  color: #ffffff;
  font-weight:600;
  letter-spacing: 0.025em;
  font-size: 1.05rem;
  padding: 0.65rem 1.5rem;
  border-radius: 999px; /* soft pill = premium */
  border: none;

  box-shadow: 0 2px 6px rgba(0,0,0,0.15);

  transition:
    background-color 160ms ease,
    transform 120ms ease,
    box-shadow 120ms ease;
}
#curriculum-eyebrow{
  border-bottom: 2px solid rgba(196, 176, 137, 0.35); 
  padding-bottom: 0.5rem;
  margin-bottom: 0.4rem;
}

.curriculum-pointer{
  pointer-events: none;
}

.navbar .btn-primary:hover {
  background-color: var(--nav-accent); /* gold */
  color: #000;

  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.18);
}

.navbar .btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  background-color: #b88447; /* darker gold */
}


.navbar .nav-link:not(.btn) {
  position: relative;
  color: var(--nav-text);
  font-weight:600;
  letter-spacing: 0.025em;
  font-size: 1.05rem;
  padding: 0.5rem 1.5rem;
  transition: color 160ms ease;
}

.navbar .nav-link:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0.9rem;
  right: 0.9rem;
  bottom: 0.15rem;
  height: 2px;
  background-color: var(--nav-accent); /* GOLD */
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.navbar .nav-link:not(.btn):hover::after,
.navbar .nav-link.active:not(.btn)::after {
  transform: scaleX(1);
}

.navbar .btn-primary {
  color: #ffffff;
}

@media (max-width: 1200px){
  .navbar .nav-link:not(.btn){
    font-size: 0.92rem;
    padding: 0.45rem 1.1rem;
    letter-spacing: 0.02em;
  }
}

/* dropdown on mobile*/
@media (max-width: 992px){
  .tlh-dropdown-menu{
    display: none;
    pointer-events: auto;
  }
  .tlh-dropdown::after{
    display: none;
  }
  .fa-caret-down{
    display: none;
  }

  #mainNav{
    display:none;
  }
}

/* ===== TLH Mobile Fullscreen Menu  ===== */

.tlh-mmenu{
  position: fixed;
  inset: 0;
  background: var(--nav-bg);
  z-index: 3000;
  display: none;
  font-family: var(--font-body);
}

.tlh-mmenu.is-open{
  display: block;
}

.tlh-mmenu-header{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 1.25rem;
  border-bottom: 1px solid rgba(39,57,82,0.12);
}

.tlh-mmenu-brand{
  font-family: var(--font-heading);
  letter-spacing: 0.12em;
  font-size: 1.05rem;
  color: var(--nav-text);
  font-weight: 700;
  text-transform: uppercase;
}

.tlh-mmenu-close{
  border: 0;
  background: transparent;
  color: var(--nav-text);
  font-size: 1.35rem;
  padding: 0.4rem 0.6rem;
}

.tlh-mmenu-pages{
  position: relative;
  height: calc(100vh - 72px);
  overflow: hidden;
}

/* pages */
.tlh-mmenu-page{
  position: absolute;
  inset: 0;
  padding: 1.1rem 1.25rem 2rem;
  overflow-y: auto;

  transform: translateX(100%);
  transition: transform 220ms ease;
}

.tlh-mmenu-page.is-active{
  transform: translateX(0);
}

/* back row */
.tlh-mmenu-back{
  width: 100%;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  border: 0;
  background: transparent;
  color: var(--nav-muted);
  font-weight: 700;
  padding: 0.9rem 0;
  margin-bottom: 0.65rem;
  font-size: 1.05rem;
}

/* big list items */
.tlh-mmenu-item{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 1.05rem 0;
  text-decoration: none;
  color: var(--nav-text);
  font-weight: 600;
  font-size: 1.35rem;
  border-bottom: 1px solid rgba(39,57,82,0.10);
}

.tlh-mmenu-item i{
  color: rgba(39,57,82,0.55);
  font-size: 1.05rem;
}

/* submenu opener buttons */
.tlh-mmenu-item.has-sub{
  border: 0;
  background: transparent;
  text-align: left;
  border-bottom: 1px solid rgba(39,57,82,0.10);
}

/* CTA button */
.tlh-mmenu-cta{
  display: inline-flex;
  justify-content: center;
  align-items: center;

  margin-top: 1.5rem;
  padding: 0.95rem 1.4rem;
  border-radius: 999px;
  background: var(--nav-accent);
  color: var(--nav-text);
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
}

/* Only show this menu on mobile */
@media (min-width: 992px){
  .tlh-mmenu{ display: none !important; }
}




/* -----------------------------
   Hero Section
-------------------------------- */
.hero{
  position: relative;
  width: 100%;
  min-height: clamp(480px, 70vh, 720px);
  overflow: hidden;
}

/* Full-bleed image */
.hero_img{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* Light overlay so text is readable without blocking image too much */
.hero_overlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.45) 0%,
    rgba(0,0,0,0.18) 35%,
    rgba(0,0,0,0.50) 75%
  );
}

/* Top-center content */
.hero_content{
  position: relative;
  z-index: 1;

  width: min(820px, 92%);
  margin: 0 auto;

  padding-top: clamp(68px, 9vh, 110px);
  text-align: center;
  color: #fff;

}

.hero_title{
  margin: 0 0 10px;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.05;
  letter-spacing: 0.2px;
}

.hero_sub{
  margin: 0 auto 18px;
  max-width: 58ch;
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  line-height: 1.6;
  opacity: 0.92;
  color: #DBDBDB;
}
/* CTA buttons */
.hero_btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 12px 18px;
  border-radius: 999px;

  background: #273952;
  color: #fff;
  font-weight: 700;
  text-decoration: none;

  border: 1px solid rgba(255,255,255,0.18);
  box-shadow: 0 10px 22px rgba(0,0,0,0.18);

  transition:
    background-color 180ms ease,
    color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 120ms ease;
}

/* Primary hover (minimal) */
.hero_btn:hover{
  background: #C4B089;              /* your gold */
  color: #111;
  box-shadow: 0 12px 26px rgba(0,0,0,0.22);
  transform: translateY(-1px);      /* smaller lift */
}

/* Press */
.hero_btn:active{
  transform: translateY(0);
  box-shadow: 0 9px 18px rgba(0,0,0,0.18);
}

/* Ghost variant */
.hero_btn-ghost{
  background: transparent;
  border: 1px solid rgba(255,255,255,0.65);
  color: #fff;
  box-shadow: none;     /* cleaner + more premium */
}

/* Ghost hover (minimal) */
.hero_btn-ghost:hover{
  background: rgba(255,255,255,0.10);
  border-color: rgba(255,255,255,0.85);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(0,0,0,0.14);
}

.hero_btn-ghost:active{
  transform: translateY(0);
  box-shadow: 0 9px 18px rgba(0,0,0,0.18);
}


/* Mobile: keep it readable and not too tall */
@media (max-width: 768px){
  .hero_content{
    padding-top: 74px;
  }
  .hero_overlay{
    background: linear-gradient(
      to bottom,
      rgba(0,0,0,0.55) 0%,
      rgba(0,0,0,0.22) 45%,
      rgba(0,0,0,0.00) 78%
    );
  }
}

/* -----------------------------
   Credibility Section
-------------------------------- */
.credibility{
  width: 100%;
  background: #f9fafb;
  padding: clamp(32px, 5vw, 56px) 0;
}

.credibility-wrap{
  width: min(1200px, 92%);
  margin: 0 auto;
}

/* Section header above credibility grid */
.credibility-intro{
  width: 100%;
  margin:0 auto clamp(32px, 5vw, 56px);
  text-align: center;
  position: relative;
}

/* Horizontal divider line */
.credibility-intro::before{
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background: rgba(39,57,82,0.15); /* nav-text, soft */
}

/* Text that sits on the line */
.credibility-eyebrow{
  position: relative;
  z-index: 1;
  padding: 0 22px;

  background: #fff; /* same as section bg */
  font-family: var(--font-heading);

  font-size: clamp(2.1rem, 3.2vw, 2.7rem);
  font-weight: 700;          /* stronger presence */
  letter-spacing: 0.2px;
  color: var(--nav-text);
  background: #f9fafb;
}

/* 2x2 grid with divider lines */
.credibility-grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0; /* important so lines feel continuous */
  border: 1px solid rgba(39,57,82,0.12);
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
}

.credibility-item{
  display: flex;
  gap: 16px;
  padding: clamp(22px, 2.6vw, 30px);
  align-items: flex-start;
  transition: transform 180ms ease, background-color 180ms ease;
  border-left: 2px solid transparent;
  transition: border-color 180ms ease, background-color 180ms ease;
}

.credibility-item:hover{
  border-left-color: var(--nav-accent);
  transform: translateY(-3px);
  background: rgba(196,176,137,0.10);
}

/* Divider lines */
.credibility-item:nth-child(1),
.credibility-item:nth-child(2){
  border-bottom: 1px solid rgba(39,57,82,0.12);
}
.credibility-item:nth-child(1),
.credibility-item:nth-child(3){
  border-right: 1px solid rgba(39,57,82,0.12);
}

/* Icon */
.credibility-icon{
  font-size: 1.5rem;
  color: var(--nav-accent);

  width: 44px;
  height: 44px;
  border-radius: 50%;

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

  background: rgba(196,176,137,0.22); /* soft gold tint */
  flex-shrink: 0;
}

/* Typography: serif header, Inter body */
.credibility-text h3{
  margin: 0 0 10px;
  font-weight: 700;
  line-height: 1.15;
  color: var(--nav-text);
  letter-spacing: 0px;
}

.credibility-text p{
  margin: 0;
  font-size: 1.03rem;
  color: var(--nav-muted);
  line-height: 1.6;
  max-width: 52ch;
  opacity: 0.95;
}

/* Mobile: stack nicely, keep lines clean */
@media (max-width: 768px){
  .credibility-grid{
    grid-template-columns: 1fr;
  }

  .credibility-item:nth-child(1),
  .credibility-item:nth-child(3){
    border-right: none;
  }

  .credibility-item:nth-child(1),
  .credibility-item:nth-child(2),
  .credibility-item:nth-child(3){
    border-bottom: 1px solid rgba(39,57,82,0.12);
  }
}

/* -----------------------------
   Programmes Section
-------------------------------- */

.programmes{
  width: 100%;
  padding: clamp(56px, 6vw, 88px) 0;
  background: linear-gradient(180deg, #c9b793 0%, #c1ad83 100%);
}

.programmes-wrap{
  width: min(1200px, 92%);
  margin: 0 auto;
}

/* Header */
.programmes-head{
  margin-bottom: clamp(20px, 4vw, 40px);
}

.programmes-title{
  margin: 0 0 10px;
  font-size: clamp(2.1rem, 3.2vw, 2.7rem);
  font-weight: 700;
  line-height: 1.1;
  color: #000;
}

.programmes-sub{
  margin: 0;
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  color: #383d44;
  line-height: 1.6;
}

/* Grid */
.programmes-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* Card */
.programme-card{
  background: rgba(255,255,255,0.22);
  border: 1px solid rgba(39,57,82,0.16);
  border-radius: 18px;
  overflow: hidden;

  display: flex;
  flex-direction: column;

  box-shadow: 0 10px 30px rgba(16, 24, 40, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.programme-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 18px 45px rgba(16, 24, 40, 0.14);
}

/* Image */
.programme-media{
  aspect-ratio: 4 / 3;

}

.programme-media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* Card body */
.programme-body{
  background: #f9fafb;
  padding: 18px 16px 10px;

  display: flex;
  flex-direction: column;
  height: 100%; /* ensure equal height behaviour */
  transition: text-decoration 300ms ease, border-color 140ms ease, transform 140ms ease;
}

/* Typography */
.programme-name{
  margin: 0;
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 1.25rem;
  line-height: 1.15;
  font-weight: 700;
  line-height: 1.15;
  color: #273952;
}

.programme-desc{
  font-size: 1rem;
  line-height: 1.6;
  color: #6b7280;
  margin-bottom: 4px;
}

/* Link */
.programme-link{
  margin-top: auto;
  font-weight:700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;

  color: var(--nav-text);
  text-decoration: none;

  /* Make the link's box hug the text (prevents the underline becoming insanely long) */
  display: inline-flex;
  width: max-content;

  /* Anchor for the absolutely-positioned ::after underline */
  position: relative;

  /* Optional: keeps the arrow aligned nicely with text */
  align-items: baseline;
}

/* Underline */
.programme-link::after{
  content: "";
  position: absolute;

  /* Underline spans exactly the link width (which now equals text width) */
  left: 0;
  right: 0;

  /* Slightly below text */
  bottom: -0.10rem;

  height: 2px;
  background-color: var(--nav-text);

  /* Hidden → Visible animation */
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

/* Hover: full underline */
.programme-link:hover::after{
  transform: scaleX(1);
}



/* Footer CTA */
.programmes-footer{
  margin-top: clamp(28px, 4vw, 44px);
  text-align: center;
}

.programmes-cta{
  display: inline-block;
  padding: 16px 22px;
  border-radius: 999px;
  background: var(--nav-text);
  border: 1px solid rgba(39,57,82,0.18);
  color: #fff;
  text-decoration: none;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 700;
}

.programmes-cta:hover{
  box-shadow: 0 6px 14px rgba(0,0,0,0.12);
  transform: translateY(-1px);
}

/* Active = confirmation */
.programmes-cta:active{
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(0,0,0,0.18);
}

/* Accessibility */
@media (prefers-reduced-motion: reduce){
  .programmes-cta{
    transition: none;
  }
}

/* Responsive */
@media (max-width: 1100px){
  .programmes-grid{
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px){
  .programmes-grid{
    grid-template-columns: 1fr;
  }
}

/* -----------------------------
   Partners Section
-------------------------------- */

.partners-title{
  text-align: center;
  margin: 20px 0 30px; /* space above + below */

}

.partners-title h2{
  font-size: clamp(2.1rem, 3.2vw, 2.7rem);
  color: var(--nav-text);
  opacity: 1;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0;
}

.partners-title h3{
  font-size: clamp(14px, 1.5vw, 22px);
  color: var(--nav-text);
  opacity: 1;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0;
}


@keyframes scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.logos {
  position: relative;
  overflow: hidden;
  background: rgba(0,0,0,0.06);
  padding-bottom: 40px;        /* BIG vertical padding */
}

/* moving strip */
.logos-track {
  display: flex;
  align-items: center;
  gap: 120px;                /* BIG spacing between logos */
  padding: 0 clamp(24px, 8vw, 220px); 
  width: max-content;
  animation: scroll 60s linear infinite;
  will-change: transform;
}

/* logos */
.logos-track img {
  height: 120px;
  width: auto;
  flex-shrink: 0;
  object-fit: contain;
}

/* strong fade edges */
.logos::before,
.logos::after {
  content: "";
  position: absolute;
  top: 0;
  width: 350px;              /* BIG fade zone */
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.logos::before {
  left: 0;
  background: linear-gradient(to right, white 30%, transparent);
}

.logos::after {
  right: 0;
  background: linear-gradient(to left, white 30%, transparent);
}
@media (max-width: 768px) {
  .logos::before,
  .logos::after {
    width: 80px; /* was 350px */
  }
}

/* -----------------------------
   Map Location Section
-------------------------------- */

/* =========================
   LOCATIONS SECTION
   ========================= */

.locations{
  background: #FFFFFF;
  padding: clamp(64px, 7vw, 96px) 0;
}

.locations-wrap{
  width: min(1200px, 92%);
  margin: 0 auto;
}

/* Header */
.locations-head{
  text-align: center;
  margin-bottom: clamp(28px, 4vw, 46px);
}

.locations-title{
  margin: 0 0 10px;
  font-size: clamp(2rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--nav-text);
  line-height: 1.15;
}

/* Subtext */
.locations-sub{
  margin: 0 auto;
  max-width: 58ch;
  font-size: 1.05rem;
  line-height: 1.7;
  color: #858F9D;
}

/* Grid layout */
.locations-grid{
  display: grid;
  grid-template-columns: 1.35fr 0.85fr;
  gap: 24px;
  align-items: start;
}

/* Card base */
.locations-map,
.locations-list{
  background: #FFFFFF;
  border: 1px solid rgba(39,57,82,0.12);
  border-radius: 20px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.06);
}

/* Map card */
.locations-map{
  margin: 0;                /* figure default margin reset */
  overflow: hidden;         /* keeps rounded corners clean */
  position: relative;
}

/* Subtle accent strip */
.locations-map::before{
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  box-shadow: inset 0 0 0 3px rgba(196,176,137,0.18);
  pointer-events: none;
}

.locations-map img{
  display: block;
  width: 100%;
  height: auto;
}

/* List card */
.locations-list{
  padding: 22px 22px 20px;
}

.locations-list-title{
  margin: 0 0 14px;
  font-family: Inter, system-ui, sans-serif;
  font-weight: 800;
  letter-spacing: 0.2px;
  font-size: 1rem;
  color: #273952;
  display: flex;
  align-items: center;
  gap: 10px;
}

.locations-list-title::after{
  content: "";
  height: 2px;
  flex: 1;
  background: rgba(196,176,137,0.7); /* accent line */
  border-radius: 999px;
}

/* List */
.locations-ul{
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  display: grid;
  gap: 10px;
}

.locations-ul li{
  display: grid;
  grid-template-columns: 12px auto 1fr;
  align-items: baseline;
  column-gap: 10px;

  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid transparent;
  transition: background-color 300ms ease, border-color 140ms ease, transform 140ms ease;
}

.locations-ul li:hover{
  background: rgba(196,176,137,0.14);
  border-color: rgba(196,176,137,0.45);
  transform: translateY(-1px);
}

/* Dot (matches your map pins vibe) */
.loc-dot{
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #C4B089;
  box-shadow: 0 0 0 3px rgba(196,176,137,0.22);
  transform: translateY(2px);
}

/* Main location name */
.loc-name{
  font-weight: 700;
  color: #273952;
}

/* Mall / extra info */
.loc-meta{
  color: #858F9D;
  font-size: 0.95rem;
  justify-self: end; /* pushes mall to the right */
}

/* CTA button */
.locations-cta{
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 100%;
  padding: 12px 14px;
  border-radius: 14px;

  font-family: Inter, system-ui, sans-serif;
  font-weight: 600;
  text-decoration: none;

  background: #273952;
  color: #FFFFFF;

  border: 1px solid rgba(39,57,82,0.12);
  transition: transform 140ms ease, background-color 140ms ease, box-shadow 140ms ease;
}

.locations-cta:hover{
  background: #C4B089;
  color: #273952;
  box-shadow: 0 12px 24px rgba(0,0,0,0.12);
  transform: translateY(-1px);
}

/* Responsive */
@media (max-width: 900px){
  .locations-grid{
    grid-template-columns: 1fr;
  }

  .loc-meta{
    justify-self: start; /* stack-friendly */
  }
}


/* -----------------------------
   Testimonial Section
-------------------------------- */
.testimonials{
  background: #f9fafb;
  padding: clamp(64px, 7vw, 96px) 0;
}

.testimonials-wrap{
  width: min(1200px, 92%);
  margin: 0 auto;
}

/* Header */
.testimonials-head{
  text-align: center;
  margin-bottom: clamp(32px, 4vw, 52px);
}

.testimonials-title{
  margin: 0 0 12px;
  font-size: clamp(2.1rem, 3.2vw, 2.7rem);
  font-weight: 700;
  line-height: 1.15;
  color: #273952;
}

.testimonials-sub{
  margin: 0;
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  line-height: 1.65;
  color: #5f6b7a;
}

/* Shell */
.testimonials-shell{
  display: grid;
  grid-template-columns: 56px 1fr 56px;
  align-items: center;
  gap: 18px;
}

/* Nav buttons */
.ts-nav{
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(39,57,82,0.18);
  background: #fff;
  color: #273952;
  font-size: 18px; /* icon size is controlled below too */
  cursor: pointer;

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

  transition: background-color 160ms ease, box-shadow 160ms ease, transform 120ms ease;
}

.ts-nav i{
  font-size: 18px;
}

.ts-nav:hover{
  background: #f9fafb;
  box-shadow: 0 8px 18px rgba(0,0,0,0.12);
}

.ts-nav:active{
  transform: scale(0.96);
}

.ts-nav:disabled{
  cursor: not-allowed;
  opacity: 0.45;
  box-shadow: none;
}

.ts-nav:focus-visible{
  outline: 3px solid rgba(39,57,82,0.35);
  outline-offset: 3px;
}

/* Viewport (scroll + snap) */
.ts-viewport{
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding: 2px;
}

/* Hide scrollbar */
.ts-viewport::-webkit-scrollbar{ display:none; }
.ts-viewport{ scrollbar-width: none; }

/* Track */
.ts-track{
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 24px) / 2); /* 2 cards per view */
  gap: 24px;
}

/* Card */
.ts-card{
  background: #ffffff;
  border: 1px solid rgba(39,57,82,0.12);
  border-radius: 20px;
  padding: 34px 36px 30px;
  position: relative;
  box-shadow: 0 10px 26px rgba(0,0,0,0.06);

  scroll-snap-align: start;
  scroll-margin-left: 2px;
}

/* Accent */
.ts-card::before{
  content: "";
  position: absolute;
  left: 0;
  top: 26px;
  bottom: 26px;
  width: 4px;
  background: #C4B089;
  border-radius: 999px;
}

/* Quote */
.ts-quote{
  margin: 0 0 22px;
  padding-left: 14px;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  line-height: 1.75;
  color: #273952;
}

/* Meta */
.ts-meta{
  padding-left: 14px;
}

.ts-name{
  margin: 0 0 4px;
  font-weight: 700;
  font-size: 0.95rem;
  color: #273952;
}

.ts-detail{
  margin: 0;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  color: #5f6b7a;
}

/* Dots */
.ts-dots{
  margin-top: 26px;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.ts-dot{
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: 0;
  background: rgba(39,57,82,0.25);
  cursor: pointer;
  padding: 0;
  transition: transform 160ms ease, background-color 160ms ease;
}

.ts-dot:hover{
  transform: scale(1.25);
  background: rgba(39,57,82,0.45);
}

.ts-dot.is-active{
  background: #273952;
  transform: scale(1.25);
}

.ts-dot:focus-visible{
  outline: 3px solid rgba(39,57,82,0.35);
  outline-offset: 3px;
}

/* Responsive */
@media (max-width: 900px){
  .testimonials-shell{
    grid-template-columns: 1fr;
  }

  .ts-track{
    grid-auto-columns: 100%;
    gap: 16px;
  }

  .ts-card{
    padding: 22px 20px 18px;
    border-radius: 18px;
  }

  .ts-card::before{
    top: 18px;
    bottom: 18px;
  }

  .ts-quote{
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 14px;
  }

  .ts-dots{
    margin-top: 18px;
    gap: 12px;
  }

  .ts-dot{
    width: 10px;
    height: 10px;
  }
}

/* 
 --CTA FORM SECTION --
                     */

/* Section */
.contact-section {
  background: var(--nav-text);
  padding: 5rem 1rem;
}


.contact-section input,
.contact-section select,
.contact-section textarea {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
}


/* Wrapper */
.contact-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem;
  border-radius: 18px;
  background: #1E2B40;
  box-shadow:
    0 28px 70px rgba(0,0,0,0.35),
    0 0 0 1px rgba(196,176,137,0.22);

  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 2.5rem;
}

/* Left */
.contact-info {
  color: #fff;
  font-family: var(--font-heading);
}

.contact-info a{
  text-decoration: none;
  font-family: var(--font-body);
}

.contact-info a:hover{
  opacity: 0.65;
}

.contact-title {
  font-size: 2.1rem;
  margin-bottom: 0.5rem;
  font-weight: 800;
}

.contact-subtitle {
  color: rgba(255,255,255,0.8);
  max-width: 38ch;
  margin-bottom: 2rem;
  font-family: var(--font-body);
}

.contact-list {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}

.contact-list li {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 1rem;
}

.contact-list a {
  color: var(--nav-bg);
  text-decoration: none;
}

.icon-pill {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,0.12);
}

/* Socials */
.contact-socials {
  display: flex;
  gap: 0.8rem;
}

.social {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,0.30);
  color: #fff;
  transition: transform 0.15s ease;
  list-style: none;
}

.social:hover {
  transform: translateY(-2px);
}

/* Card */
.contact-card {
  background: #f9fafb;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 20px 45px rgba(0,0,0,0.15);
}

/* Form */
.contact-form .field {
  margin-bottom: 1rem;
}

.contact-form label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--nav-text);
  margin-bottom: 0.35rem;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.input-wrap {
  position: relative;
}

.input-wrap i {
  position: absolute;
  left: 0.9rem;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(39,57,82,0.55);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem 0.9rem 0.75rem 2.6rem;
  border-radius: 12px;
  border: 1px solid rgba(39,57,82,0.2);
  font-size: 0.95rem;
}

.contact-form textarea {
  padding-left: 0.9rem;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--nav-text);
  box-shadow: 0 0 0 4px rgba(39,57,82,0.12);
}

/* Button */
.contact-btn {
  width: 100%;
  padding: 0.9rem;
  border-radius: 12px;
  border: none;
  background: var(--nav-text);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  margin-top: 0.5rem;

  border: 1px solid rgba(39,57,82,0.12);
  transition: transform 140ms ease, background-color 140ms ease, box-shadow 140ms ease;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.contact-btn:hover {
  background: var(--nav-accent);
  color: var(--nav-text);
  box-shadow: 0 12px 24px rgba(0,0,0,0.12);
  transform: translateY(-1px);
}

.privacy-note {
 margin: 0.25rem 0 0;
    font-size: 0.78rem;
    color: rgba(39,57,82,0.65);
    line-height: 1.4;
    text-align: center;
  }

  /* Responsive */
  @media (max-width: 900px){
    .contact-wrap{
      grid-template-columns: 1fr;
    }
    .contact-info{
      padding: 0.25rem;
    }
  }

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

.site-footer{
  background: #0F172A; /* soft black */
  color: #ffffff;
  font-family: Inter, system-ui, -apple-system, sans-serif;
}

/* Layout */
.footer-wrap{
  width: min(1200px, 92%);
  margin: 0 auto;
  padding: 64px 0 48px;

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

/* Ensure consistent column alignment */
.footer-col{
  display: flex;
  flex-direction: column;
}

/* Titles */
.footer-title{
  margin: 0 0 12px;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: #ffffff;
}

/* Shared list reset */
.footer-links,
.footer-locations,
.footer-contact{
  list-style: none;
  padding: 0;
  margin: 0;
  opacity: 0.8;
}

/* Quick Links + Programmes links */
.footer-links li{
  margin-bottom: 9px;
}

.footer-links a{
  color: rgba(255,255,255,0.82);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 160ms ease, opacity 160ms ease;
}

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

/* Locations (non-clickable) */
.footer-locations li{
  margin-bottom: 9px;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.70);
}

/* Contact */
.footer-contact li{
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.80);
}

.footer-contact a{
  color: inherit;
  text-decoration: none;
  transition: color 160ms ease;
}

.footer-contact a:hover{
  color: #C4B089;
}

.footer-contact i{
  color: #C4B089;
  font-size: 0.95rem;
}

/* Bottom Bar */
.footer-bottom{
  border-top: 1px solid rgba(255,255,255,0.12);
  padding: 18px 0;
  text-align: center;
}

.footer-bottom p{
  margin: 0;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
}

.footer-bottom a{
  color: rgba(255,255,255,0.82);
  transition: color 160ms ease;
}

.footer-bottom a:hover{
  color: #C4B089;
}

.footer-divider{
  margin: 0 8px;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 900px){
  .footer-wrap{
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }
}

@media (max-width: 520px){
  .footer-wrap{
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-contact li{
    justify-content: center;
  }
}


/* =========================
   CURRICULUM PAGE SECTIONS
   Uses your existing :root vars:
   --nav-bg, --nav-text, --nav-muted, --nav-accent
========================= */

/* =========================
   PROGRAMME OVERVIEW BAND
========================= */
.curriculum-overview{
  width: 100%;
  background: var(--nav-text);
  color: #fff;
  padding: clamp(56px, 7vw, 88px) 0;
}

.po-wrap{
  width: min(1200px, 92%);
  margin: 0 auto;
  text-align: center;
}

.po-title{
  margin: 0 0 12px;
  font-size: clamp(3rem, 4vw, 3.5rem);
  font-weight: 600;
  letter-spacing: -0.02em;

}

.po-sub{
  margin: 0 auto;
  max-width: 70ch;
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  line-height: 1.75;
  color: rgba(255,255,255,0.85);
}

/* =========================
   PROGRAMMES (ALTERNATING ROWS)
========================= */

/*background color + padding top bottom*/
.programmes-alt{
  background: var(--nav-bg);
  padding: clamp(56px, 6vw, 92px) 0;
}


/*container width */
.pa-wrap{
  display: grid;
  width: min(1200px, 92%);
  margin: 0 auto;
  gap: clamp(22px, 3vw, 30px);
}

/* Each row = 2 columns */
.pa-row{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(18px, 3vw, 28px);
  align-items: center;

  background: #F9FAFB;
  border: 2px solid rgba(39,57,82,0.12);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0,0,0,0.06);
}

/* Alternate layout: image on right for even rows */
.pa-row--reverse .pa-media{ order: 2; }
.pa-row--reverse .pa-content{ order: 1; }

/* Image side */
.pa-media{
  height: 100%;
  min-height: 260px;
  max-height: 400px;
  background: #e5e7eb;
}

.pa-media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Content side */
.pa-content{
  padding: clamp(18px, 3vw, 34px);
}

.pa-title{
  margin: 0 0 10px;
  font-size: clamp(1.5rem, 2vw, 1.9rem);
  font-weight: 800;
  color: var(--nav-text);
}

.pa-text{
  margin: 0 0 18px;
  font-size: 1.02rem;
  line-height: 1.7;
  color: var(--nav-muted);
  max-width: 55ch;
}

/* Learn more button */
.pa-btn{
  display: inline-flex;
  align-items: center;
  gap: 10px;

  padding: 10px 16px;
  border-radius: 999px;
  text-decoration: none;

  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;

  background: var(--nav-text);
  color: #fff;

  transition: transform 120ms ease, background-color 160ms ease, box-shadow 160ms ease;
  box-shadow: 0 10px 24px rgba(39,57,82,0.18);
}

.pa-btn:hover{
  background: var(--nav-accent);
  color: #111;
  transform: translateY(-1px);
}

.pa-btn:active{
  transform: translateY(0);
  box-shadow: 0 8px 18px rgba(39,57,82,0.14);
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 900px){
  .pa-row{
    grid-template-columns: 1fr;
  }

  /* On mobile, always image on top */
  .pa-row--reverse .pa-media{ order: 1; }
  .pa-row--reverse .pa-content{ order: 2; }

  .pa-media{
    min-height: 220px;
  }

  .pa-content{
    padding: 20px;
  }
}


/* 
CURRICULUM SECTION
*/

/* ===================== programme-phonics.css ===================== */

.programme-page{
  color: var(--nav-text);
  background: #fff;
}

/* Container */
.container{
  width: min(1100px, 92vw);
}

.anchor-offset{
  scroll-margin-top: calc(var(--topbar-h) + 90px);
}

/* ---------- HERO ---------- */
.programme-hero{
  background: var(--nav-text);
  color: #fff;
  padding: clamp(2.25rem, 5vw, 4rem) 0;
}

.programme-hero__grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.25rem, 3vw, 2.25rem);
  align-items: center;
}

@media (min-width: 900px){
  .programme-hero__grid{
    grid-template-columns: 1.05fr 0.95fr;
  }
}

.programme-hero__media{
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 14px 40px rgba(0,0,0,0.18);
  aspect-ratio: 16 / 10;
}

.programme-hero__media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display:block;
}

.programme-kicker{
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.75);
  margin: 0 0 0.5rem;
}

.programme-title{
  margin: 0 0 0.75rem;
  font-size: clamp(1.9rem, 3.2vw, 2.8rem);
  line-height: 1.12;
}

.programme-subtext{
  margin: 0 0 1rem;
  max-width: 60ch;
  color: rgba(255,255,255,0.86);
  line-height: 1.65;
  font-size: 1.02rem;
}

.programme-badges{
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 0 0 1.25rem;
}

.badge{
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  border-radius: 999px;
  padding: 0.48rem 0.78rem;
  font-size: 0.85rem;
  line-height: 1;
  font-weight: 600;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.16);
  color: rgba(255,255,255,0.94);
}

.programme-hero__actions{
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.programme-note{
  margin: 0;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.7);
  max-width: 62ch;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

/* ---------- SECTIONS ---------- */
.programme-section{
  padding: clamp(1.6rem, 3vw, 2.35rem) 0;
}

/* ---------- TYPOGRAPHY RULES FOR PROGRAMME CARDS ---------- */

.card-title{
  font-size: 1.5rem;
  margin: 0;
  line-height: 1.25;
  font-weight: 600;
  color: var(--nav-text);
}

/* ---------- CARDS ---------- */
.card{
  background: #fff;
  border: 1px solid rgba(39,57,82,0.10);
  border-radius: 18px;
  padding: clamp(1.15rem, 2.2vw, 1.7rem);
  box-shadow: 0 10px 26px rgba(16, 24, 40, 0.06);
  position: relative;
}

.card-soft{
  background: #f7f7f9;
  border-color: rgba(39,57,82,0.08);
}

/* Gold accent bar ONLY for the two specific cards */
.card-accentbar{
  padding-left: clamp(1.2rem, 3vw, 1.6rem);
}

.card-accentbar::before{
  content:"";
  position:absolute;
  left: 0;
  top: 14px;
  bottom: 14px;
  width: 3px;
  background: var(--nav-accent);
  border-radius: 999px;
}

/* Card header (icon + title) */
.card-head{
  display:flex;
  align-items:center;
  gap: 0.65rem;
  margin-bottom: 0.85rem;
}

.card-icon{
  width: 36px;
  height: 36px;
  border-radius: 12px;
  display:grid;
  place-items:center;
  background: rgba(196,176,137,0.18);
  border: 1px solid rgba(196,176,137,0.35);
  color: var(--nav-text);
}

/* Two-column grid for the two cards */
.grid-2{
  display:grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 900px){
  .grid-2{ grid-template-columns: 1fr 1fr; }
}

/* Bullets */
.bullets{
  margin: 0;
  padding-left: 1.1rem;
  color: var(--nav-muted);
  line-height: 1.65;
}

.bullets li{ margin: 0.35rem 0; }

/* ---------- BUTTONS ---------- */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 0.5rem;
  padding: 0.78rem 1.08rem;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease, color 160ms ease;
  will-change: transform;
}

.btn:active{ transform: translateY(1px); }

.btn-ghost{
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.28);
  font-weight: 700;
}

.btn-ghost:hover{
  transform: translateY(-2px);
  border-color: rgba(255,255,255,0.45);
}

.btn-accent{
  background: var(--nav-accent);
  color:#000;
  border-color: rgba(0,0,0,0.08);
}

.btn-hero-enquire{
  font-weight: 700;
}

/* Request: Enquire/Free Trial in hero -> navy bg + white on hover */
.btn-hero-enquire:hover{
  transform: translateY(-0.5px);
  background: var(--nav-accent);
  color:#000;
  border-color: rgba(255,255,255,0.22);
  font-weight: 700;
}

/* ---------- TESTIMONIALS ---------- */
.section-head{
  display:flex;
  align-items:end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.h3{
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.35rem;
  margin: 0;

  color: var(--nav-text);
}

.text-link{
  color: var(--nav-text);
  text-decoration: none;
  font-weight: 800;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.text-link:hover{ text-decoration: underline; }

.testimonial-grid{
  display:grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 720px){
  .testimonial-grid{
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial{
  background: #fff;
  border: 1px solid rgba(39,57,82,0.10);
  border-radius: 18px;
  padding: 1.15rem 1.2rem 1.05rem;
  box-shadow: 0 10px 26px rgba(16, 24, 40, 0.06);
}

.testimonial-top{
  display:flex;
  gap: 0.65rem;
  align-items:flex-start;
}

.t-icon{
  width: 30px;
  height: 30px;
  border-radius: 10px;
  display:grid;
  place-items:center;
  background: rgba(196,176,137,0.18);
  border: 1px solid rgba(196,176,137,0.35);
  color: var(--nav-text);
  flex: 0 0 auto;
  margin-top: 2px;
}



.quote{
  margin: 0 0 0.85rem;
  color: var(--nav-text);
  line-height: 1.6;
  font-family: var(--font-heading);
  text-align: justify;
}

.who{
  margin: 0;
  color: var(--nav-muted);
  font-size: 0.92rem;
  font-family: var(--font-heading);
}

/* ---------- CTA BLOCK ---------- */
.programme-cta{
  background: linear-gradient(135deg, var(--nav-text), #1f2f46);
  color: #fff;
  padding: clamp(2rem, 4vw, 3rem) 0;
}

.programme-cta__inner{
  text-align: center;
  border-radius: 22px;
  padding: clamp(1.5rem, 3vw, 2.25rem);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
}

.cta-title{
  margin: 0 0 0.5rem;
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: clamp(1.25rem, 2.6vw, 1.75rem);
}

.cta-text{
  margin: 0 auto 1.25rem;
  max-width: 62ch;
  color: rgba(255,255,255,0.82);
  line-height: 1.6;
}

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

/* Request: Enquire Now -> gold bg + black text; hover navy bg + white text */
.btn-cta-enquire{
  background: var(--nav-accent);
  color: #1c2430;
  border: 1px solid rgba(0,0,0,0.10);
}

.btn-cta-enquire:hover{
  transform: translateY(-2px);
  background: var(--nav-text);
  color: #fff;
  border-color: rgba(255,255,255,0.18);
}

/* Keep WhatsApp outlined */
.btn-outline-light{
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.32);
}

.btn-outline-light:hover{
  transform: translateY(-2px);
  border-color: rgba(255,255,255,0.5);
}

/* Accessibility: Reduce motion */
@media (prefers-reduced-motion: reduce){
  .btn{ transition: none; }
}






/* ===== About Page Sections ===== */

/* ===== Hero with background image + bottom-aligned 2-column content ========================================================================== */

.hero-bg {
  position: relative;
  min-height: clamp(420px, 70vh, 680px);
  overflow: hidden;
  border-radius: 0; /* set to 20px if you want rounded hero */
  background: var(--nav-text);
}

/* Background image */
.hero-bg__img{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}

/* Dark overlay for readability */
.hero-bg__overlay{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
}

/* Stronger fade near bottom (like your reference) */
.hero-bg__fade{
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.05) 0%,
    rgba(0,0,0,0.15) 40%,
    rgba(0,0,0,0.65) 100%
  );
}

/* Container */
.hero-bg__inner{
  position: relative;
  height: 100%;
  width: min(1100px, calc(100% - 2rem));
  margin-inline: auto;
  display: flex;
  align-items: flex-end; /* bottom align */
  padding-top: 22rem;
}

/* The “two sections/grids” near the bottom */
.hero-bg__content{
  width: 100%;
  display: grid;
  grid-template-columns: 1.25fr 0.85fr;
  gap: clamp(1rem, 4vw, 3rem);
  align-items: end;
}

.hero-bg__eyebrow{
  font-family: var(--font-body);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.78);
  margin: 0 0 0.75rem 0;
}

.hero-bg__title{
  margin: 0;
  color: #fff;
  font-size: clamp(2.1rem, 4vw, 3.6rem);
  line-height: 1.05;
}

.hero-bg__lead{
  margin: 0 0 1.1rem 0;
  color: rgba(255,255,255,0.82);
  font-family: var(--font-body);
  line-height: 1.75;
  max-width: 52ch;
  font-weight: 700;
}

/* CTA buttons (reusing the same button system as earlier) */
.hero-bg__actions{
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 0.9rem;
}


/* Responsive: stacks nicely */
@media (max-width: 900px){
  .hero-bg__content{
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .hero-bg__lead{ max-width: 65ch; }
}


.values-section {
  padding: 6rem 0;
  background: #fff;
}

.values-eyebrow {
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--nav-muted);
  margin-bottom: 0.5rem;
}

.values-title {
  font-size: clamp(3rem, 3.6vw, 3.4rem);
  margin-bottom: 3.5rem;
  color: var(--nav-text);
}

.values-list {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.value-row {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  gap: 3rem;
  padding-top: 3rem;
  border-top: solid rgba(0,0,0,0.1) 2px;
  
}

.value-text h3 {
  font-family: var(--font-heading);
  font-size: 2.3rem;
  margin-bottom: 0.75rem;
  color: var(--nav-text);
}

.value-text p {
  color: var(--nav-muted);
  max-width: 480px;
  line-height: 1.6;
  font-weight: 600;
  font-size: 1.2rem;
}


.value-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
}


@media (max-width: 768px) {
  .value-row,
  .value-row.reverse {
    grid-template-columns: 1fr;
  }

  .value-row.reverse .value-text {
    order: 0;
  }
}

/* ===== Learning Environment Section (full width, dark) ===== */

.env-section{
  width: 100%;
  background: var(--nav-text);
  padding: clamp(2.5rem, 5vw, 4.5rem) 0;
  color: #fff;
}

.env-inner{
  width: min(1100px, calc(100% - 2rem));
  margin-inline: auto;
}

/* Top header */
.env-head{
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  max-width: 70ch;
}

.env-eyebrow{
  font-family: var(--font-body);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.72);
  margin: 0 0 0.75rem 0;
}

.env-title{
  margin: 0 0 0.75rem 0;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.08;
}

.env-subtitle{
  margin: 0;
  color: rgba(255,255,255,0.78);
  line-height: 1.7;
  font-family: var(--font-body);
}

/* Two-column grid */
.env-grid{
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(1rem, 3vw, 2.5rem);
  align-items: center;
}

/* Image card */
.env-media{
  border-radius: 18px;
  overflow: hidden;
  border: 2px solid rgba(255,255,255,0.10);
  box-shadow: 0 18px 40px rgba(0,0,0,0.28);
}

.env-media img{
  width: 100%;
  height: 100%;
}

/* Right content */
.env-card-title{
  margin: 0 0 0.75rem 0;
  font-size: clamp(1.25rem, 2vw, 1.6rem);
}

.env-card-text{
  margin: 0 0 1rem 0;
  color: rgba(255,255,255,0.78);
  line-height: 1.75;
  font-family: var(--font-body);
}

/* Optional bullets */
.env-points{
  margin: 0;
  padding-left: 1.1rem;
  color: rgba(255,255,255,0.80);
  line-height: 1.7;
}

.env-points li{
  margin: 0.35rem 0;
}

/* Responsive */
@media (max-width: 900px){
  .env-grid{
    grid-template-columns: 1fr;
  }
  .env-head{
    max-width: 100%;
  }
}

.hook_cta{
  width: 100%;
  background: var(--nav-accent);
  padding: 3rem 0;
  justify-items: center;
}

.hook{
  display: flex;
  color: #000;
  justify-content: center;
  font-weight: 600;
  font-size: 2.4rem;
  padding-bottom: 10px;
}

#hook21{
  background:var(--nav-text);
}

#hook22{
  color: #fff;
}

.cta{
  display:flex;
  justify-content: center;
}

.privacy-link{
  
  color: var(--nav-accent);

  transition: color 180ms ease;
}

.privacy-link:hover{
  color: #5f4e2c;
}



/* ===================================================== PRIVACY POLICY =========================================================*/

/* -----------------------------
   Privacy Policy Page
------------------------------ */

.privacy-hero {
  background-color: var(--nav-text);
  color: #ffffff;
  padding: clamp(4rem, 8vw, 6rem) 1.5rem;
  text-align: center;
}

.privacy-hero h1 {
  font-size: clamp(2.2rem, 4vw, 3rem);
  margin-bottom: 0.75rem;
}

.privacy-hero p {
  font-size: 1.05rem;
  opacity: 0.9;
}

/* Content */
.privacy-content {
  background-color: #ffffff;
  padding: 4rem 1.5rem;
}

.privacy-container {
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.75;
  color: var(--nav-text);
}

.privacy-container h2 {
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
}

.privacy-container p {
  color: var(--nav-muted);
  font-size: 0.95rem;
}

/* ----------------------
   OUR LOCATIONS (REWRITE)
------------------------ */

.loc-page{
  background: var(--nav-bg);
}

/* Full-width header band */
.loc-hero{
  width: 100%;
  background: var(--nav-text);
  color: var(--nav-bg);
  padding: 3.5rem 1rem;
}

.loc-hero-inner{
  max-width: 1100px;
  margin: 0 auto;
}

.loc-hero-title{
  display:flex;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  letter-spacing: 0.03em;
  color: var(--nav-bg);
}

/* Main content wrapper */
.loc-content{
  padding: 3rem 1rem 5rem;
}

.loc-grid{
  max-width: 1100px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 2rem;
  align-items: start;
}

/* Left panel */
.loc-aside{
  background: #f9fafb;
  border-radius: 16px;
  padding: 1.75rem;
  box-shadow: 0 20px 45px rgba(0,0,0,0.08);
  border: 1px solid rgba(196,176,137,0.25);
}

.loc-aside-title{
  margin: 0 0 1rem;
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--nav-text);
  font-size: clamp(1.5rem, 3vw, 1.8rem);
}

.loc-hours-title h3{
  font-family: var(--font-heading); 
}

.loc-info-list{
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem;
  display: grid;
  gap: 0.75rem;
}

.loc-info-item{
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.loc-info-icon{
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(196,176,137,0.18);
  color: var(--nav-text);
}

.loc-info-item a{
  font-family: var(--font-body);
  color: var(--nav-text);
  text-decoration: none;
  font-weight: 700;
}

.loc-info-item a:hover{
  opacity: 0.7;
}

.loc-hours{
  border-top: 1px solid rgba(39,57,82,0.12);
  padding-top: 1rem;
  margin-top: 1rem;
}

.loc-hours-title{
  margin: 0 0 0.5rem;
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--nav-text);
  font-size: clamp(1.5rem, 3vw, 1.8rem);
}

.loc-hours-text{
  margin: 0 0 0.5rem;
  font-family: var(--font-body);
  color: var(--nav-muted);
  line-height: 1.6;
}

.loc-hours-note{
  margin: 0;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--nav-muted);
}

.loc-aside-btn{
  display: inline-flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  margin-top: 1.25rem;
  padding: 0.95rem 1rem;
  border-radius: 12px;
  background: var(--nav-text);
  color: var(--nav-bg);
  text-decoration: none;
  font-family: var(--font-body);
  font-weight: 800;
  border: 1px solid rgba(39,57,82,0.12);
  transition: transform 140ms ease, box-shadow 140ms ease, background-color 140ms ease;
}

.loc-aside-btn:hover{
  background: var(--nav-accent);
  color: var(--nav-text);
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.10);
}

/* Right panel */
.loc-main{
  background: #ffffff;
  border-radius: 16px;
  padding: 1.75rem;
  box-shadow: 0 20px 45px rgba(0,0,0,0.08);
  border: 1px solid rgba(196,176,137,0.25);
}

.loc-main-title{
  margin: 0;
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--nav-text);
  font-size: clamp(1.5rem, 3vw, 1.8rem);
}

.loc-main-subtitle{
  margin: 0.25rem 0 1rem;
  font-family: var(--font-body);
  color: var(--nav-muted);
}

/* Accordion */
.loc-accordion{
  display: grid;
  gap: 0.8rem;
}

.loc-item{
  border: 1px solid rgba(39,57,82,0.12);
  border-radius: 14px;
  background: #fff;
  overflow: hidden;
}

.loc-summary{
  list-style: none;
  cursor: pointer;
  padding: 1.05rem 1rem;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 0.75rem;
  user-select: none;
}

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

.loc-name{
  font-family: var(--font-body);
  font-weight: 850;
  color: var(--nav-text);
}

.loc-region{
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--nav-muted);
  white-space: nowrap;
}

.loc-chevron{
  color: var(--nav-muted);
  transition: transform 160ms ease;
}

.loc-item[open] .loc-chevron{
  transform: rotate(180deg);
}

.loc-panel{
  border-top: 1px solid rgba(39,57,82,0.10);
  padding: 1rem;
  background: #fff;
}

.loc-panel-grid{
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 1rem;
  align-items: start;
}

.loc-img{
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(39,57,82,0.10);
  background: #eef2f7;
}

.loc-img img{
  width: 100%;
  height: 140px;
  object-fit: cover;
  display: block;
}

.loc-details p{
  margin: 0 0 0.6rem;
  font-family: var(--font-body);
  color: rgba(39,57,82,0.85);
  line-height: 1.55;
}

.loc-details i{
  margin-right: 0.5rem;
  color: rgba(39,57,82,0.55);
}

.loc-details a{
  color: var(--nav-text);
  text-decoration: none;
  font-weight: 800;
}

.loc-details a:hover{ opacity: 0.7; }

.loc-actions{
  margin-top: 0.75rem;
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.loc-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0.9rem;
  border-radius: 12px;
  background: var(--nav-text);
  color: var(--nav-bg);
  text-decoration: none;
  font-family: var(--font-body);
  font-weight: 850;
  border: 1px solid rgba(39,57,82,0.12);
  transition: transform 140ms ease, box-shadow 140ms ease, background-color 140ms ease;
}

.loc-btn:hover{
  background: var(--nav-accent);
  color: var(--nav-text);
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.10);
}

.loc-btn-ghost{
  background: transparent;
  color: var(--nav-text);
  border: 1px solid rgba(39,57,82,0.18);
}

.loc-btn-ghost:hover{
  background: rgba(196,176,137,0.18);
}

/* Responsive */
@media (max-width: 900px){
  .loc-grid{
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px){
  .loc-panel-grid{
    grid-template-columns: 1fr;
  }
  .loc-img img{
    height: 180px;
  }
  .loc-summary{
    grid-template-columns: 1fr auto;
  }
  .loc-region{
    display: none;
  }
}

/* =========================
   CAREERS HERO (RESPONSIVE)
============================
/* =========================
   CAREERS HERO
========================= */
.careers-hero{
  position: relative;
  width: 100%;
  height: clamp(400px, 45vw, 800px);
  overflow: hidden;
  isolation: isolate;
}

.careers-hero-img{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}

/* Dark gradient for readability */
.careers-hero::after{
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.85) 0%,
    rgba(0,0,0,0.45) 40%,
    rgba(0,0,0,0.10) 75%,
    rgba(0,0,0,0) 100%
  );
}

.careers-hero-content{
  position: absolute;
  inset: 0;
  z-index: 2;

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

  padding: 0 20px 10px;
  text-align: center;
}

.careers-hero-title{
  margin: 0;
  color: #fff;
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4.8vw, 3.4rem);
  line-height: 1.05;
}

.careers-hero-subtitle{
  margin-top: 12px;
  color: rgba(255,255,255,0.8);
  font-size: 1.00rem;
  font-weight: 600;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}


/* =========================
   CAREERS CONTENT
========================= */
.careers{
  background: #fff;
}

.careers-inner{
  max-width: 980px;
  padding: clamp(40px, 6vw, 90px) 0;
}

.careers-header{
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}

.careers-title{
  margin: 0;
  font-size: 3.5rem;
  color: var(--nav-text);
}

.careers-intro{
  margin-top: 14px;
  color: var(--nav-muted);
  line-height: 1.75;
  font-size: 1.2rem;
}

/* GRID */
.careers-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  margin-bottom: 56px;
}

.careers-card{
  background: #f9fafb;
  padding: 28px;
  border-radius: 16px;
  border: 1px solid rgba(16,24,40,0.08);
}

.careers-card h3{
  margin: 0 0 14px;
  font-family: var(--font-heading);
  color: var(--nav-text);
  font-size: 1.7rem;
}

.careers-points{
  margin: 0;
  padding-left: 1.1rem;
  color: var(--nav-muted);
  line-height: 1.7;
}

.careers-points li{
  margin-bottom: 8px;
  font-size: 1.1rem;
}


/* QUOTE */
.careers-quote{
  max-width: 760px;
  margin: 0 auto 56px;
  padding: 32px;
  text-align: center;
  background: #fff;
  border-left: 4px solid var(--nav-accent);
}

.careers-quote p{
  margin: 0;
  font-style: italic;
  color: var(--nav-text);
  line-height: 1.7;
}

.careers-quote span{
  display: block;
  margin-top: 10px;
  color: var(--nav-muted);
  font-size: 0.95rem;
}


/* APPLY */
.careers-apply{
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}

.careers-apply h3{
  margin-bottom: 10px;
  color: var(--nav-text);
}

.careers-apply p{
  color: var(--nav-muted);
  line-height: 1.7;
}

.careers-apply a{
  color: var(--nav-text);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid rgba(39,57,82,0.4);
}

/* =========================
   TESTIMONIALS SECTION 
========================= */
/* =========================
   TESTIMONIALS (BLOCK ONLY)
========================= */

.testi{
  width: 100%;
  background: var(--nav-accent); /* your gold */
  padding: clamp(15px, 2.5vw, 40px) 0;
  padding-bottom: 10px;
}

.testi-wrap{
  width: min(1200px, 92%);
  margin: 0 auto;
}

.testi-anchor,
.testi-end{

  text-align: center;
  margin-left: auto;
  margin-right: auto;  

  color: rgba(39, 57, 82, 0.92);
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0.01em;
  max-width: 70ch;
}

.testi-anchor::before{
  content: "";
  display: block;
  width: 64px;
  height: 2px;
  background: rgba(39, 57, 82, 0.25);
  margin: 0 auto 14px;
}

.testi-end::after{
  content: "";
  display: block;
  width: 64px;
  height: 2px;
  background: rgba(39, 57, 82, 0.25);
  margin: 14px auto 0;
}



.testi-anchor{
  margin-bottom: 18px;
}

.testi-end{
  margin-top: 18px;
}

/* the actual layout */
.testi-grid{
  display: grid;
  gap: 16px;
}

/* base card */
.testi-card{
  background: var(--nav-bg);
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(16, 24, 40, 0.10);
  box-shadow: 0 8px 26px rgba(16, 24, 40, 0.08);
}

.testi-body{
  padding: clamp(16px, 2vw, 22px);
}

.testi-tag{
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--nav-muted);
  letter-spacing: 0.02em;
  margin-bottom: 10px;
}

.testi-quote{
  color: var(--nav-text);
  font-family: var(--font-body);
  font-size: clamp(1.02rem, 1.1vw, 1.15rem);
  line-height: 1.7;
  margin-bottom: 12px;
}

.testi-meta{
  color: rgba(95, 107, 122, 0.95);
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 650;
}

/* FEATURED (square-ish): image + text side-by-side on desktop */
.testi-card--feature{
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 260px;
}

.testi-card--feature .testi-media{
  min-height: 260px;
  background: #e5e7eb;
}

.testi-card--feature .testi-media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* COMPACT rectangles: tighter and “supporting” */
.testi-card--compact .testi-body{
  padding: 16px 18px;
}

.testi-card--compact .testi-quote{
  font-size: 1rem;
  line-height: 1.65;
  margin-bottom: 10px;
}

/* Make the featured ones feel subtly more important (without screaming) */
.testi-card--feature{
  border: 1px solid rgba(16, 24, 40, 0.14);
  box-shadow: 0 14px 34px rgba(16, 24, 40, 0.12);
}

/* Responsive */
@media (max-width: 900px){
  .testi-card--feature{
    grid-template-columns: 1fr;
  }

  .testi-card--feature .testi-media{
    min-height: 220px;
  }
}

/* =========================
   FAQ SPLIT SECTION (6)
========================= */

.faq-split{
  width: 100%;
  padding: clamp(40px, 5vw, 80px) 0;
}

.faq-split-wrap{
  width: min(1200px, 92%);
  margin: 0 auto;

  display: grid;
  grid-template-columns: 0.9fr 1.4fr;
  gap: clamp(26px, 3.5vw, 54px);
  align-items: start;
}

/* LEFT: Borderless panel */
.faq-aside{
  position: sticky;
  top: calc(var(--topbar-h) + 92px); /* tweak based on your navbar height */
  align-self: start;

  padding: 6px 0; /* borderless "placed" feel */
}

.faq-aside-title{
  font-size: clamp(2rem, 3.5vw, 2.5rem);
  font-weight: 600;
  color: var(--nav-text);
  margin-bottom: 16px;
}

.faq-contact-list{
  list-style: none;
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 0;
}

.faq-contact-item{
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  align-items: start;
}

.faq-ico{
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: rgba(196, 176, 137, 0.18); /* subtle accent, still borderless */
  color: var(--nav-text);
  font-size: 0.95rem;
}

.faq-contact-text{
  display: grid;
  gap: 2px;
}

.faq-contact-label{
  font-size: 0.9rem;
  color: var(--nav-muted);
}

.faq-contact-link{
  color: var(--nav-text);
  font-weight: 650;
  text-decoration: none;
  letter-spacing: 0.01em;
}

.faq-contact-link:hover{
  text-decoration: underline;
  text-underline-offset: 3px;
}

.faq-aside-divider{
  height: 1px;
  background: rgba(16, 24, 40, 0.12);
  margin: 18px 0 14px;
}

.faq-aside-subtitle{
  font-size: 1.05rem;
  color: var(--nav-text);
  margin-bottom: 8px;
}

.faq-hours{
  color: var(--nav-text);
  line-height: 1.6;
  font-size: 0.98rem;
}

.faq-hours-muted{
  color: var(--nav-muted);
}

/* RIGHT: FAQ main */
.faq-head{
  margin-bottom: 18px;
}

.faq-title{
  font-size: clamp(2rem, 3.5vw, 2.5rem);
  font-weight: 600;
  color: var(--nav-text);
  margin-bottom: 6px;
}

.faq-sub{
  color: var(--nav-muted);
  line-height: 1.6;
  max-width: 62ch;
}

/* Accordion */
.faq-acc{
  display: grid;
  gap: 12px;
}

.faq-item{
  border-bottom: 1px solid rgba(16, 24, 40, 0.14);
  padding-bottom: 12px;
}

.faq-q{
  list-style: none;
  cursor: pointer;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;

  color: var(--nav-text);
  font-weight: 700;
  font-size: 1.05rem;
  padding: 14px 0;
}

.faq-q::-webkit-details-marker{
  display: none;
}

.faq-chevron{
  transition: transform 180ms ease;
  color: var(--nav-muted);
}

.faq-item[open] .faq-chevron{
  transform: rotate(180deg);
}

.faq-a{
  color: var(--nav-muted);
  line-height: 1.7;
  padding: 0 0 10px 0;
  max-width: 75ch;
}

/* Responsive */
@media (max-width: 900px){
  .faq-split-wrap{
    grid-template-columns: 1fr;
  }

  .faq-aside{
    position: static;
    top: auto;
    padding: 0;
  }
}

.privacy-updated{
  margin-top: 2rem;
  font-size: 0.85rem;
  color: var(--nav-muted);
}
