/* ============================================================
   MASTER MINDS DAYCARE — style.css
   Main / Desktop Styles
   ============================================================ */

/* ============================================================
   CSS Variables / Design Tokens
   ============================================================ */
:root {
    /* Brand Colors */
    --color-primary: #F7C948;
    --color-secondary: #3CAEA3;
    --color-accent-red: #F05454;
    --color-accent-green: #4CAF50;
    --color-accent-orange: #FF7B2C;
    --color-accent-pink: #F48FB1;
    --color-dark: #1A1A2E;
    --color-dark-text: #2D2D3A;
    --color-body-text: #5A5A72;
    --color-light-bg: #FFF9EC;
    --color-programs-bg: #F4F9F8;
    --color-white: #FFFFFF;

    /* Typography */
    --font-heading: "Fredoka", sans-serif;
    --font-body: 'Poppins', sans-serif;

    /* Spacing */
    --section-py: 90px;

    /* Radius */
    --radius-card: 20px;
    --radius-btn: 50px;
    --radius-img: 24px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--color-body-text);
    background-color: var(--color-white);
    overflow-x: hidden;
    font-size: 15px;
    line-height: 1.7;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--color-dark-text);
    line-height: 1.2;
}

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

/* ============================================================
   Shared / Reusable
   ============================================================ */
.section-eyebrow {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 500;
    color: var(--color-secondary);
    margin-bottom: 10px;
}

.section-heading {
    font-family: var(--font-heading);
    font-size: 38px;
    font-weight: 600;
    color: var(--color-dark-text);
    line-height: 1.2;
    margin-bottom: 10px;
}

.section-description {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--color-body-text);
    line-height: 1.85;
    margin-bottom: 30px;
    max-width: 500px;
}

/* ============================================================
   HEADER / NAVBAR
   ============================================================ */


.site-header .navbar {
    padding: 14px 0;
}

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

.site-header .nav-link {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    color: var(--color-dark-text);
    padding: 6px 11px !important;
    position: relative;
    white-space: nowrap;
    transition: color 0.3s ease;
}

@media (min-width: 1200px) {
    .site-header .nav-link {
        font-size: 14px;
        padding: 6px 14px !important;
    }
}



.site-header .nav-link:hover,
.site-header .nav-link.active {
    color: var(--color-secondary);
}

.site-header .nav-link:hover::after,
.site-header .nav-link.active::after {
    transform: scaleX(1);
}

/* Hamburger toggler */
.navbar-toggler {
    border: 0px;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 3px rgba(247, 201, 72, 0.3);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2826%2C26%2C46%2C0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Enroll button */
.btn-enroll {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    background-color: var(--color-primary);
    color: var(--color-dark);
    border: 1px solid var(--color-dark);
    border-radius: 10px;
    padding: 10px 26px;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
}

.btn-enroll:hover {
    background-color: var(--color-accent-red);
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(240, 84, 84, 0.35);
}

/* ============================================================
   MOBILE OFFCANVAS NAV (slides from RIGHT)
   ============================================================ */
.mobile-offcanvas {
    width: 300px;
    background-color: var(--color-white);
}

.offcanvas-header {
    padding: 20px 24px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    background-color: var(--color-light-bg);
}

.offcanvas-logo {
    height: 48px;
    width: auto;
}

.offcanvas-close-btn {
    opacity: 0.7;
}

.offcanvas-close-btn:hover {
    opacity: 1;
}

.offcanvas-body {
    padding: 20px 0;
    display: flex;
    flex-direction: column;
    height: calc(100% - 88px);
}

.offcanvas-nav-list {
    flex: 1;
    padding: 0;
}

.offcanvas-nav-list li {
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.offcanvas-nav-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 24px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    color: var(--color-dark-text);
    transition: all 0.25s ease;
}

.offcanvas-nav-link i {
    font-size: 16px;
    color: var(--color-secondary);
    width: 20px;
    text-align: center;
}

.offcanvas-nav-link:hover,
.offcanvas-nav-link.active {
    color: var(--color-accent-red);
    background-color: rgba(247, 201, 72, 0.08);
    padding-left: 30px;
}

.offcanvas-nav-link.active i,
.offcanvas-nav-link:hover i {
    color: var(--color-accent-red);
}

.offcanvas-enroll {
    padding: 20px 24px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    margin-top: auto;
}

/* ============================================================
   HERO SECTION — Full-width background image
   ============================================================ */
.hero-section {
    position: relative;
    min-height: 580px;
    display: flex;
    flex-direction: column;
    background-image: url(../img/home_banner.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.hero-section>img {
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    object-fit: contain;
}

/* Background image fills full section */
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

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


/* Decorative shapes positioned absolutely over hero */
.hero-shape {
    position: absolute;
    z-index: 3;
    pointer-events: none;
}

.hero-shape-balloon {
    top: 50px;
    right: 80px;
    width: 50px;
    animation: float 3s ease-in-out infinite;
}

.hero-shape-2balloon {
    top: 30px;
    right: 180px;
    width: 60px;
    animation: float 4s ease-in-out infinite 0.5s;
}

.hero-shape-sun {
    bottom: 120px;
    right: 60px;
    width: 65px;
    animation: spin-slow 12s linear infinite;
}

.hero-shape-pencil {
    bottom: 100px;
    right: 260px;
    width: 45px;
    animation: float 3.5s ease-in-out infinite 1s;
}

.ct_header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #fff;
    padding: 10px 24px;
    border-radius: 20px;
    position: relative;
    z-index: 1;
}

.hero-section:before {
    content: "";
    position: absolute;
    inset: 0px;
    background-color: #000;
    opacity: 0.4;
    z-index: -1;

}

/* Hero text content container */
.hero-container {
    position: relative;
    z-index: 2;
    flex: 1;
    padding-top: 90px;
    padding-bottom: 90px;
}

.hero-content {
    color: var(--color-white);
}

.hero-eyebrow {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 500;
    color: rgba(255, 255, 255, 1);
    margin-bottom: 18px;

    letter-spacing: 0.5px;
}

.hero-heading {
    font-family: var(--font-heading);
    font-size: 56px;
    font-weight: 600;
    color: var(--color-white);
    line-height: 1.12;
    margin-bottom: 15px;
}

.hero-buttons {
    gap: 16px;
}

.btn-hero-primary {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 700;
    background-color: var(--color-primary);
    color: var(--color-dark);
    border: 1px solid var(--color-dark);
    border-radius: 10px;
    padding: 14px 36px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-hero-primary:hover {
    background-color: var(--color-accent-red);
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(240, 84, 84, 0.4);
}

/* Bottom wave shape */
.hero-wave-bottom {
    position: relative;
    z-index: 2;
    line-height: 0;
    margin-top: auto;
}

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

/* ============================================================
   HIGHLIGHT CARDS SECTION
   ============================================================ */
.highlight-cards-section {
    padding: 60px 0 30px;
    background-color: var(--color-white);
    position: relative;
    z-index: 10;
}

.highlight-card {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 32px 24px;
    border-radius: 40px 90px;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.highlight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.highlight-card-red {
    background-color: #FF5E3A;
}

.highlight-card-pink {
    background-color: #FF8FAD;
}

.highlight-card-yellow {
    background-color: #FBC12B;
}

.card-icon-wrapper {
    flex-shrink: 0;
    margin-top: 2px;
}

.card-icon-wrapper svg {
    display: block;
}

.card-content {
    flex: 1;
}

.card-title {
    font-family: var(--font-heading);
    font-size: 19px;
    font-weight: 600;
    color: var(--color-dark-text);
    margin-bottom: 6px;
    line-height: 1.3;
}

.card-text {
    font-family: var(--font-body);
    font-size: 13px;
    line-height: 1.6;
    color: var(--color-dark-text);
    margin: 0;
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-section {
    padding: var(--section-py) 0;
    background-color: var(--color-white);
    position: relative;
    overflow: hidden;
}

.about-deco {
    position: absolute;
    pointer-events: none;
    z-index: 0;
}

.about-deco-balloon {
    top: 40px;
    right: 40px;
    width: 80px;
    /* animation: float 4s ease-in-out infinite; */
}

.about-deco-flower {
    bottom: 20px;
    left: 20px;
    width: 60px;
    /* animation: spin-slow 18s linear infinite; */
}

.about-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
}

.about-img {
    width: 100%;
    max-width: 480px;
    object-fit: cover;
    position: relative;
    z-index: 1;
}

.about-content {
    position: relative;
    z-index: 1;
}

.about-content .section-eyebrow {
    color: var(--color-secondary);
    font-size: 20px;
    font-weight: 500;
    font-family: var(--font-heading);
    text-transform: none;
    letter-spacing: 0;
}

.about-content .section-heading {
    margin-bottom: 24px;
    font-weight: 600;
}

.about-content .section-description {
    max-width: 100%;
    margin-bottom: 16px;
    font-size: 14px;
    line-height: 1.8;
    color: rgba(85, 85, 85, 1);
}

.about-action-row {
    margin-top: 30px;
}

.btn-explore-more {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    background-color: var(--color-primary);
    color: var(--color-dark);
    border: 2px solid var(--color-dark);
    border-radius: 10px;
    padding: 12px 30px;
    transition: all 0.3s ease;
}

.btn-explore-more:hover {
    background-color: var(--color-secondary);
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(60, 174, 163, 0.25);
}

.about-call-info {
    font-family: var(--font-body);
}

.call-text-box {
    display: flex;
    flex-direction: column;
}

.call-label {
    font-size: 14px;
    font-weight: 500;
    color: rgba(0, 0, 0, 1);
    line-height: 1.2;
    margin-bottom: 8px;
}

.call-number {
    font-size: 18px;
    font-weight: 600;
    color: var(--color-secondary);
    line-height: 1.3;
}

.call-number:hover {
    color: var(--color-accent-red);
}

.btn-about-enroll:hover {
    background-color: var(--color-accent-red);
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(240, 84, 84, 0.3);
}

/* ============================================================
   PROGRAMS SECTION
   ============================================================ */
.programs-section {
    background-color: rgba(240, 239, 236, 1);
    padding: 0;
    position: relative;
}

.programs-section:before {
    content: "";
    position: absolute;
    top: -30px;
    left: 0px;
    width: 100%;
    height: 50px;
    background-image: url(../img/program_top_shape.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: center;
    z-index: 1;
}

.programs-section:after {
    content: "";
    position: absolute;
    bottom: -30px;
    left: 0px;
    width: 100%;
    height: 50px;
    background-image: url(../img/program_bottom_shape.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: center;
    z-index: 9;
}

.programs-container {
    padding-top: 60px;
    padding-bottom: 30px;
}

.programs-header {
    margin-bottom: 50px;
}

.programs-header .section-heading {
    font-size: 42px;
}

.programs-subtext {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--color-body-text);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.85;
}

/* Program Cards */
.program-card {
    background-color: var(--color-white);
    border-radius: var(--radius-card);
    overflow: hidden;
    box-shadow: 0px 4px 8.6px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: grid;
    padding: 15px;
    border-radius: 30px;
}

.programs-owl-carousel .owl-stage {
    display: flex;
}

.programs-owl-carousel .owl-item {
    display: flex;
}

.programs-owl-carousel .owl-item>div {
    width: 100%;
    display: flex;
}



.program-card-img-wrapper {
    width: 100%;
    height: 230px;
    overflow: hidden;
    border-radius: 20px;
}

.program-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.program-card:hover .program-card-img {
    transform: scale(1.05);
}

.program-card-body {
    padding: 26px 15px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.program-card-title {
    font-family: var(--font-heading);
    font-size: 22px;
    color: var(--color-secondary);
    margin-bottom: 10px;
}

.program-card-description {
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--color-body-text);
    line-height: 1.75;
    margin-bottom: 20px;
    flex: 1;
}

.btn-program-learn {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    background: none;
    border: 2px solid var(--color-secondary);
    color: var(--color-secondary);
    border-radius: var(--radius-btn);
    padding: 9px 22px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    width: fit-content;
    transition: all 0.3s ease;
}

.btn-program-learn:hover {
    background-color: var(--color-secondary);
    color: var(--color-white);
    transform: translateX(4px);
}

.programs-wave-bottom {
    line-height: 0;
    overflow: hidden;
}

.programs-wave-img-bottom {
    width: 100%;
    height: auto;
    display: block;
}

/* Programs Decoratives */
.programs-deco {
    position: absolute;
    pointer-events: none;
    z-index: 1;
}

.programs-deco-snail {
    bottom: 20px;
    left: 30px;
    width: 80px;
}

.programs-deco-balloon {
    top: 80px;
    right: 40px;
    width: 70px;
}

/* ============================================================
   OWL CAROUSEL — Programs
   ============================================================ */
.programs-owl-carousel {
    padding-bottom: 20px;
}

/* Custom dots */
.programs-owl-carousel .owl-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 36px;
}

.programs-owl-carousel .owl-dot span {
    display: block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(174, 174, 174, 1);
    transition: all 0.3s ease;
    border: 1px solid transparent;
    margin: 0;
}

.programs-owl-carousel .owl-dot.active span {
    background-color: #fff;
    border: 1px solid rgba(0, 158, 154, 1);
    border-radius: 10px;
}

/* Owl item outer wrapper */
.program-card-owl {
    padding: 4px 4px 10px 4px;
}

/* Age Badge */
.program-card-age {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    color: var(--color-body-text);
    margin-bottom: 20px;
    flex: 1;
    display: flex;
    align-items: flex-end;
}

/* Arrow circle button */
.btn-program-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background-color: var(--color-primary);
    color: var(--color-secondary);
    border: 1px solid var(--color-secondary);
    font-size: 18px;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-top: auto;
}

.btn-program-arrow:hover {
    background-color: var(--color-accent-orange);
    color: var(--color-white);
    transform: translateX(4px);
    box-shadow: 0 6px 18px rgba(255, 123, 44, 0.3);
}

/* ============================================================
   WHY CHOOSE US SECTION
   ============================================================ */
.why-section {
    padding: 150px 0 80px;
    background-color: var(--color-white);
    position: relative;
    overflow: hidden;
}

.why-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
}

.why-img {
    width: 100%;
    max-width: 520px;
    border-radius: var(--radius-img);
    object-fit: cover;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.why-section-deco {
    position: absolute;
    pointer-events: none;
    z-index: 0;
}

.why-section-deco-sun {
    top: 60px;
    right: 40px;
    width: 70px;
    animation: spin-slow 20s linear infinite;
}

.why-section-deco-bird {
    bottom: 30px;
    left: 30px;
    width: 104px;
    /* animation: float 4s ease-in-out infinite; */
}

.why-content {
    padding-left: 20px;
}

.why-content .section-description {
    max-width: 100%;
}

/* Why Features List */
.why-features-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 10px;
}

.why-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

/* SVG check icon wrapper */
.why-feature-svg-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    margin-top: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-feature-svg-icon svg {
    width: 20px;
    height: 20px;
}

.why-feature-text h4 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 500;
    color: var(--color-secondary);
    margin-bottom: 2px;
    line-height: 1.3;
}

.why-feature-text p {
    font-size: 13px;
    color: var(--color-body-text);
    margin: 0;
    line-height: 1.65;
}

/* ============================================================
   VIDEO / FULL-WIDTH BANNER
   ============================================================ */
.video-section {
    position: relative;
    line-height: 0;
}

.video-bg {
    position: relative;
    width: 100%;
    height: 480px;
    overflow: hidden;
}

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

.video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(26, 26, 46, 0.38);
}

.video-content {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    line-height: 1;
}

.video-play-btn {
    width: 82px;
    height: 82px;
    background-color: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 38px;
    color: var(--color-dark-text);
    border: 5px solid rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
    animation: pulse 2.5s ease-in-out infinite;
}

.video-play-btn:hover {
    transform: scale(1.12);
    background-color: var(--color-white);
    box-shadow: 0 0 0 20px rgba(247, 201, 72, 0.15);
}

/* ============================================================
   GALLERY SECTION
   ============================================================ */
.gallery-section {
    padding: var(--section-py) 0;
    position: relative;
    overflow: hidden;
}

.gallery-header {
    margin-bottom: 48px;
}

.gallery-subtext {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--color-body-text);
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.85;
}

/* Gallery Grid — 3 columns × 2 rows */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 240px);
    gap: 16px;
    margin-bottom: 40px;
}

.gallery-item {
    border-radius: 18px;
    overflow: hidden;
    cursor: pointer;
    height: 100%;

}

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

.gallery-item img {
    height: 100%;
    object-fit: cover;
}

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

.btn-gallery-view {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 700;
    background-color: var(--color-primary);
    color: var(--color-dark-text);
    border: none;
    border-radius: var(--radius-btn);
    padding: 13px 34px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.btn-gallery-view:hover {
    background-color: var(--color-secondary);
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(60, 174, 163, 0.3);
}

/* Gallery Decoratives */
.gallery-deco {
    position: absolute;
    pointer-events: none;
    z-index: 0;
}

.gallery-deco-balloon {
    top: 40px;
    right: 50px;
    width: 100px;
    /* animation: float 3.5s ease-in-out infinite; */
}

.gallery-deco-flower {
    bottom: 60px;
    left: 40px;
    width: 55px;
    animation: spin-slow 12s linear infinite;
}

/* ============================================================
   TESTIMONIALS SECTION
   ============================================================ */
.testimonials-section {
    padding: var(--section-py) 0;
    background-color: var(--color-white);
    position: relative;
    overflow: hidden;
}

.testimonials-header {
    margin-bottom: 40px;
}

.testimonials-owl-carousel {
    position: relative;
    z-index: 1;
    padding: 0 4px 42px;
}

.testimonials-owl-carousel .owl-stage,
.testimonials-owl-carousel .owl-item {
    display: flex;
}

.testimonials-owl-carousel .owl-item>div {
    width: 100%;
}

.testimonials-owl-carousel .owl-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
}

.testimonials-owl-carousel .owl-dot span {
    width: 10px;
    height: 10px;
    margin: 5px 4px;
    display: flex;
    border-radius: 100px;
    background: rgba(174, 174, 174, 1);
}

.testimonials-owl-carousel .owl-dot.active span {
    background: #fff;
    border: 1px solid var(--color-secondary);
}

.ct_shape_bg {
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
    height: 254px;
    display: flex;
    align-items: start;
    padding: 70px 30px;
    gap: 15px;
}

.ct_shape_bg.red {
    background-image: url(../img/red_shape_img.png);

}

.ct_shape_bg.pink {
    background-image: url(../img/pink_shape_img.png);
}

.ct_shape_bg.yellow {
    background-image: url(../img/yellow_shape_img.png);
}

.ct_shape_content h4 {
    font-weight: 600;
    color: #000;
}

.ct_shape_content p {
    color: #000;
}

/* Testimonial Cards */
.testimonial-card {
    border-radius: 40px 0 40px 0;
    min-height: 245px;
    padding: 24px 28px;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.testimonial-card-yellow {
    background-color: #f5b61e;
}

.testimonial-card-teal {
    background-color: #06bfa8;
}

.testimonial-card-pink {
    background-color: #ff8ca7;
}

.quote-icon-img {
    display: block;
    width: 38px !important;
    height: 38px !important;
    object-fit: contain;
}

.testimonial-text {
    font-family: var(--font-body);
    font-size: 16px;
    color: #000;
    line-height: 1.6;
    flex: 1;
    margin: 0;
}

.testimonial-card-yellow .testimonial-text {
    color: var(--color-dark-text);
}

.testimonial-card-teal .testimonial-text {
    color: var(--color-white);
}

.testimonial-card-pink .testimonial-text {
    color: var(--color-white);
}

.testimonial-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

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

.testimonial-name {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 18px;
    margin: 0;
    line-height: 1.2;
}

.testimonial-card-yellow .testimonial-name {
    color: var(--color-dark-text);
}

.testimonial-card-teal .testimonial-name {
    color: var(--color-white);
}

.testimonial-card-pink .testimonial-name {
    color: var(--color-white);
}

.testimonial-role {
    font-family: var(--font-body);
    font-size: 14px;
    margin: 0;
    font-weight: 600;
}

.testimonial-card-yellow .testimonial-role {
    color: var(--color-dark-text);
}

.testimonial-card-teal .testimonial-role {
    color: var(--color-white);
}

.testimonial-card-pink .testimonial-role {
    color: var(--color-white);
}

.testimonial-rating {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    font-weight: 700;
}

.testimonial-rating i {
    color: #ffffff;
    font-size: 14px;
}

.testimonial-card-yellow .testimonial-rating {
    color: var(--color-dark-text);
}

.testimonial-card-teal .testimonial-rating {
    color: var(--color-white);
}

.testimonial-card-pink .testimonial-rating {
    color: var(--color-white);
}

/* Testimonial Decoratives */
.testimonials-deco {
    position: absolute;
    pointer-events: none;
    z-index: 0;
}

.testimonials-deco-balloons {
    top: 50px;
    left: 40px;
    width: 100px;
    /* animation: float 3s ease-in-out infinite; */
}

.testimonials-deco-boy {
    bottom: 0px;
    left: 38px;
    width: 192px;
}

.testimonials-deco-sun {
    bottom: 60px;
    right: 50px;
    width: 55px;
    animation: spin-slow 14s linear infinite;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
    background-color: #FFEFA6;
    position: relative;
    color: #2D2D3A;
    margin-top: 0px;
}

.footer-top-shape {
    line-height: 0;
    overflow: hidden;
}

.footer-top-shape-img {
    width: 100%;
    height: auto;
    display: block;
}

.footer-main {
    padding: 60px 0 50px;
}

/* Footer Brand */
.footer-logo {
    height: 58px;
    width: auto;
    margin-bottom: 16px;
    filter: none;
}

.footer-brand-desc {
    font-family: var(--font-body);
    font-size: 14px;
    color: #5A5A72;
    line-height: 1.75;
    margin-bottom: 22px;
    max-width: 290px;
}

/* Footer Social */
.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social-link {
    width: 36px;
    height: 36px;
    background: #009E9A;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 16px;
    transition: all 0.3s ease;
}

.footer-social-link:hover {
    background: var(--color-primary);
    color: #009E9A;
    transform: translateY(-3px);
}

/* Footer Widget */
.footer-widget-title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 500;
    color: #009E9A;
    margin-bottom: 20px;
    position: relative;
    text-transform: uppercase;
}

/* Footer Links */
.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    font-family: var(--font-body);
    font-size: 14px;
    color: #2D2D3A;
    transition: color 0.3s ease, padding-left 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.footer-links a::before {
    content: '• ';
    margin-right: 8px;
    color: #2D2D3A;
    font-weight: bold;
}

.footer-links a:hover {
    color: #009E9A;
    padding-left: 4px;
}

/* Footer Contact Block */
.footer-contact-info-block p {
    font-family: var(--font-body);
    font-size: 14px;
    color: #2D2D3A;
    line-height: 1.6;
    margin-bottom: 12px;
}

.footer-info-label {
    font-weight: 600;
    margin-bottom: 2px !important;
}

.footer-info-text {
    margin-bottom: 14px !important;
}

.footer-info-phone a,
.footer-info-email a {
    font-size: 18px;
    font-weight: 500;
    color: #2D2D3A;
    transition: color 0.3s ease;
}

.footer-info-phone a:hover,
.footer-info-email a:hover {
    color: #009E9A;
}

/* Footer Newsletter */
.footer-newsletter-desc {
    font-family: var(--font-body);
    font-size: 14px;
    color: #2D2D3A;
    line-height: 1.6;
    margin-bottom: 16px;
}

.footer-newsletter-input {
    background-color: #FFFDF6;
    border: 1px solid #E6D8B3;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 14px;
    color: #2D2D3A;
}

.footer-newsletter-input:focus {
    background-color: #ffffff;
    border-color: #009E9A;
    box-shadow: 0 0 0 3px rgba(0, 158, 154, 0.1);
}

.btn-footer-subscribe {
    background-color: #009E9A;
    color: #ffffff;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 500;
    border-radius: 8px;
    padding: 12px;
    transition: all 0.3s ease;
    border: none;
}

.btn-footer-subscribe:hover {
    background-color: #007D7A;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 158, 154, 0.2);
}

/* Ornament Girl */
.footer-deco-girl {
    position: absolute;
    top: -45px;
    right: 40px;
    width: 110px;
    z-index: 10;
    pointer-events: none;
}

/* Footer Bottom */
.footer-bottom {
    background-color: rgba(252, 218, 85, 1);
    padding: 20px 0 20px;
    position: relative;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    z-index: 1;
    margin-top: 50px;
}

.footer-bottom:before {
    content: "";
    position: absolute;
    top: -50px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: bottom;
    background-image: url(../img/footer_bottom_shape.png);
    left: 0px;
    width: 100%;
    height: 50px;
}

.footer-copyright,
.footer-links-bottom,
.footer-links-bottom a {
    font-family: var(--font-body);
    font-size: 13px;
    color: #5A5A72;
    margin: 0;
    padding: 0;
}

.footer-links-bottom a {
    transition: color 0.3s ease;
}

.footer-links-bottom a:hover {
    color: #009E9A;
}

/* ============================================================
   ANIMATIONS / KEYFRAMES
   ============================================================ */
@keyframes float {

    0%,
    100% {
        transform: translateY(0px) rotate(-53deg);
    }

    50% {
        transform: translateY(-12px) rotate(-53deg);
    }
}

@keyframes spin-slow {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(247, 201, 72, 0.5);
    }

    50% {
        box-shadow: 0 0 0 22px rgba(247, 201, 72, 0);
    }
}

/* ============================================================
   ABOUT US PAGE — Page-Specific Styles
   ============================================================ */

/* --- Top Info Bar (above navbar) --- */
.about-topbar {
    background-color: var(--color-dark);
    padding: 8px 0;
    font-family: var(--font-body);
    font-size: 13px;
}

.about-topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
    border-bottom: 1px dashed #0000008c;
    padding-bottom: 12px;
    margin-bottom: 12px;
}

.about-topbar-contact {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.about-topbar-contact a {
    color: var(--color-dark-text);
    display: flex;
    align-items: center;
    font-size: 14px;
    gap: 6px;
    transition: color 0.3s;
}

.about-topbar-contact a:hover {
    color: var(--color-primary);
}

.about-topbar-contact i {
    color: var(--color-secondary);
    font-size: 14px;
}

.about-topbar-social {
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-topbar-social a {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--color-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 13px;
    transition: background 0.3s;
}

.about-topbar-social a:hover {
    background: var(--color-secondary);
}

/* --- About Page Hero Banner (full image background) --- */
.about-page-hero-section {
    position: relative;
    min-height: 340px;
    display: flex;
    flex-direction: column;
    background-image: url(../img/inner_page_bg.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

/* Dark overlay */
.about-page-hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.45);
    z-index: 0;
}

/* Wavy white bottom shape */
.about-page-hero-section .about-wave-bottom {
    position: relative;
    z-index: 2;
    line-height: 0;
    margin-top: auto;
}

.about-page-hero-section .about-wave-bottom img {
    width: 100%;
    height: auto;
    display: block;
}

.about-hero-banner-content {
    position: relative;
    z-index: 1;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px 30px;
}

.about-hero-banner-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 500;
    color: #fff;
    margin-bottom: 14px;
}

.about-hero-breadcrumb {
    font-family: var(--font-body);
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    gap: 8px;
}

.about-hero-breadcrumb a {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    transition: color 0.3s;
}

.about-hero-breadcrumb a:hover {
    color: var(--color-primary);
}

.about-hero-breadcrumb .separator {
    font-size: 0.85rem;
    opacity: 0.7;
}

/* --- Who We Are Section --- */
.who-we-are-section {
    padding: 90px 0 70px;
    background: #fff;
    position: relative;
}

.who-img {
    width: 100%;
    max-width: 430px;
    border-radius: 50% 50% 50% 50% / 40% 40% 60% 60%;
    object-fit: cover;
    box-shadow: 0 20px 60px rgba(60, 174, 163, 0.18);
}

/* --- Mission / Vision Cards --- */
.mv-card {
    background: rgba(255, 233, 174, 1);
    border-radius: 20px;
    padding: 30px 26px;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mv-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.10);
}

.mv-card.teal-bg {
    background: linear-gradient(135deg, #E8FAF9, #D0F5F2);
}

.mv-icon {
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}



.mv-card h4 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 10px;
}

.mv-card p {
    font-family: var(--font-body);
    color: var(--color-body-text);
    font-size: 0.92rem;
    line-height: 1.7;
    margin: 0;
}

/* --- What Makes Us Different Section --- */
.different-section {
    background: linear-gradient(135deg, #F4F9F8 0%, #EAF8F7 100%);
    padding: 90px 0;
}

.different-img {
    width: 100%;
    border-radius: 24px;
    object-fit: cover;
    box-shadow: 0 20px 55px rgba(60, 174, 163, 0.15);
}

.diff-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.diff-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 24px;
}

.diff-check {
    flex-shrink: 0;
    width: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}


.diff-item h5 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 8px;
}

.diff-item p {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--color-body-text);
    margin: 0;
    line-height: 1.65;
}

/* --- Pillars Section (Supporting Families / Educators / Community) --- */
.pillars-section {
    padding: 60px 0 90px;
    background: #fff;
}

.pillar-row-card {
    display: flex;
    align-items: start;
    gap: 40px;
    border-radius: 24px;
    padding: 40px 60px;
    margin-bottom: 30px;
}

.pillar-row-card:last-child {
    margin-bottom: 0;
}

.pillar-yellow {
    background-color: #FFF3D1;
}

.pillar-teal {
    background-color: #CFF8F5;
}

.pillar-row-icon {
    flex-shrink: 0;
    width: 54px;
}

.pillar-row-icon img {
    width: 100%;
    height: auto;
    display: block;
}

.pillar-row-text {
    flex: 1;
}

.pillar-row-text h4 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 8px;
}

.pillar-row-text h5 {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--color-dark);
    margin-bottom: 16px;
}

.pillar-row-text p {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--color-body-text);
    line-height: 1.8;
    margin-bottom: 16px;
}

.pillar-row-text p:last-child {
    margin-bottom: 0;
}

.pillar-reverse {
    flex-direction: row-reverse;
}

.pillar-reverse .pillar-row-text {
    text-align: right;
}

@media (max-width: 991px) {

    .pillar-row-card,
    .pillar-reverse {
        flex-direction: column;
        padding: 30px 20px;
        text-align: center;
    }

    .pillar-reverse .pillar-row-text {
        text-align: center;
    }
}

/* --- Testimonials (About page — same as home) --- */
.about-testimonials-section {
    background: var(--color-light-bg);
    padding: var(--section-py) 0;
    position: relative;
    overflow: hidden;
}

/* Owl carousel dots */
.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background: var(--color-secondary) !important;
}

/* --- Our Staff Section --- */
.staf-section {
    padding: 80px 0;
    background-color: #fff;
    position: relative;
    overflow: hidden;
}

.staf-card {
    transition: transform 0.3s ease;
}

.staf-card:hover {
    transform: translateY(-5px);
}

.staf-img-wrapper {
    border-radius: 24px;
    overflow: hidden;
    padding: 0;
    border: 1px solid transparent;
}

.staf-img-wrapper.border-teal {
    border-color: #009E9A;
}

.staf-img-wrapper.border-orange {
    border-color: #F2994A;
}

.staf-img-wrapper.border-yellow {
    border-color: #F2C94C;
}

.staf-img-wrapper img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: 23px;
    display: block;
}

.staf-name {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 4px;
}

.staf-role {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--color-body-text);
    margin: 0;
}

/* --- Gallery Section --- */
.gallery-section {
    padding: 80px 0;
    background-color: #fff;
    position: relative;
    overflow: hidden;
}

.gallery-item {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

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

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

@media (max-width: 991px) {
    .gallery-item {
        height: 250px !important;
        margin-bottom: 10px;
    }
}

/* --- Contact Us Page --- */
.contact-map-wrapper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.contact-map-wrapper iframe {
    display: block;
}

.contact-info-list {
    margin-top: 30px;
}

.contact-info-item .contact-icon {
    font-size: 1.4rem;
    color: var(--color-secondary);
}

.contact-form-wrapper {
    background-color: #F8F9FA;
    border: 1px solid var(--color-accent-pink);
    border-radius: 40px;
    padding: 60px 40px 80px 40px;
    margin-top: 20px;
}

.contact-deco-boy {
    bottom: -15px;
    left: -20px;
    width: 150px;
    z-index: 2;
}

.contact-input {
    border: 1px solid #E0E0E0;
    border-radius: 12px;
    padding: 15px 20px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    background-color: #FFFFFF;
}

.contact-input:focus {
    box-shadow: none;
    border-color: var(--color-secondary);
}

.btn-contact-submit {
    background-color: var(--color-primary);
    color: var(--color-dark);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.1rem;
    padding: 12px 50px;
    border-radius: 50px;
    border: none;
    transition: all 0.3s ease;
}

.btn-contact-submit:hover {
    background-color: var(--color-dark);
    color: #fff;
    transform: translateY(-2px);
}

@media (max-width: 767px) {
    .contact-form-wrapper {
        padding: 40px 20px;
        border-radius: 24px;
    }

    .contact-deco-boy {
        width: 100px;
        left: -10px;
        bottom: -10px;
    }
}

/* ============================================================
   Philosophy Page Sections
   ============================================================ */
.philosophy-intro-section {
    background-color: var(--color-white);
    overflow: hidden;
}

.philosophy-deco-line-wrapper {
    position: absolute;
    top: 300px;
    right: 30px;
    width: 100px;
    z-index: 1;
    pointer-events: none;
}

.philosophy-deco-line {
    width: 100%;
    height: auto;
}

.philosophy-main-img {
    max-width: 100%;
    height: auto;
}

.philosophy-approach-content .section-eyebrow {
    font-size: 1.1rem;
    font-weight: 500;
}

.approach-point {
    position: relative;
    padding-left: 0;
}

.approach-point .point-title {
    font-family: var(--font-body);
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--color-secondary);
    margin-bottom: 2px;
}

.approach-point .point-desc {
    font-size: 0.95rem;
    color: var(--color-body-text);
    margin-bottom: 0;
    line-height: 1.6;
}

/* Core Principles Section */
.philosophy-principles-section {
    background-color: #F8F7F4;
    /* Warm light beige background */
    padding: 0;
    position: relative;
}

.philosophy-principles-section::before {
    content: "";
    position: absolute;
    top: -30px;
    left: 0;
    width: 100%;
    height: 50px;
    background-image: url(../img/program_top_shape.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: center;
    z-index: 1;
}

.philosophy-principles-section::after {
    content: "";
    position: absolute;
    bottom: -30px;
    left: 0;
    width: 100%;
    height: 50px;
    background-image: url(../img/program_bottom_shape.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: center;
    z-index: 1;
}

.principles-container {
    padding-top: 100px;
    padding-bottom: 100px;
    position: relative;
    z-index: 2;
}

.principles-deco-snail {
    position: absolute;
    top: 50px;
    left: 40px;
    width: 110px;
    z-index: 2;
    pointer-events: none;
}

.principle-card {
    transition: transform 0.3s ease;
}

.principle-check-icon {
    font-size: 1.5rem;
    color: var(--color-secondary);
    line-height: 1;
    font-weight: 900;
}

.ct_fw_500 {
    font-weight: 500;
}

.principle-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--color-secondary);
    margin-bottom: 4px;
}

.principle-desc {
    font-size: 0.95rem;
    color: var(--color-body-text);
    line-height: 1.6;
    margin-bottom: 0;
}

/* Play Is More Than Fun Section */
.philosophy-play-section {
    background-color: var(--color-white);
    z-index: 1;
}

.play-deco-girl {
    position: absolute;
    bottom: 0;
    right: 20px;
    width: 110px;
    z-index: 2;
    pointer-events: none;
}

.play-deco-butterfly {
    position: absolute;
    bottom: 90px;
    right: 120px;
    width: 32px;
    z-index: 2;
    pointer-events: none;
    animation: float 4s ease-in-out infinite;
}

/* Responsive adjustments for Philosophy Page */
@media (max-width: 1199px) {

    .philosophy-deco-line-wrapper,
    .principles-deco-snail,
    .play-deco-girl,
    .play-deco-butterfly {
        display: none !important;
    }
}

@media (max-width: 991px) {
    .principles-container {
        padding-top: 70px;
        padding-bottom: 70px;
    }
}

/* ============================================================
   Fees Page Sections
   ============================================================ */

/* --- Intro / Government Funding Section --- */
.fees-intro-section {
    background-color: var(--color-white);
    padding: var(--section-py) 0;
}

.fees-intro-img {
    border-radius: var(--radius-img);
    width: 100%;
    max-width: 480px;
    object-fit: cover;
}

.fees-funding-list {
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0px;
}

.fees-funding-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: rgba(85, 85, 85, 1);
    font-family: var(--font-body);
}

.fees-funding-list li i {
    color: var(--color-secondary);
    font-size: 1rem;
    flex-shrink: 0;
}

/* Ornaments */
.fees-deco-butterfly {
    position: absolute;
    top: 30px;
    right: 40px;
    width: 55px;
    z-index: 0;
    pointer-events: none;
    animation: float 4s ease-in-out infinite;
}

.fees-deco-boy {
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 130px;
    z-index: 9;
    pointer-events: none;
}

/* --- Pricing Section --- */
.fees-pricing-section {
    background-color: rgba(240, 239, 236, 1);
    padding: 0;
    position: relative;
}

.fees-pricing-section::before {
    content: "";
    position: absolute;
    top: -30px;
    left: 0;
    width: 100%;
    height: 50px;
    background-image: url(../img/program_top_shape.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: center;
    z-index: 1;
}

.fees-pricing-section::after {
    content: "";
    position: absolute;
    bottom: -30px;
    left: 0;
    width: 100%;
    height: 50px;
    background-image: url(../img/program_bottom_shape.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: center;
    z-index: 1;
}

.fees-pricing-inner {
    padding-top: 100px;
    padding-bottom: 100px;
    position: relative;
    z-index: 2;
}

/* Pricing Card */
.pricing-card {
    background-color: rgba(252, 218, 85, 1);
    border: 2px solid var(--color-secondary);
    border-radius: 20px;
    box-shadow: 0 7px 0 var(--color-secondary);
    padding: 28px 32px;
    transition: transform 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-4px);
}

.pricing-card-icon-box {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pricing-card-icon-box i {
    font-size: 1.4rem;
    color: var(--color-white);
}

.pricing-icon-teal {
    background-color: var(--color-accent-red);
}

.pricing-card-type {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--color-dark-text);
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-card-days {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--color-dark-text);
    margin-bottom: 6px;
}

.pricing-card-desc {
    font-size: 0.88rem;
    color: var(--color-dark-text);
    line-height: 1.55;
    margin-bottom: 0;
    opacity: 0.85;
    max-width: 272px;
}

.pricing-price-block {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 2px;
    flex-wrap: wrap;
}

.pricing-amount {
    font-family: var(--font-body);
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--color-dark-text);
    line-height: 1;
}

.pricing-period {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--color-dark-text);
    font-weight: 500;
}

.pricing-footnote {
    font-size: 0.78rem;
    color: var(--color-dark-text);
    margin-top: 6px;
    margin-bottom: 0;
    opacity: 0.75;
    line-height: 1.5;
}

/* Enroll button inside pricing card */
.btn-pricing-enroll {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    background-color: var(--color-secondary);
    color: var(--color-white);
    border-radius: 50px;
    padding: 11px 22px;
    border: none;
    white-space: nowrap;
    transition: all 0.3s ease;
    border-radius: 10px;
}

.btn-pricing-enroll:hover {
    background-color: var(--color-dark);
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
}

.btn-enroll-teal {
    background-color: var(--color-accent-red);
}

.btn-enroll-teal:hover {
    background-color: var(--color-dark);
}

/* --- What's Included Section --- */
.fees-included-section {
    background-color: var(--color-white);
    padding: var(--section-py) 0;
}

.fees-included-img {
    border-radius: var(--radius-img);
    width: 100%;
    max-width: 520px;
    object-fit: cover;
}

.fees-included-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.fees-included-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.fees-included-check {
    font-size: 1.3rem;
    color: var(--color-dark-text);
    flex-shrink: 0;
    margin-top: 2px;
    font-weight: 900;
}

.fees-included-list li div strong {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--color-dark-text);
    display: block;
    margin-bottom: 2px;
}

.fees-included-list li div p {
    font-size: 0.9rem;
    color: var(--color-body-text);
    margin-bottom: 0;
    line-height: 1.55;
}

/* Responsive — Fees Page */
@media (max-width: 1199px) {

    .fees-deco-butterfly,
    .fees-deco-boy {
        display: none !important;
    }
}

@media (max-width: 991px) {
    .fees-pricing-inner {
        padding-top: 70px;
        padding-bottom: 70px;
    }

    .pricing-card {
        padding: 22px 20px;
    }

    .pricing-amount {
        font-size: 1.8rem;
    }
}

@media (max-width: 767px) {
    .pricing-card-label {
        margin-bottom: 12px;
    }

    .pricing-price-block {
        justify-content: flex-start;
    }
}

/* ============================================================
   PROGRAMS PAGE — Page-Specific Styles
   ============================================================ */

/* --- Intro Section (Play. Explore. / Learning Begins With Play) --- */
.pg-intro-section {
    padding: 70px 0 60px;
}

.pg-intro-butterfly-deco {
    position: absolute;
    top: -20px;
    right: 15px;
    width: 80px;
    height: auto;
    z-index: 5;
}

@media (max-width: 991px) {
    .pg-intro-butterfly-deco {
        display: none;
    }
}

.pg-intro-eyebrow {
    color: #3CAEA3;
    font-family: "Fredoka", sans-serif;
    font-size: 16px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 10px;
}

.pg-intro-main-heading {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 16px;
}

.pg-intro-img {
    border-radius: 20px;
    height: 300px;
    object-fit: cover;
    box-shadow: none;
}

/* --- Our Programs Grid Section --- */
.pg-programs-section {
    background-color: rgba(235, 255, 255, 1);
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
}

/* Program card styles */
.program-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    border: 1.5px solid #d4f0ee;
    box-shadow: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.program-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(60, 174, 163, 0.12);
}

.program-card-img-wrapper {
    width: 100%;
    height: 210px;
    overflow: hidden;
    flex-shrink: 0;
}

.program-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.program-card:hover .program-card-img {
    transform: scale(1.05);
}

.program-card-body {
    padding: 20px 22px 22px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.program-card-title {
    font-family: "Fredoka", sans-serif;
    font-size: 21px;
    font-weight: 600;
    color: #3CAEA3;
    margin-bottom: 10px;
}

.program-card-description {
    font-size: 13.5px;
    color: #5A5A72;
    line-height: 1.65;
    margin-bottom: 12px;
    flex: 1;
}

.program-card-age {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: #2D2D3A;
    background: transparent;
    border-radius: 0;
    padding: 0;
    margin-bottom: 16px;
}

.btn-program-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: #F7C948;
    border-radius: 50%;
    color: #2D2D3A;
    font-size: 17px;
    transition: background 0.3s ease, transform 0.3s ease;
    align-self: flex-start;
}

.btn-program-arrow:hover {
    background: #3CAEA3;
    color: #fff;
    transform: translateX(3px);
}

/* --- Healthy Snacks Section (Centered, Wavy, Ornaments) --- */
.snacks-section {
    background-color: #EDEDED;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.snacks-top-shape {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1;
    pointer-events: none;
}

.snacks-bottom-shape {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1;
    pointer-events: none;
}

.snacks-deco-girl {
    position: absolute;
    left: 5%;
    top: 80px;
    width: 120px;
    height: auto;
    z-index: 2;
}

.snacks-deco-butterfly {
    position: absolute;
    right: 8%;
    bottom: 80px;
    width: 100px;
    height: auto;
    z-index: 2;
}

.new-snack-card {
    background: #ffffff;
    border-radius: 20px;
    border: 2px solid transparent;
    padding: 6px 48px 6px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    z-index: 3;
}

.new-snack-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.09);
}

.new-snack-card-morning {
    border-color: #A3D9A3;
}

.new-snack-card-afternoon {
    border-color: #F5B7B1;
}

.new-snack-left-col {
    display: flex;
    align-items: center;
    gap: 16px;
}

.new-snack-clock-icon {
    font-size: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.new-snack-clock-icon.text-success {
    color: #73B926 !important;
}

.new-snack-clock-icon.text-danger {
    color: #E53935 !important;
}

.new-snack-details {
    display: flex;
    flex-direction: column;
}

.new-snack-title {
    font-family: "Fredoka", sans-serif;
    font-size: 19px;
    font-weight: 600;
    margin-bottom: 2px;
}

.new-snack-title.title-morning {
    color: #73B926;
}

.new-snack-title.title-afternoon {
    color: #E53935;
}

.new-snack-time {
    font-size: 13.5px;
    color: #7F8C8D;
    margin-bottom: 0;
}

.new-snack-card-right {
    flex-shrink: 0;
}

.new-snack-image-frame {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    transform: scale(1.4);
}

.new-snack-image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 991px) {

    .snacks-deco-girl,
    .snacks-deco-butterfly {
        display: none !important;
    }
}

/* --- Program Areas Section --- */
.program-areas-section {
    background: #fff;
    padding: 90px 0;
}

.program-area-card {
    background: #fff;
    border: 2px solid transparent;
    border-radius: 20px;
    padding: 40px 20px;
    text-align: center;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.program-area-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.program-area-card-pink {
    border-color: #F48FB1;
}

.program-area-card-yellow {
    border-color: #F7C948;
}

.program-area-card-teal {
    border-color: #3CAEA3;
}

.program-area-card-green {
    border-color: #81C784;
}

.program-area-card-blue {
    border-color: #42A5F5;
}

.program-area-card-orange {
    border-color: #FF7B2C;
}

.program-area-icon-wrap {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.program-area-icon-wrap img,
.program-area-icon-wrap svg {
    max-width: 60px;
    height: auto;
}

.program-area-title {
    font-family: "Fredoka", sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #2D2D3A;
    margin-bottom: 12px;
}

.program-area-desc {
    font-size: 13.5px;
    color: #5A5A72;
    line-height: 1.7;
    margin-bottom: 0;
}

/* --- A Day at Masterminds Section --- */
.day-section {
    background: #ffffff;
    padding: 90px 0;
    position: relative;
}

.day-deco-balloon {
    position: absolute;
    top: 20px;
    right: 8%;
    width: 140px;
    height: auto;
    z-index: 2;
    pointer-events: none;
}

.new-day-item {
    margin-bottom: 24px;
}

.new-day-title-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 4px;
}

.new-day-dot {
    width: 7px;
    height: 7px;
    background-color: #3CAEA3;
    border-radius: 50%;
    display: inline-block;
    flex-shrink: 0;
}

.new-day-title {
    font-family: "Fredoka", sans-serif;
    font-size: 16.5px;
    font-weight: 600;
    color: #3CAEA3;
    margin-bottom: 0;
}

.new-day-text {
    font-size: 13.5px;
    color: #5A5A72;
    padding-left: 17px;
    margin-bottom: 0;
    line-height: 1.6;
}

.day-images-grid {
    position: relative;
}

.day-grid-img-large {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 24px;
    margin-bottom: 16px;
}

.day-grid-row {
    display: flex;
    gap: 16px;
}

.day-grid-img-small {
    width: calc(50% - 8px);
    height: 160px;
    object-fit: cover;
    border-radius: 16px;
}

@media (max-width: 991px) {
    .day-deco-balloon {
        display: none !important;
    }
}

/* Shared eyebrow badge */
.programs-eyebrow-badge {
    display: inline-block;
    background: transparent;
    color: #3CAEA3;
    font-family: "Fredoka", sans-serif;
    font-size: 16px;
    font-weight: 500;
    border-radius: 50px;
    padding: 5px 22px;
    margin-bottom: 12px;
}