@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap");

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

:root {
    /* ─── NEW COLOR THEME ─────────────────────────── */
    --primary: #eb512f;
    /* main orange-red */
    --primary-dark: #c93f20;
    /* darker hover */
    --primary-light: #f0694f;
    /* lighter variant */
    --badge-bg: #fcebd7;
    /* peach badge background */
    --badge-border: #f7d0b0;
    /* badge border */

    /* Neutrals */
    --cream: #fdf8f4;
    --cream-dark: #f5ede3;
    --dark: #1e1612;
    --text: #3a2a22;
    --muted: #8a7060;
    --white: #ffffff;
    --gold: #f5a623;

    /* Sizing */
    --nav-h: 70px;
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 24px;
    --radius-pill: 50px;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(235, 81, 47, .08);
    --shadow-md: 0 6px 24px rgba(235, 81, 47, .12);
    --shadow-lg: 0 12px 40px rgba(235, 81, 47, .16);
    --shadow-btn: 0 4px 20px rgba(235, 81, 47, .35);

    /* Transitions */
    --ease: .2s ease;
    --ease-bounce: .3s cubic-bezier(.34, 1.56, .64, 1);

    --flex-orange-light: #c93f20;
    --flex-orange-main: #f0694f;
    --flex-orange-dark: #f0854d;
	--wg-primary:       #eb512f;
	--wg-primary-dark:  #c93f20;
	--wg-badge-bg:      #fcebd7;
	--wg-cream:         #fdf8f4;
	--wg-cream-dark:    #f5ede3;
	--wg-dark:          #1e1612;
	--wg-text:          #3a2a22;
	--wg-muted:         #8a7060;
	--wg-white:         #ffffff;
	--wg-radius:        20px;
	--wg-shadow:        0 8px 32px rgba(235,81,47,.12);
	--wg-ease:          .22s ease;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--cream);
    color: var(--text);
    min-height: 100vh;
    overflow-x: hidden;
    line-height: 1.5;
}

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

a {
    color: inherit;
}

button {
    cursor: pointer;
    border: none;
    background: none;
}

/* ─── UTILITY ─────────────────────────────────────── */
.text-accent {
    color: var(--primary);
}

/* ─── BUTTONS ─────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 26px;
    border-radius: var(--radius-pill);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: background var(--ease), color var(--ease),
        border-color var(--ease), transform var(--ease), box-shadow var(--ease);
    white-space: nowrap;
}

.btn i {
    font-size: 14px;
}

.btn--primary {
    background: var(--primary);
    color: var(--white);
    border: 2px solid transparent;
    box-shadow: var(--shadow-btn);
}

.btn--primary:hover,
.btn--primary:focus-visible {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 26px rgba(235, 81, 47, .45);
}

.btn--outline {
    background: transparent;
    color: var(--text);
    border: 1.5px solid rgba(235, 81, 47, .30);
}

.btn--outline:hover,
.btn--outline:focus-visible {
    border-color: var(--primary);
    background: rgba(235, 81, 47, .06);
    transform: translateY(-1px);
}

.btn--outline-light {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255, 255, 255, .45);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 26px;
    border-radius: var(--radius-pill);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: background var(--ease), transform var(--ease);
}

.btn--outline-light:hover {
    background: rgba(255, 255, 255, .12);
    transform: translateY(-1px);
}

.btn--nav {
    background: var(--primary);
    color: var(--white) !important;
    padding: 9px 20px;
    font-size: 14px;
}

.btn--nav:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

/* ─── SECTION HEADINGS ────────────────────────────── */
.sectionHeading {
    text-align: center;
}

.section-title {
    font-size: 36px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.25rem;
    color: var(--primary);
    letter-spacing: -0.025em;
}

.section-text {
    font-size: 16px;
    line-height: 1.75;
    color: var(--muted);
    max-width: 70%;
    margin: 0 auto;
    margin-bottom: 14px;
}

.common-container {
    max-width: 100%;
    padding: 6rem 1rem;
}

/* ─── HEADER ──────────────────────────────────────── */
.site-header {
    position: sticky;
    top: 0;
    z-index: 200;
    background: var(--cream);
    border-bottom: 1px solid rgba(235, 81, 47, .12);
    transition: box-shadow var(--ease);
}

.site-header.scrolled {
    box-shadow: 0 2px 20px rgba(235, 81, 47, .10);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--nav-h);
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 clamp(20px, 5vw, 64px);
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    flex-shrink: 0;
}

.logo-icon {
    width: 160px;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-name {
    font-size: 15px;
    font-weight: 600;
    color: var(--dark);
    line-height: 1.25;
}

.logo-sub {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--muted);
    margin-top: 1px;
}

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

.nav-links a {
    text-decoration: none;
    font-size: 14.5px;
    font-weight: 500;
    color: var(--text);
    transition: color var(--ease);
}

.nav-links a:not(.btn):hover {
    color: var(--primary);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 6px;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--dark);
    border-radius: 2px;
    transition: transform .3s ease, opacity .3s ease;
}

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

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

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

/* ─── MOBILE MENU ─────────────────────────────────── */
.mobile-menu {
    position: fixed;
    inset: var(--nav-h) 0 0;
    background: var(--cream);
    z-index: 199;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform .35s cubic-bezier(.4, 0, .2, 1);
    opacity: 0;
}

.mobile-menu.is-open {
    transform: translateX(0);
    opacity: 1;
}

.mobile-menu__inner {
    display: flex;
    flex-direction: column;
    padding: 32px 28px 40px;
    gap: 4px;
}

.mobile-link {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    color: var(--text);
    padding: 16px 0;
    border-bottom: 1px solid rgba(235, 81, 47, .1);
    transition: color var(--ease);
}

.mobile-link i {
    color: var(--primary);
    width: 20px;
}

.mobile-link:hover {
    color: var(--primary);
}

.btn--mobile-cta {
    margin-top: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--primary);
    color: var(--white);
    padding: 16px;
    border-radius: var(--radius-pill);
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: var(--shadow-btn);
    transition: background var(--ease), transform var(--ease);
}

.btn--mobile-cta:hover {
    background: var(--primary-dark);
}

/* ─── HERO ────────────────────────────────────────── */
.hero {
    max-width: 1440px;
    margin: 0 auto;
    padding: clamp(40px, 6vw, 80px) clamp(20px, 5vw, 64px);
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: clamp(32px, 4vw, 64px);
}

/* Badge */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 16px 7px 12px;
    background: var(--badge-bg);
    border: 1px solid var(--badge-border);
    border-radius: var(--radius-pill);
    font-size: 13px;
    font-weight: 500;
    color: var(--primary);
    margin-bottom: 22px;
}

.badge__dot {
    width: 7px;
    height: 7px;
    background: var(--primary);
    border-radius: 50%;
    animation: pulse 2.2s ease-in-out infinite;
    flex-shrink: 0;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: .45;
        transform: scale(1.35);
    }
}

.hero__heading {
    font-size: clamp(36px, 5vw, 62px);
    font-weight: 800;
    line-height: 1.1;
    color: var(--dark);
    margin-bottom: 6px;
}

.hero__body {
    font-size: clamp(14px, 1.5vw, 16px);
    line-height: 1.75;
    color: var(--muted);
    margin: 18px 0 32px;
    max-width: 80%;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
}

.accredit-section {
    display: flex;
    flex-direction: column;
    align-items: start;
    margin-top: 40px;
}

.accredit-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-weight: 700;
    color: var(--text);
    opacity: 0.40;
    margin-bottom: 8px;
}

.accredit-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    transition: opacity 0.4s ease;
}

.accredit-logos:hover {
    opacity: 1;
}

.accredit-item img {
    height: 70px;
}

.accredit-item:last-child img {
    height: 80px;
}

.accredit-item img {
    filter: grayscale(80%);
    transition: filter 0.4s ease, transform 0.3s ease;
}

.accredit-item:hover img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.accredit-divider {
    width: 1px;
    height: 40px;
    background: var(--muted);
    opacity: 0.70;
}

/* ─── STATS BAR ───────────────────────────────────── */
.stats-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 20px 28px;
    margin-top: 36px;
    padding-top: 28px;
    border-top: 1px solid rgba(235, 81, 47, .13);
}

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

.stat__icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1.5px solid rgba(235, 81, 47, .25);
    display: grid;
    place-items: center;
    color: var(--primary);
    font-size: 14px;
    flex-shrink: 0;
    transition: background var(--ease), border-color var(--ease);
}

.stat:hover .stat__icon {
    background: rgba(235, 81, 47, .08);
    border-color: var(--primary);
}

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

.stat__label {
    font-size: 11px;
    font-weight: 500;
    color: var(--muted);
    line-height: 1;
}

.stat__value {
    font-size: 13px;
    font-weight: 600;
    color: var(--dark);
}

.stars {
    display: flex;
    gap: 2px;
}

.stars i {
    color: var(--gold);
    font-size: 12px;
}

/* ─── HERO SLIDER ─────────────────────────────────── */
.hero__right {
    position: relative;
}

.hero-right-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.hero-right-images img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 12px 30px rgba(235, 81, 47, .10);
}

.hero-right-images img:nth-child(2n) {
    margin-top: 30px;
}

.hero-slider {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    max-width: 600px;

}

.hero-slide {
    position: relative;
}

.image-frame {
    position: relative;
    aspect-ratio: 4 / 3.6;
    overflow: hidden;
}

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

/* Slick dots override */
.hero-slider .slick-dots {
    bottom: 14px;
}

.hero-slider .slick-dots li button:before {
    font-size: 10px;
    color: var(--primary);
    opacity: .45;
    transition: opacity var(--ease), transform var(--ease);
}

.hero-slider .slick-dots li.slick-active button:before {
    color: var(--primary);
    opacity: 1;
    transform: scale(1.3);
}

/* Floating heart badge on image */
.img-badge {
    position: absolute;
    top: 18px;
    left: 18px;
    width: 42px;
    height: 42px;
    background: var(--white);
    border-radius: 50%;
    display: grid;
    place-items: center;
    box-shadow: var(--shadow-md);
    color: var(--primary);
    font-size: 18px;
    z-index: 5;
}


:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 3px;
    border-radius: 4px;
}

/* ─── PROGRAMS ────────────────────────────────────── */
.programs {
    background-color: white;
}

.programs .sectionHeading h1 {
    margin-bottom: 38px;
}

.program-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
    max-width: 1140px;
    margin: auto;
}

.program-card {
    border-radius: 24px;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease;
    overflow: hidden;
}

.program-card-age {
    text-transform: uppercase;
    color: var(--primary);
    font-size: 14px;
    font-weight: 700;
}

.program-card:nth-child(1) {
    background-color: var(--cream);
}

.program-card:nth-child(2) {
    background-color: #fef3ee;
}

.program-card:nth-child(3) {
    background-color: #fff6f0;
}


.program-content {
    text-align: center;
    padding: 24px;
}

.program-card:hover {
    transform: translateY(-8px);
}

.program-card__image {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.program-card:nth-child(1) .program-card__image {
    object-position: center bottom;
}


.program-card__description {
    font-size: 0.9rem;
    color: var(--muted);
    margin-top: 8px;
}

.program-card .card-line {
    width: 40px;
    height: 4px;
    background: var(--primary);
    border-radius: 50px;
    margin: 0 auto 24px;
    transition: width 0.4s ease;
}

.program-card:hover .card-line {
    width: 80px;
}

.program-card__button {
    display: inline-block;
    margin-top: 16px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--primary);
    text-decoration: none;
    border-bottom: 2px solid var(--primary);
    transition: color 0.3s ease, opacity 0.3s ease;
}

.program-card__button:hover {
    opacity: .75;
}


/*---------------- center location card section----------------- */
.centre-card-section {
    background: var(--cream, #fdf8f4);
}

/* ── Main Card Container ─────────────────────────────────── */
.centre-card {
    max-width: 1200px;
    margin: 0 auto;
    background: var(--white, #fff);
    border-radius: 20px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, .10);
    display: grid;
    grid-template-columns: 1fr 0.75fr;
    overflow: hidden;
    position: relative;
    padding: 3rem;
}

/* ══════════════════════════════════════════════════════════
   LEFT COLUMN — Info
   ══════════════════════════════════════════════════════════ */
.centre-card__left {
    padding: clamp(32px, 4vw, 48px) clamp(28px, 3.5vw, 42px);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* ── Brand Label ─────────────────────────────────────────── */
.centre-card__brand {
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.12em;
    color: var(--primary-dark, #9b581a);
    text-transform: capitalize;
    margin-bottom: -8px;
}

/* ── Centre Name ─────────────────────────────────────────── */
.centre-card__name {
    font-size: clamp(30px, 4vw, 44px);
    font-weight: 600;
    color: var(--primary, #9b541a);
    line-height: 1.1;
    margin-bottom: 4px;
    letter-spacing: -0.02em;
}

/* ── Google Reviews ──────────────────────────────────────── */
.centre-card__reviews {
    background-color: var(--cream);
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 8px;
    border-radius: 14px;
    max-width: max-content;
}

.review-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary, #9b581a);
}

.review-rating {
    font-size: 16px;
    font-weight: 700;
    color: var(--muted, #1e1612);
    margin-left: 2px;
}

.review-stars {
    display: flex;
    gap: 2px;
}

.review-stars i {
    color: var(--gold, #f5a623);
    font-size: 14px;
}

.review-count {
    font-size: 14px;
    font-weight: 600;
    color: var(--muted, #8a7060);
}

.review-link {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary, #9b581a);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color .2s ease;
}

.review-link:hover {
    color: var(--primary-dark, #7d3f15);
}

/* ── Feature Bullet List ─────────────────────────────────── */
.centre-card__features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 8px;
}

.centre-card__features li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: clamp(13.5px, 1.3vw, 14.5px);
    color: var(--text, #3a2a22);
    line-height: 1.7;
}

/* Pink bullet dot */
.bullet-dot {
    width: 10px;
    height: 10px;
    min-width: 10px;
    background: var(--flex-orange-dark, #f5a5a0);
    border-radius: 50%;
    margin-top: 7px;
    flex-shrink: 0;
}

.feature-link {
    color: var(--primary, #e05e13);
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color .2s ease;
    font-weight: 500;
}

.feature-link:hover {
    color: var(--primary-dark, #7d4415);
}

/* ══════════════════════════════════════════════════════════
   RIGHT COLUMN — Map & Details
   ══════════════════════════════════════════════════════════ */
.centre-card__right {
    display: flex;
    flex-direction: column;
}

/* ── Map Wrapper ─────────────────────────────────────────── */
.centre-card__map-wrap {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
    border-radius: 20px;
}

.centre-card__map {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

/* Get Directions button overlay */
.map-directions-btn {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary, #d86507);
    color: var(--white, #fff);
    border: none;
    border-radius: 8px;
    padding: 10px 18px;
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: background .2s ease, transform .2s ease, box-shadow .2s ease;
    text-decoration: none;
}

.map-directions-btn:hover {
    background: var(--primary-dark, #e27004);
    transform: translateX(-50%) translateY(-2px);
    box-shadow: 0 6px 22px var(--badge-border);
}

.map-directions-btn i {
    font-size: 14px;
}

/* ── Details List ────────────────────────────────────────── */
.centre-card__details {
    padding: 24px 32px 20px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    flex: 1;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.detail-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 16px;
    flex-shrink: 0;
}


.detail-icon--orange {
    background: var(--badge-bg, #fcebd7);
    color: var(--primary, #eb512f);
}

.detail-text {
    font-size: 14.5px;
    font-weight: 600;
    color: var(--dark, #1e1612);
    line-height: 1.4;
}

.detail-text--orange {
    color: var(--primary, #eb512f);
    font-weight: 700;
}

/* ── CTA Buttons ─────────────────────────────────────────── */
.centre-card__actions {
    padding: 20px 32px 32px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.btn-centre {
    min-width: 180px;
    padding: 14px 24px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-align: center;
    transition: background .25s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.btn-centre--outline {
    background: transparent;
    color: var(--primary-dark, #9b541a);
    border: 2px solid var(--primary, #9b541a);
}

.btn-centre--outline:hover {
    background: var(--badge-bg, #e8f5f3);
    border-color: var(--flex-orange-dark, #9b541a);
    transform: translateY(-1px);
}

/* ─── MARQUEE SECTION ─────────────────────────────── */
.marquee-section {
    background: var(--cream-dark);
    padding: 80px 0 60px;
    overflow: hidden;
}

.sectionHeading.marquee-heading {
    width: min(980px, calc(100% - 40px));
    margin: 0 auto;
    text-align: center;
}

.sectionHeading .section-text {
    width: min(980px, calc(100% - 40px));
    max-width: 100% !important;
}


/* Small pill badge */
.marquee-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid var(--color-coral, #FF8B7B);
    color: var(--color-coral, #FF8B7B);
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    background: var(--badge-bg);
    margin-bottom: 24px;
}

/* Highlight box */
.marquee-highlight {
    margin: 22px auto 0;
    background: var(--cream);
    border-radius: 16px;
    padding: 18px 20px;
    font-size: clamp(13px, 1.3vw, 16px);
    line-height: 1.6;
    margin-bottom: 24px;
}

/* Strong emphasis inside highlight */
.marquee-highlight strong {
    font-weight: 700;
    color: var(--dark)
}


.marquee-helptext {
    margin: 16px auto;
    font-size: 20px;
    font-weight: 700;
    color: var(--primary, #FF8B7B);
    text-align: center;
}

.marquee-track-wrap {
    width: 100%;
    overflow: hidden;
    margin-bottom: 20px;
}

.marquee-track {
    display: flex;
    width: max-content;
}

.marquee-inner {
    display: flex;
    gap: 20px;
    padding: 6px 10px;
}

/* Left → Right */
.marquee-left .marquee-inner {
    animation: scrollLeft 28s linear infinite;
}

/* Right → Left */
.marquee-right .marquee-inner {
    animation: scrollRight 32s linear infinite;
}

@keyframes scrollLeft {
    from {
        transform: translateX(0);
    }

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

@keyframes scrollRight {
    from {
        transform: translateX(-50%);
    }

    to {
        transform: translateX(0);
    }
}

.marquee-item {
    flex-shrink: 0;
    width: 350px;
    height: 250px;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform .3s ease;
}

.marquee-item:hover {
    transform: scale(1.04);
    z-index: 2;
}

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

/* Pause on hover */
.marquee-track-wrap:hover .marquee-inner {
    animation-play-state: paused;
}

.marquee-cta {
    display: block;
    margin: 0 auto;
    padding: 14px 20px;

}

/* ── Affordable Section wrapper ─────────────────────────────────────── */
.affordable-section {
    background: #fff;
    text-align: center;
    position: relative;
}

.affordable-section__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(18px, 2.5vw, 28px);
}

.affordable-section__title {
    font-size: clamp(28px, 4.5vw, 48px);
    font-weight: 800;
    color: var(--dark, #1e1612);
    line-height: 1.25;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.affordable-section__subtitle {
    font-size: clamp(14px, 1.4vw, 16px);
    color: var(--muted, #8a7060);
    line-height: 1.7;
    max-width: 820px;
    margin: 0 auto 6px;
}

.affordable-section__subtitle--emphasis {
    font-weight: 500;
    margin-bottom: 18px;
}

.desktop-break {
    display: inline;
}

@media (max-width: 700px) {
    .desktop-break {
        display: none;
    }
}

/* ── 3 Cards Grid ────────────────────────────────────────── */
.affordable-cards {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin: clamp(24px, 3vw, 36px) 0;
    flex-wrap: wrap;
}

/* ── Individual Card ─────────────────────────────────────── */
.affordable-card {
    width: 200px;
    height: 200px;
    border-radius: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: transform .3s ease, box-shadow .3s ease;
    position: relative;
    overflow: hidden;
}

.affordable-card:hover {
    transform: translateY(-6px) scale(1.02);
}

/* Filled variant (cards 1 & 2) */
.affordable-card--filled {
    background: linear-gradient(135deg, var(--primary, #f29c7b) 0%, var(--primary-light, #eb7e5e) 100%);
    box-shadow: 0 8px 26px rgba(235, 126, 94, .25);
}

.affordable-card--filled:hover {
    box-shadow: 0 14px 40px rgba(235, 126, 94, .35);
}

.affordable-card--filled .affordable-card__main,
.affordable-card--filled .affordable-card__sub {
    color: var(--white, #fff);
}

/* Outline variant (card 3) */
.affordable-card--outline {
    background: var(--white, #fff);
    border: 3px solid var(--coral-main, #eb7e5e);
    box-shadow: 0 4px 16px rgba(235, 126, 94, .12);
}

.affordable-card--outline:hover {
    box-shadow: 0 8px 28px rgba(235, 126, 94, .20);
    border-color: var(--coral-text, #eb7454);
}

.affordable-card--outline .affordable-card__main {
    color: var(--coral-text, #eb7454);
}

/* ── Card Content ────────────────────────────────────────── */
.affordable-card__content {
    padding: 24px 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
}

.affordable-card__main {
    font-size: 28px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

/* Multi-line variant (smaller text for cards 2 & 3) */
.affordable-card__main--multi {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.3;
}

.affordable-card__sub {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    opacity: .85;
    margin-top: 2px;
}

/* ── Bottom Tagline ──────────────────────────────────────── */
.affordable-section__tagline {
    font-size: clamp(15px, 1.6vw, 18px);
    font-weight: 600;
    color: var(--coral-text, #eb7454);
    margin-top: clamp(12px, 2vw, 24px);
    margin-bottom: clamp(12px, 1.5vw, 18px);
    letter-spacing: 0.01em;
}

/* ── Decorative Accent Line ──────────────────────────────── */
.affordable-section__accent-line {
    width: 120px;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, var(--coral-main, #eb7e5e) 50%, transparent 100%);
    border-radius: 2px;
    margin-top: 4px;
}


/* ---------------
Flexible section 
------------------
*/
.flexible-section {
    background: linear-gradient(135deg, var(--flex-orange-light, #f5a077) 0%, var(--flex-orange-main, #f0854d) 50%, var(--flex-orange-dark, #eb6f3a) 100%);
    padding: clamp(60px, 8vw, 100px) clamp(20px, 5vw, 64px);
    position: relative;
    overflow: hidden;
}

.flexible-section__inner {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 6vw, 80px);
    align-items: center;
}

.flexible-section__content {
    display: flex;
    flex-direction: column;
    gap: clamp(16px, 2vw, 24px);
    color: var(--white, #fff);
}

.flexible-section__title {
    font-size: clamp(32px, 4.5vw, 52px);
    font-weight: 800;
    line-height: 1.2;
    color: var(--white, #fff);
    letter-spacing: -0.02em;
    margin-bottom: 4px;
}

.flexible-section__subtitle {
    font-size: clamp(15px, 1.6vw, 17px);
    line-height: 1.6;
    color: rgba(255, 255, 255, .95);
    margin-bottom: 8px;
}

.flexible-section__label {
    font-size: clamp(14px, 1.5vw, 16px);
    font-weight: 600;
    color: var(--white, #fff);
    margin-bottom: -4px;
}

.flexible-checklist {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 4px;
}

.flexible-checklist li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: clamp(14px, 1.4vw, 16px);
    font-weight: 500;
    color: var(--white, #fff);
    line-height: 1.5;
}

.check-icon {
    font-size: 20px;
    color: rgba(255, 255, 255, .95);
    flex-shrink: 0;
    width: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.flexible-section__tagline {
    font-size: clamp(14px, 1.5vw, 16px);
    font-style: italic;
    font-weight: 400;
    color: rgba(255, 255, 255, .98);
    line-height: 1.6;
    margin-top: 8px;
}

.flexible-section__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: flex-start;
    padding: 16px 32px;
    background: var(--white, #fff);
    color: var(--flex-orange-dark, #eb6f3a);
    border-radius: 50px;
    font-size: clamp(14px, 1.4vw, 15px);
    font-weight: 700;
    box-shadow: 0 6px 24px rgba(0, 0, 0, .15);
    transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
    margin-top: 8px;
    letter-spacing: 0.01em;
}

.flexible-section__btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 32px rgba(0, 0, 0, .20);
    background: #fffbf8;
}

.flexible-section__btn:active {
    transform: translateY(-1px);
}


.flexible-section__image {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 16px 50px rgba(0, 0, 0, .20);
    aspect-ratio: 4 / 3;
}

.flexible-section__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .5s ease;
}

.flexible-section__image:hover img {
    transform: scale(1.05);
}




/* ─── TESTIMONIALS SLICK ──────────────────────────── */
.testimonials {
    background-color: #fff;
}

.testimonial-slider {
    max-width: 1100px;
    margin: 0 auto;
    padding-bottom: 40px;
}

.testimonial__card {
    background-color: var(--cream);
    padding: 32px 28px;
    border-radius: 22px;
    box-shadow: var(--shadow-sm);
    display: flex !important;
    flex-direction: column;
    gap: 16px;
    position: relative;
    margin: 10px 12px 10px;
    transition: transform 0.3s ease;
}

.testimonial__card::before {
    content: "\201C";
    position: absolute;
    top: -32px;
    right: 18px;
    font-size: 110px;
    color: rgba(235, 81, 47, .08);
    font-family: serif;
    line-height: 1;
    transform: rotate(180deg);
}

.testimonial__card:hover {
    transform: translateY(-6px);
}

.testimonial-card__icon {
    font-size: 18px;
}

.testimonial-card__quote {
    font-size: 1rem;
    color: var(--muted);
    text-align: start;
    line-height: 1.7;
}

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

.testimonial-card__initial {
    background-color: var(--badge-bg);
    color: var(--primary);
    min-width: 48px;
    min-height: 48px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-weight: bold;
    font-size: 18px;
    flex-shrink: 0;
}

.testimonial-card__name {
    font-weight: 600;
    color: var(--dark);
    display: block;
}

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

/* Slick overrides for testimonials */
.testimonial-slider .slick-dots li button:before {
    color: var(--primary);
    font-size: 10px;
    opacity: .35;
}

.testimonial-slider .slick-dots li.slick-active button:before {
    color: var(--primary);
    opacity: 1;
}

.testimonial-slider .slick-prev,
.testimonial-slider .slick-next {
    z-index: 5;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--white);
    box-shadow: var(--shadow-md);
    transition: background var(--ease), transform var(--ease);
}

.testimonial-slider .slick-prev:hover,
.testimonial-slider .slick-next:hover {
    background: var(--primary);
}

.testimonial-slider .slick-prev {
    left: -20px;
}

.testimonial-slider .slick-next {
    right: -20px;
}

.testimonial-slider .slick-prev:before,
.testimonial-slider .slick-next:before {
    color: var(--primary);
    font-size: 16px;
    line-height: 1;
}

.testimonial-slider .slick-prev:hover:before,
.testimonial-slider .slick-next:hover:before {
    color: var(--white);
}

/* ─── PEACE OF MIND ───────────────────────────────── */
.peace-of-mind-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.peace-of-mind-image {
    border-radius: 20px;
    width: 100%;
    max-width: 90%;
    height: 90%;
    object-fit: cover;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.features-list h1 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 6px;
}

.section-description {
    font-size: 1rem;
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 12px;
}

.feature {
    display: flex;
    gap: 16px;
    align-items: center;
    background-color: rgba(255, 255, 255, .75);
    padding: 14px;
    border-radius: 18px;
    transition: box-shadow var(--ease), transform var(--ease);
}

.feature:hover {
    box-shadow: var(--shadow-sm);
    transform: translateX(4px);
}

.feature-icon {
    background-color: var(--badge-bg);
    border-radius: 50%;
    color: var(--primary);
    font-size: 20px;
    min-width: 52px;
    min-height: 52px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
}

.features-list h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary);
    margin-top: 8px;
    font-style: italic
}

.feature-text p {
    font-size: .95rem;
    color: var(--text);
    margin-top: 4px;
}

/* ─── TOUR SECTION (NO FORM) ──────────────────────── */
.tour {
    background: var(--cream);
    padding: clamp(40px, 6vw, 80px) clamp(20px, 5vw, 64px);
}

.tour__card {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 290px 1fr;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(235, 81, 47, .18);
}

.tour__left {
    background: var(--primary);
    padding: clamp(32px, 4vw, 48px) clamp(24px, 3vw, 36px);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.tour__heading {
    font-size: clamp(22px, 2.8vw, 30px);
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
}

.tour__desc {
    font-size: clamp(13px, 1.3vw, 14.5px);
    color: rgba(255, 255, 255, .80);
    line-height: 1.7;
}

.tour__steps {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 4px;
}

.tour__step {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: clamp(13px, 1.3vw, 14.5px);
    font-weight: 500;
    color: rgba(255, 255, 255, .92);
}

.tour__step-num {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .18);
    border: 1.5px solid rgba(255, 255, 255, .35);
    display: grid;
    place-items: center;
    font-size: 12px;
    font-weight: 700;
    color: var(--white);
    flex-shrink: 0;
}

/* Right CTA Panel */
.tour__right {
    background: var(--white);
    padding: clamp(28px, 4vw, 44px) clamp(24px, 3.5vw, 40px);
}

.tour__cta-panel {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    align-items: flex-start;
}

.tour__cta-icon {
    width: 64px;
    height: 64px;
    background: var(--badge-bg);
    border-radius: 16px;
    display: grid;
    place-items: center;
    color: var(--primary);
    font-size: 26px;
}

.tour__cta-title {
    font-size: clamp(20px, 2.5vw, 28px);
    font-weight: 800;
    color: var(--dark);
    line-height: 1.2;
}

.tour__cta-desc {
    font-size: 15px;
    color: var(--muted);
    line-height: 1.7;
}

.tour__cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.tour__cta-actions .btn--outline {
    border-color: rgba(235, 81, 47, .30);
    color: var(--primary);
}

.tour__cta-note {
    font-size: 13px;
    color: var(--muted);
    display: flex;
    align-items: center;
    gap: 6px;
}

.tour__cta-note i {
    color: var(--primary);
}

/* ─── FAQ ─────────────────────────────────────────── */
.faq {
    background: var(--cream);
    padding: clamp(60px, 8vw, 100px) clamp(20px, 5vw, 64px);
}

.faq__inner {
    max-width: 780px;
    margin: 0 auto;
}

.faq__header {
    text-align: center;
    margin-bottom: clamp(36px, 5vw, 56px);
}

.faq__title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    color: var(--dark);
    line-height: 1.15;
    margin-bottom: 10px;
}

.faq__subtitle {
    font-size: clamp(14px, 1.5vw, 15.5px);
    color: var(--muted);
    line-height: 1.6;
}

.faq__list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq__item {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: box-shadow var(--ease);
}

.faq__item:hover {
    box-shadow: 0 4px 18px rgba(235, 81, 47, .12);
}

.faq__item.is-open {
    box-shadow: 0 4px 20px rgba(235, 81, 47, .15);
}

.faq__q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: clamp(14.5px, 1.6vw, 16px);
    font-weight: 600;
    color: var(--dark);
    line-height: 1.4;
    transition: color var(--ease);
}

.faq__q:hover {
    color: var(--primary);
}

.faq__item.is-open .faq__q {
    color: var(--primary);
}

.faq__chevron {
    font-size: 14px;
    color: var(--muted);
    flex-shrink: 0;
    transition: transform .3s cubic-bezier(.4, 0, .2, 1), color var(--ease);
}

.faq__item.is-open .faq__chevron {
    transform: rotate(180deg);
    color: var(--primary);
}

.faq__a {
    overflow: hidden;
    max-height: 0;
    transition: max-height .35s cubic-bezier(.4, 0, .2, 1), padding .25s ease, opacity .25s ease;
    opacity: 0;
    padding: 0 24px;
}

.faq__a:not([hidden]) {
    opacity: 1;
    padding: 0 24px 20px;
}

.faq__a[hidden] {
    display: block !important;
}

.faq__a p {
    font-size: clamp(13.5px, 1.4vw, 15px);
    line-height: 1.75;
    color: var(--muted);
    border-top: 1px solid rgba(235, 81, 47, .10);
    padding: 16px 0;
}

.faq__footer {
    text-align: center;
    margin-top: clamp(36px, 5vw, 52px);
}

.faq__still {
    font-size: 14px;
    color: var(--muted);
    margin-bottom: 6px;
}

.faq__phone {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: clamp(14px, 1.6vw, 16px);
    font-weight: 700;
    color: var(--dark);
    text-decoration: none;
    transition: color var(--ease);
}

.faq__phone i {
    color: var(--primary);
    font-size: 14px;
}

.faq__phone:hover {
    color: var(--primary);
}

/* ─── CONNECT ─────────────────────────────────────── */
.connect {
    background: #fff;
    padding: clamp(40px, 6vw, 80px) clamp(20px, 5vw, 64px) clamp(60px, 8vw, 100px);
}

.connect__inner {
    max-width: 1100px;
    margin: 0 auto;
}

.connect__header {
    text-align: center;
    margin-bottom: clamp(36px, 5vw, 52px);
}

.connect__title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    color: var(--dark);
    line-height: 1.15;
    margin-bottom: 10px;
}

.connect__subtitle {
    font-size: clamp(14px, 1.5vw, 15.5px);
    color: var(--muted);
}

.connect__grid {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 24px;
    align-items: stretch;
}

.connect__card {
    background: var(--cream-dark);
    border-radius: 18px;
    padding: clamp(24px, 3vw, 36px);
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.connect__card-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
}

.connect__details {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.connect__detail {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.connect__detail-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1.5px solid rgba(235, 81, 47, .20);
    background: var(--white);
    display: grid;
    place-items: center;
    color: var(--primary);
    font-size: 14px;
    flex-shrink: 0;
    margin-top: 1px;
}

.connect__detail-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 3px;
}

.connect__detail-value {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.55;
}

.connect__detail-link {
    text-decoration: none;
    transition: color var(--ease);
}

.connect__detail-link:hover {
    color: var(--primary);
}

.connect__social {
    padding-top: 20px;
    border-top: 1px solid rgba(235, 81, 47, .12);
}

.connect__social-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 14px;
}

.connect__social-icons {
    display: flex;
    gap: 10px;
}

.connect__social-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1.5px solid rgba(235, 81, 47, .20);
    background: var(--white);
    display: grid;
    place-items: center;
    color: var(--text);
    font-size: 15px;
    text-decoration: none;
    transition: background var(--ease), color var(--ease), border-color var(--ease), transform var(--ease-bounce);
}

.connect__social-btn:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    transform: translateY(-2px);
}

.connect__map-wrap {
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    min-height: 380px;
    position: relative;
}

.connect__map {
    width: 100%;
    height: 100%;
    min-height: 380px;
    border: none;
    display: block;
}

/* ─── FOOTER ──────────────────────────────────────── */
.footer {
    background: var(--white);
    border-top: 1px solid rgba(235, 81, 47, .1);
}

.footer__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: clamp(48px, 6vw, 72px) clamp(20px, 5vw, 64px) clamp(32px, 4vw, 48px);
    display: grid;
    grid-template-columns: 2fr 1fr 1.4fr;
    gap: clamp(32px, 4vw, 56px);
}

.footer__logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    margin-bottom: 16px;
}

.logo-icon--sm {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(235, 81, 47, .12);
}

.logo-icon--sm span {
    font-size: 15px;
    font-weight: 800;
    color: var(--primary);
}

.footer__brand .logo-name {
    font-size: 15px;
    font-weight: 700;
    color: var(--dark);
}

.footer__tagline {
    font-size: 13.5px;
    line-height: 1.75;
    color: var(--muted);
    max-width: 300px;
}

.footer__col {
    display: flex;
    flex-direction: column;
}

.footer__col-title {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--text);
    margin-bottom: 18px;
}

.footer__links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer__link {
    font-size: 14px;
    color: var(--muted);
    text-decoration: none;
    transition: color var(--ease);
    line-height: 1.5;
}

.footer__link:hover {
    color: var(--primary);
}

.footer__address {
    font-style: normal;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer__bottom {
    max-width: 1280px;
    margin: 0 auto;
    padding: 20px clamp(20px, 5vw, 64px);
    border-top: 1px solid rgba(235, 81, 47, .09);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}

.footer__copy,
.footer__made {
    font-size: 13px;
    color: var(--muted);
}

.footer__heart {
    color: var(--primary);
    font-size: 12px;
    margin: 0 2px;
    animation: heartbeat 1.8s ease-in-out infinite;
}

@keyframes heartbeat {

    0%,
    100% {
        transform: scale(1);
    }

    15% {
        transform: scale(1.25);
    }

    30% {
        transform: scale(1);
    }

    45% {
        transform: scale(1.15);
    }
}

.tour-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.tour-modal.active {
    display: flex;
}

.tour-box {
    width: 90%;
    max-width: 720px;
    height: 85vh;
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
    position: relative;
    display: flex;
    /* ADD */
    flex-direction: column;
    /* ADD */
}

.tour-box iframe {
    width: 100%;
    flex: 1;
    border: none;
    display: block;

}

.tour-close {
    position: absolute;
    top: 12px;
    right: 16px;
    font-size: 26px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 999px;
    width: 42px;
    height: 42px;
    cursor: pointer;
    z-index: 2;
}

body.modal-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
}

/* ── Floating Book-a-Tour Button ── */
.fab-tour {
    position: fixed;
    bottom: 28px;
    right: 2%;
    z-index: 9998;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 22px 0 16px;
    height: 54px;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 999px;
    cursor: pointer;
    font-family: inherit;
    font-size: 14.5px;
    font-weight: 600;
    letter-spacing: 0.03em;

    box-shadow:
        0 4px 20px rgba(228, 161, 86, 0.25),
        0 0 0 0 rgba(241, 175, 99, 0.5);

    transition: transform 0.2s ease, box-shadow 0.2s ease;
    overflow: hidden;
}

/* Animated ping ring */
.fab-tour__ring {
    position: absolute;
    inset: 0;
    border-radius: 999px;
    border: 2px solid rgba(241, 175, 99, 0.5);
    animation: fab-ping 2.2s ease-out infinite;
    pointer-events: none;
}

@keyframes fab-ping {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }

    70% {
        transform: scale(1.18);
        opacity: 0;
    }

    100% {
        transform: scale(1.18);
        opacity: 0;
    }
}

/* Icon circle */
.fab-tour__icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    display: grid;
    place-items: center;
    font-size: 13px;
    flex-shrink: 0;
    transition: background 0.2s;
}

.fab-tour__label {
    position: relative;
    white-space: nowrap;
}

/* Hover */
.fab-tour:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow:
        0 8px 30px rgba(0, 0, 0, 0.3),
        0 0 0 6px rgba(224, 136, 53, 0.15);
}

.fab-tour:hover .fab-tour__icon {
    background: rgba(255, 255, 255, 0.22);
}

/* Active press */
.fab-tour:active {
    transform: translateY(0) scale(0.98);
}

/* ============================================================
   WHY PARENTS CHOOSE US SECTION
   ============================================================ */

.why-parents-section {
    background: var(--cream);
}

.why-parents-section__inner {
    max-width: 1320px;
    margin: 0 auto;
}

.why-parents-section .sectionHeading h2 {
    margin-bottom: 28px;
}

.why-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.why-card {
    background: var(--white, #fff);
    border-radius: 18px;
    padding: clamp(28px, 3vw, 36px) clamp(24px, 2.5vw, 32px);
    display: flex;
    flex-direction: column;
    gap: 14px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, .06);
    transition: transform .3s ease, box-shadow .3s ease;
    position: relative;
}

.why-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(235, 81, 47, .12);
}

.why-card__icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    background: var(--badge-bg, #fcebd7);
    border-radius: 14px;
    display: grid;
    place-items: center;
    color: var(--primary, #eb512f);
    font-size: 22px;
    flex-shrink: 0;
    transition: background .3s ease, transform .3s ease;
}

.why-card:hover .why-card__icon {
    background: var(--primary, #eb512f);
    color: var(--white, #fff);
    transform: scale(1.08);
}

.why-card__title {
    font-size: clamp(16px, 1.5vw, 18px);
    font-weight: 700;
    color: var(--dark, #1e1612);
    line-height: 1.3;
    margin-top: 2px;
}

.why-card__desc {
    font-size: clamp(13px, 1.2vw, 14px);
    color: var(--muted, #8a7060);
    line-height: 1.7;
    flex: 1;
}

/* new sections css iframe */

 
.wg-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px 6px 10px;
  background: var(--wg-badge-bg);
  border: 1px solid rgba(235,81,47,.22);
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--wg-primary);
  letter-spacing: .02em;
  margin-bottom: 18px;
}
.wg-pill--light {
  background: rgba(255,255,255,.85);
}
.wg-pill__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--wg-primary);
  flex-shrink: 0;
  animation: wgPulse 2.2s ease-in-out infinite;
}
@keyframes wgPulse {
  0%,100% { opacity:1; transform:scale(1); }
  50%      { opacity:.4; transform:scale(1.4); }
}
 
/* ── Accent text ────────────────────────────────────────── */
.wg-accent { color: var(--wg-primary); }
 
/* ══════════════════════════════════════════════
   SECTION 1 — Below Hero
   ══════════════════════════════════════════════ */
.wg-book-hero {
  background: var(--wg-white);
  padding: clamp(48px,7vw,96px) clamp(20px,5vw,64px);
  border-top: 1px solid rgba(235,81,47,.08);
}
.wg-book-hero__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px,4vw,64px);
  align-items: start;
}
 
/* iframe column */
.wg-book-hero__iframe-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.wg-tour-iframe-card__header {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--primary);
  color: var(--white);
  padding: 12px 16px;
  border-radius: 12px 12px 0 0;
  font-weight: 600;
  font-size: 14px;
  box-shadow: var(--shadow-sm);
}

.wg-tour-iframe-card__header i {
  font-size: 16px;
}
 
/* content column */
.wg-book-hero__heading {
  font-size: clamp(26px,3.2vw,40px);
  font-weight: 800;
  color: var(--wg-dark);
  line-height: 1.15;
  margin-bottom: 14px;
  letter-spacing: -.025em;
}
.wg-book-hero__sub {
  font-size: clamp(14px,1.4vw,16px);
  color: var(--wg-muted);
  line-height: 1.75;
  margin-bottom: 28px;
  max-width: 420px;
}
 
/* Tour meta icons */
.wg-tour-meta {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
}
.wg-tour-meta__item {
  display: flex;
  align-items: center;
  gap: 14px;
}
.wg-tour-meta__icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--wg-badge-bg);
  display: grid;
  place-items: center;
  color: var(--wg-primary);
  font-size: 16px;
  flex-shrink: 0;
}
.wg-tour-meta__item div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.wg-tour-meta__item strong {
  font-size: 14px;
  font-weight: 700;
  color: var(--wg-dark);
}
.wg-tour-meta__item span {
  font-size: 13px;
  color: var(--wg-muted);
}
 
/* Mini quote */
.wg-mini-quote {
  background: var(--wg-cream);
  border-left: 3px solid var(--wg-primary);
  border-radius: 0 12px 12px 0;
  padding: 14px 18px;
  margin: 0;
}
.wg-mini-quote p {
  font-size: 13.5px;
  font-style: italic;
  color: var(--wg-text);
  line-height: 1.65;
  margin-bottom: 6px;
}
.wg-mini-quote cite {
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  color: var(--wg-primary);
}
 
/* ══════════════════════════════════════════════
   iframe wrapper & loader
   ══════════════════════════════════════════════ */
.wg-iframe-wrap {
  position: relative;
  background: var(--wg-cream);
  border-radius: 0 0 var(--wg-radius) var(--wg-radius);
  overflow: hidden;
  /* Reserve min height to prevent layout collapse */
  min-height: 400px;
}
 
/* Skeleton loader */
.wg-iframe-loader {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: var(--wg-cream);
  z-index: 5;
  transition: opacity .4s ease, visibility .4s ease;
}
.wg-iframe-loader.wg-loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
 
/* Spinner */
.wg-iframe-loader__spinner {
  width: 40px;
  height: 40px;
  border: 3px solid rgba(235,81,47,.15);
  border-top-color: var(--wg-primary);
  border-radius: 50%;
  animation: wgSpin .8s linear infinite;
}
@keyframes wgSpin {
  to { transform: rotate(360deg); }
}
.wg-iframe-loader__text {
  font-size: 13px;
  color: var(--wg-muted);
  margin: 0;
  font-family: inherit;
}
 
/* Shimmer bars inside loader */
.wg-iframe-loader::after {
  content: '';
  display: block;
  width: 70%;
  height: 160px;
  background: linear-gradient(
    90deg,
    rgba(235,81,47,.05) 25%,
    rgba(235,81,47,.12) 50%,
    rgba(235,81,47,.05) 75%
  );
  background-size: 200% 100%;
  border-radius: 12px;
  animation: wgShimmer 1.6s ease-in-out infinite;
}
@keyframes wgShimmer {
  from { background-position: 200% 0; }
  to   { background-position: -200% 0; }
}
 
/* Fallback link — hidden until timeout */
.wg-iframe-fallback {
  display: none;
  font-size: 12.5px;
  color: var(--wg-muted);
  text-align: center;
  padding: 8px 0 2px;
  margin: 0;
}
.wg-iframe-fallback.wg-show { display: block; }
.wg-iframe-fallback a {
  color: var(--wg-primary);
  font-weight: 600;
  text-decoration: underline;
}
 
/* Standalone iframe wrap (Section 1 left col) */
.wg-book-hero__iframe-col .wg-iframe-wrap {
  border-radius: var(--wg-radius);
  box-shadow: var(--wg-shadow);
}

/* new sections css iframe end */

/* ══════════════════════════════════════════════
   Tour section above FAQ
   ══════════════════════════════════════════════ */

   .wg-tour2 {
       padding: clamp(48px, 7vw, 96px) clamp(20px, 5vw, 64px);
       background: var(--wg-cream-dark, #f5ede3);
   }

   /* ── The unified card ────────────────────────────────── */
   .wg-tour2__card {
       max-width: 1200px;
       margin: 0 auto;
       display: grid;
       grid-template-columns: 1fr 1.05fr;
       border-radius: 24px;
       overflow: hidden;
       box-shadow: 0 16px 56px rgba(235, 81, 47, .18);
   }

   /* ── LEFT — orange panel ─────────────────────────────── */
   .wg-tour2__left {
       background: var(--wg-primary, #eb512f);
       padding: clamp(32px, 4vw, 52px) clamp(28px, 3.5vw, 44px);
       display: flex;
       flex-direction: column;
       gap: 22px;
       position: relative;
       overflow: hidden;
   }

   /* subtle radial glow for depth */
   .wg-tour2__left::before {
       content: '';
       position: absolute;
       top: -60px;
       right: -60px;
       width: 280px;
       height: 280px;
       border-radius: 50%;
       background: rgba(255, 255, 255, .07);
       pointer-events: none;
   }

   .wg-tour2__left::after {
       content: '';
       position: absolute;
       bottom: -80px;
       left: -40px;
       width: 220px;
       height: 220px;
       border-radius: 50%;
       background: rgba(255, 255, 255, .05);
       pointer-events: none;
   }

   /* pill on orange bg */
   .wg-tour2__left .wg-pill {
       background: rgba(255, 255, 255, .15);
       border-color: rgba(255, 255, 255, .30);
       color: #fff;
       align-self: flex-start;
   }

   .wg-pill__dot--white {
       background: #fff !important;
   }

   /* heading */
   .wg-tour2__heading {
       font-size: clamp(24px, 2.8vw, 36px);
       font-weight: 800;
       color: #fff;
       line-height: 1.2;
       letter-spacing: -.025em;
       margin: 0;
   }

   .wg-tour2__heading-highlight {
       color: rgba(255, 255, 255, .80);
   }

   /* sub */
   .wg-tour2__sub {
       font-size: clamp(13.5px, 1.35vw, 15px);
       color: rgba(255, 255, 255, .85);
       line-height: 1.75;
       margin: 0;
   }

   /* meta items on orange */
   .wg-tour-meta--light {
       display: flex;
       flex-direction: column;
       gap: 14px;
   }

   .wg-tour-meta--light .wg-tour-meta__item {
       display: flex;
       align-items: center;
       gap: 14px;
   }

   .wg-tour-meta__icon--light {
       width: 40px;
       height: 40px;
       border-radius: 12px;
       background: rgba(255, 255, 255, .15);
       border: 1px solid rgba(255, 255, 255, .22);
       display: grid;
       place-items: center;
       color: #fff;
       font-size: 16px;
       flex-shrink: 0;
   }

   .wg-tour-meta--light .wg-tour-meta__item div {
       display: flex;
       flex-direction: column;
       gap: 2px;
   }

   .wg-tour-meta--light .wg-tour-meta__item strong {
       font-size: 14px;
       font-weight: 700;
       color: #fff;
   }

   .wg-tour-meta--light .wg-tour-meta__item span {
       font-size: 13px;
       color: rgba(255, 255, 255, .75);
   }

   /* quote on orange */
   .wg-mini-quote--white {
       background: rgba(255, 255, 255, .12);
       border-left: 3px solid rgba(255, 255, 255, .50);
       border-radius: 0 12px 12px 0;
       padding: 14px 18px;
       margin: 0;
   }

   .wg-mini-quote--white p {
       font-size: 13.5px;
       font-style: italic;
       color: rgba(255, 255, 255, .90);
       line-height: 1.65;
       margin-bottom: 6px;
   }

   .wg-mini-quote--white cite {
       font-size: 12px;
       font-style: normal;
       font-weight: 600;
       color: rgba(255, 255, 255, .70);
   }

   /* ── RIGHT — white iframe panel ──────────────────────── */
   .wg-tour2__right {
       background: #fff;
       display: flex;
       flex-direction: column;
   }


   /* ── iframe wrapper & loader ─────────────────────────── */
   .wg-iframe-wrap2 {
       position: relative;
       flex: 1;
       min-height: 420px;
       background: var(--wg-cream, #fdf8f4);
       overflow: hidden;
   }

   .wg-iframe-loader2 {
       position: absolute;
       inset: 0;
       display: flex;
       flex-direction: column;
       align-items: center;
       justify-content: center;
       gap: 14px;
       background: var(--wg-cream, #fdf8f4);
       z-index: 5;
       transition: opacity .4s ease, visibility .4s ease;
   }

   .wg-iframe-loader2.wg-loaded2 {
       opacity: 0;
       visibility: hidden;
       pointer-events: none;
   }

   /* shimmer skeleton bars */
   .wg-iframe-loader2::after {
       content: '';
       display: block;
       width: 70%;
       height: 140px;
       background: linear-gradient(90deg,
               rgba(235, 81, 47, .05) 25%,
               rgba(235, 81, 47, .13) 50%,
               rgba(235, 81, 47, .05) 75%);
       background-size: 200% 100%;
       border-radius: 12px;
       animation: wgShimmer2 1.6s ease-in-out infinite;
   }

   @keyframes wgShimmer2 {
       from {
           background-position: 200% 0;
       }

       to {
           background-position: -200% 0;
       }
   }

   .wg-iframe-loader2__spinner {
       width: 38px;
       height: 38px;
       border: 3px solid rgba(235, 81, 47, .15);
       border-top-color: var(--wg-primary, #eb512f);
       border-radius: 50%;
       animation: wgSpin2 .8s linear infinite;
   }

   @keyframes wgSpin2 {
       to {
           transform: rotate(360deg);
       }
   }

   .wg-iframe-loader2__text {
       font-size: 13px;
       color: var(--wg-muted, #8a7060);
       margin: 0;
       font-family: inherit;
   }

   /* fallback link */
   .wg-iframe-fallback2 {
       display: none;
       font-size: 12.5px;
       color: var(--wg-muted, #8a7060);
       text-align: center;
       padding: 10px 24px;
       margin: 0;
       background: #fff;
       border-top: 1px solid rgba(235, 81, 47, .08);
   }

   .wg-iframe-fallback2.wg-show2 {
       display: block;
   }

   .wg-iframe-fallback2 a {
       color: var(--wg-primary, #eb512f);
       font-weight: 600;
       text-decoration: underline;
   }

/* ══════════════════════════════════════════════════════
   RESPONSIVE – TABLET (≤ 960px)
══════════════════════════════════════════════════════ */
@media (max-width: 960px) {
    .hero {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .hero-slider {
        max-width: 90vw;
    }

    .image-frame {
        border-radius: 18px;
    }

    .testimonial-card {
        display: none;
        /* right: 12px;
        bottom: -12px;
        max-width: 210px; */
    }

    .hero__body {
        max-width: 100%;
    }

    .program-cards {
        grid-template-columns: 1fr 1fr;
    }


    .peace-of-mind-content {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0;
    }

    .peace-of-mind-image {
        max-width: 100%;
    }

    .section-title {
        font-size: 2rem;
    }

    .faq {
        padding: 48px 20px 56px;
    }

    .faq__q {
        padding: 16px 18px;
    }

    .faq__a:not([hidden]) {
        padding: 0 18px 16px;
    }

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

    .tour__left {
        padding: 32px 28px;
        gap: 16px;
    }

    .tour__steps {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 12px 20px;
    }

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

    .connect__map-wrap,
    .connect__map {
        min-height: 320px;
    }

    .footer__inner {
        grid-template-columns: 1fr 1fr;
        gap: 36px 32px;
    }

    .footer__brand {
        grid-column: 1 / -1;
    }

    .footer__tagline {
        max-width: 100%;
    }

    .footer__bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }

    .marquee-item {
        width: 220px;
        height: 160px;
    }

    .testimonial-slider .slick-prev {
        left: -8px;
    }

    .testimonial-slider .slick-next {
        right: -8px;
    }

    .accredit-item img {
        max-height: 50px;
    }

    .accredit-item:last-child img {
        max-height: 60px;
    }

    .flexible-section__inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .flexible-section__image {
        order: -1;
        max-width: 500px;
        margin: 0 auto;
    }

    .flexible-section__content {
        text-align: left;
    }

    .flexible-section__btn {
        align-self: center;
        width: 100%;
        max-width: 320px;
    }

    .affordable-section {
        padding: 60px 20px 70px;
    }

    .affordable-cards {
        flex-direction: column;
        gap: 16px;
        max-width: 320px;
        margin-left: auto;
        margin-right: auto;
    }

    .affordable-card {
        width: 100%;
        max-width: 280px;
        height: 180px;
    }

    .affordable-section__title {
        font-size: clamp(24px, 7vw, 32px);
    }

    .affordable-section__subtitle {
        font-size: 14px;
    }

    .why-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }

    .why-parents-section {
        padding: 56px 20px 64px;
    }

    .centre-card {
        grid-template-columns: 1fr;
        padding: 1rem;
    }

    .centre-card__left {
        padding: 32px 28px;
    }

    .centre-card__map-wrap {
        height: 240px;
    }
	.wg-book-hero__inner {
	grid-template-columns: 1fr;
	}
	.wg-book-hero__content-col { order: -1; }
	.wg-book-hero__sub { max-width: 100%; }
	.wg-tour2__card {
	grid-template-columns: 1fr;
	border-radius: 20px;
	}
	.wg-tour2__left {
	padding: 32px 28px;
	}
	.wg-tour2__heading {
	font-size: clamp(22px, 5vw, 28px);
	}
	
}

/* ══════════════════════════════════════════════════════
   RESPONSIVE – MOBILE (≤ 500px)
══════════════════════════════════════════════════════ */
@media (max-width: 500px) {
    .common-container {
        padding: 2.5rem 1rem;
    }

    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero {
        padding: 28px 20px 48px;
        gap: 24px;
    }

    .hero__heading {
        font-size: clamp(28px, 8.5vw, 40px);
    }

    .hero__actions {
        gap: 10px;
    }

    .btn {
        padding: 12px 22px;
        font-size: 14px;
    }

    .btn i {
        font-size: 13px;
    }

    .stats-bar {
        gap: 12px 18px;
    }

    .stat {
        min-width: calc(50% - 9px);
        flex: 1;
    }

    .hero-right-images {
        grid-template-columns: 1fr 1fr;
        gap: 14px;
    }

    .hero-right-images img {
        height: 160px;
        border-radius: 18px;
    }

    .centre-card__brand {
        font-size: 12px;
    }

    .centre-card__name {
        font-size: 24px;
    }

    .program-cards {
        grid-template-columns: 1fr;
    }

    .program-content {
        padding: 16px;
    }

    .section-title {
        font-size: 1.3rem;
    }

    .section-text {
        font-size: 0.8rem;
        max-width: 100%;
    }

    .badge {
        font-size: 12px;
    }

    .stat {
        max-width: 100%;
    }

    .marquee-section {
        padding: 50px 0 40px;
    }

    .marquee-item {
        width: 160px;
        height: 120px;
        border-radius: 12px;
    }

    .marquee-helptext {
        font-size: 14px;
        max-width: 80%;
    }


    .testimonial__card {
        padding: 20px 16px;
    }

    .testimonial-card__quote {
        font-size: 0.95rem;
    }

    .testimonial-slider .slick-prev,
    .testimonial-slider .slick-next {
        display: none !important;
    }

    .features-list h1 {
        font-size: 1.6rem;
    }

    .feature-text h3 {
        font-size: 1rem;
    }

    .feature-text p {
        font-size: 0.9rem;
    }

    .peace-of-mind-content {
        padding: 0;
    }

    .faq__q {
        padding: 14px 16px;
        font-size: 14px;
    }

    .faq__a:not([hidden]) {
        padding: 0 16px 14px;
    }

    .tour {
        padding: 40px 16px 56px;
    }

    .tour__steps {
        flex-direction: column;
    }

    .tour__cta-actions {
        flex-direction: column;
        width: 100%;
    }

    .tour__cta-actions .btn,
    .tour__cta-actions .btn--outline-light {
        width: 100%;
        justify-content: center;
    }

    .connect {
        padding: 40px 16px 56px;
    }

    .connect__card {
        padding: 22px 18px;
        gap: 20px;
    }

    .connect__map-wrap,
    .connect__map {
        min-height: 260px;
    }

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

    .fab-tour {
        justify-content: center;
        bottom: 20px;
        right: 5%;
        left: unset;
    }


    .fab-tour__icon {
        width: 26px;
        height: 26px;
    }

    .flexible-section {
        padding: 48px 20px 56px;
    }

    .flexible-section__inner {
        gap: 32px;
    }

    .flexible-section__title {
        font-size: clamp(28px, 8vw, 36px);
    }

    .flexible-section__subtitle {
        font-size: 15px;
    }

    .flexible-section__label {
        font-size: 14px;
    }

    .flexible-checklist {
        gap: 10px;
    }

    .flexible-checklist li {
        font-size: 14px;
        gap: 10px;
    }

    .check-icon {
        font-size: 18px;
        width: 20px;
    }

    .flexible-section__tagline {
        font-size: 14px;
    }

    .flexible-section__btn {
        width: 100%;
        max-width: 100%;
        padding: 15px 28px;
        font-size: 14px;
    }

    .flexible-section__image {
        border-radius: 20px;
        max-width: 100%;
    }

    .affordable-section {
        padding: 50px 16px 60px;
    }

    .affordable-card {
        height: 160px;
        border-radius: 22px;
    }

    .affordable-card__main {
        font-size: 24px;
    }

    .affordable-card__main--multi {
        font-size: 18px;
    }

    .affordable-card__sub {
        font-size: 11px;
    }

    .affordable-section__tagline {
        font-size: 15px;
    }

    .affordable-section__accent-line {
        width: 90px;
        height: 2.5px;
    }

    .why-cards {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .why-parents-section {
        padding: 48px 16px 56px;
    }

    .why-card {
        padding: 24px 20px;
        gap: 12px;
        border-radius: 16px;
    }

    .why-card__icon {
        width: 50px;
        height: 50px;
        min-width: 50px;
        font-size: 20px;
        border-radius: 12px;
    }

    .why-card__title {
        font-size: 16px;
    }

    .why-card__desc {
        font-size: 13px;
    }

    .centre-card-section {
        padding: 48px 16px 60px;
    }

    .centre-card {
        border-radius: 16px;
    }

    .centre-card__left {
        padding: 24px 20px;
        gap: 16px;
    }

    .centre-card__name {
        font-size: clamp(32px, 9vw, 42px);
    }

    .review-stars {
        display: none;
    }

    .centre-card__features {
        gap: 14px;
    }

    .centre-card__features li {
        font-size: 13px;
        gap: 12px;
    }

    .bullet-dot {
        width: 8px;
        height: 8px;
        min-width: 8px;
        margin-top: 6px;
    }

    .centre-card__map-wrap {
        height: 200px;
    }

    .centre-card__details {
        padding: 20px 20px 16px;
        gap: 12px;
    }

    .detail-icon {
        width: 36px;
        height: 36px;
        min-width: 36px;
        font-size: 14px;
    }

    .detail-text {
        font-size: 13.5px;
    }

    .centre-card__actions {
        padding: 16px 20px 28px;
        flex-direction: column;
        gap: 10px;
    }

    .centre-card__right {
        padding: 14px;
    }

    .btn-centre {
        min-width: 100%;
        padding: 13px 20px;
    }

    .map-directions-btn {
        bottom: 12px;
        padding: 9px 16px;
        font-size: 12px;
    }
	.wg-book-hero {
	padding: 36px 16px 48px;
	}
	.wg-tour-section {
	padding: 40px 16px 56px;
	}
	.wg-book-hero__heading {
	font-size: 26px;
	}
	.wg-tour-meta {
	gap: 12px;
	}
	.wg-iframe-wrap {
	min-height: 320px;
	}
	.wg-tour2 {
    padding: 36px 16px 52px;
  }
  .wg-tour2__left {
    padding: 28px 20px;
    padding-bottom: 0;
    gap: 18px;
  }
  .wg-tour2__left .wg-pill{
    margin-bottom: 0;
  }
  .wg-tour2__heading {
    font-size: 22px;
  }
  .wg-iframe-wrap2 {
    min-height: 340px;
  }

}

.educators{
	background: var(--cream-dark);
    padding: 80px 0px 60px;
    overflow: hidden;
}
.educators .educator-common-wrapper{
	max-width: 1200px;
	margin: 0 auto;
}
.educators .educator-wrapper{
	display: flex;
	justify-content: space-between;
	gap: 50px;
	margin-top: clamp(36px, 5vw, 56px)
}
.educators p{
	font-size: clamp(15px, 1.6vw, 17px);
    line-height: 1.6;
	text-align: justify;
	color: var(--muted, #8a7060);
	margin-bottom: 10px
}


.fancybox__button--close {
  background: #000;
  color: #fff;
}

.fancybox__nav .carousel__button {
  background: rgba(0,0,0,0.6);
  color: #fff;
}

@media(min-width: 501px){
	.mobile-btn{
		display: none
	}
}
