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

:root {
  --black: #1a1a1a;
  --white: #ffffff;
  --cream: #f8faf0;

  /* ── New brand palette ── */
  --plum:        #260F26;   /* darkest — deep plum, body text */
  --navy:        #251F47;   /* deep navy-purple — navbar scrolled, dark headings */
  --teal-dark:   #1B4D6E;   /* dark teal-blue — rich accents */
  --lime-pale:   #E9F5A1;   /* pale yellow-lime — light section backgrounds */
  --lime-soft:   #D9ED92;   /* soft lime — subtle tints */
  --lime-bold:   #C5D62B;   /* bold yellow-green — strong CTA accent */
  --lime-bright: #D4E600;   /* neon lime-yellow — hero dot / highlight */
  --olive:       #A8C627;   /* olive-green — mid-weight accent */
  --green:       #5C9E2E;   /* fresh mid-green — primary interactive */
  --emerald:     #2E7D5E;   /* deep emerald — hover states, links */
  --mint:        #7BC67E;   /* mint green — light UI elements, tags */
  --purple:      #9B59B6;   /* purple — quotes, highlights */

  /* ── Semantic aliases ── */
  --dark1:        var(--plum);
  --dark2:        var(--navy);
  --green-light:  var(--mint);
  --green-bright: var(--lime-bold);
  --gold:         var(--green);
  --gold-light:   var(--mint);
  --gold-muted:   var(--lime-pale);
  --green-dark:   var(--navy);
  --btn-hover:    var(--emerald);

  /* ── Neutrals — kept light, warm ── */
  --gray-100: #f6f8f2;
  --gray-200: #e5e9db;
  --gray-400: #8a9a80;
  --gray-600: #4a5a44;
  --gray-800: #2a3224;

  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --radius-xl: 36px;
  --radius-full: 999px;
  --shadow-sm: 0 2px 12px rgba(38,15,38,0.06);
  --shadow-md: 0 8px 32px rgba(38,15,38,0.10);
  --shadow-lg: 0 20px 60px rgba(38,15,38,0.16);
  /* ── Type scale ── */
  --text-xs:   12px;   /* captions, legal, labels        */
  --text-sm:   14px;   /* secondary body, helper text    */
  --text-base: 16px;   /* primary body copy              */
  --text-md:   18px;   /* lead paragraphs, descriptions  */
  --text-lg:   20px;   /* sub-headings, card titles      */
  --text-xl:   20px;   /* section sub-headings           */
  --text-2xl:  30px;   /* small section headings         */
  --text-3xl:  clamp(32px, 3.5vw, 42px);  /* section headings  */
  --text-4xl:  clamp(42px, 4vw,   54px);  /* major headings    */

  --font-display: 'Fraunces', serif;
  --font-body: 'DM Sans', sans-serif;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --page-max: 1280px;
  --page-pad: clamp(16px, 4vw, 40px);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--plum);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ─────────────── STICKY NAVBAR ─────────────── */
/* Sentinel sits at the top of the page-wrap to detect when hero passes */
#nav-sentinel { position: absolute; top: 0; left: 0; height: 1px; width: 1px; pointer-events: none; }

.navbar {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100vw - 48px);
  max-width: 1400px;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 20px 8px 8px;
  gap: 14px;
  transition: background 0.5s var(--ease), box-shadow 0.5s var(--ease), border-color 0.5s var(--ease), padding 0.4s var(--ease);
  border-radius: var(--radius-full);
  background: transparent;
  border: 1px solid transparent;
}

/* When scrolled past hero — light frosted glass */
.navbar.scrolled {
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border-color: rgba(0,0,0,0.06);
  box-shadow: 0 4px 40px rgba(0,0,0,0.09);
  padding: 8px 20px 8px 8px;
}

/* Nav links scrolled — warm teal-green tint */
.navbar.scrolled .nav-links a {
  color: var(--navy);
  border-color: rgba(92,158,46,0.25);
  background: rgba(92,158,46,0.07);
  backdrop-filter: none;
}
.navbar.scrolled .nav-links a:hover {
  background: var(--emerald);
  border-color: var(--emerald);
  color: var(--white);
}
.navbar.scrolled .btn-signin {
  color: var(--navy);
  border-color: rgba(92,158,46,0.25);
  background: rgba(92,158,46,0.07);
  backdrop-filter: none;
}
.navbar.scrolled .btn-signin:hover {
  background: var(--green);
  border-color: var(--green);
  color: var(--white);
}
.navbar.scrolled .btn-login {
  background: var(--navy);
  color: var(--white);
}
.navbar.scrolled .btn-login:hover {
  background: var(--emerald) !important;
  color: var(--white) !important;
  box-shadow: 0 4px 20px rgba(46,125,94,0.4) !important;
}
.navbar.scrolled .hamburger span {
  background: var(--dark2);
}

/* Logo — generous breathing room on all sides */
.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
  padding: 10px 6px 10px 16px;
}

.nav-logo-img {
  height: 50px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
  transition: opacity 0.2s, filter 0.35s var(--ease);
}
.nav-logo:hover .nav-logo-img { opacity: 0.82; }

/* Natural colours once scrolled past hero */
.navbar.scrolled .nav-logo-img {
  filter: none;
}

/* Centre nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}

/* Pills — larger, warm stone neutral */
.nav-links a {
  display: block;
  font-size: 15px;
  font-weight: 500;
  color: var(--white);
  text-decoration: none;
  padding: 11px 24px;
  border-radius: var(--radius-full);
  border: 1.5px solid rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.13);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  white-space: nowrap;
  letter-spacing: 0.01em;
  transition: background 0.25s, border-color 0.25s, color 0.25s;
}
.nav-links a:hover {
  background: var(--emerald);
  border-color: var(--emerald);
  color: var(--white);
}

/* Nav right */
.nav-right {
  display: flex; align-items: center; gap: 10px; flex-shrink: 0;
}

/* Sign In — same pill size as nav links */
.btn-signin {
  display: inline-flex; align-items: center;
  font-size: 15px; font-weight: 500;
  color: var(--white);
  text-decoration: none;
  padding: 11px 24px;
  border-radius: var(--radius-full);
  border: 1.5px solid rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.13);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  white-space: nowrap;
  flex-shrink: 0;
  letter-spacing: 0.01em;
  transition: background 0.25s, border-color 0.25s, color 0.25s;
}
.btn-signin:hover {
  background: var(--emerald) !important;
  border-color: var(--emerald) !important;
  color: var(--white) !important;
}

/* Log In — solid dark pill, green on hover */
.btn-login {
  display: inline-flex; align-items: center;
  background: var(--white);
  color: var(--dark2);
  font-family: var(--font-body);
  font-size: 15px; font-weight: 700;
  padding: 11px 28px;
  border-radius: var(--radius-full);
  border: none; cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: 0.02em;
  transition: background 0.25s, color 0.25s, box-shadow 0.25s;
  flex-shrink: 0;
}
.btn-login:hover {
  background: var(--emerald) !important;
  color: var(--white) !important;
  box-shadow: 0 6px 24px rgba(46,125,94,0.45) !important;
}

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 4px;
  cursor: pointer; padding: 6px 14px 6px 6px; background: transparent; border: none;
  align-items: flex-end;
}
.hamburger span {
  display: block; height: 1.5px;
  background: var(--white); border-radius: 2px; transition: all 0.3s;
}
.hamburger span:nth-child(1) { width: 22px; }
.hamburger span:nth-child(2) { width: 14px; }
.hamburger span:nth-child(3) { width: 18px; }
.navbar.scrolled .hamburger span { background: var(--dark2); }

/* ─────────────── MOBILE MENU ─────────────── */
.mobile-menu {
  display: none; position: fixed; inset: 0; z-index: 600;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  padding: 88px 28px 40px;
  flex-direction: column; align-items: stretch; gap: 0;
  justify-content: flex-start;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease);
}
.mobile-menu.open { transform: translateX(0); }

/* Close button — minimal, no background */
.mobile-menu-close {
  position: absolute; top: 22px; right: 22px;
  width: 32px; height: 32px; border-radius: 0;
  background: transparent;
  border: none;
  color: var(--gray-400); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: color 0.2s;
  padding: 0;
}
.mobile-menu-close:hover { color: var(--plum); }

/* Nav links — dark text, understated */
.mobile-menu > a {
  font-family: var(--font-body);
  font-size: 15px; font-weight: 500;
  color: var(--navy); text-decoration: none;
  padding: 14px 0;
  border-bottom: 1px solid var(--gray-200);
  text-align: center;
  transition: color 0.2s;
}
.mobile-menu > a:hover { color: var(--emerald); }

/* Button container */
.mobile-menu-buttons {
  display: flex; flex-direction: column; gap: 10px;
  margin-top: 28px;
}

/* Sign In — ghost pill matching desktop Sign In */
.mobile-menu-btn-outline {
  font-family: var(--font-body); font-size: 14px; font-weight: 500;
  color: var(--navy); text-decoration: none;
  padding: 11px; border-radius: var(--radius-full);
  border: 1.5px solid rgba(92,158,46,0.25);
  background: rgba(92,158,46,0.07);
  text-align: center; transition: all 0.25s;
}
.mobile-menu-btn-outline:hover {
  background: var(--emerald);
  color: var(--white);
  border-color: var(--emerald);
}

/* Log In — solid navy pill matching desktop Log In */
.mobile-menu-btn-solid {
  font-family: var(--font-body); font-size: 14px; font-weight: 700;
  color: var(--white); text-decoration: none;
  padding: 12px; border-radius: var(--radius-full);
  background: var(--navy);
  border: 2px solid var(--navy);
  text-align: center;
  letter-spacing: 0.01em;
  display: block;
  transition: all 0.25s;
}
.mobile-menu-btn-solid:hover { background: var(--emerald); border-color: var(--emerald); }

/* ─────────────── PAGE WRAP ─────────────── */
.page-wrap {
  width: 100%;
  background: var(--white);
  position: relative;
}

/* Inner sections get a max-width content container */
.inner {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}

/* ─────────────── HERO ─────────────── */
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  max-height: 960px;
  background: var(--green-dark);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}

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

.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(to right, rgba(26,15,26,0.65) 0%, rgba(26,15,26,0.2) 55%, rgba(26,15,26,0.02) 100%),
    linear-gradient(to top,   rgba(26,15,26,0.82) 0%, rgba(26,15,26,0.0) 52%);
}

/* Avatar group + social proof — mid-left */
.hero-avatars {
  position: absolute;
  top: 28%;
  left: clamp(28px, 5vw, 60px);
  transform: translateY(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.avatar-stack { display: flex; }

.avatar {
  width: 64px; height: 64px;
  border-radius: 50%;
  border: 3px solid rgba(255,255,255,0.85);
  background: var(--gray-400);
  overflow: hidden;
  margin-left: -18px;
}
.avatar:first-child { margin-left: 0; }
.avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }

.hero-social-proof {
  font-size: 22px;
  line-height: 1.45;
  color: rgba(255,255,255,0.88);
  max-width: 420px;
  font-weight: 400;
}
.hero-social-proof .gold-text { color: var(--lime-bright); }
/* no filter change on hover to keep carousel smooth */

/* Bottom content row: huge title + Join us button */
.hero-bottom {
  position: relative; z-index: 2;
  padding: 0 clamp(28px, 5vw, 60px) clamp(80px, 12vh, 120px);
  display: flex;
  align-items: flex-end;
  gap: 16px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(56px, 9vw, 110px);
  font-weight: 700;
  color: var(--white);
  line-height: 0.96;
  letter-spacing: -0.04em;
  flex: 1;
  min-width: 0;
}

/* "Join us" — modern pill with SVG arrow chip */
.btn-hero {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: rgba(255,255,255,0.16);
  border: 1.5px solid rgba(255,255,255,0.4);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 17px; font-weight: 600;
  padding: 14px 14px 14px 26px;
  border-radius: var(--radius-full);
  cursor: pointer;
  text-decoration: none;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  white-space: nowrap;
  flex-shrink: 0;
  letter-spacing: 0.01em;
  transition: background 0.3s, border-color 0.3s, box-shadow 0.3s, gap 0.3s;
}
.btn-hero:hover {
  background: rgba(113,180,141,0.28);
  border-color: var(--green-light);
  box-shadow: 0 12px 48px rgba(113,180,141,0.28);
  gap: 18px;
}
.btn-hero-arrow {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--lime-bold);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background 0.3s, transform 0.4s cubic-bezier(0.34,1.56,0.64,1);
  overflow: hidden;
}
.btn-hero-arrow svg {
  width: 18px; height: 18px;
  stroke: var(--plum);
  stroke-width: 2.5;
  fill: none;
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1);
}
.btn-hero:hover .btn-hero-arrow {
  background: var(--lime-bright);
  transform: scale(1.08);
}
.btn-hero:hover .btn-hero-arrow svg {
  transform: translate(3px, -3px);
}

/* Remove scroll down */
.hero-scroll { display: none; }

/* ─────────────── EXAM CAROUSEL ─────────────── */
.carousel-section {
  overflow: hidden;
  padding: 52px 0;
  background: linear-gradient(135deg,
    rgba(233,245,161,0.55) 0%,
    rgba(197,214,43,0.18) 30%,
    rgba(123,198,126,0.20) 65%,
    rgba(233,245,161,0.45) 100%
  ),
  linear-gradient(to bottom, #f8faf0 0%, #eef5d0 100%);
  border-bottom: none;
  position: relative;
}

.carousel-label {
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(38,15,38,0.5);
  margin-bottom: 44px;
}

.carousel-track-wrap {
  overflow: hidden;
  -webkit-mask: linear-gradient(to right, transparent 0%, black 12%, black 88%, transparent 100%);
  mask: linear-gradient(to right, transparent 0%, black 12%, black 88%, transparent 100%);
}

.carousel-track {
  display: flex;
  align-items: center;
  gap: 0;
  width: max-content;
  animation: carouselScroll 28s linear infinite;
}

/* carousel never pauses on hover */

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

.carousel-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 72px;
  flex-shrink: 0;
  opacity: 0.92;
  transition: opacity 0.3s;
  cursor: default;
}

.carousel-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.carousel-logo-mark {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  white-space: nowrap;
}

.carousel-logo-sub {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(38,15,38,0.55);
  white-space: nowrap;
  margin-top: 10px;
}

/* ── WhatsApp floating button ── */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  z-index: 9999;
  text-decoration: none;
  transition: transform 0.25s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.25s;
}
.whatsapp-float:hover {
  transform: scale(1.12);
  box-shadow: 0 8px 32px rgba(37,211,102,0.55);
}
.whatsapp-float svg { width: 30px; height: 30px; fill: #ffffff; }
.whatsapp-float::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25D366;
  opacity: 0.4;
  animation: waPulse 2.5s ease-out infinite;
}
@keyframes waPulse {
  0%   { transform: scale(1); opacity: 0.4; }
  70%  { transform: scale(1.55); opacity: 0; }
  100% { transform: scale(1.55); opacity: 0; }
}
.section-tag {
  display: inline-flex; align-items: center; gap: 10px;
  background: transparent; color: var(--navy);
  font-size: var(--text-xs); font-weight: 800;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 0;
  border-radius: 0;
}
.tag-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--lime-bold); flex-shrink: 0; }

/* ─────────────── ABOUT ─────────────── */
.about {
  padding: clamp(40px,6vw,72px) clamp(24px,5vw,52px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  border-bottom: 1px solid var(--gray-200);
}
.about-top {
  display: flex; align-items: center;
  justify-content: space-between; margin-bottom: 22px;
}
.learn-more {
  font-size: 13px; font-weight: 500; color: var(--gray-600);
  text-decoration: none; display: flex; align-items: center; gap: 5px;
  transition: color 0.2s;
}
.learn-more:hover { color: var(--black); }
.about-body {
  font-size: clamp(var(--text-base),2.2vw,var(--text-xl));
  line-height: 1.5; color: var(--gray-800);
  font-weight: 300; letter-spacing: -0.01em;
}
.about-body strong { font-weight: 600; color: var(--black); }
.chip {
  display: inline-flex; align-items: center; gap: 4px;
  background: var(--lime-pale);
  border-radius: var(--radius-full);
  padding: 2px 11px; font-weight: 600;
  vertical-align: middle; font-size: 0.9em;
}
.about-italic {
  color: var(--emerald); font-style: italic;
  font-family: var(--font-display);
}
.about-right {
  display: flex; align-items: flex-start; justify-content: center; padding-top: 0;
}

/* ── Tutor card ── */
.tutor-card {
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 4px 32px rgba(0,0,0,0.10), 0 1px 4px rgba(0,0,0,0.06);
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  display: flex;
  flex-direction: row;
}
.tutor-card-img {
  width: 220px;
  flex-shrink: 0;
  object-fit: cover;
  object-position: center 20%;
  display: block;
  min-height: 100%;
  align-self: stretch;
}
.tutor-card-body {
  padding: 20px 22px 18px;
  flex: 1;
  min-width: 0;
}
.tutor-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 2px;
}
.tutor-card-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--black);
  letter-spacing: -0.02em;
}
.tutor-status {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: var(--gray-400);
  font-weight: 500;
  margin-top: 3px;
  flex-shrink: 0;
}
.status-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gray-300, #ccc);
  flex-shrink: 0;
}
.status-dot.online { background: #22c55e; }
.tutor-card-role {
  font-size: 13px;
  color: var(--gray-400);
  margin-bottom: 2px;
}
.tutor-card-visited {
  font-size: 11px;
  color: var(--gray-400);
  margin-top: 1px;
}
.tutor-stars {
  display: flex;
  align-items: center;
  gap: 3px;
  margin: 10px 0;
}
.tutor-star { color: var(--lime-bold); font-size: 16px; }
.tutor-rating { font-size: 13px; font-weight: 600; color: var(--black); margin-left: 4px; }
.tutor-details {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 14px;
}
.tutor-detail-row { font-size: 13px; color: var(--black); }
.tutor-detail-row strong { font-weight: 700; display: block; margin-bottom: 1px; }
.tutor-detail-val { color: var(--gray-600); }
.tutor-detail-accent { color: var(--emerald); font-weight: 600; }
.tutor-card-divider {
  height: 1px; background: var(--gray-200); margin-bottom: 14px;
}
.tutor-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.tutor-footer-left {
  display: flex; align-items: center; gap: 16px;
}
.tutor-workbook {
  display: flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 500; color: var(--black);
  text-decoration: none;
}
.tutor-workbook-icon {
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--black);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.tutor-workbook-icon svg { width: 14px; height: 14px; }
.tutor-students {
  display: flex; align-items: center; gap: 5px;
  font-size: 13px; font-weight: 600; color: var(--emerald);
}
.tutor-students-icon { font-size: 15px; }
.btn-book {
  display: inline-flex; align-items: center;
  background: var(--dark2); color: var(--white);
  font-family: var(--font-body); font-size: 15px; font-weight: 600;
  padding: 11px 26px; border-radius: var(--radius-full);
  border: none; cursor: pointer; text-decoration: none;
  letter-spacing: 0.01em;
  transition: background 0.25s, transform 0.2s;
}
.btn-book:hover { background: var(--emerald); transform: translateY(-1px); }

/* ── Card hover blur overlay (all image cards) ── */
.card-hover-overlay {
  position: absolute; inset: 0; z-index: 3;
  background: rgba(10,18,10,0.0);
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 28px;
  text-align: center;
  transition: background 0.4s var(--ease), backdrop-filter 0.4s var(--ease);
  pointer-events: none;
}
.card-hover-text {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
  font-size: var(--text-md);
  line-height: 1.45;
  color: var(--white);
  font-weight: 500;
  text-shadow: 0 2px 8px rgba(0,0,0,0.6);
  max-width: 260px;
}
.card:hover .card-hover-overlay {
  background: rgba(26,15,26,0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  pointer-events: auto;
}
.card:hover .card-hover-text {
  opacity: 1;
  transform: translateY(0);
}

/* ── Carousel logo images ── */
.carousel-logo-img {
  height: 90px;
  width: auto;
  max-width: 240px;
  object-fit: contain;
  display: block;
  filter: none;
  opacity: 0.88;
  transition: opacity 0.3s, transform 0.3s;
}
.carousel-item:hover .carousel-logo-img { opacity: 1; transform: scale(1.04); }
/* no filter change on hover to keep carousel smooth */

/* ── Programs section desc ── */
.programs-desc {
  font-size: var(--text-md);
  line-height: 1.5;
  color: var(--gray-600);
  max-width: 580px;
  margin-top: 0;
}

/* ── Talk to Us button ── */
.btn-talk {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--dark2); color: var(--white);
  font-family: var(--font-body); font-size: var(--text-md); font-weight: 600;
  padding: 13px 30px; border-radius: var(--radius-full);
  border: none; cursor: pointer; text-decoration: none;
  transition: background 0.25s, transform 0.2s; margin-top: 0;
  letter-spacing: 0.01em; flex-shrink: 0;
}
.btn-talk:hover { background: var(--emerald); color: var(--white); transform: translateY(-1px); }
  display: flex; align-items: center; gap: clamp(24px,4vw,48px);
  padding: 28px clamp(24px,5vw,52px);
  background: var(--gray-100);
  border-bottom: 1px solid var(--gray-200);
  flex-wrap: wrap;
}
.stat-item { display: flex; flex-direction: column; gap: 3px; }
.stat-num {
  font-family: var(--font-display); font-size: 30px; font-weight: 700;
  color: var(--black); letter-spacing: -0.03em;
}
.stat-label { font-size: 11px; color: var(--gray-400); font-weight: 500; letter-spacing: 0.03em; }
.stat-div { width: 1px; height: 36px; background: var(--gray-200); flex-shrink: 0; }

/* ─────────────── PROGRAMS ─────────────── */
.programs {
  padding: clamp(40px,6vw,72px) clamp(24px,5vw,52px);
  border-bottom: 1px solid var(--gray-200);
}
.programs-header {
  display: flex; align-items: flex-start;
  flex-direction: column; gap: 12px; margin-bottom: 36px;
  max-width: 640px;
}
.programs-title {
  font-family: var(--font-display);
  font-size: var(--text-3xl); font-weight: 600;
  letter-spacing: -0.03em; line-height: 1.1; max-width: 100%;
}
.programs-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 16px;
}
.card {
  border-radius: var(--radius-lg); overflow: hidden;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  cursor: pointer; position: relative;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }

.card-main {
  background: var(--green-dark);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 28px; min-height: 380px;
}
.card-main img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.card-main-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 30%, rgba(10,18,10,0.9) 100%);
}
.card-main-content { position: relative; z-index: 1; }
.card-tags { display: flex; gap: 6px; margin-bottom: 14px; }
.card-tag {
  background: rgba(255,255,255,0.18); backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.35);
  color: var(--white); font-size: var(--text-sm); font-weight: 600;
  padding: 6px 14px; border-radius: var(--radius-full);
}
.card-title {
  font-family: var(--font-display); font-size: 34px; font-weight: 600;
  color: var(--white); letter-spacing: -0.03em; line-height: 1.05;
}
.card-arrow {
  position: absolute; bottom: 22px; right: 22px; z-index: 2;
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; transition: all 0.2s;
}
.card:hover .card-arrow { background: var(--green); transform: rotate(45deg); }

.cards-right { display: flex; flex-direction: column; gap: 16px; }
.cards-right-top { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.card-small { border-radius: var(--radius-lg); overflow: hidden; position: relative; aspect-ratio: 1; }
.card-small img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.card-small:hover img { transform: scale(1.05); }
.card-small-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 35%, rgba(10,18,10,0.85) 100%);
  display: flex; align-items: flex-end; padding: 20px; z-index: 1;
}
.card-small-title {
  font-family: var(--font-display); font-size: var(--text-2xl); font-weight: 600;
  color: var(--white); letter-spacing: -0.02em;
}
.card-small-add {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  width: 28px; height: 28px; border-radius: 50%;
  background: rgba(255,255,255,0.2); border: 1px solid rgba(255,255,255,0.4);
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 18px; font-weight: 300;
}
.card-info {
  background: rgba(113,180,141,0.08); border-radius: var(--radius-lg); padding: 24px; border: 1px solid rgba(113,180,141,0.2);
}
.card-info-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.card-info-title {
  font-family: var(--font-display); font-size: var(--text-2xl); font-weight: 600;
  letter-spacing: -0.02em; margin-bottom: 8px;
}
.card-info-desc { font-size: var(--text-xl); line-height: 1.45; color: var(--gray-600); }
.card-progress {
  margin-top: 16px; display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--gray-400);
}
.card-progress-bar {
  flex: 1; height: 2px; background: var(--gray-200); border-radius: 2px;
}
.card-progress-fill { width: 60%; height: 100%; background: var(--black); border-radius: 2px; }


/* ── Schedule Accordion ── */
.schedule-accordion { display: flex; flex-direction: column; }

.acc-item { border-bottom: 1px solid rgba(255,255,255,0.1); }
.acc-item:last-child { border-bottom: none; }

.acc-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 0; cursor: pointer;
  transition: padding-left 0.25s;
  user-select: none;
}
.acc-header:hover { padding-left: 6px; }

.acc-header-left { display: flex; align-items: center; gap: 14px; }
.acc-num { font-size: 11px; font-weight: 700; color: rgba(255,255,255,0.4); width: 22px; }
.acc-name { font-size: var(--text-xl); font-weight: 500; color: rgba(255,255,255,0.85); letter-spacing: -0.01em; line-height: 1.2; }
.acc-item.active .acc-name { color: var(--white); font-weight: 700; }

.acc-arrow {
  width: 30px; height: 30px; border-radius: 50%;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; color: rgba(255,255,255,0.7);
  transition: all 0.3s; flex-shrink: 0;
}
.acc-item.active .acc-arrow {
  background: var(--lime-bold);
  border-color: var(--lime-bold);
  color: var(--plum);
  transform: rotate(45deg);
}

.acc-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.4,0,0.2,1), opacity 0.35s ease;
  opacity: 0;
}
.acc-item.active .acc-panel {
  max-height: 300px;
  opacity: 1;
}

.acc-card {
  display: grid; grid-template-columns: 1fr auto; gap: 16px; align-items: start;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg); padding: 20px 22px; margin-bottom: 12px;
}
.acc-card-desc { font-size: var(--text-xl); line-height: 1.45; color: rgba(255,255,255,0.7); margin-bottom: 14px; }
.acc-card-img { width: 80px; height: 80px; border-radius: var(--radius-md); overflow: hidden; flex-shrink: 0; }
.acc-card-img img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ─────────────── SCHEDULE ─────────────── */
.schedule {
  padding: clamp(40px,6vw,72px) clamp(24px,5vw,52px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: end;
  border-bottom: none;
  background: linear-gradient(135deg, #2E7D5E 0%, #1a5c42 40%, #163d2e 100%);
}
.schedule-pretag { color: var(--green); font-size: 12px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 6px; }
.schedule .section-tag { color: rgba(255,255,255,0.9); }
.schedule .section-tag .tag-dot { background: var(--lime-bold); }
.schedule-title {
  font-family: var(--font-display); font-size: var(--text-3xl);
  font-weight: 600; letter-spacing: -0.03em; line-height: 1.1; margin-bottom: 14px; color: var(--white);
}
.schedule-desc { font-size: var(--text-md); line-height: 1.5; color: rgba(255,255,255,0.7); max-width: 380px; margin-bottom: 28px; }
.schedule-img {
  border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 16/9;
}
.schedule-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; display: block; }
.schedule-img:hover img { transform: scale(1.04); }

.featured-event {
  background: rgba(255,255,255,0.08); border-radius: var(--radius-lg); border: 1px solid rgba(255,255,255,0.12);
  padding: 22px 24px; margin-bottom: 16px;
  display: grid; grid-template-columns: 1fr auto; gap: 14px;
  transition: all 0.25s;
}
.featured-event:hover { background: rgba(113,180,141,0.2); transform: translateX(4px); }
.ev-num { font-size: 11px; font-weight: 700; color: rgba(255,255,255,0.4); letter-spacing: 0.04em; margin-bottom: 5px; }
.ev-title { font-family: var(--font-display); font-size: var(--text-lg); font-weight: 600; letter-spacing: -0.02em; margin-bottom: 6px; color: var(--white); }
.ev-desc { font-size: var(--text-sm); line-height: 1.45; color: rgba(255,255,255,0.6); }
.ev-img { width: 80px; height: 80px; border-radius: var(--radius-md); overflow: hidden; flex-shrink: 0; }
.ev-img img { width: 100%; height: 100%; object-fit: cover; display: block; }

.btn-view {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: var(--text-md); font-weight: 600; color: var(--dark2);
  background: var(--green-light); border: none;
  border-radius: var(--radius-full); padding: 13px 30px;
  cursor: pointer; transition: all 0.25s; margin-top: 10px; text-decoration: none;
}
.btn-view:hover { background: var(--green); color: var(--white); transform: translateY(-1px); }

.event-list { display: flex; flex-direction: column; }
.event-item {
  display: flex; align-items: center; justify-content: space-between;
  padding: 15px 0; border-bottom: 1px solid rgba(255,255,255,0.1);
  cursor: pointer; transition: padding-left 0.2s;
}
.event-item:last-child { border-bottom: none; }
.event-item:hover { padding-left: 6px; }
.event-left { display: flex; align-items: center; gap: 12px; }
.event-num { font-size: 11px; font-weight: 700; color: rgba(255,255,255,0.4); width: 20px; }
.event-name { font-size: var(--text-base); font-weight: 500; color: rgba(255,255,255,0.85); letter-spacing: -0.01em; }
.event-arrow {
  width: 28px; height: 28px; border-radius: 50%;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; color: rgba(255,255,255,0.7); transition: all 0.2s;
}
.event-item:hover .event-arrow { background: var(--btn-hover); color: var(--white); transform: rotate(-45deg); }

.schedule-cta { display: flex; align-items: center; gap: 12px; margin-top: 24px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.1); }
.btn-join {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--dark2); color: var(--white);
  font-family: var(--font-body); font-size: var(--text-md); font-weight: 600;
  padding: 13px 30px; border-radius: var(--radius-full);
  border: none; cursor: pointer; text-decoration: none; transition: all 0.25s;
}
.btn-join:hover { background: var(--emerald); color: var(--white); transform: translateY(-1px); }
.toggle-pill {
  width: 46px; height: 26px; background: var(--black); border-radius: var(--radius-full);
  padding: 3px; display: flex; align-items: center; justify-content: flex-end; cursor: pointer;
}
.toggle-knob { width: 20px; height: 20px; border-radius: 50%; background: var(--green); }

/* ─────────────── TESTIMONIALS ─────────────── */
.testimonials {
  padding: clamp(40px,6vw,72px) clamp(80px,8vw,120px) clamp(20px,3vw,36px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: end;
  border-bottom: 1px solid var(--gray-200);
}
.testimonials-title {
  font-family: var(--font-display); font-size: var(--text-3xl);
  font-weight: 600; letter-spacing: -0.03em; line-height: 1.1;
  margin: 16px 0 28px;
}
.testimonials-img { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/3; }
.testimonials-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s; }
.testimonials-img:hover img { transform: scale(1.04); }



/* ── Carousel wrapper — relative so arrows can be absolute ── */
.testi-carousel {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  align-self: end;
  width: 100%;
  overflow: visible;
}
.testi-carousel-inner {
  position: relative;
  display: flex;
  align-items: stretch;
  gap: 0;
  width: 100%;
  overflow: visible;
}

/* Side arrow buttons — sit in the section padding zone, clear of text */
.testi-carousel-inner .testi-prev, .testi-carousel-inner .testi-next {
  position: absolute;
  bottom: 0;
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 0;
  background: transparent;
  border: none;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: var(--gray-400);
  transition: color 0.25s, transform 0.25s;
  z-index: 2;
}
.testi-carousel-inner .testi-prev { left: -72px; }
.testi-carousel-inner .testi-next { right: -52px; }
.testi-carousel-inner .testi-prev svg, .testi-carousel-inner .testi-next svg {
  width: 20px; height: 20px;
  stroke: currentColor; stroke-width: 1.8;
  fill: none; stroke-linecap: round; stroke-linejoin: round;
}
.testi-carousel-inner .testi-prev:hover, .testi-carousel-inner .testi-next:hover {
  border: none;
  background: transparent;
  color: var(--emerald);
  transform: scale(1.15);
}

/* Content area between arrows */
.testi-slides-wrap {
  flex: 1;
  position: relative;
  height: 360px;
  padding: 0 20px;
}

/* Slides — ALL absolutely positioned so they stack and truly center */
.testi-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.1s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 28px;
}
.testi-slide.active {
  opacity: 1;
  pointer-events: auto;
}

/* Quote text — same weight/style as about body */
.testi-body-text {
  font-family: var(--font-body);
  font-size: clamp(var(--text-md), 2vw, var(--text-xl));
  line-height: 1.7;
  color: var(--gray-800);
  font-weight: 300;
  letter-spacing: -0.01em;
}

/* Author block */
.testi-author-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-top: 20px;
}
.testi-author-name {
  font-size: 17px;
  font-weight: 600;
  color: var(--black);
  letter-spacing: -0.01em;
}
.testi-author-exam {
  font-size: var(--text-base);
  color: var(--gray-400);
  font-weight: 400;
}

/* Dots row — hidden */
.testi-dots-row {
  display: none;
}
.testi-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gray-200);
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
  border: none; padding: 0;
}
.testi-dot.active {
  background: var(--emerald);
  transform: scale(1.5);
}

/* Hide big opening quote mark — clean look */
.testi-quote-big { display: none; }
.testi-badge { display: none; }

/* ─────────────── CTA SECTION ─────────────── */
.cta-section {
  margin: 0;
  border-radius: 0;
  overflow: hidden;
  position: relative;
  min-height: 400px;
  display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 60px 40px;
  background: var(--green-dark);
}
.cta-bg-img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; filter: saturate(0.7) brightness(0.6);
}
.cta-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(rgba(26,15,26,0.45), rgba(26,77,110,0.6));
  z-index: 1;
}
.cta-content { position: relative; z-index: 2; max-width: 800px; width: 100%; }
.cta-card {
  background: rgba(255,255,255,0.97);
  border-radius: var(--radius-xl); padding: 56px 64px;
  box-shadow: var(--shadow-lg);
}
.cta-title {
  font-family: var(--font-display); font-size: var(--text-3xl);
  font-weight: 600; letter-spacing: -0.03em; line-height: 1.15;
  color: var(--black); margin-bottom: 14px;
}
.cta-chip {
  display: inline-flex; align-items: center;
  background: var(--lime-pale); border-radius: var(--radius-full);
  padding: 2px 10px; vertical-align: middle; font-size: 88%;
}
.cta-sub { font-size: var(--text-md); line-height: 1.5; color: var(--gray-600); margin-bottom: 28px; }
.cta-btns { display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap; margin-bottom: 20px; }
.btn-cta-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--dark2); color: var(--white);
  font-family: var(--font-body); font-size: var(--text-md); font-weight: 600;
  padding: 13px 30px; border-radius: var(--radius-full);
  border: none; cursor: pointer; text-decoration: none; transition: all 0.25s;
}
.btn-cta-primary:hover { background: var(--btn-hover); color: var(--white); transform: translateY(-1px); }
.btn-cta-outline {
  display: inline-flex; align-items: center; gap: 6px;
  background: transparent; color: var(--black);
  font-family: var(--font-body); font-size: var(--text-md); font-weight: 600;
  padding: 13px 32px; border-radius: var(--radius-full);
  border: 1.5px solid rgba(0,0,0,0.18); cursor: pointer; text-decoration: none; transition: all 0.25s;
}
.btn-cta-outline:hover { background: var(--emerald); color: var(--white); border-color: var(--emerald); }
.cta-note { font-size: var(--text-xs); color: var(--gray-400); display: flex; align-items: center; justify-content: center; gap: 7px; }
.cta-player {
  position: absolute; bottom: 36px; right: 36px; z-index: 3;
  width: 96px; height: 116px; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-md);
}
.cta-player img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ─────────────── FOOTER ─────────────── */
footer {
  background: var(--plum);
  padding: clamp(40px,5vw,56px) clamp(24px,5vw,48px) clamp(24px,3vw,32px);
  color: var(--white);
}
.footer-top {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px;
  padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.08); margin-bottom: 28px;
}
.footer-logo {
  display: flex; align-items: center; gap: 10px; text-decoration: none; margin-bottom: 16px;
}
.footer-logo-icon {
  width: 36px; height: 36px; background: var(--gold); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 17px;
}
.footer-logo-text {
  font-family: var(--font-display); font-size: 17px; font-weight: 600; color: var(--white); letter-spacing: -0.02em;
}
.footer-tagline { font-size: var(--text-sm); font-weight: 300; line-height: 1.4; color: rgba(255,255,255,0.65); max-width: 240px; }
.footer-col-title { font-size: var(--text-xs); font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 16px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-links a { font-size: var(--text-sm); color: rgba(255,255,255,0.6); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--white); }
.footer-bottom {
  display: flex; align-items: center; justify-content: center; gap: 20px; flex-wrap: wrap;
  position: relative;
}
.footer-copy { font-size: var(--text-xs); color: rgba(255,255,255,0.28); text-align: center; }
.footer-contacts { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.footer-contacts a { font-size: 13px; color: rgba(255,255,255,0.45); text-decoration: none; transition: color 0.2s; }
.footer-contacts a:hover { color: var(--white); }
.footer-subnav { display: flex; align-items: center; gap: 4px; position: absolute; left: 0; }
.footer-subnav a {
  font-size: 12px; color: rgba(255,255,255,0.35); text-decoration: none;
  padding: 5px 12px; border-radius: var(--radius-full);
  border: 1px solid rgba(255,255,255,0.1); transition: all 0.2s;
}
.footer-subnav a:hover { color: var(--white); border-color: rgba(255,255,255,0.3); }
.footer-subnav .up-btn {
  background: var(--lime-bold); color: var(--plum); border-color: var(--lime-bold);
  transition: background 0.25s, color 0.25s, border-color 0.25s;
}
.footer-subnav .up-btn:hover {
  background: var(--purple); color: var(--white); border-color: var(--purple);
}

/* ─────────────── ANIMATIONS ─────────────── */
.fade-up {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* ═══════════════════════════════════════════════════════
   RESPONSIVE — 5 breakpoints

/* ═══════════════════════════════════════════════════
   BOOK-LESSON PAGE
═══════════════════════════════════════════════════ */
.page-hero {
  background: linear-gradient(135deg, #2E7D5E 0%, #1a5c42 50%, #163d2e 100%);
  padding: clamp(120px, 16vh, 180px) clamp(24px, 5vw, 60px) clamp(48px, 6vh, 72px);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url('images/background.png') center/cover no-repeat;
  opacity: 0.08;
}
.page-hero-tag { display: inline-flex; align-items: center; gap: 8px; font-size: var(--text-xs); font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; color: var(--lime-bold); margin-bottom: 16px; position: relative; }
.page-hero-tag::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: var(--lime-bold); }
.page-hero-title { font-family: var(--font-display); font-size: var(--text-3xl); font-weight: 600; color: var(--white); letter-spacing: -0.03em; line-height: 1.1; margin-bottom: 14px; position: relative; }
.page-hero-sub { font-size: var(--text-md); color: rgba(255,255,255,0.75); line-height: 1.35; max-width: 560px; margin: 0 auto; position: relative; }

/* ── MAIN CONTENT ── */
.page-content { padding: clamp(24px, 3vw, 36px) clamp(24px, 5vw, 60px) clamp(40px, 6vw, 72px); max-width: 1280px; margin: 0 auto; }

/* ── SECTION LABEL ── */
.section-label { font-size: var(--text-xs); font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; color: var(--navy); display: flex; align-items: center; gap: 8px; margin-bottom: 24px; }
.section-label::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: var(--lime-bold); flex-shrink: 0; }

/* ── TEACHER CARDS GRID ── */
.teachers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}
/* Mobile: single column, booking section inline after active card */
.desktop-only-label { display: flex; }
.desktop-only-booking { display: block; }
.mobile-inline-booking { display: none; }
/* Mobile map block — hidden on desktop, shown in mobile teacher container */
.mobile-map-block { display: none; }

@media (max-width: 640px) {
  /* ── PAGE LAYOUT ── */
  .page-content { padding: 20px 0 40px; }
  .page-hero { padding: 100px 20px 32px; }
  .section-label { margin-bottom: 14px; padding: 0 16px; }

  /* ── NAVBAR ── */
  .navbar { top: 10px; left: 10px; right: 10px; width: auto; max-width: none; transform: none; padding: 6px 10px 6px 6px; }
  .navbar.scrolled { padding: 6px 10px 6px 6px; }
  .nav-logo { padding: 4px 2px 4px 6px; }
  .nav-logo-img { height: 36px; }
  .btn-login { font-size: 13px; padding: 8px 16px; }

  /* ── TEACHER GRID: full-width, 16px side gutters ── */
  .teachers-grid {
    display: flex !important;
    flex-direction: column;
    gap: 0;
    padding: 0 16px;
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 0;
  }

  /* ── TEACHER CARD: full-width horizontal pill ── */
  .teacher-card {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    width: 100% !important;
    box-sizing: border-box !important;
    border-radius: var(--radius-lg) !important;
    border: 2px solid var(--gray-200) !important;
    box-shadow: none !important;
    padding: 14px 16px !important;
    gap: 16px !important;
    background: var(--white) !important;
    overflow: visible !important;
    margin-bottom: 10px;
    transform: none !important;
    transition: border-color 0.2s, box-shadow 0.2s !important;
  }
  .teacher-card:hover { transform: none !important; box-shadow: none !important; }
  .teacher-card.active {
    border-color: var(--emerald) !important;
    box-shadow: 0 0 0 3px rgba(46,125,94,0.10) !important;
  }

  /* ── AVATAR: round, fixed 72px ── */
  .teacher-card-img-wrap {
    width: 72px !important;
    height: 72px !important;
    min-width: 72px !important;
    max-width: 72px !important;
    aspect-ratio: 1 / 1 !important;
    border-radius: 50% !important;
    flex-shrink: 0 !important;
    overflow: hidden !important;
    border: 2.5px solid var(--gray-200) !important;
  }
  .teacher-card.active .teacher-card-img-wrap {
    border-color: var(--emerald) !important;
  }
  .teacher-card-img-wrap img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center 15% !important;
    transform: none !important;
  }
  .teacher-card:hover .teacher-card-img-wrap img { transform: none !important; }

  /* ── CARD BODY: flex column, takes all remaining space ── */
  .teacher-card-body {
    flex: 1 !important;
    min-width: 0 !important;
    padding: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 4px !important;
  }

  /* Name row + status */
  .teacher-card-top {
    display: flex !important;
    align-items: flex-start !important;
    justify-content: space-between !important;
    gap: 6px !important;
    margin-bottom: 0 !important;
  }
  .teacher-card-name {
    font-size: 16px !important;
    font-weight: 700 !important;
    line-height: 1.2 !important;
    color: var(--plum) !important;
    white-space: normal !important;
    flex: 1 !important;
  }
  .teacher-card-role {
    font-size: 11px !important;
    color: var(--gray-400) !important;
    margin-top: 0 !important;
  }
  .teacher-status {
    font-size: 11px !important;
    flex-shrink: 0 !important;
  }

  /* Badges row */
  .teacher-badges-row {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 4px !important;
    margin-bottom: 0 !important;
  }
  .teacher-badge {
    font-size: 10px !important;
    padding: 2px 8px 2px 5px !important;
  }

  /* Stars */
  .teacher-stars { margin: 0 !important; }
  .teacher-star { font-size: 12px !important; }
  .teacher-rating { font-size: 11px !important; }

  /* Hide verbose rows */
  .teacher-details { display: none !important; }

  /* Footer / button */
  .teacher-card-footer {
    border-top: none !important;
    padding-top: 0 !important;
    margin-top: 0 !important;
  }
  .btn-view-avail {
    display: inline-block !important;
    width: auto !important;
    font-size: 11px !important;
    padding: 6px 14px !important;
    border-radius: var(--radius-full) !important;
  }

  /* ── MOBILE BOOKING BLOCK ── */
  .desktop-only-label, .desktop-only-booking { display: none !important; }
  .mobile-inline-booking {
    display: block;
    margin: 0 16px 10px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1.5px solid rgba(46,125,94,0.18);
    background: var(--white);
  }
  .mobile-inline-booking .calendar-wrap { border-radius: 0; box-shadow: none; }
  .mobile-inline-booking .booking-form-wrap {
    border-radius: 0; box-shadow: none; padding: 20px; position: static;
  }

  /* Calendar */
  .calendar-grid { grid-template-columns: repeat(5, 1fr); }

  /* Desktop map hidden, mobile map shown */
  .desktop-map-block { display: none !important; }
  .mobile-map-block {
    display: block;
    margin-top: 28px;
    padding: 0 16px;
  }
  .mobile-map-block .map-block-label { margin-bottom: 5px; }
  .mobile-map-block .map-block-title { margin-bottom: 2px; }
  .mobile-map-block .map-block-sub { margin-bottom: 10px; }

  /* Time slot selected: dark emerald like desktop */
  .time-slot.selected {
    background: var(--emerald) !important;
    color: var(--white) !important;
    border-color: var(--emerald) !important;
    box-shadow: 0 2px 8px rgba(46,125,94,0.4) !important;
  }
}

/* ── TEACHER CARD (matches homepage style) ── */
.teacher-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: box-shadow 0.3s, border-color 0.3s, transform 0.25s;
  display: flex;
  flex-direction: column;
}
.teacher-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.teacher-card.active {
  border-color: var(--emerald);
  box-shadow: 0 0 0 4px rgba(46,125,94,0.12), var(--shadow-md);
}
.teacher-card-img-wrap {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--gray-100);
}
.teacher-card-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 20%;
  transition: transform 0.4s;
}
.teacher-card:hover .teacher-card-img-wrap img { transform: scale(1.04); }

.teacher-card-body { padding: 18px 18px 14px; flex: 1; display: flex; flex-direction: column; }
.teacher-card-top { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 6px; }
.teacher-card-name { font-family: var(--font-display); font-size: var(--text-lg); font-weight: 600; letter-spacing: -0.02em; color: var(--plum); }
.teacher-card-role { font-size: var(--text-xs); color: var(--gray-400); margin-top: 2px; }
.teacher-status { display: flex; align-items: center; gap: 5px; font-size: var(--text-xs); color: var(--gray-400); }
.status-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gray-400); flex-shrink: 0; }
.status-dot.online { background: var(--green); }

.teacher-stars { display: flex; align-items: center; gap: 3px; margin: 8px 0; }
.teacher-star { color: var(--lime-bold); font-size: 14px; }
.teacher-rating { font-size: var(--text-xs); color: var(--gray-600); margin-left: 4px; font-weight: 600; }

.teacher-details { display: flex; flex-direction: column; gap: 4px; margin-bottom: 14px; }
.teacher-detail-row { font-size: var(--text-sm); color: var(--gray-600); display: flex; gap: 6px; }
.teacher-detail-row strong { color: var(--plum); font-weight: 600; min-width: 72px; }
.teacher-detail-accent { color: var(--emerald); font-weight: 600; }

.teacher-card-footer { border-top: 1px solid var(--gray-200); padding-top: 12px; margin-top: auto; }

/* Teacher badges */
.teacher-badges-row { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; margin-bottom: 8px; }
.teacher-badge {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 11px; font-weight: 600; color: var(--emerald);
  background: rgba(46,125,94,0.08); border: 1px solid rgba(46,125,94,0.2);
  border-radius: var(--radius-full); padding: 3px 9px 3px 6px;
}
.teacher-badge-icon { display: flex; align-items: center; color: var(--emerald); }

/* Teacher stats */
.teacher-stats-row {
  display: flex; align-items: center; justify-content: space-around;
  background: linear-gradient(135deg, #f0f9e8, #f8fde8);
  border-radius: var(--radius-md); padding: 10px 8px;
  margin: 10px 0 14px; border: 1px solid rgba(92,158,46,0.15);
}
.teacher-stat { display: flex; flex-direction: column; align-items: center; gap: 1px; }
.teacher-stat-num { font-family: var(--font-display); font-size: 16px; font-weight: 700; color: var(--plum); letter-spacing: -0.02em; }
.teacher-stat-lbl { font-size: 10px; font-weight: 500; color: var(--gray-400); text-transform: uppercase; letter-spacing: 0.06em; }
.teacher-stat-div { width: 1px; height: 28px; background: rgba(92,158,46,0.2); }
.btn-view-avail {
  width: 100%;
  font-family: var(--font-body); font-size: var(--text-sm); font-weight: 700;
  color: var(--white); background: var(--navy);
  border: none; border-radius: var(--radius-full);
  padding: 10px 18px; cursor: pointer; text-align: center;
  transition: background 0.25s, transform 0.2s;
  display: block;
}
.btn-view-avail:hover { background: var(--emerald); transform: translateY(-1px); }
.teacher-card.active .btn-view-avail { background: var(--emerald); }

/* ── BOOKING SECTION ── */
.booking-section {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 32px;
  align-items: start;
}

/* Left column: calendar + map stacked */
.booking-left-col {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Spacer between calendar and map text block */
.map-block-spacer { height: 28px; }

/* ── CALENDAR ── */
.calendar-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.calendar-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px 16px;
  border-bottom: 1px solid var(--gray-200);
  gap: 12px;
  flex-wrap: wrap;
}
.calendar-week-nav { display: flex; align-items: center; gap: 12px; }
.cal-nav-btn {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--gray-100); border: 1px solid var(--gray-200);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: var(--plum); transition: all 0.2s;
  flex-shrink: 0;
}
.cal-nav-btn:hover { background: var(--emerald); color: var(--white); border-color: var(--emerald); }
.cal-nav-btn svg { width: 16px; height: 16px; stroke: currentColor; stroke-width: 2; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.cal-week-label { font-family: var(--font-display); font-size: var(--text-lg); font-weight: 600; letter-spacing: -0.02em; color: var(--plum); white-space: nowrap; }

.timezone-select {
  font-family: var(--font-body); font-size: var(--text-sm); color: var(--plum);
  background: var(--gray-100); border: 1px solid var(--gray-200);
  border-radius: var(--radius-full); padding: 8px 32px 8px 14px;
  cursor: pointer; outline: none; transition: border-color 0.2s;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%238a9a80' stroke-width='2' stroke-linecap='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 10px center;
  -webkit-appearance: none;
}
.timezone-select:focus { border-color: var(--emerald); }

/* Calendar grid */
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  overflow-x: auto;
}
.cal-day-col { display: flex; flex-direction: column; }
.cal-day-header {
  padding: 12px 8px 8px;
  text-align: center;
  border-bottom: 1px solid var(--gray-200);
  border-right: 1px solid var(--gray-200);
  background: var(--gray-100);
}
.cal-day-header:last-child { border-right: none; }
.cal-day-name { font-size: var(--text-xs); font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--gray-400); }
.cal-day-num { font-family: var(--font-display); font-size: var(--text-lg); font-weight: 600; color: var(--plum); margin-top: 2px; }
.cal-day-num.today { 
  color: var(--purple);
  font-weight: 700;
}

.cal-slots { padding: 12px 6px; display: flex; flex-direction: column; gap: 6px; border-right: 1px solid rgba(92,158,46,0.1); min-height: 200px; background: #fafff4; }
.cal-slots:last-child { border-right: none; }

.time-slot {
  font-family: var(--font-body); font-size: 11px; font-weight: 600;
  color: #2a6644;
  background: linear-gradient(160deg, #edfcd4 0%, #f7fdb8 100%);
  border: 1px solid rgba(80,160,90,0.22);
  border-radius: 10px;
  padding: 6px 4px; text-align: center; cursor: pointer;
  transition: all 0.2s; white-space: nowrap;
  letter-spacing: 0.02em;
  box-shadow: 0 1px 3px rgba(80,160,90,0.10);
}
.time-slot:hover { 
  background: linear-gradient(160deg, #d8f8b8 0%, #f0f98c 100%); 
  border-color: rgba(60,140,70,0.4); 
  transform: translateY(-1px); 
  box-shadow: 0 3px 8px rgba(60,140,70,0.18); 
  color: #1e5232;
}
.time-slot.selected {
  background: var(--emerald); color: var(--white);
  border-color: var(--emerald);
  box-shadow: 0 2px 8px rgba(46,125,94,0.35);
}
.time-slot.unavailable {
  background: var(--gray-100); color: var(--gray-400);
  border-color: transparent; cursor: default;
  font-weight: 400;
}
.cal-no-slots { font-size: var(--text-xs); color: var(--gray-400); text-align: center; padding: 16px 4px; }

/* ── BOOKING FORM ── */
.booking-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 28px;
  position: sticky;
  top: 100px;
}
.booking-form-title {
  font-family: var(--font-display); font-size: var(--text-xl); font-weight: 600;
  letter-spacing: -0.02em; color: var(--plum); margin-bottom: 20px;
}

/* Selected teacher mini card */
.selected-teacher-mini {
  display: flex; align-items: center; gap: 12px;
  background: linear-gradient(135deg, #f0f9e8, #f8fde8); border-radius: var(--radius-md);
  border: 1px solid rgba(92,158,46,0.2);
  padding: 12px 14px; margin-bottom: 16px;
}
.selected-teacher-avatar {
  width: 44px; height: 44px; border-radius: 50%; object-fit: cover; object-position: center 20%; flex-shrink: 0;
}
.selected-teacher-info { display: flex; flex-direction: column; gap: 2px; }
.selected-teacher-name { font-size: var(--text-base); font-weight: 700; color: var(--plum); }
.selected-teacher-role { font-size: var(--text-xs); color: var(--gray-400); }

/* Slots selected indicator */
.slots-indicator {
  display: flex; align-items: center; justify-content: space-between;
  background: var(--gray-100); border-radius: var(--radius-md);
  padding: 10px 14px; margin-bottom: 12px;
  border: 1px solid var(--gray-200);
}
.slots-indicator-label { font-size: var(--text-xs); font-weight: 600; color: var(--plum); }
.slots-dots { display: flex; align-items: center; gap: 6px; }
.slot-dot {
  width: 10px; height: 10px; border-radius: 50%;
  border: 1.5px solid rgba(92,158,46,0.4); background: transparent; transition: all 0.3s;
}
.slot-dot.filled { background: var(--emerald); border-color: var(--emerald); }
.slots-max-label { font-size: 11px; color: var(--gray-400); font-style: italic; }

/* Selected slot display */
.selected-slot-display {
  display: flex; align-items: center; gap: 10px;
  background: rgba(46,125,94,0.07); border: 1px solid rgba(46,125,94,0.2);
  border-radius: var(--radius-md); padding: 12px 14px; margin-bottom: 16px;
  font-size: var(--text-sm);
}
.selected-slot-display.empty { color: var(--gray-400); font-style: italic; }
.selected-slot-display svg { width: 16px; height: 16px; stroke: var(--emerald); stroke-width: 2; fill: none; flex-shrink: 0; }
.selected-slot-text { color: var(--plum); font-weight: 600; }

.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.form-label { font-size: var(--text-sm); font-weight: 600; color: var(--plum); }
.form-select, .form-textarea {
  font-family: var(--font-body); font-size: var(--text-sm); color: var(--plum);
  background: var(--white); border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm); padding: 11px 14px; width: 100%;
  outline: none; transition: border-color 0.25s, box-shadow 0.25s;
  -webkit-appearance: none;
}
.form-select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%238a9a80' stroke-width='2' stroke-linecap='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; padding-right: 36px; cursor: pointer; }
.form-select:focus, .form-textarea:focus { border-color: var(--emerald); box-shadow: 0 0 0 3px rgba(46,125,94,0.10); }
.form-textarea { resize: vertical; min-height: 80px; line-height: 1.5; }

/* Focus area chips */
.focus-chips { display: flex; flex-wrap: wrap; gap: 7px; }
.focus-chip {
  font-family: var(--font-body); font-size: 12px; font-weight: 500;
  color: var(--plum); background: var(--white);
  border: 1.5px solid var(--gray-200); border-radius: var(--radius-full);
  padding: 6px 14px; cursor: pointer;
  transition: all 0.2s; white-space: nowrap;
}
.focus-chip:hover { border-color: var(--emerald); color: var(--emerald); background: rgba(46,125,94,0.05); }
.focus-chip.selected { background: var(--emerald); color: var(--white); border-color: var(--emerald); }

.validation-msg { font-size: var(--text-xs); color: #e63946; margin-top: 4px; display: none; }
.validation-msg.show { display: block; }

.btn-submit-lesson {
  width: 100%; font-family: var(--font-body); font-size: var(--text-md);
  font-weight: 700; color: var(--white); background: var(--navy);
  border: none; border-radius: var(--radius-full); padding: 14px 28px;
  cursor: pointer; letter-spacing: 0.02em; margin-top: 8px;
  transition: background 0.25s, box-shadow 0.25s, transform 0.2s;
  display: flex; align-items: center; justify-content: center; gap: 10px;
}
.btn-submit-lesson:hover { background: var(--emerald); box-shadow: 0 6px 24px rgba(46,125,94,0.35); transform: translateY(-1px); }

/* Confirmation message */
.confirmation-msg {
  display: none; text-align: center; padding: 28px 20px;
}
.confirmation-msg.show { display: block; }
.confirmation-icon {
  width: 56px; height: 56px; border-radius: 50%;
  background: rgba(46,125,94,0.12); display: flex; align-items: center;
  justify-content: center; margin: 0 auto 16px;
}
.confirmation-icon svg { width: 28px; height: 28px; stroke: var(--emerald); stroke-width: 2.5; fill: none; }
.confirmation-title { font-family: var(--font-display); font-size: var(--text-xl); font-weight: 600; color: var(--plum); margin-bottom: 8px; }
.confirmation-sub { font-size: var(--text-sm); color: var(--gray-600); line-height: 1.6; }

/* WhatsApp */
.whatsapp-float { position: fixed; bottom: 28px; right: 28px; width: 56px; height: 56px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 20px rgba(37,211,102,0.45); z-index: 999; text-decoration: none; transition: transform 0.25s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.25s; }
.whatsapp-float:hover { transform: scale(1.12); box-shadow: 0 8px 32px rgba(37,211,102,0.55); }
.whatsapp-float svg { width: 30px; height: 30px; fill: #ffffff; position: relative; z-index: 1; }
.whatsapp-float::before { content: ''; position: absolute; inset: 0; border-radius: 50%; background: #25D366; opacity: 0.4; animation: waPulse 2.5s ease-out infinite; }
@keyframes waPulse { 0% { transform: scale(1); opacity: 0.4; } 70% { transform: scale(1.55); opacity: 0; } 100% { transform: scale(1.55); opacity: 0; } }

/* ── INLINE MAP CARD (inside left booking column) ── */
.map-block-label { font-size: var(--text-xs); font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; color: var(--navy); display: flex; align-items: center; gap: 8px; margin-bottom: 5px; }
.map-block-label::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: var(--lime-bold); flex-shrink: 0; }
.map-block-title { font-family: var(--font-display); font-size: var(--text-lg); font-weight: 600; letter-spacing: -0.02em; color: var(--plum); margin-bottom: 2px; }
.map-block-sub { font-size: var(--text-sm); color: var(--gray-600); line-height: 1.5; margin-bottom: 8px; }
.map-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  border: 1px solid var(--gray-200);
}
.map-card-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 18px;
  border-bottom: 1px solid var(--gray-200);
  gap: 10px;
}
.map-card-address { font-size: var(--text-sm); color: var(--gray-600); display: flex; align-items: center; gap: 6px; }
.map-card-address svg { width: 14px; height: 14px; stroke: var(--emerald); stroke-width: 2; fill: none; flex-shrink: 0; }
.map-directions-btn {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--navy); color: var(--white);
  font-family: var(--font-body); font-size: 12px; font-weight: 600;
  padding: 8px 16px; border-radius: var(--radius-full);
  text-decoration: none; transition: background 0.25s, transform 0.2s;
  white-space: nowrap; flex-shrink: 0;
}
.map-directions-btn:hover { background: var(--emerald); transform: translateY(-1px); }
.map-directions-btn svg { width: 13px; height: 13px; stroke: currentColor; stroke-width: 2; fill: none; }
.map-embed-wrap iframe { display: block; width: 100%; height: 180px; border: none; }

/* ── FOOTER ── */
footer { background: var(--plum); padding: clamp(40px,5vw,56px) clamp(24px,5vw,48px) clamp(24px,3vw,32px); color: var(--white); }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.08); margin-bottom: 28px; }
.footer-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; margin-bottom: 16px; }
.footer-tagline { font-size: var(--text-sm); font-weight: 300; line-height: 1.4; color: rgba(255,255,255,0.65); max-width: 240px; }
.footer-col-title { font-size: var(--text-xs); font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 16px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-links a { font-size: var(--text-sm); color: rgba(255,255,255,0.6); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--white); }
.footer-bottom { display: flex; align-items: center; justify-content: center; gap: 20px; flex-wrap: wrap; position: relative; }
.footer-copy { font-size: var(--text-xs); color: rgba(255,255,255,0.28); text-align: center; }
.footer-subnav { display: flex; align-items: center; gap: 4px; position: absolute; left: 0; }
.footer-subnav a { font-size: 12px; color: rgba(255,255,255,0.35); text-decoration: none; padding: 5px 12px; border-radius: var(--radius-full); border: 1px solid rgba(255,255,255,0.1); transition: all 0.2s; }
.footer-subnav a:hover { color: var(--white); border-color: rgba(255,255,255,0.3); }
.footer-subnav .up-btn { background: var(--lime-bold); color: var(--plum); border-color: var(--lime-bold); }
.footer-subnav .up-btn:hover { background: var(--purple); color: var(--white); border-color: var(--purple); }
@media (max-width: 900px) { .footer-top { grid-template-columns: 1fr 1fr; gap: 28px; } .footer-subnav { position: static; } .footer-bottom { justify-content: space-between; } }
@media (max-width: 600px) { .footer-top { grid-template-columns: 1fr; } .footer-bottom { flex-direction: column; gap: 12px; } .footer-subnav { position: static; } }

/* ── RESPONSIVE ── */
@media (max-width: 1200px) {
  .teachers-grid { grid-template-columns: repeat(2, 1fr); }
  .booking-section { grid-template-columns: 1fr; }
  .booking-form-wrap { position: static; }
}
@media (max-width: 900px) {
  .teachers-grid { grid-template-columns: repeat(2, 1fr); }
  .nav-links { display: none; }
  .btn-signin { display: none; }
  .hamburger { display: flex; }
}

