:root {
  --ink: #17213f;
  --muted: #5e6882;
  --paper: #fffaf4;
  --white: #ffffff;
  --blue: #253a73;
  --teal: #1b9f9a;
  --sun: #ffc548;
  --coral: #ff6d5f;
  --rose: #f2547d;
  --leaf: #82bd5a;
  --line: rgba(23, 33, 63, 0.12);
  --shadow: 0 24px 70px rgba(27, 39, 76, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Nunito", Arial, sans-serif;
  background: var(--paper);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

/* ─── SITE HEADER: 3-tier layout ─── */
.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  background: var(--blue);
}

/* Tier 1 — Announcement ticker */
.header-ticker {
  overflow: hidden;
  white-space: nowrap;
  background: linear-gradient(90deg, #ff6d5f 0%, #f2547d 40%, #ff9a3c 75%, #ffc548 100%);
  padding: 18px 0;
  position: relative;
}

.header-ticker::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    90deg,
    rgba(255,255,255,0.06) 0px,
    rgba(255,255,255,0.06) 1px,
    transparent 1px,
    transparent 40px
  );
  pointer-events: none;
}

.ticker-track {
  display: inline-flex;
  animation: ticker-scroll 80s linear infinite;
}

.ticker-track span {
  font-size: 1.18rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.02em;
  text-shadow: 0 1px 6px rgba(0,0,0,0.22);
  display: flex;
  align-items: center;
  gap: 6px;
}

.ticker-track span strong {
  font-weight: 900;
  letter-spacing: 0.04em;
  background: rgba(255,255,255,0.2);
  padding: 1px 8px;
  border-radius: 4px;
}

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

/* Contact pills inside main nav card */
.header-center-pills {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.contact-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 700;
  white-space: nowrap;
  transition: transform 0.18s, box-shadow 0.18s;
}

a.contact-pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
}

.contact-pill-rose {
  background: rgba(242,84,125,0.1);
  border: 1.5px solid rgba(242,84,125,0.2);
  color: #c73060;
}

.contact-pill-teal {
  background: rgba(27,159,154,0.1);
  border: 1.5px solid rgba(27,159,154,0.2);
  color: #0e7a76;
}

.contact-pill-blue {
  background: rgba(37,58,115,0.07);
  border: 1.5px solid rgba(37,58,115,0.15);
  color: var(--blue);
}

/* Tier 3 — Main nav bar (white card) */
.header-main-bar {
  background: var(--blue);
  padding: 10px 24px 14px;
}

.header-nav-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  max-width: 1180px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 18px;
  padding: 10px 20px 10px 14px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.15);
  overflow: hidden;
}

.header-nav-inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg,
    #f2547d 0%,
    #ffc548 20%,
    #82bd5a 40%,
    #1b9f9a 60%,
    #5b8dee 80%,
    #a78bfa 100%);
  border-radius: 18px 18px 0 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  text-decoration: none;
}

.brand-logo {
  display: block;
  height: 68px;
  width: auto;
  object-fit: contain;
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-name {
  font-family: "Baloo 2", "Nunito", Arial, sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--blue);
  line-height: 1;
  letter-spacing: -0.01em;
}

.brand-tagline {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-links a {
  position: relative;
  padding: 8px 16px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 0.95rem;
  color: rgba(23, 33, 63, 0.7);
  transition: background 0.2s, color 0.2s;
  letter-spacing: 0.01em;
}

.nav-links a:hover,
.nav-links a.nav-active {
  background: var(--rose);
  color: #ffffff;
}

.nav-links a:hover { opacity: 0.9; }

/* Header actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.btn-search {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  background: var(--sun);
  cursor: pointer;
  transition: transform 0.18s, box-shadow 0.18s;
  box-shadow: 0 2px 10px rgba(255,197,72,0.35);
}

.btn-search:hover {
  transform: scale(1.08);
  box-shadow: 0 4px 16px rgba(255,197,72,0.5);
}

.btn-enroll {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 20px;
  border-radius: 50px;
  background: var(--rose);
  color: #ffffff;
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: 0.01em;
  transition: transform 0.18s, box-shadow 0.18s, background 0.2s;
  box-shadow: 0 4px 16px rgba(242,84,125,0.35);
  white-space: nowrap;
}

.btn-enroll:hover {
  background: #e0436e;
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(242,84,125,0.45);
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: end;
  overflow: hidden;
  isolation: isolate;
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media {
  z-index: -3;
  background-image: url("source-site/media/class1.jpg");
  background-position: center;
  background-size: cover;
  transform: scale(1.02);
}

.hero-shade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(23, 33, 63, 0.86) 0%, rgba(23, 33, 63, 0.64) 42%, rgba(23, 33, 63, 0.2) 100%),
    linear-gradient(0deg, rgba(255, 250, 244, 1) 0%, rgba(255, 250, 244, 0) 24%);
}

.hero::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  height: 12px;
  background: linear-gradient(90deg, var(--coral) 0 22%, var(--sun) 22% 44%, var(--teal) 44% 66%, var(--rose) 66% 82%, var(--leaf) 82%);
}

.hero-content {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 210px 0 280px;
  color: var(--white);
}

.badge,
.eyebrow {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.badge {
  display: inline-flex;
  max-width: 100%;
  margin-bottom: 22px;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(10px);
}

/* AWBC Featured Badge */
.awbc-badge-link {
  display: inline-block;
  margin-bottom: 24px;
  text-decoration: none;
}

.awbc-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px 10px 14px;
  border-radius: 50px;
  border: 1.5px solid rgba(255, 197, 72, 0.7);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  color: #fff;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, border-color 0.22s ease;
  box-shadow: 0 2px 16px rgba(255, 197, 72, 0.18);
  animation: badge-pulse 3s ease-in-out infinite;
}

@keyframes badge-pulse {
  0%, 100% { box-shadow: 0 2px 16px rgba(255, 197, 72, 0.18); }
  50%       { box-shadow: 0 4px 28px rgba(255, 197, 72, 0.45); }
}

.awbc-badge::before {
  content: '';
  position: absolute;
  top: 0; left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  transform: skewX(-20deg);
  animation: badge-shine 4s ease-in-out infinite;
}

@keyframes badge-shine {
  0%   { left: -75%; }
  40%, 100% { left: 140%; }
}

.awbc-badge-link:hover .awbc-badge {
  transform: translateY(-2px) scale(1.03);
  background: rgba(255, 197, 72, 0.22);
  border-color: var(--sun);
  box-shadow: 0 6px 32px rgba(255, 197, 72, 0.5);
}

.awbc-badge-icon {
  font-size: 1.4rem;
  line-height: 1;
  flex-shrink: 0;
}

.awbc-badge-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.awbc-badge-top {
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--sun);
  line-height: 1.2;
}

.awbc-badge-sub {
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.02em;
  line-height: 1.3;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: "Baloo 2", "Nunito", Arial, sans-serif;
  line-height: 0.94;
  letter-spacing: 0;
}

h1 {
  max-width: 860px;
  margin-bottom: 18px;
  font-size: clamp(1.55rem, 3vw, 2.6rem);
  line-height: 1.2;
  text-wrap: balance;
}

.hero-line-1,
.hero-line-2 {
  color: #ffffff;
}

.hero-line-3 {
  color: #ffc548;
  text-shadow: 0 2px 24px rgba(255,197,72,0.5);
}

.hero-text {
  max-width: 650px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  line-height: 1.62;
}

.hero-actions,
.visit-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* Trust badges row in hero */
.hero-trust-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  margin-bottom: 48px;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.92);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 6px 14px;
  border-radius: 50px;
  backdrop-filter: blur(6px);
  white-space: nowrap;
}

.trust-badge-licensed {
  background: rgba(255, 197, 72, 0.18);
  border-color: rgba(255, 197, 72, 0.55);
  color: #ffc548;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border: 2px solid transparent;
  border-radius: 8px;
  font-weight: 900;
  transition: transform 150ms ease, box-shadow 150ms ease, background 150ms ease;
}

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

.btn-primary {
  color: var(--white);
  background: var(--coral);
  box-shadow: 0 14px 30px rgba(255, 109, 95, 0.3);
}

.btn-secondary {
  color: var(--white);
  background: var(--teal);
  box-shadow: 0 14px 30px rgba(27, 159, 154, 0.28);
}

.btn-light {
  color: var(--ink);
  background: var(--white);
}

.quick-info {
  position: absolute;
  right: max(20px, calc((100vw - 1180px) / 2));
  bottom: 52px;
  display: grid;
  grid-template-columns: repeat(3, minmax(150px, 1fr));
  width: min(720px, calc(100% - 40px));
  border-radius: 8px;
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
}

.quick-info article {
  min-width: 0;
  padding: 20px;
  border-right: 1px solid var(--line);
}

.quick-info article:last-child {
  border-right: 0;
}

.info-icon {
  display: inline-grid;
  place-items: center;
  width: 26px;
  height: 26px;
  margin-bottom: 12px;
  border-radius: 8px;
  color: var(--white);
  background: var(--rose);
  font-weight: 900;
}

.quick-info p {
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 900;
  text-transform: uppercase;
}

.quick-info strong {
  display: block;
  line-height: 1.35;
}

/* ── FAQ Section ── */
.faq-section {
  background: #f7f9fc;
  padding: 72px 0;
}

.faq-inner {
  width: min(760px, calc(100% - 40px));
  margin: 0 auto;
  text-align: center;
}

.faq-inner .eyebrow {
  color: var(--teal);
}

.faq-inner h2 {
  margin-bottom: 2.5rem;
}

.faq-list {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 0.5rem;
}

.faq-item {
  background: #fff;
  border: 1px solid #e4eaf2;
  border-radius: 12px;
  overflow: hidden;
  transition: box-shadow 0.2s ease;
}

.faq-item:hover {
  box-shadow: 0 4px 18px rgba(27, 159, 154, 0.1);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  font-weight: 700;
  font-size: 1rem;
  color: var(--blue);
  cursor: pointer;
  list-style: none;
  gap: 12px;
  user-select: none;
}

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

.faq-item summary::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--teal);
  flex-shrink: 0;
  transition: transform 0.25s ease;
  line-height: 1;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item[open] {
  border-color: var(--teal);
  box-shadow: 0 4px 18px rgba(27, 159, 154, 0.12);
}

.faq-item[open] summary {
  color: var(--teal);
  border-bottom: 1px solid #e4eaf2;
}

.faq-item p {
  padding: 16px 22px 20px;
  margin: 0;
  color: #4a5568;
  line-height: 1.7;
  font-size: 0.95rem;
}

.faq-item p a {
  color: var(--teal);
  font-weight: 600;
  text-decoration: none;
}

.faq-item p a:hover {
  text-decoration: underline;
}

.trust-strip,
.section,
.photo-band,
.visit-section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  padding: 54px 0 22px;
}

.trust-strip p {
  min-height: 112px;
  margin: 0;
  padding: 24px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 36px rgba(23, 33, 63, 0.08);
}

.trust-strip strong,
.trust-strip span {
  display: block;
}

.trust-strip strong {
  margin-bottom: 8px;
  font-size: 1.2rem;
}

.trust-strip span {
  color: var(--muted);
  line-height: 1.55;
}

.section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 54px;
  padding: 78px 0;
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--teal);
}

.section-copy h2,
.visit-section h2 {
  margin-bottom: 18px;
  font-size: clamp(2.6rem, 5vw, 5rem);
  color: var(--blue);
}

.section-copy p,
.visit-section p,
.feature-card p {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.72;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.feature-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.feature-card span {
  display: inline-flex;
  margin-bottom: 34px;
  color: var(--coral);
  font-weight: 900;
}

.feature-card h3 {
  margin-bottom: 10px;
  font-size: 1.3rem;
}

.feature-card p {
  margin-bottom: 0;
  font-size: 1rem;
}

.photo-band {
  display: grid;
  grid-template-columns: 0.85fr 1.1fr 0.85fr 0.85fr;
  gap: 14px;
  padding-bottom: 84px;
}

.photo-band article {
  position: relative;
  min-height: 400px;
  border-radius: 8px;
  overflow: hidden;
  background: var(--ink);
}

.photo-band article:nth-child(2) {
  min-height: 420px;
}

.photo-band article:nth-child(3),
.photo-band article:nth-child(4) {
  min-height: 340px;
}

.photo-band img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.photo-band article:hover img {
  transform: scale(1.04);
}

.photo-band article::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(23, 33, 63, 0) 35%, rgba(23, 33, 63, 0.8) 100%);
}

.photo-band div {
  position: absolute;
  z-index: 1;
  right: 22px;
  bottom: 20px;
  left: 22px;
  color: var(--white);
}

.photo-band .eyebrow {
  margin-bottom: 6px;
  color: var(--sun);
}

.photo-band h3 {
  margin-bottom: 0;
  font-size: clamp(1.3rem, 2.4vw, 2rem);
}


.visit-section {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 36px;
  margin-bottom: 70px;
  padding: 42px;
  border-radius: 8px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(37, 58, 115, 0.96), rgba(27, 159, 154, 0.92)),
    url("source-site/media/class2.jpg") center/cover;
  box-shadow: var(--shadow);
}

.visit-section .eyebrow,
.visit-section p,
.visit-section h2 {
  color: var(--white);
}

.visit-section h2 {
  max-width: 780px;
  margin-bottom: 12px;
}

.visit-section p {
  max-width: 690px;
  margin-bottom: 0;
  opacity: 0.86;
}

.visit-actions {
  justify-content: flex-end;
}

/* ─── GALLERY SECTION ─── */
.gallery-section {
  padding: 80px 0 60px;
  background: var(--paper);
}

.gallery-header {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto 40px;
  text-align: center;
}

.gallery-subtitle {
  max-width: 560px;
  margin: 12px auto 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.6;
}

.gallery-grid {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  grid-template-rows: 280px 280px;
  gap: 16px;
}

.gallery-item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
}

.gallery-featured {
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(37,58,115,0.82) 0%, rgba(37,58,115,0.1) 55%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-tag {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 50px;
  background: var(--rose);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
  width: fit-content;
}

.gallery-overlay p {
  color: rgba(255,255,255,0.9);
  font-size: 0.95rem;
  font-weight: 600;
  margin: 0;
  line-height: 1.4;
}

.gallery-cta {
  width: min(1180px, calc(100% - 40px));
  margin: 36px auto 0;
  text-align: center;
}

/* ─── TESTIMONIALS SECTION ─── */
.testimonials-section {
  padding: 80px 0 70px;
  background: linear-gradient(160deg, #eef2ff 0%, #f8f4ff 50%, #fff0f6 100%);
  overflow: hidden;
}

.testimonials-header {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto 48px;
  text-align: center;
}

.testimonials-header h2 {
  margin-bottom: 16px;
}

.google-rating-bar {
  display: flex;
  justify-content: center;
  margin-top: 8px;
}

.google-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 24px;
  border-radius: 50px;
  background: #ffffff;
  border: 1.5px solid rgba(66,133,244,0.2);
  box-shadow: 0 3px 16px rgba(66,133,244,0.12);
  color: var(--ink);
  text-decoration: none;
  transition: transform 0.18s, box-shadow 0.18s;
}

.google-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(66,133,244,0.2);
}

.google-badge-text {
  display: flex;
  align-items: center;
  gap: 8px;
}

.google-rating-score {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--ink);
  line-height: 1;
}

.google-stars-row {
  font-size: 1.1rem;
  color: #fbbf24;
  letter-spacing: 1px;
}

.google-review-count {
  font-size: 0.85rem;
  font-weight: 700;
  color: #5f6368;
  border-left: 1.5px solid #e0e0e0;
  padding-left: 10px;
  margin-left: 2px;
}

/* Slider track */
.testimonials-track-wrapper {
  overflow: hidden;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.testimonials-track {
  display: flex;
  gap: 24px;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.review-card {
  flex: 0 0 calc(33.333% - 16px);
  background: #ffffff;
  border-radius: 20px;
  padding: 28px 28px 24px;
  box-shadow:
    0 4px 24px rgba(37,58,115,0.07),
    0 1px 4px rgba(37,58,115,0.05);
  display: flex;
  flex-direction: column;
  gap: 16px;
  border: 1px solid rgba(37,58,115,0.06);
  transition: transform 0.25s, box-shadow 0.25s;
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(37,58,115,0.13);
}

.review-stars {
  font-size: 1.1rem;
  color: #fbbf24;
  letter-spacing: 2px;
}

.review-text {
  font-size: 0.97rem;
  line-height: 1.7;
  color: var(--ink);
  opacity: 0.85;
  margin: 0;
  flex: 1;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid rgba(37,58,115,0.07);
}

.review-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rose) 0%, var(--coral) 100%);
  color: #fff;
  font-weight: 900;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.review-author strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--ink);
}

.review-author span {
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 600;
}

/* Avatar color variants */
.ra-coral { background: linear-gradient(135deg, #ff6d5f 0%, #f2547d 100%); }
.ra-teal  { background: linear-gradient(135deg, #1b9f9a 0%, #1bbfa0 100%); }
.ra-blue  { background: linear-gradient(135deg, #253a73 0%, #5b8dee 100%); }
.ra-rose  { background: linear-gradient(135deg, #f2547d 0%, #a78bfa 100%); }
.ra-leaf  { background: linear-gradient(135deg, #82bd5a 0%, #1b9f9a 100%); }

/* Review card top row (stars + time) */
.review-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.review-time {
  font-size: 0.75rem;
  color: var(--muted);
  font-weight: 600;
  white-space: nowrap;
}

/* "Read all reviews" CTA */
.reviews-cta {
  text-align: center;
  margin-top: 28px;
}

.reviews-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 700;
  color: #4285F4;
  text-decoration: none;
  padding: 9px 20px;
  border: 1.5px solid rgba(66,133,244,0.3);
  border-radius: 50px;
  background: #fff;
  transition: background 0.18s, box-shadow 0.18s, transform 0.18s;
}

.reviews-cta-link:hover {
  background: #f0f4ff;
  box-shadow: 0 4px 16px rgba(66,133,244,0.15);
  transform: translateY(-1px);
}

/* Carousel controls */
.testimonials-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 36px;
}

.tc-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 2px solid rgba(37,58,115,0.15);
  background: #ffffff;
  color: var(--blue);
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, transform 0.18s;
  box-shadow: 0 2px 10px rgba(37,58,115,0.08);
}

.tc-btn:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: #ffffff;
  transform: scale(1.08);
}

.tc-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}

.tc-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(37,58,115,0.2);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, transform 0.2s;
}

.tc-dot.active {
  background: var(--rose);
  transform: scale(1.3);
}

/* Responsive */
@media (max-width: 900px) {
  .review-card {
    flex: 0 0 calc(50% - 12px);
  }
}

/* ─── HAMBURGER BUTTON ─── */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  background: transparent;
  border: none;
  cursor: pointer;
  border-radius: 8px;
  transition: background 0.2s;
  flex-shrink: 0;
}

.hamburger:hover {
  background: rgba(37, 58, 115, 0.08);
}

.ham-bar {
  display: block;
  width: 100%;
  height: 2.5px;
  background: var(--blue);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
  transform-origin: center;
}

.hamburger.is-open .ham-bar:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.hamburger.is-open .ham-bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.is-open .ham-bar:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* ─── MOBILE MENU DRAWER ─── */
.mobile-menu {
  display: none;
  position: fixed;
  z-index: 19;
  top: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  box-shadow: 0 8px 32px rgba(37,58,115,0.18);
  transform: translateY(-100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  padding-top: 100px;
}

.mobile-menu.is-open {
  transform: translateY(0);
}

.mobile-menu-inner {
  padding: 24px 24px 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mobile-nav-link {
  display: block;
  padding: 14px 16px;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--ink);
  border-radius: 12px;
  transition: background 0.2s, color 0.2s;
  border-bottom: 1px solid rgba(23,33,63,0.06);
}

.mobile-nav-link:last-child {
  border-bottom: none;
}

.mobile-nav-link:hover {
  background: rgba(37,58,115,0.06);
  color: var(--blue);
}

.mobile-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 16px;
  background: rgba(37,58,115,0.04);
  border-radius: 14px;
}

.mobile-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--ink);
  transition: color 0.2s;
}

.mobile-contact-item:hover {
  color: var(--teal);
}

.mobile-enroll {
  justify-content: center;
  font-size: 1rem;
  padding: 14px 24px;
}

body.menu-open {
  overflow: hidden;
}

/* ─── RESPONSIVE: TABLET ─── */
@media (max-width: 980px) {
  .header-contact-bar {
    padding: 6px 16px;
  }

  .header-main-bar {
    padding: 8px 16px 12px;
  }

  .hero-content {
    padding-bottom: 300px;
  }

  .quick-info,
  .trust-strip,
  .section,
  .photo-band,
  .visit-section {
    grid-template-columns: 1fr;
  }

  .quick-info {
    left: 20px;
    right: 20px;
    width: auto;
  }

  .quick-info article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .quick-info article:last-child {
    border-bottom: 0;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .visit-actions {
    justify-content: flex-start;
  }
}

/* ─── FOOTER ─── */
.site-footer {
  background: var(--blue);
  color: rgba(255,255,255,0.85);
  padding-top: 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 60px 24px 40px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-logo-link { display: inline-block; }

.footer-logo {
  height: 72px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.footer-tagline {
  font-size: 0.95rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.75);
  margin: 0;
}

.footer-license {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--teal);
  margin: 0;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-heading {
  font-family: "Baloo 2", "Nunito", Arial, sans-serif;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sun);
  margin: 0;
}

.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.93rem;
  color: rgba(255,255,255,0.8);
}

.footer-list a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.93rem;
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-list a:hover { color: var(--sun); }

.footer-cta-col {
  gap: 12px;
}

.footer-cta-text {
  font-size: 0.88rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.7);
  margin: 0;
}

.footer-cta-btn {
  display: inline-block;
  background: var(--rose);
  color: #fff;
  font-family: "Baloo 2", "Nunito", Arial, sans-serif;
  font-size: 0.9rem;
  font-weight: 800;
  padding: 10px 22px;
  border-radius: 50px;
  text-decoration: none;
  text-align: center;
  transition: background 0.2s, transform 0.15s;
}

.footer-cta-btn:hover {
  background: #d63f6c;
  transform: translateY(-1px);
}

.footer-cta-call {
  display: block;
  font-size: 0.9rem;
  color: var(--teal);
  text-decoration: none;
  font-weight: 700;
  transition: color 0.2s;
}

.footer-cta-call:hover { color: var(--sun); }

.footer-rainbow {
  height: 5px;
  background: linear-gradient(90deg,
    #f2547d 0%,
    #ffc548 20%,
    #82bd5a 40%,
    #1b9f9a 60%,
    #5b8dee 80%,
    #a78bfa 100%);
  margin: 0 24px;
  border-radius: 4px;
}

.footer-bottom {
  max-width: 1180px;
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
}

.footer-bottom a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
}

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

@media (max-width: 900px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    padding: 44px 20px 32px;
  }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 560px) {
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 36px 16px 24px;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 4px;
  }
}

/* ─── FLOATING CALL BUTTON (mobile only) ─── */
.fab-call {
  display: none; /* hidden on desktop */
}

@media (max-width: 768px) {
  .fab-call {
    display: flex;
    align-items: center;
    gap: 10px;
    position: fixed;
    bottom: 22px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    background: linear-gradient(135deg, #ff6d5f 0%, #f2547d 100%);
    color: #fff;
    text-decoration: none;
    font-family: "Baloo 2", "Nunito", Arial, sans-serif;
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: 0.03em;
    padding: 14px 32px;
    border-radius: 50px;
    box-shadow: 0 6px 28px rgba(242, 84, 125, 0.55);
    animation: fab-pulse 2.4s ease-in-out infinite;
    white-space: nowrap;
  }
}

@keyframes fab-pulse {
  0%   { box-shadow: 0 6px 28px rgba(242, 84, 125, 0.55); transform: translateX(-50%) scale(1); }
  50%  { box-shadow: 0 8px 38px rgba(242, 84, 125, 0.75); transform: translateX(-50%) scale(1.04); }
  100% { box-shadow: 0 6px 28px rgba(242, 84, 125, 0.55); transform: translateX(-50%) scale(1); }
}

/* ─── RESPONSIVE: MOBILE ─── */
@media (max-width: 768px) {
  .header-contact-bar {
    display: none;
  }

  /* Ticker smaller on mobile */
  .header-ticker {
    padding: 11px 0;
  }

  .ticker-track span {
    font-size: 0.88rem;
  }

  .header-main-bar {
    padding: 6px 10px 10px;
  }

  /* On mobile: hide all pills, enroll btn, and tagline */
  .header-center-pills {
    display: none;
  }

  .btn-enroll {
    display: none;
  }

  .brand-tagline {
    display: none;
  }

  .brand-logo {
    height: 48px;
  }

  .brand-name {
    font-size: 1rem;
  }

  .hamburger {
    display: flex;
  }

  .mobile-menu {
    display: block;
  }

  .hero-content {
    width: calc(100% - 28px);
    padding-top: 165px;
    padding-bottom: 390px;
  }

  h1 {
    font-size: clamp(1.5rem, 8vw, 2.4rem);
  }

  .hero-actions .btn,
  .visit-actions .btn {
    width: 100%;
  }

  .quick-info,
  .trust-strip,
  .section,
  .photo-band,
  .visit-section {
    width: calc(100% - 28px);
  }

  .trust-strip {
    padding-top: 34px;
  }

  .section {
    gap: 22px;
    padding: 58px 0;
  }

  .photo-band {
    grid-template-columns: 1fr 1fr;
  }

  .photo-band article,
  .photo-band article:nth-child(2),
  .photo-band article:nth-child(3),
  .photo-band article:nth-child(4) {
    min-height: 260px;
  }

  .visit-section {
    padding: 28px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: 260px 220px 220px;
  }

  .gallery-featured {
    grid-row: span 1;
  }
}
