/* ========================================
   CHERUBS INTERNATIONAL PRESCHOOL
   Main Stylesheet
   ======================================== */

/* ========== VARIABLES ========== */
:root {
    --primary-yellow: #FFC400;
    --primary-blue: #6B4EFF;
    --purple: #6B4EFF;
    --pink: #FF4DA6;
    --bg-white: #FFFFFF;
    --text-dark: #2D2D2D;
    --text-gray: #6B7280;
    --text-light: #9CA3AF;
    --bg-light: #F9FAFB;
    --shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 20px 60px rgba(0, 0, 0, 0.12);
    --radius: 20px;
    --radius-sm: 12px;
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ========== RESET & BASE ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Jost', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
    background: var(--bg-white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Fredoka', sans-serif;
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-dark);
}

a {
    text-decoration: none;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
}

.section-padding {
    padding: 100px 0;
}

/* ========== SECTION TAGS & TITLES ========== */
.section-tag {
    display: inline-block;
    background: linear-gradient(135deg, rgba(255, 196, 0, 0.15), rgba(255, 77, 166, 0.15));
    color: var(--pink);
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Fredoka', sans-serif;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.section-tag i {
    margin-right: 6px;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.section-title span {
    color: var(--primary-blue);
    position: relative;
}

.section-title span::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 8px;
    background: var(--primary-yellow);
    opacity: 0.4;
    border-radius: 4px;
    z-index: -1;
}

.section-subtitle {
    font-size: 17px;
    color: var(--text-gray);
    max-width: 550px;
    margin: 0 auto;
}

.section-desc {
    color: var(--text-gray);
    font-size: 16px;
    margin-bottom: 25px;
}

/* ========== BUTTONS ========== */
.btn-primary-custom {
    background: var(--primary-yellow);
    color: var(--text-dark);
    border: none;
    padding: 14px 36px;
    border-radius: 50px;
    font-family: 'Fredoka', sans-serif;
    font-weight: 600;
    font-size: 16px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary-custom::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--purple);
    transition: var(--transition);
    z-index: -1;
    border-radius: 50px;
}

.btn-primary-custom:hover {
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(107, 78, 255, 0.3);
}

.btn-primary-custom:hover::before {
    left: 0;
}

.btn-outline-custom {
    background: transparent;
    color: var(--purple);
    border: 2px solid var(--purple);
    padding: 12px 36px;
    border-radius: 50px;
    font-family: 'Fredoka', sans-serif;
    font-weight: 600;
    font-size: 16px;
    transition: var(--transition);
}

.btn-outline-custom:hover {
    background: var(--purple);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(107, 78, 255, 0.3);
}

/* ========== HEADER / NAVBAR ========== */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    transition: var(--transition);
    padding: 10px 0;
}

.main-header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
    padding: 5px 0;
}

.logo-img {
    height: 75px;
    transition: var(--transition);
}

.main-header.scrolled .logo-img {
    height: 70px;
}
.navbar{
    padding: 0 !important;
}
.navbar-nav .nav-link {
    font-family: 'Fredoka', sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: var(--text-dark);
    padding: 10px 18px !important;
    transition: var(--transition);
    position: relative;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 18px;
    width: 0;
    height: 3px;
    background: var(--primary-yellow);
    border-radius: 2px;
    transition: var(--transition);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: calc(100% - 36px);
}

.navbar-nav .nav-link:hover {
    color: var(--text-dark);
}

.btn-apply-nav {
    background: var(--primary-yellow);
    color: var(--text-dark);
    padding: 10px 28px;
    border-radius: 50px;
    font-family: 'Fredoka', sans-serif;
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition);
    border: 2px solid var(--primary-yellow);
}

.btn-apply-nav:hover {
    background: var(--purple);
    border-color: var(--purple);
    color: #fff;
    transform: translateY(-2px);
}

.dropdown-menu {
    border: none;
    box-shadow: var(--shadow);
    border-radius: var(--radius-sm);
    padding: 10px;
}

.dropdown-item {
    font-family: 'Jost', sans-serif;
    padding: 8px 16px;
    border-radius: 8px;
    transition: var(--transition);
}

.dropdown-item:hover {
    background: rgba(255, 196, 0, 0.1);
    color: var(--primary-blue);
}

.navbar-toggler {
    border: 2px solid var(--primary-yellow);
    padding: 6px 10px;
    border-radius: 10px;
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* ========== HERO SECTION ========== */
.hero-section {
    position: relative;
    background: linear-gradient(135deg, #FFF9E6 0%, #E8F4FD 50%, #F5E6FF 100%);
    padding-top: 100px;
    padding-bottom: 80px;
    overflow: hidden;
}

.min-vh-hero {
    min-height: calc(100vh - 100px);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    color: var(--text-dark);
    border-radius: 50px;
    font-family: 'Fredoka', sans-serif;
    font-size: 14px;
    font-weight: 500;
    animation: fadeInDown 0.8s ease;
}

.hero-title {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-title span {
    color: var(--purple);
    position: relative;
    display: inline-block;
}

.hero-title span::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 12px;
    background: var(--primary-yellow);
    opacity: 0.4;
    border-radius: 6px;
    z-index: -1;
}

.hero-text {
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 30px;
    max-width: 480px;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.hero-image {
    position: relative;
    z-index: 2;
}

.hero-img-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-blob {
    position: absolute;
    width: 100%;
    height: 100%;
    animation: blobFloat 8s ease-in-out infinite;
}

.hero-illustration {
    position: relative;
    z-index: 2;
}

.hero-child-graphic {
    width: 350px;
    height: 350px;
    margin: 0 auto;
    animation: heroFloat 4s ease-in-out infinite;
}

.hero-child-graphic svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 10px 30px rgba(0,0,0,0.1));
}

.hero-child-img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 20px;
    display: block;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.hero-float-badge {
    position: absolute;
    background: #fff;
    padding: 12px 20px;
    border-radius: 16px;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Fredoka', sans-serif;
    font-weight: 500;
    font-size: 14px;
    z-index: 3;
    animation: badgeFloat 3s ease-in-out infinite;
}

.badge-1 {
    top: 20%;
    right: 0;
    animation-delay: 0s;
}

.badge-2 {
    bottom: 25%;
    left: 0;
    animation-delay: 1.5s;
}

.float-badge-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.badge-1 .float-badge-icon {
    background: rgba(255, 196, 0, 0.2);
    color: var(--primary-yellow);
}

.badge-2 .float-badge-icon {
    background: rgba(107, 78, 255, 0.2);
    color: var(--purple);
}

/* Hero Shapes */
.hero-shapes .shape {
    position: absolute;
    border-radius: 50%;
    z-index: 1;
}

.shape-1 {
    width: 80px;
    height: 80px;
    background: rgba(255, 196, 0, 0.2);
    top: 15%;
    left: 5%;
    animation: shapeFloat 6s ease-in-out infinite;
}

.shape-2 {
    width: 50px;
    height: 50px;
    background: rgba(44, 178, 247, 0.2);
    top: 30%;
    right: 8%;
    animation: shapeFloat 7s ease-in-out infinite reverse;
}

.shape-3 {
    width: 30px;
    height: 30px;
    background: rgba(255, 77, 166, 0.3);
    bottom: 20%;
    left: 10%;
    animation: shapeFloat 5s ease-in-out infinite;
}

.shape-4 {
    width: 60px;
    height: 60px;
    background: rgba(107, 78, 255, 0.15);
    top: 60%;
    left: 3%;
    animation: shapeFloat 8s ease-in-out infinite reverse;
}

.shape-5 {
    width: 40px;
    height: 40px;
    background: rgba(255, 196, 0, 0.25);
    bottom: 15%;
    right: 15%;
    animation: shapeFloat 6s ease-in-out infinite 1s;
}

.shape-6 {
    width: 20px;
    height: 20px;
    background: rgba(44, 178, 247, 0.3);
    top: 20%;
    left: 45%;
    animation: shapeFloat 4s ease-in-out infinite;
}

.shape-star {
    background: none !important;
    font-size: 20px;
    animation: starSpin 10s linear infinite !important;
}

.shape-star-1 {
    top: 12%;
    right: 20%;
    color: var(--primary-yellow);
}

.shape-star-2 {
    top: 50%;
    left: 8%;
    color: var(--pink);
    font-size: 14px;
}

.shape-star-3 {
    bottom: 25%;
    right: 5%;
    color: var(--purple);
    font-size: 16px;
}

.hero-wave {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    z-index: 3;
}

.hero-wave svg {
    display: block;
    width: 100%;
    height: 80px;
}

/* Hero Slider */
.hero-slider .slick-dots {
    bottom: 100px;
    z-index: 4;
}

.hero-slider .slick-dots li button:before {
    font-size: 14px;
    color: var(--primary-yellow);
}

.hero-slider .slick-dots li.slick-active button:before {
    color: var(--primary-blue);
}

/* ========== ABOUT SECTION ========== */
.about-section {
    padding-top: 50px;
}

.about-images {
    position: relative;
    padding: 20px;
}

.about-blob {
    position: absolute;
    top: -30px;
    left: -20px;
    width: 110%;
    height: 110%;
    z-index: 0;
    animation: blobFloat 8s ease-in-out infinite;
}

.about-img-main {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    position: relative;
    z-index: 1;
}

.about-illustration {
    width: 100%;
    max-height: 600px;
    object-fit: cover;
    display: block;
}

.about-experience-badge {
    position: absolute;
    bottom: -42px;
    right: -15px;
    background: var(--primary-blue);
    color: #fff;
    padding: 20px 30px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow);
    animation: badgeFloat 3s ease-in-out infinite;
    z-index: 2;
}

.exp-number {
    font-family: 'Fredoka', sans-serif;
    font-size: 42px;
    font-weight: 700;
    line-height: 1;
}

.exp-text {
    font-family: 'Fredoka', sans-serif;
    font-size: 14px;
    font-weight: 500;
}

.about-content {
    padding-left: 20px;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 25px;
}

.about-feature-box {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    padding: 20px;
    background: #fff;
    border-radius: var(--radius-sm);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.about-feature-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.feature-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.feature-info h5 {
    font-family: 'Fredoka', sans-serif;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
}

.feature-info p {
    font-size: 14px;
    color: var(--text-gray);
    margin: 0;
}

/* ========== AGE GROUP SECTION ========== */
.age-group-section {
    background: linear-gradient(180deg, var(--bg-white) 0%, #FFF9E6 100%);
}

.age-card {
    background: #fff;
    border-radius: 20px;
    padding: 30px 25px 35px;
    text-align: center;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.age-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

/* Top colored bar */
.age-card-bar {
    position: absolute;
    top: 0;
    left: 15%;
    width: 70%;
    height: 8px;
    border-radius: 0 0 8px 8px;
    transition: var(--transition);
}

.age-card-yellow .age-card-bar { background: var(--primary-yellow); }
.age-card-blue .age-card-bar { background: var(--primary-blue); }
.age-card-purple .age-card-bar { background: #00BFA5; }
.age-card-pink .age-card-bar { background: var(--pink); }

/* Circle badge */
.age-card-badge {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 20px auto 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    position: relative;
    transition: var(--transition);
}

.age-card:hover .age-card-badge {
    transform: scale(1.08);
}

.age-card-yellow .age-card-badge { background: var(--primary-yellow); }
.age-card-blue .age-card-badge { background: var(--primary-blue); }
.age-card-purple .age-card-badge { background: #00BFA5; }
.age-card-pink .age-card-badge { background: var(--pink); }

.badge-label {
    font-family: 'Fredoka', sans-serif;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    opacity: 0.9;
}

.badge-number {
    font-family: 'Fredoka', sans-serif;
    font-size: 42px;
    font-weight: 700;
    line-height: 1;
    margin-top: 2px;
}

.age-card-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.age-card-age {
    color: var(--text-gray);
    font-family: 'Fredoka', sans-serif;
    font-weight: 500;
    font-size: 16px;
    margin-bottom: 0;
}

/* ========== WHY CHOOSE US SECTION ========== */
.why-choose-section {
    background: linear-gradient(180deg, #FFF9E6 0%, var(--bg-white) 100%);
    padding: 50px 0;
}

.why-card {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}


.why-card-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.why-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.why-card-body {
    padding: 50px 20px 30px;
    text-align: center;
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: -60px;
    /* border-radius: 50% 50% 0 0 / 40px 40px 0 0; */
    z-index: 1;
}

.why-card-body.green { background: #8BC34A; }
.why-card-body.blue { background: var(--primary-blue); }
.why-card-body.purple { background: var(--purple); }
.why-card-body.orange { background: #FF6B35; }
.why-card-body.pink { background: var(--pink); }

.why-card-icon-badge {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #333;
    position: absolute;
    top: -30px;
    left: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    z-index: 2;
}


.why-card-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #fff;
}

.why-card-desc {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 0;
}

/* ========== TESTIMONIALS SECTION ========== */
.testimonials-section {
    background: #F5F7FB;
}

.testimonial-slider {
    margin-top: 30px;
}

.testimonial-card {
    background: var(--purple);
    border-radius: 20px 60px 20px 20px;
    padding: 35px 30px;
    position: relative;
    color: #fff;
    display: none;
}

.testimonial-card.active {
    display: block;
}

.testimonial-quote {
    position: absolute;
    top: 25px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--pink);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #fff;
}

.testimonial-name {
    font-family: 'Fredoka', sans-serif;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #fff;
}

.testimonial-stars {
    margin-bottom: 15px;
}

.testimonial-stars i {
    color: var(--primary-yellow);
    font-size: 14px;
}

.testimonial-text {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
}

.testimonial-dots {
    display: flex;
    gap: 8px;
    margin-top: 25px;
}

.testimonial-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: var(--transition);
}

.testimonial-dots .dot.active {
    background: var(--pink);
}

/* Testimonial images */
.testimonial-images {
    position: relative;
    height: 480px;
}

.testi-img {
    position: absolute;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border: 5px solid #fff;
    z-index: 2;
}

.testi-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Top-left: medium circle */
.testi-img-1 {
    width: 220px;
    height: 220px;
    top: 10px;
    left: 60px;
}

/* Bottom-left: smaller circle */
.testi-img-2 {
    width: 180px;
    height: 180px;
    bottom: 30px;
    left: 20px;
}

/* Right: large circle */
.testi-img-3 {
    width: 270px;
    height: 270px;
    top: 120px;
    right: 10px;
}

.testi-shape {
    position: absolute;
    z-index: 1;
}

/* Yellow half-circle — top right */
.testi-half-yellow {
    width: 90px;
    height: 45px;
    background: #FFC400;
    border-radius: 0 0 90px 90px;
    top: 30px;
    right: 30px;
}

/* Green half-circle — center */
.testi-half-green {
    width: 70px;
    height: 35px;
    background: #7FDBCA;
    border-radius: 70px 70px 0 0;
    top: 210px;
    left: 230px;
}

/* Blue blob — left */
.testi-half-blue {
    width: 50px;
    height: 50px;
    background: #2196F3;
    border-radius: 50% 50% 50% 0;
    bottom: 120px;
    left: 0;
}

/* Blue dot — center top */
.testi-dot-blue {
    width: 12px;
    height: 12px;
    background: #90CAF9;
    border-radius: 50%;
    top: 170px;
    left: 250px;
}

/* Pink line — top left diagonal */
.testi-line-pink {
    width: 40px;
    height: 4px;
    background: #FF4DA6;
    border-radius: 2px;
    transform: rotate(-45deg);
    top: 50px;
    left: 40px;
    z-index: 3;
}

/* Coral line — bottom center diagonal */
.testi-line-coral {
    width: 45px;
    height: 4px;
    background: #FF6B6B;
    border-radius: 2px;
    transform: rotate(45deg);
    bottom: 100px;
    left: 210px;
    z-index: 3;
}

/* Navy line — right diagonal */
.testi-line-navy {
    width: 50px;
    height: 4px;
    background: #1a1a2e;
    border-radius: 2px;
    transform: rotate(-55deg);
    top: 150px;
    right: 20px;
    z-index: 3;
}

/* ========== BREADCRUMB SECTION ========== */
.breadcrumb-section {
    position: relative;
    background: linear-gradient(135deg, #FFF9E6 0%, #E8F4FD 50%, #F5E6FF 100%);
    padding: 140px 0 80px;
    overflow: hidden;
}

.breadcrumb-shapes .shape {
    position: absolute;
    border-radius: 50%;
    z-index: 1;
}

.breadcrumb-content {
    position: relative;
    z-index: 2;
}

.breadcrumb-title {
    font-family: 'Fredoka', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.breadcrumb-title span {
    color: var(--primary-blue);
    position: relative;
    display: inline-block;
}

.breadcrumb-title span::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 10px;
    background: var(--primary-yellow);
    opacity: 0.4;
    border-radius: 5px;
    z-index: -1;
}

.breadcrumb-section .breadcrumb {
    background: none;
    padding: 0;
    margin: 0;
}

.breadcrumb-section .breadcrumb-item a {
    color: var(--primary-blue);
    font-family: 'Fredoka', sans-serif;
    font-weight: 500;
    font-size: 16px;
}

.breadcrumb-section .breadcrumb-item a:hover {
    color: var(--pink);
}

.breadcrumb-section .breadcrumb-item a i {
    margin-right: 4px;
}

.breadcrumb-section .breadcrumb-item.active {
    color: var(--text-gray);
    font-family: 'Fredoka', sans-serif;
    font-weight: 500;
    font-size: 16px;
}

.breadcrumb-section .breadcrumb-item + .breadcrumb-item::before {
    color: var(--pink);
    content: '\f054';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 10px;
}

.breadcrumb-wave {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    z-index: 3;
}

.breadcrumb-wave svg {
    display: block;
    width: 100%;
    height: 80px;
}

/* ========== GALLERY SECTION ========== */
.gallery-section {
    background: var(--bg-white);
}

.gallery-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.gallery-filter-btn {
    background: transparent;
    border: 2px solid #E5E7EB;
    padding: 10px 28px;
    border-radius: 50px;
    font-family: 'Fredoka', sans-serif;
    font-weight: 500;
    font-size: 15px;
    color: var(--text-gray);
    cursor: pointer;
    transition: var(--transition);
}

.gallery-filter-btn:hover {
    border-color: var(--primary-yellow);
    color: var(--text-dark);
    background: rgba(255, 196, 0, 0.1);
}

.gallery-filter-btn.active {
    background: var(--primary-yellow);
    border-color: var(--primary-yellow);
    color: var(--text-dark);
    box-shadow: 0 4px 15px rgba(255, 196, 0, 0.35);
}

.gallery-card {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.gallery-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(107, 78, 255, 0.2);
}

.gallery-img-wrapper {
    position: relative;
    overflow: hidden;
    height: 260px;
}

.gallery-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-card:hover .gallery-img-wrapper img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(107, 78, 255, 0.6), rgba(255, 77, 166, 0.4));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-card:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay-icon {
    width: 60px;
    height: 60px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--primary-blue);
    transform: scale(0.5);
    transition: var(--transition);
}

.gallery-card:hover .gallery-overlay-icon {
    transform: scale(1);
}

.gallery-item {
    transition: all 0.4s ease;
}

.gallery-item.hidden {
    display: none;
}

/* Gallery Video Cards */
.gallery-video-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--primary-yellow);
    color: var(--text-dark);
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    z-index: 2;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

.gallery-play-icon {
    background: var(--primary-yellow) !important;
    color: var(--text-dark) !important;
}

.gallery-play-icon i {
    margin-left: 3px;
}

.gallery-video-card:hover {
    box-shadow: 0 12px 35px rgba(255, 196, 0, 0.3);
}

@media (max-width: 991px) {
    .breadcrumb-title {
        font-size: 38px;
    }

    .breadcrumb-section {
        padding: 120px 0 60px;
    }
}

@media (max-width: 767px) {
    .breadcrumb-title {
        font-size: 32px;
    }

    .gallery-img-wrapper {
        height: 180px;
    }

    .gallery-filter-btn {
        padding: 8px 20px;
        font-size: 13px;
    }
}

@media (max-width: 575px) {
    .breadcrumb-title {
        font-size: 28px;
    }

    .breadcrumb-section {
        padding: 110px 0 50px;
    }

    .gallery-img-wrapper {
        height: 150px;
    }

    .gallery-overlay-icon {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
}

/* ========== FANCYBOX OVERRIDES ========== */
.fancybox__toolbar {
    --fancybox-color: #fff;
}

.fancybox__toolbar .f-button {
    color: #fff;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    width: 44px;
    height: 44px;
}

.fancybox__toolbar .f-button:hover {
    background: var(--primary-yellow);
    color: var(--text-dark);
}

.fancybox__nav .f-button {
    color: #fff;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
}

.fancybox__nav .f-button:hover {
    background: var(--primary-yellow);
    color: var(--text-dark);
}

/* ========== INSTAGRAM FEED SECTION ========== */
.instagram-section {
    background: linear-gradient(180deg, #FFF9E6 0%, #F5E6FF 50%, #FFF9E6 100%);
}

.instagram-card {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.instagram-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(107, 78, 255, 0.2);
}

.instagram-img-wrapper {
    position: relative;
    overflow: hidden;
    height: 260px;
}

.instagram-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.instagram-card:hover .instagram-img-wrapper img {
    transform: scale(1.1);
}

.instagram-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(107, 78, 255, 0.6), rgba(255, 77, 166, 0.4));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.instagram-card:hover .instagram-overlay {
    opacity: 1;
}

.instagram-overlay-icon {
    width: 60px;
    height: 60px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #E1306C;
    transform: scale(0.5);
    transition: var(--transition);
}

.instagram-card:hover .instagram-overlay-icon {
    transform: scale(1);
}

/* Instagram Video Cards */
.instagram-img-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.instagram-video-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--primary-yellow);
    color: var(--text-dark);
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    z-index: 2;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

.instagram-video-card:hover {
    box-shadow: 0 12px 35px rgba(255, 196, 0, 0.25);
}

@media (max-width: 767px) {
    .instagram-img-wrapper {
        height: 180px;
    }
}

@media (max-width: 575px) {
    .instagram-img-wrapper {
        height: 150px;
    }

    .instagram-overlay-icon {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
}

/* ========== ENQUIRY PAGE ========== */
.enquiry-page-section {
    padding: 120px 0 80px;
    min-height: 100vh;
}

.enquiry-page-wrapper {
    background: #fff;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.enquiry-subtitle {
    color: #666;
    font-size: 16px;
    max-width: 500px;
    margin: 0 auto;
}

/* ========== FORM SECTIONS ========== */
.form-section-header {
    color: #fff;
    font-family: 'Fredoka', sans-serif;
    font-size: 17px;
    font-weight: 600;
    padding: 3px 20px;
    border-radius: 10px 10px 0 0;
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: 0.3px;
}

.form-section-blue   { background: var(--primary-blue); }
.form-section-orange { background: #F59E0B; }
.form-section-green  { background: #10B981; }
.form-section-pink  { background: #FF4DA6;}

.form-section-body {
    border: 2px solid #E5E7EB;
    border-top: none;
    border-radius: 0 0 10px 10px;
    padding: 20px;
    margin-bottom: 4px;
}

.form-section-inline-field {
    border: 2px solid #E5E7EB;
    border-radius: var(--radius-sm);
    height: 58px;
    padding: 0 16px;
    display: flex;
    align-items: center;
    gap: 20px;
    background: #fff;
}

.inline-field-label {
    font-family: 'Jost', sans-serif;
    font-size: 14px;
    color: var(--text-gray);
    white-space: nowrap;
}

.inline-field-label i {
    margin-right: 6px;
    color: var(--primary-blue);
}

/* ========== PROGRAM CHECKBOXES ========== */
.enq-checkbox-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

@media (max-width: 576px) {
    .enq-checkbox-grid { grid-template-columns: 1fr; }
}

.enq-checkbox-item {
    display: flex;
    align-items: center;
    gap: 12px;
    border: 2px solid #E5E7EB;
    border-radius: 12px;
    padding: 14px 16px;
    cursor: pointer;
    background: #fff;
    transition: all 0.22s ease;
    margin: 0;
    position: relative;
}

.enq-checkbox-item:hover {
    border-color: #FCD34D;
    background: #FFFBEB;
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(245,158,11,0.1);
}

.enq-checkbox-item input[type="checkbox"] {
    display: none;
}

/* Custom checkbox box */
.enq-checkbox-box {
    width: 22px;
    height: 22px;
    border: 2px solid #D1D5DB;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.22s ease;
    background: #fff;
}

.enq-checkbox-box i {
    font-size: 11px;
    color: #fff;
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.2s ease;
}

/* Checked state */
.enq-checkbox-item input[type="checkbox"]:checked ~ .enq-checkbox-box {
    background: #F59E0B;
    border-color: #F59E0B;
    box-shadow: 0 3px 10px rgba(245,158,11,0.35);
}

.enq-checkbox-item input[type="checkbox"]:checked ~ .enq-checkbox-box i {
    opacity: 1;
    transform: scale(1);
}

.enq-checkbox-item:has(input[type="checkbox"]:checked) {
    border-color: #F59E0B;
    background: #FFFBEB;
    box-shadow: 0 4px 16px rgba(245,158,11,0.15);
}

/* Icon + label */
.enq-checkbox-content {
    display: flex;
    align-items: center;
    gap: 10px;
}

.enq-checkbox-content > i {
    font-size: 20px;
    width: 24px;
    text-align: center;
}

.enq-checkbox-label {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.enq-checkbox-label strong {
    font-family: 'Fredoka', sans-serif;
    font-size: 15px;
    color: #1F2937;
    font-weight: 600;
    line-height: 1;
}

.enq-checkbox-label small {
    font-family: 'Jost', sans-serif;
    font-size: 12px;
    color: #6B7280;
    font-weight: 500;
}
.enq-checkbox-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

@media (max-width: 576px) {
    .enq-checkbox-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ========== REGISTRATION SECTION ========== */
.registration-section {
    background: linear-gradient(135deg, #FFF9E6 0%, #F5E6FF 100%);
    position: relative;
}

.registration-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
}

.registration-image::before {
    content: '';
    position: absolute;
    top: 10px;
    right: 10px;
    bottom: 10px;
    left: 10px;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    background: linear-gradient(135deg, var(--primary-yellow), var(--pink), var(--purple));
    opacity: 0.2;
    z-index: 0;
    animation: blobMorph 8s ease-in-out infinite;
}

.registration-image::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 85%;
    height: 85%;
    border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
    border: 3px dashed var(--primary-yellow);
    z-index: 0;
    animation: blobMorph 8s ease-in-out infinite reverse;
}

@keyframes blobMorph {
    0% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
    25% { border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%; }
    50% { border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%; }
    75% { border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%; }
    100% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
}

.reg-illustration {
    width: 100%;
    max-width: 420px;
    max-height: 500px;
    display: block;
    border-radius: 25px;
    box-shadow: 0 15px 50px rgba(107, 78, 255, 0.15), 0 5px 15px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 1;
    object-fit: cover;
    border: 4px solid #fff;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.reg-illustration:hover {
    transform: scale(1.02) rotate(-1deg);
    box-shadow: 0 20px 60px rgba(107, 78, 255, 0.2), 0 8px 20px rgba(0, 0, 0, 0.1);
}

.reg-info-badge {
    position: absolute;
    bottom: 10%;
    left: 5%;
    background: var(--primary-blue);
    color: #fff;
    padding: 16px 24px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: var(--shadow);
    animation: badgeFloat 3s ease-in-out infinite;
}

.reg-info-badge i {
    font-size: 24px;
}

.reg-info-badge span {
    font-size: 12px;
    opacity: 0.9;
    display: block;
}

.reg-info-badge strong {
    font-family: 'Fredoka', sans-serif;
    font-size: 18px;
}

.registration-form-wrapper {
    background: #fff;
    padding: 45px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.registration-form .form-control {
    border: 2px solid #E5E7EB;
    border-radius: var(--radius-sm);
    padding: 14px 16px;
    font-family: 'Jost', sans-serif;
    font-size: 15px;
    transition: var(--transition);
    height: auto;
}

.registration-form .form-floating > .form-control {
    height: 58px;
    padding-top: 24px;
}

.registration-form .form-floating > label {
    font-family: 'Jost', sans-serif;
    color: var(--text-gray);
    font-size: 14px;
}

.registration-form .form-control:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 4px rgba(44, 178, 247, 0.1);
}

/* Custom Dropdown */
.custom-dropdown {
    position: relative;
}

.custom-dropdown-toggle {
    border: 2px solid #E5E7EB;
    border-radius: var(--radius-sm);
    height: 58px;
    padding: 0 16px;
    font-family: 'Jost', sans-serif;
    font-size: 15px;
    cursor: pointer;
    transition: var(--transition);
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.custom-dropdown-toggle:hover {
    border-color: #D1D5DB;
}

.custom-dropdown.open .custom-dropdown-toggle {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 4px rgba(44, 178, 247, 0.1);
}

.custom-dropdown-label {
    color: var(--text-gray);
    transition: var(--transition);
}

.custom-dropdown-label i {
    margin-right: 8px;
    color: var(--primary-blue);
}

.custom-dropdown.selected .custom-dropdown-label {
    color: var(--text-dark);
    font-weight: 500;
}

.custom-dropdown-arrow {
    font-size: 12px;
    color: var(--text-gray);
    transition: var(--transition);
}

.custom-dropdown.open .custom-dropdown-arrow {
    transform: rotate(180deg);
    color: var(--primary-blue);
}

.custom-dropdown-menu {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    background: #fff;
    border: 2px solid #E5E7EB;
    border-radius: var(--radius-sm);
    list-style: none;
    padding: 6px;
    margin: 0;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.25s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.custom-dropdown.open .custom-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.custom-dropdown-menu li {
    padding: 12px 14px;
    font-family: 'Jost', sans-serif;
    font-size: 15px;
    color: var(--text-dark);
    cursor: pointer;
    border-radius: 8px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 10px;
}

.custom-dropdown-menu li:hover {
    background: #F3F4F6;
}

.custom-dropdown-menu li.active {
    background: var(--primary-blue);
    color: #fff;
}

.custom-dropdown-menu li.active i {
    color: #fff !important;
}

.registration-form .form-check-input:checked {
    background-color: var(--primary-blue);
    border-color: var(--primary-blue);
}

.registration-form .form-check-label {
    font-size: 14px;
    color: var(--text-gray);
}

/* ========== 5Cs SECTION ========== */
.fivecs-section {
    background: var(--bg-white);
}

.fivecs-item {
    background: var(--primary-blue);
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    color: #fff;
    box-shadow: 0 10px 30px rgba(0, 82, 156, 0.2);
    transition: var(--transition);
    height: 100%;
}

.fivecs-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0, 82, 156, 0.35);
}

.fivecs-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #fff;
    margin: 0 auto 18px;
}

.fivecs-item h4 {
    font-family: 'Fredoka', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
}

.fivecs-item p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 0;
    line-height: 1.5;
}

.fivecs-blue {
    background: #2196F3;
    box-shadow: 0 10px 30px rgba(33, 150, 243, 0.3);
}
.fivecs-blue:hover {
    box-shadow: 0 16px 40px rgba(33, 150, 243, 0.45);
}

.fivecs-purple {
    background: #6B4EFF;
    box-shadow: 0 10px 30px rgba(107, 78, 255, 0.3);
}
.fivecs-purple:hover {
    box-shadow: 0 16px 40px rgba(107, 78, 255, 0.45);
}

.fivecs-pink {
    background: #FF4DA6;
    box-shadow: 0 10px 30px rgba(255, 77, 166, 0.3);
}
.fivecs-pink:hover {
    box-shadow: 0 16px 40px rgba(255, 77, 166, 0.45);
}

.fivecs-orange {
    background: #FF9800;
    box-shadow: 0 10px 30px rgba(255, 152, 0, 0.3);
}
.fivecs-orange:hover {
    box-shadow: 0 16px 40px rgba(255, 152, 0, 0.45);
}

.fivecs-green {
    background: #4CAF50;
    box-shadow: 0 10px 30px rgba(76, 175, 80, 0.3);
}
.fivecs-green:hover {
    box-shadow: 0 16px 40px rgba(76, 175, 80, 0.45);
}

/* ========== FOOTER ========== */
.main-footer {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: rgba(255, 255, 255, 0.8);
    position: relative;
    padding-top: 100px;
}

.main-footer .row.g-4 {
    --bs-gutter-x: 3rem;
}

.footer-wave {
    position: absolute;
    top: -2px;
    left: 0;
    width: 100%;
}

.footer-wave svg {
    display: block;
    width: 100%;
    height: 80px;
}

.footer-logo {
    height: 55px;
    margin-bottom: 20px;
}

.footer-widget {
    padding-right: 15px;
}

.footer-widget p {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-title {
    font-family: 'Fredoka', sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--primary-yellow);
    border-radius: 2px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary-yellow);
    color: var(--text-dark);
    transform: translateY(-3px);
}

.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact-list li {
    display: flex;
    gap: 14px;
    margin-bottom: 18px;
    align-items: flex-start;
}

.footer-contact-list li i {
    color: var(--primary-yellow);
    margin-top: 4px;
    min-width: 18px;
}

.footer-contact-list li span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
}

.footer-contact-list li a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    text-decoration: none;
    transition: var(--transition);
}

.footer-contact-list li a:hover {
    color: var(--primary-yellow);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links li a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.footer-links li a i {
    font-size: 10px;
    color: var(--primary-yellow);
    transition: var(--transition);
}

.footer-links li a:hover {
    color: var(--primary-yellow);
    padding-left: 5px;
}

.footer-links li a:hover i {
    color: #fff;
}

/* Newsletter */
.footer-newsletter {
    margin-top: 50px;
}

.newsletter-box {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    padding: 35px 40px;
}

.newsletter-title {
    font-family: 'Fredoka', sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 6px;
}

.newsletter-title i {
    color: var(--primary-yellow);
    margin-right: 10px;
}

.newsletter-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0;
}

.newsletter-form {
    display: flex;
    gap: 12px;
}

.newsletter-input {
    flex: 1;
    padding: 14px 20px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 15px;
    outline: none;
    transition: var(--transition);
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-input:focus {
    border-color: var(--primary-yellow);
    background: rgba(255, 255, 255, 0.15);
}

.newsletter-btn {
    padding: 14px 30px;
    border-radius: 50px;
    border: none;
    background: var(--primary-yellow);
    color: var(--text-dark);
    font-family: 'Fredoka', sans-serif;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.newsletter-btn:hover {
    background: #ffcf33;
    transform: translateY(-2px);
}

.newsletter-btn i {
    margin-left: 6px;
}

@media (max-width: 576px) {
    .newsletter-box {
        padding: 25px 20px;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-btn {
        width: 100%;
    }
}

/* Small inline newsletter */
.newsletter-form-sm {
    display: flex;
    gap: 8px;
    margin-top: 10px;
}

.newsletter-input-sm {
    flex: 1;
    padding: 10px 15px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 14px;
    outline: none;
    transition: var(--transition);
}

.newsletter-input-sm::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-input-sm:focus {
    border-color: var(--primary-yellow);
    background: rgba(255, 255, 255, 0.15);
}

.newsletter-btn-sm {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 50%;
    border: none;
    background: var(--primary-yellow);
    color: var(--text-dark);
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.newsletter-btn-sm:hover {
    background: #ffcf33;
    transform: translateY(-2px);
}

/* Footer Map */
.footer-map-wrapper {
    margin-top: 20px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-map {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    border: 3px solid rgba(255, 255, 255, 0.1);
}

.footer-map iframe {
    display: block;
    width: 100%;
    height: 300px;
    filter: brightness(0.95) contrast(1.05);
}

@media (max-width: 575px) {
    .footer-map iframe {
        height: 220px;
    }
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    margin-top: 30px;
}

.footer-bottom p {
    margin: 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.footer-bottom a:hover {
    color: var(--primary-yellow);
}

/* ========== BACK TO TOP ========== */
/* Side Call Button */
.side-call-btn {
    position: fixed;
    left: 0;
    top: 55%;
    transform: translateY(-50%);
    background: var(--purple);
    color: #fff;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 10px 8px;
    border-radius: 0 10px 10px 0;
    font-family: 'Fredoka', sans-serif;
    font-weight: 600;
    z-index: 999;
    box-shadow: 4px 0 15px rgba(107, 78, 255, 0.4);
    transition: var(--transition);
    overflow: hidden;
}

.side-call-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--primary-blue);
    transition: var(--transition);
    z-index: -1;
    border-radius: 0;
}

.side-call-btn i {
    font-size: 18px;
}

.side-call-btn span {
    writing-mode: vertical-lr;
    text-orientation: mixed;
    letter-spacing: 1.5px;
    font-size: 12px;
}

.side-call-btn:hover {
    color: #fff;
    transform: translateY(-50%) translateX(3px);
    box-shadow: 4px 0 20px rgba(107, 78, 255, 0.3);
}

.side-call-btn:hover::before {
    left: 0;
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-yellow);
    color: var(--text-dark);
    border: none;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: 0 5px 20px rgba(255, 196, 0, 0.4);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary-blue);
    color: #fff;
    transform: translateY(-5px);
}

/* ========== ANIMATIONS ========== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes blobFloat {
    0%, 100% {
        transform: scale(1) rotate(0deg);
    }
    33% {
        transform: scale(1.05) rotate(5deg);
    }
    66% {
        transform: scale(0.95) rotate(-5deg);
    }
}

@keyframes shapeFloat {
    0%, 100% {
        transform: translateY(0) translateX(0);
    }
    25% {
        transform: translateY(-15px) translateX(10px);
    }
    50% {
        transform: translateY(-5px) translateX(-10px);
    }
    75% {
        transform: translateY(-20px) translateX(5px);
    }
}

@keyframes badgeFloat {
    0%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    50% {
        transform: translateY(-10px) translateX(-50%);
    }
}

.badge-1 {
    animation-name: badgeFloat1;
}

@keyframes badgeFloat1 {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.badge-2 {
    animation-name: badgeFloat2;
}

@keyframes badgeFloat2 {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-12px);
    }
}

@keyframes starSpin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Scroll Reveal */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1199px) {
    .hero-title {
        font-size: 46px;
    }

    .section-title {
        font-size: 36px;
    }
}

@media (max-width: 991px) {
    .hero-title {
        font-size: 38px;
    }

    .section-title {
        font-size: 32px;
    }

    .section-padding {
        padding: 70px 0;
    }

    .hero-child-graphic {
        width: 280px;
        height: 280px;
    }

    .navbar-collapse {
        background: #fff;
        padding: 20px;
        border-radius: var(--radius);
        margin-top: 10px;
        box-shadow: var(--shadow);
    }

    .navbar-nav .nav-link {
        padding: 8px 12px !important;
    }

    .btn-apply-nav {
        margin-top: 10px;
        display: inline-block;
    }

    .about-section {
        padding: 15px 0 0;
    }

    .about-content {
        padding-bottom: 0;
    }

    .about-section .row {
        flex-direction: column-reverse;
    }

    .about-illustration {
        height: 400px;
    }

    .about-content {
        padding-left: 0;
        padding-bottom: 20px;
    }

    .about-experience-badge {
        right: 10px;
        bottom: -10px;
    }

    .registration-form-wrapper {
        padding: 30px;
    }

    .hero-float-badge {
        display: none;
    }

    .testimonial-dots {
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .enquiry-page-wrapper {
        padding: 20px 10px;
    }

    .fivecs-item {
        padding: 25px 9px;
    }

    .why-card-body {
        padding: 45px 10px 20px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-text {
        font-size: 16px;
    }

    .section-title {
        font-size: 28px;
    }

    .section-padding {
        padding: 60px 0;
    }

    .hero-section {
        padding-top: 80px;
    }

    .hero-image {
        margin-top: 40px;
    }

    .min-vh-hero {
        min-height: auto;
        padding: 40px 0 60px;
    }

    .hero-child-graphic {
        width: 220px;
        height: 220px;
    }

    .hero-buttons .btn {
        padding: 12px 24px;
        font-size: 14px;
    }

    .registration-form-wrapper {
        padding: 25px;
    }

    .about-experience-badge {
        position: relative;
        right: -175px;
        bottom: -60px;
        display: inline-block;
        /* margin-top: 15px; */
    }

    .footer-bottom {
        text-align: center;
    }

    .footer-bottom .text-md-end {
        text-align: center !important;
        margin-top: 10px;
    }
}

@media (max-width: 575px) {
    .hero-title {
        font-size: 28px;
    }

    .section-title {
        font-size: 24px;
    }

    .hero-buttons {
        flex-direction: row;
    }

    .hero-buttons .btn {
        text-align: center;
    }

    .age-card {
        padding: 25px 15px 30px;
    }

    .age-card-badge {
        width: 100px;
        height: 100px;
    }

    .badge-number {
        font-size: 34px;
    }

    .registration-form-wrapper {
        padding: 20px;
    }

    .registration-section > .container > .row {
        flex-direction: column-reverse;
    }

    .registration-image {
        padding: 15px;
        flex-direction: column;
        align-items: center;
    }

    .registration-image::before,
    .registration-image::after {
        display: none;
    }

    .reg-illustration {
        max-width: 100%;
        border-radius: 15px;
    }

    .reg-info-badge {
        position: static;
        display: inline-flex;
        margin-top: 15px;
        animation: none;
    }
}
