/* ============================================
   World of Wonder Childcare Center - Global Styles
   Fonts: Quicksand (matches logo rounded sans-serif)
   Colors derived from WOW logo
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;500;600;700&display=swap');

:root {
  --blue-primary: #3C6BBD;
  --blue-dark: #325AA3;
  --blue-darker: #2A4D8E;
  --blue-light: #6B90D0;
  --blue-pale: #EBF0F8;
  --teal-primary: #6AB35D;
  --teal-dark: #5A9A4E;
  --teal-light: #8BC880;
  --teal-pale: #EDF7EB;
  --green-lime: #6AB35D;
  --green-tree: #5A9A4E;
  --green-sage: #A8D4A0;
  --green-pale: #EDF7EB;
  --yellow-primary: #FBD34D;
  --yellow-warm: #E8B830;
  --brown-trunk: #8B7355;
  --text-dark: #3A4F5E;
  --text-body: #566B7C;
  --text-muted: #7A8F9E;
  --text-light: #A0B4C2;
  --bg-white: #FFFFFF;
  --bg-off-white: #FAFBFC;
  --bg-light: #F7F9FB;
  --border-light: #E2E8F0;
  --border-blue: rgba(60,107,189,0.15);
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.10);
  --shadow-xl: 0 12px 40px rgba(0,0,0,0.12);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 30px;
  --radius-full: 9999px;
  --font-main: 'Quicksand', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --max-width: 1200px;
  --transition: 0.3s ease;
}

/* Reset & Base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  font-size: 16px;
  scroll-padding-top: 120px;
}

body {
  font-family: var(--font-main);
  color: var(--text-body);
  background: var(--bg-white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue-primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--teal-primary); }
ul, ol { list-style: none; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-main);
  color: var(--text-dark);
  line-height: 1.25;
  font-weight: 700;
  text-wrap: balance;
}

h1 { font-size: clamp(2rem, 4.5vw, 3rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.2rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.15rem; }

p {
  margin-bottom: 1rem;
  text-wrap: pretty;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* Skip Link */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--blue-primary);
  color: #fff;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  z-index: 10000;
  font-weight: 600;
}
.skip-link:focus {
  top: 8px;
  color: #fff;
}

/* ============================================
   Sticky Header
   ============================================ */
.sticky-header {
  position: sticky;
  top: 0;
  z-index: 1000;
}

/* Top Bar */
.top-bar {
  background: var(--text-dark);
  color: #fff;
  font-size: 0.82rem;
  padding: 7px 0;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.top-bar a { color: #fff; }
.top-bar a:hover { color: var(--yellow-primary); }

.top-bar__left a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.top-bar__left a svg { flex: none; }

.top-bar__left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.top-bar__right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.top-bar__social { display: flex; gap: 10px; align-items: center; }

.top-bar__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.85;
  transition: opacity var(--transition);
}
.top-bar__social a:hover { opacity: 1; }
.top-bar__social svg { width: 16px; height: 16px; fill: #fff; }

/* Header / Nav */
.site-header {
  background: var(--bg-white);
  border-bottom: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 10px;
  padding-bottom: 10px;
}

.site-header__logo { display: flex; align-items: center; gap: 10px; }
.site-header__logo img { height: 56px; width: auto; }

/* Navigation */
.main-nav { display: flex; align-items: center; }

.main-nav__list {
  display: flex;
  align-items: center;
  gap: 2px;
}

.main-nav__item { position: relative; }

.main-nav__link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 10px 14px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-body);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  white-space: nowrap;
}

.main-nav__link:hover,
.main-nav__link--active {
  color: var(--blue-primary);
  background: var(--blue-pale);
}

/* Dropdown arrow */
.main-nav__arrow {
  width: 10px;
  height: 10px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform var(--transition);
}

/* Dropdown menu */
.main-nav__dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  white-space: nowrap;
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.2s ease;
  z-index: 100;
}

.main-nav__item:hover .main-nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.main-nav__item:hover .main-nav__arrow {
  transform: rotate(180deg);
}

.main-nav__dropdown a {
  display: block;
  padding: 8px 14px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-body);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}

.main-nav__dropdown a:hover {
  background: var(--blue-pale);
  color: var(--blue-primary);
}

/* Header CTA */
.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 22px;
  background: var(--teal-primary);
  color: #fff !important;
  font-weight: 700;
  font-size: 0.88rem;
  border-radius: var(--radius-full);
  transition: all var(--transition);
  white-space: nowrap;
}

.header-cta:hover {
  background: var(--teal-dark);
  color: #fff !important;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--text-dark);
}

.nav-toggle svg { width: 28px; height: 28px; }

/* ============================================
   Hero Sections
   ============================================ */
.hero {
  background: linear-gradient(135deg, var(--blue-pale) 0%, var(--teal-pale) 50%, var(--green-pale) 100%);
  padding: 70px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(154,205,50,0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.hero .container {
  display: flex;
  align-items: center;
  gap: 60px;
}

.hero__content {
  flex: 1;
  max-width: 560px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  background: rgba(58,142,128,0.1);
  color: var(--teal-primary);
  font-size: 0.82rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.hero h1 {
  color: var(--blue-darker);
  margin-bottom: 16px;
}

.hero__subtitle {
  font-size: 1.1rem;
  color: var(--text-body);
  margin-bottom: 24px;
  line-height: 1.8;
}

.hero__features {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.hero__feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
}

.hero__feature svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--teal-primary);
}

/* Hero Form */
.hero__form-wrapper {
  flex: 0 0 420px;
  max-width: 420px;
}

.hero-form {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border-light);
}

.hero-form__title {
  font-size: 1.2rem;
  color: var(--blue-darker);
  margin-bottom: 4px;
  font-weight: 700;
}

.hero-form__subtitle {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 11px;
}

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  font-family: var(--font-main);
  font-size: 0.9rem;
  color: var(--text-dark);
  transition: border-color var(--transition), box-shadow var(--transition);
  background: var(--bg-white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--blue-primary);
  box-shadow: 0 0 0 3px rgba(91,134,165,0.15);
}



.form-group textarea { resize: vertical; min-height: 62px; }

/* Desired Start Date: keep the native date control the same height as text inputs */
.form-group input[type="date"] { min-height: 41px; }

/* the native date picker icon eats space that CSS padding does not describe; verify by screenshot */
@media (max-width: 430px) {
  .form-row--keep input[type="date"] { padding-left: 8px; padding-right: 2px; font-size: 0.8rem; }
}

.form-row {
  display: flex;
  gap: 12px;
}

.form-row .form-group { flex: 1; }

/* SMS consent checkbox and legal links under the phone fields */
.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-top: 4px;
  margin-bottom: 6px;
}

.form-consent input[type="checkbox"] {
  width: 16px;
  height: 16px;
  min-width: 16px;
  margin-top: 3px;
  accent-color: var(--teal-primary);
}

.form-consent label {
  font-size: 0.75rem;
  line-height: 1.45;
  font-weight: 400;
  color: var(--text-muted);
  margin-bottom: 0;
}

.form-legal {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.form-legal a { color: var(--blue-primary); text-decoration: underline; }
.form-legal a:hover { color: var(--teal-primary); }

/* ============================================
   Buttons
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-main);
  font-size: 0.95rem;
  font-weight: 700;
  border: none;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn--primary {
  background: var(--teal-primary);
  color: #fff;
}
.btn--primary:hover {
  background: var(--teal-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--secondary {
  background: var(--blue-primary);
  color: #fff;
}
.btn--secondary:hover {
  background: var(--blue-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--outline {
  background: transparent;
  color: var(--blue-primary);
  border: 2px solid var(--blue-primary);
}
.btn--outline:hover {
  background: var(--blue-primary);
  color: #fff;
  transform: translateY(-2px);
}

.btn--white {
  background: #fff;
  color: var(--teal-primary);
}
.btn--white:hover {
  background: var(--bg-light);
  color: var(--teal-dark);
  transform: translateY(-2px);
}

.btn--full { width: 100%; }

.btn--sm {
  padding: 10px 22px;
  font-size: 0.85rem;
}

.btn--lg {
  padding: 16px 36px;
  font-size: 1.05rem;
}

/* ============================================
   Section Styles
   ============================================ */
.section {
  padding: 80px 0;
}

.section--alt {
  background: var(--bg-light);
}

.section--blue {
  background: linear-gradient(135deg, var(--blue-pale) 0%, var(--bg-white) 100%);
}

.section--teal {
  background: linear-gradient(135deg, var(--teal-pale) 0%, var(--bg-white) 100%);
}

.section--green {
  background: linear-gradient(135deg, var(--green-pale) 0%, var(--bg-white) 100%);
}

.section--dark {
  background: var(--text-dark);
  color: #fff;
}

.section--dark h2,
.section--dark h3,
.section--dark h4 {
  color: #fff;
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 48px;
}

.section-header__label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  background: rgba(58,142,128,0.1);
  color: var(--teal-primary);
  font-size: 0.8rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  margin-bottom: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.section-header h2 {
  margin-bottom: 12px;
}

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

/* ============================================
   Program Cards
   ============================================ */
.programs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.program-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-light);
  transition: all var(--transition);
  text-align: center;
}

.program-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--blue-primary);
}

.program-card__image {
  height: 200px;
  background: var(--blue-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  color: var(--blue-primary);
  position: relative;
  overflow: hidden;
}

.program-card__image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40px;
  background: linear-gradient(to top, var(--bg-white), transparent);
}

.program-card__list {
  list-style: none;
  margin: 0 0 16px;
  padding: 0;
  text-align: left;
}

/* Clickable program image + name. The link is a flex item inside .program-card__image,
   so it must be told to fill the box or the photo letterboxes to its own aspect ratio. */
.program-card__image-link { display: block; width: 100%; height: 100%; }

.program-card__body h3 a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}

.program-card__body h3 a:hover { color: var(--teal-primary); }

.program-card__list li {
  position: relative;
  padding-left: 20px;
  font-size: 0.85rem;
  color: var(--text-body);
  line-height: 1.5;
  margin-bottom: 6px;
}
.program-card__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal-primary);
}

.program-card__body {
  padding: 24px;
}

.program-card__age {
  display: inline-block;
  padding: 4px 12px;
  background: var(--teal-pale);
  color: var(--teal-primary);
  font-size: 0.78rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  margin-bottom: 10px;
}

.program-card h3 {
  margin-bottom: 8px;
  font-size: 1.15rem;
}

.program-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.program-card .btn { width: 100%; }

/* ============================================
   Features / Why WOW
   ============================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.features-grid--2x2 { grid-template-columns: repeat(2, 1fr); }

@media (max-width: 767px) {
  .features-grid--2x2 { grid-template-columns: 1fr; }
}

.feature-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--border-light);
  transition: all var(--transition);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--teal-primary);
}

.feature-card__icon {
  width: 56px;
  height: 56px;
  background: var(--teal-pale);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--teal-primary);
}

.feature-card__icon svg { width: 28px; height: 28px; }

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

.feature-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

/* ============================================
   Locations
   ============================================ */
.locations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.location-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-light);
  transition: all var(--transition);
}

.location-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.location-card__map {
  height: 180px;
  background: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.location-card__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.find-us {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  background: #fff;
  border: 1px solid var(--border-light, #e5e9ec);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 2px 14px rgba(0,0,0,0.05);
}

.find-us__map {
  display: block;
  width: 100%;
  min-height: 380px;
  background: var(--bg-light);
}

.find-us__map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 380px;
  border: 0;
}

.find-us__info {
  padding: 32px 34px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.find-us__info h3 {
  margin: 0 0 20px;
  color: var(--blue-primary, #3C6BBD);
}

.find-us__detail {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 1rem;
  line-height: 1.55;
}

.find-us__detail svg { flex-shrink: 0; margin-top: 3px; }

.find-us__info .btn { margin-top: auto; }

@media (max-width: 900px) {
  .find-us { grid-template-columns: 1fr; }
  .find-us__map, .find-us__map iframe { min-height: 300px; }
  .find-us__info { padding: 26px 24px; }
  .find-us__info .btn { margin-top: 8px; }
}

.location-card__body {
  padding: 24px;
}

.location-card__name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--blue-darker);
  margin-bottom: 12px;
}

.location-card__detail {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 8px;
  font-size: 0.88rem;
  color: var(--text-body);
}

.location-card__detail svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--teal-primary);
  margin-top: 2px;
}

.location-card .btn { margin-top: 16px; width: 100%; }

/* ============================================
   Testimonials
   ============================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--border-light);
  position: relative;
}

.testimonial-card__stars {
  display: flex;
  gap: 2px;
  margin-bottom: 16px;
  color: var(--yellow-primary);
}

.testimonial-card__stars svg { width: 18px; height: 18px; fill: currentColor; }

.testimonial-card__text {
  font-size: 0.92rem;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--blue-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  color: var(--blue-primary);
}

.testimonial-card__name {
  font-weight: 700;
  color: var(--text-dark);
  font-size: 0.9rem;
}

.testimonial-card__role {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ============================================
   Two-Column Content Layout
   ============================================ */
.content-split {
  display: flex;
  align-items: center;
  gap: 60px;
}

.content-split--reverse { flex-direction: row-reverse; }

.content-split__text { flex: 1; }
.content-split__media {
  flex: 0 0 480px;
  max-width: 480px;
}

.content-split__media img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.content-split__image {
  flex: 0 0 400px;
  max-width: 400px;
}

.content-split__image img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.content-split__image-placeholder {
  width: 100%;
  height: 360px;
  background: var(--blue-pale);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-primary);
  font-size: 1rem;
  font-weight: 600;
}

.content-split h2 { margin-bottom: 16px; }
.content-split p { font-size: 1rem; color: var(--text-body); }

.content-list {
  list-style: none;
  padding: 0;
  margin: 16px 0;
}

.content-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 8px 0;
  font-size: 0.95rem;
  color: var(--text-body);
}

.content-list li svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--teal-primary);
  margin-top: 2px;
}

/* ============================================
   Stats Section
   ============================================ */
.stats-bar {
  display: flex;
  justify-content: center;
  gap: 60px;
  padding: 48px 0;
  flex-wrap: wrap;
}

.stat-item { text-align: center; }

.stat-item__number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--blue-primary);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-item__label {
  font-size: 0.88rem;
  color: var(--text-muted);
  font-weight: 600;
}

/* ============================================
   FAQ Section
   ============================================ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-category {
  font-size: 1.35rem;
  color: var(--blue-primary);
  margin: 40px 0 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--teal-pale);
}
.faq-category:first-child { margin-top: 0; }

.faq-item {
  border-bottom: 1px solid var(--border-light);
}

.faq-item__question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 20px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-main);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  text-align: left;
  transition: color var(--transition);
}

.faq-item__question:hover { color: var(--blue-primary); }

.faq-item__icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  transition: transform var(--transition);
  color: var(--blue-primary);
}

.faq-item.active .faq-item__icon { transform: rotate(45deg); }

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-item__answer {
  max-height: 500px;
  padding-bottom: 20px;
}

.faq-item__answer p {
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.8;
}

/* ============================================
   CTA Banner
   ============================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--blue-primary) 0%, var(--teal-light) 100%);
  padding: 60px 0;
  text-align: center;
  color: #fff;
}

.cta-banner h2 { color: #fff; margin-bottom: 12px; }
.cta-banner p { color: rgba(255,255,255,0.9); font-size: 1.05rem; margin-bottom: 24px; }

.cta-banner__buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ============================================
   Contact Form
   ============================================ */
.contact-form {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
  max-width: 600px;
  margin: 0 auto;
}

/* ============================================
   Breadcrumbs
   ============================================ */
.breadcrumbs {
  padding: 12px 0;
  background: var(--bg-light);
  border-bottom: 1px solid var(--border-light);
}

.breadcrumbs__list {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
}

.breadcrumbs__list li { display: flex; align-items: center; gap: 8px; }
.breadcrumbs__list a { color: var(--text-muted); font-weight: 500; }
.breadcrumbs__list a:hover { color: var(--blue-primary); }
.breadcrumbs__sep { color: var(--text-light); }
.breadcrumbs__current { color: var(--text-dark); font-weight: 600; }

/* ============================================
   Interior Page Hero
   ============================================ */
.page-hero {
  background: linear-gradient(135deg, var(--blue-pale) 0%, var(--teal-pale) 100%);
  padding: 50px 0 60px;
}

.page-hero h1 {
  color: var(--blue-darker);
  margin-bottom: 12px;
}

.page-hero p {
  font-size: 1.05rem;
  color: var(--text-body);
  max-width: 700px;
}

.page-hero--with-form .container {
  display: flex;
  align-items: center;
  gap: 44px;
}

.page-hero--with-form .page-hero__content { flex: 1; }
.page-hero--with-form .hero__form-wrapper { flex: 0 0 400px; }

/* ============================================
   Content Sections for interior pages
   ============================================ */
.prose {
  max-width: 800px;
  margin: 0 auto;
}

.prose h2 {
  margin-top: 40px;
  margin-bottom: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--border-light);
}

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

.prose h3 {
  margin-top: 28px;
  margin-bottom: 12px;
}

.prose p {
  font-size: 1rem;
  line-height: 1.8;
}

.prose ul, .prose ol {
  margin: 16px 0;
  padding-left: 24px;
}

.prose ul { list-style: disc; }
.prose ol { list-style: decimal; }

.prose li {
  margin-bottom: 8px;
  font-size: 0.95rem;
  line-height: 1.7;
}

/* Anchor link sections */
.anchor-section {
  scroll-margin-top: 120px;
  padding: 40px 0;
}

.anchor-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
  padding: 16px;
  background: var(--bg-light);
  border-radius: var(--radius-md);
}

.anchor-nav a {
  padding: 8px 16px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-body);
  border-radius: var(--radius-full);
  transition: all var(--transition);
}

.anchor-nav a:hover {
  background: var(--blue-primary);
  color: #fff;
}

/* ============================================
   CEO Section / Team
   ============================================ */
.ceo-section {
  display: flex;
  gap: 48px;
  align-items: flex-start;
}

.ceo-section__photo {
  flex: 0 0 280px;
  text-align: center;
}

.ceo-section__photo-placeholder {
  width: 240px;
  height: 300px;
  background: var(--blue-pale);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--blue-primary);
  font-weight: 700;
  font-size: 1rem;
}

.ceo-section__name {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-dark);
}

.ceo-section__title {
  font-size: 0.88rem;
  color: var(--teal-primary);
  font-weight: 600;
}

.ceo-section__content { flex: 1; }

.ceo-section__content p {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 16px;
}

/* ============================================
   Footer
   ============================================ */
.site-footer {
  background: #3A4F5E;
  color: rgba(255,255,255,0.85);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-col__logo img {
  height: 50px;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
}

.footer-col__about {
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.7);
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  color: #fff;
}

.footer-social a:hover {
  background: var(--teal-primary);
  transform: translateY(-2px);
}

.footer-social svg { width: 18px; height: 18px; fill: currentColor; }

.footer-col h4 {
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-col ul li { margin-bottom: 10px; }

.footer-col ul a {
  color: rgba(255,255,255,0.7);
  font-size: 0.88rem;
  transition: color var(--transition);
}

.footer-col ul a:hover { color: var(--yellow-primary); }

.footer-col__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
}

.footer-col__contact-item svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--teal-light);
  margin-top: 2px;
}

.footer-col__contact-item a {
  color: rgba(255,255,255,0.7);
}

.footer-col__contact-item a:hover { color: var(--yellow-primary); }

.footer-bottom {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
}

.footer-bottom a {
  color: rgba(255,255,255,0.5);
}
.footer-bottom a:hover { color: var(--yellow-primary); }

.footer-bottom__links {
  display: flex;
  gap: 20px;
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 1024px) {
  .programs-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .locations-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .hero .container { flex-direction: column; }
  .hero__content { max-width: 100%; text-align: center; }
  .hero__features { justify-content: center; }
  .hero__form-wrapper { flex: none; max-width: 480px; width: 100%; }
  .content-split { flex-direction: column; gap: 40px; }
  .content-split--reverse { flex-direction: column; }
  .content-split__media { flex: none; max-width: 100%; }
  .page-hero--with-form .container { flex-direction: column; }
  .page-hero--with-form .hero__form-wrapper { flex: none; max-width: 480px; width: 100%; }
  .ceo-section { flex-direction: column; align-items: center; text-align: center; }
  .ceo-section__photo { flex: none; }
}

@media (max-width: 768px) {
  .top-bar { display: none; }

  .nav-toggle { display: block; }

  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--bg-white);
    flex-direction: column;
    padding: 80px 24px 24px;
    box-shadow: -4px 0 20px rgba(0,0,0,0.1);
    transition: right 0.3s ease;
    z-index: 999;
    overflow-y: auto;
  }

  .main-nav.active { right: 0; }

  .main-nav__list {
    flex-direction: column;
    width: 100%;
    gap: 0;
  }

  .main-nav__item { width: 100%; }

  .main-nav__link {
    padding: 14px 16px;
    font-size: 0.95rem;
    border-radius: 0;
    border-bottom: 1px solid var(--border-light);
  }

  .main-nav__dropdown {
    position: static;
    white-space: normal;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    padding: 0 0 0 16px;
    display: none;
  }

  .main-nav__item.dropdown-open .main-nav__dropdown { display: block; }

  .main-nav__dropdown a {
    padding: 10px 16px;
    border-bottom: 1px solid var(--border-light);
  }

  .header-cta--desktop { display: none; }

  .nav-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-dark);
    padding: 8px;
  }

  .nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    z-index: 998;
  }

  .nav-overlay.active { display: block; }

  .programs-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .locations-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .stats-bar { gap: 32px; }
  .form-row { flex-direction: column; gap: 0; }
  /* short paired fields stay side by side on phones to keep the form short */
  .form-row--keep { flex-direction: row; gap: 8px; }
  .form-row--keep .form-group { min-width: 0; }
  .form-row--keep input { min-width: 0; }
  .hero { padding: 40px 0 50px; }
  .section { padding: 50px 0; }
  .hero-form { padding: 24px; }
  .cta-banner__buttons { flex-direction: column; align-items: center; }
  .anchor-nav { flex-direction: column; }
}

/* Fix: hide nav close button on desktop */
.nav-close { display: none; }
@media (max-width: 768px) {
  .nav-close { display: block; }
}

/* Footer improvements */
.footer-col--brand {
  padding-right: 20px;
}
.footer-col__logo {
  height: auto;
  max-height: 60px;
  width: auto;
  margin-bottom: 16px;
}
.footer-contact-list {
  margin-top: 0;
}
.footer-col h4 a {
  color: inherit;
  text-decoration: none;
}

.footer-col h4 a:hover,
.footer-col h4 a:focus-visible {
  color: var(--yellow-primary);
}

/* Differentiator strip inside internal page heroes */
.page-hero__content .hero__features {
  margin-top: 24px;
  margin-bottom: 0;
}

.footer-col h4 + .footer-contact-list {
  margin-top: 0;
}
/* Location card detail layout fix */
.location-card__detail {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 8px;
  font-size: 0.9rem;
  color: var(--text-medium);
}
.location-card__detail svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}
/* Location card map iframe fix */
.location-card__map iframe {
  width: 100%;
  height: 200px;
  border: 0;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}


/* Clean image placeholder */
.image-placeholder-clean {
  min-height: 300px;
  background: linear-gradient(135deg, var(--blue-pale) 0%, var(--teal-pale) 100%);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
}
.image-placeholder-clean--tall {
  min-height: 380px;
}
.image-placeholder-clean span {
  color: var(--text-muted);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 12px 24px;
  background: rgba(255,255,255,0.7);
  border-radius: var(--radius-md);
}

/* Check list */
.check-list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}
.check-list__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  line-height: 1.5;
}
.check-list__item svg {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  color: var(--teal-primary);
  margin-top: 2px;
}

/* Social feed cards */
.gallery-group {
  margin-bottom: 64px;
}
.gallery-group:last-child {
  margin-bottom: 0;
}
.gallery-group h2 {
  color: var(--blue-primary);
  margin-bottom: 8px;
}
.gallery-group__intro {
  color: var(--text-muted);
  max-width: 760px;
  margin-bottom: 28px;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.gallery-grid__item {
  padding: 0;
  border: none;
  background: none;
  cursor: zoom-in;
  display: block;
  overflow: hidden;
  border-radius: var(--radius-md);
  aspect-ratio: 4 / 3;
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.05);
}
.gallery-grid__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.gallery-grid__item:hover img,
.gallery-grid__item:focus-visible img {
  transform: scale(1.05);
}
.gallery-grid__item:focus-visible {
  outline: 3px solid var(--green-primary);
  outline-offset: 3px;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(20, 26, 38, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 32px;
}
.lightbox[hidden] {
  display: none;
}
.lightbox__img {
  max-width: min(1100px, 92vw);
  max-height: 88vh;
  object-fit: contain;
  border-radius: var(--radius-md);
}
.lightbox__close,
.lightbox__nav {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border: none;
  cursor: pointer;
  border-radius: var(--radius-full);
  line-height: 1;
  transition: background 0.2s ease;
}
.lightbox__close:hover,
.lightbox__nav:hover {
  background: rgba(255, 255, 255, 0.3);
}
.lightbox__close {
  position: absolute;
  top: 20px;
  right: 24px;
  width: 44px;
  height: 44px;
  font-size: 30px;
}
.lightbox__nav {
  width: 48px;
  height: 48px;
  font-size: 30px;
  flex: 0 0 auto;
}

@media (max-width: 900px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
  .gallery-group {
    margin-bottom: 48px;
  }
}
@media (max-width: 560px) {
  .lightbox {
    padding: 16px;
    gap: 6px;
  }
  .lightbox__nav {
    width: 40px;
    height: 40px;
    font-size: 24px;
  }
}


/* Contact info cards */
.contact-info-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 32px;
}
.contact-info-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.contact-info-card svg {
  margin-bottom: 12px;
}
.contact-info-card h3 {
  font-size: 1rem;
  margin-bottom: 8px;
}
.contact-info-card a {
  font-weight: 600;
  color: var(--blue-primary);
  font-size: 0.95rem;
  word-break: break-word;
  overflow-wrap: break-word;
}
.contact-info-card span {
  font-weight: 600;
  color: var(--text-dark);
}
@media (max-width: 640px) {
  .contact-info-cards {
    grid-template-columns: 1fr;
  }
}

/* Content split image */
.content-split__img {
  width: 100%;
  border-radius: var(--radius-lg);
  object-fit: cover;
  max-height: 420px;
}

/* Content split centered variant */
.content-split--centered {
  align-items: flex-start;
}



/* ============================================
   V5 Fixes
   ============================================ */

/* Program cards: equal height, aligned buttons */
.programs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.program-card {
  display: flex;
  flex-direction: column;
}
.program-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.program-card__body p {
  flex: 0 0 auto;
}
@media (min-width: 768px) {
  .program-card__body > p { min-height: 8.5em; }
}
.program-card__list { flex: 0 0 auto; }
.program-card__body .btn {
  align-self: center;
  margin-top: auto;
}

/* Contact page two-column layout */
.contact-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.contact-form-col h2,
.contact-info-col h2 {
  margin-bottom: 16px;
  color: var(--blue-dark);
}
.contact-form-col p {
  color: var(--text-secondary);
  margin-bottom: 24px;
}
.contact-form-block .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 0;
}
.contact-form-block .form-group {
  margin-bottom: 16px;
}
.contact-form-block label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 6px;
  color: var(--text-primary);
}
.contact-form-block input,
.contact-form-block select,
.contact-form-block textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--text-primary);
  background: #fff;
  transition: border-color var(--transition);
}
.contact-form-block input:focus,
.contact-form-block select:focus,
.contact-form-block textarea:focus {
  outline: none;
  border-color: var(--blue-primary);
}
.contact-form-block textarea {
  resize: vertical;
  min-height: 100px;
}

/* Contact info column */
.contact-info-col h3 {
  font-size: 1.05rem;
  color: var(--blue-dark);
  margin-bottom: 8px;
}
.contact-info-block {
  margin-bottom: 28px;
}
.contact-info-block p {
  color: var(--text-secondary);
  line-height: 1.6;
}
.contact-phone-link {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--blue-primary);
}
.contact-email-link {
  color: var(--blue-primary);
  word-break: break-all;
}
.contact-location-card {
  background: var(--blue-pale);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  margin-bottom: 12px;
}
.contact-location-card h4 {
  font-size: 1rem;
  color: var(--blue-dark);
  margin-bottom: 4px;
}
.contact-location-card p {
  font-size: 0.9rem;
  margin-bottom: 8px;
}
.contact-location-card a {
  font-size: 0.85rem;
  color: var(--teal-light);
  font-weight: 600;
}
.contact-social-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.contact-social-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
  background: #fff;
  transition: all var(--transition);
  text-decoration: none;
}
.contact-social-btn:hover {
  border-color: var(--blue-primary);
  color: var(--blue-primary);
}

/* Mission/Vision cards */
.mission-vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.mission-vision-card {
  padding: 40px;
  border-radius: var(--radius-lg);
  background: #fff;
}
.mission-vision-card h2 {
  font-size: 1.5rem;
  margin-bottom: 16px;
  color: var(--blue-dark);
}
.mission-vision-card p {
  color: var(--text-secondary);
  line-height: 1.7;
}
.mission-vision-card--accent {
  background: var(--teal-pale);
}

/* Remove old contact info card styles */
.contact-info-cards { display: none; }

@media (max-width: 768px) {
  .contact-two-col {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .mission-vision-grid {
    grid-template-columns: 1fr;
  }
  .programs-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 480px) {
  .programs-grid {
    grid-template-columns: 1fr;
  }
  .contact-form-block .form-row {
    grid-template-columns: 1fr;
  }
}


/* ============================================
   V5b Fixes
   ============================================ */

/* Internal page heroes: centered text, no pills */
.page-hero {
  text-align: center;
}
.page-hero p {
  margin-left: auto;
  margin-right: auto;
}

/* TAKIC Core Values cards */
.takic-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 40px;
}
.takic-card {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.takic-card__letter {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-primary), var(--teal-light));
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.takic-card__content h3 {
  font-size: 1.2rem;
  color: var(--blue-dark);
  margin-bottom: 8px;
}
.takic-card__content p {
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0;
}

/* Mission / Vision stacked blocks */
.mv-stack {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.mv-block {
  display: flex;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #fff;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.mv-block__accent {
  width: 6px;
  flex-shrink: 0;
}
.mv-block--mission .mv-block__accent {
  background: var(--blue-primary);
}
.mv-block--vision .mv-block__accent {
  background: var(--teal-light);
}
.mv-block__content {
  padding: 36px 40px;
}
.mv-block__eyebrow {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
}
.mv-block--mission .mv-block__eyebrow {
  color: var(--blue-primary);
}
.mv-block--vision .mv-block__eyebrow {
  color: var(--teal-light);
}
.mv-block__text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin: 0;
}

/* Remove old mission-vision-grid (v5a) */
.mission-vision-grid { display: none; }
.mission-vision-card { display: none; }

@media (max-width: 768px) {
  .takic-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 24px;
  }
  .mv-block__content {
    padding: 24px;
  }
}

/* Override: form heroes should NOT be centered (text stays left) */
.page-hero--with-form {
  text-align: left;
}
.page-hero--with-form p {
  margin-left: 0;
  margin-right: 0;
}

/* TAKIC icon styles (replacing letter circles) */
.takic-card__icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-primary), var(--teal-light));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.takic-card__icon svg {
  stroke: #fff;
  width: 28px;
  height: 28px;
}

/* Location Photo Gallery */
.location-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.location-gallery__item {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.location-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.location-gallery__item:hover img {
  transform: scale(1.05);
}
@media (max-width: 768px) {
  .location-gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}

/* Content split - text wrap variant (full-width heading, floated image) */
.content-split--wrap {
  display: block;
}
.content-split--wrap > h2 {
  margin-bottom: 24px;
}
.content-split--wrap .content-split__flow::after {
  content: "";
  display: block;
  clear: both;
}
.content-split--wrap .content-split__img--float {
  float: right;
  width: 42%;
  max-width: 440px;
  margin: 6px 0 24px 36px;
  border-radius: var(--radius-lg);
  object-fit: cover;
}
.content-split--wrap.content-split--reverse .content-split__img--float {
  float: left;
  margin: 6px 36px 24px 0;
}
@media (max-width: 767px) {
  .content-split--wrap .content-split__img--float,
  .content-split--wrap.content-split--reverse .content-split__img--float {
    float: none;
    width: 100%;
    max-width: 100%;
    margin: 0 0 24px 0;
  }
}

/* Confirmation shown in place of a tour enquiry form after submission. */
.form-confirmation {
  background: #FFFFFF;
  border-radius: 16px;
  padding: 32px 28px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  outline: none;
}

.form-confirmation__title {
  color: var(--teal-primary);
  margin: 0 0 12px 0;
  font-size: 1.35rem;
  line-height: 1.3;
}

.form-confirmation p {
  margin: 0;
  color: var(--text-body);
  line-height: 1.6;
}

.form-confirmation a {
  color: var(--blue-primary);
  font-weight: 600;
  white-space: nowrap;
}
