/* ==============================
   WOW Summer Camp – Custom CSS
   Colors: #1FA15D #1EBABE #A8E6CF #B2EBF2
   Summer Green / Teal Theme
   ============================== */

:root {
    --green: #711fa1;
    --teal: #b11ebe;
    --light-green: #FEF907;
    --light-teal: #e0b2f2;
    --pale-teal: white;
    --pale-green: #e1e5a0;
    --white: #FFFFFF;
    --dark-text: #333333;
    --light-bg: #F5F5F5;
    --heading-font: 'Poppins', sans-serif;
    --body-font: 'Inter', sans-serif;

    /* Legacy aliases for compatibility */
    --purple: #98a11f;
    --purple-dark: #911ebe;
    --gold: #e6dba8;
    --lavender: #F5F5F5;
}

/* ---- Base ---- */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--body-font);
    background: var(--light-bg);
    color: var(--dark-text);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--heading-font);
}

img {
    max-width: 100%;
}

/* ---- Floating Particles ---- */
#particles {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    border-radius: 50%;
    opacity: 0;
    animation: floatUp linear infinite;
}

@keyframes floatUp {
    0% {
        transform: translateY(0) scale(1);
        opacity: 0;
    }

    10% {
        opacity: .5;
    }

    90% {
        opacity: .5;
    }

    100% {
        transform: translateY(-110vh) scale(.3);
        opacity: 0;
    }
}

/* ---- Navbar ---- */
.wow-navbar {
    background: linear-gradient(135deg, var(--green) 0%, var(--teal) 100%);
    padding: .6rem 0;
    transition: all .35s ease;
    box-shadow: 0 2px 20px rgba(31, 161, 93, .25);
}

.wow-navbar.scrolled {
    padding: .35rem 0;
    background: rgba(163, 30, 190, 0.97);
    backdrop-filter: blur(12px);
}

.brand-text {
    font-family: var(--heading-font);
    font-weight: 700;
    font-size: 1.15rem;
    color: #fff;
}

.nav-link {
    font-family: var(--body-font);
    font-weight: 500;
    color: rgba(255, 255, 255, .9) !important;
    transition: color .2s;
    font-size: .92rem;
    padding: .5rem .8rem !important;
}

.nav-link:hover,
.nav-link.active {
    color: var(--light-green) !important;
}

/* Old seat count */
.old-count {
    text-decoration: line-through;
    margin: 0 4px;
        font-size: 1.15rem;

}
/* New seat count highlight */
.new-count {
    font-weight: 800;
    color: #f9f8fa;
    /* red highlight */
}

/* ======================================
   DEFAULT (Desktop)
====================================== */
/* ==============================
   Register Button Hover Effect
============================== */

/* Force style for Register button */
.navbar .btn-register-nav {
    background: linear-gradient(135deg, var(--green), var(--teal)) !important;
    color: #fff !important;
    padding: 8px 22px;
    border-radius: 40px;
    transition: all 0.3s ease;
    font-weight: 600;
}

/* Hover */
.navbar .btn-register-nav:hover,
.navbar .btn-register-nav:focus {
    background: linear-gradient(135deg, var(--light-green), var(--light-teal)) !important;
    color: var(--dark-text) !important;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 20px rgba(31, 161, 93, 0.35);
}

/* ======================================
   Medium Screens (≤ 1200px)
====================================== */
@media (max-width: 1200px) {
    .btn-register-nav {
        padding: 6px 18px;
        font-size: 0.9rem;
    }
}

/* =====================================
   Fix Register Button in Mobile Menu
===================================== */

@media (max-width: 991px) {

    .navbar-nav {
        align-items: flex-start !important;
    }

    .btn-register-nav {
        display: inline-block !important;
        width: auto !important;
        /* Prevent full width */
        padding: 6px 18px !important;
        /* Smaller padding */
        font-size: 0.9rem !important;
        border-radius: 30px !important;
        margin-top: 8px;
    }

}

.brand-logo {
    object-fit: contain;
    transition: 0.3s ease;
}

.navbar-brand:hover .brand-logo {
    transform: scale(1.08);
}

.brand-text {
    font-size: 1.2rem;
    letter-spacing: 1px;
}

@media (max-width: 576px) {
    .brand-logo {
        width: 40px;
        height: 40px;
    }

    .brand-text {
        font-size: 1rem;
    }
}

/* ---- Layout ---- */
.layout-row {
    min-height: 100vh;
    padding-top: 76px;
}

/* ---- Form Sidebar ---- */
.form-sidebar {
    padding: 1.2rem;
    position: relative;
    z-index: 2;
}

@media(min-width:992px) {
    .form-sidebar {
        position: sticky;
        top: 90px;
        height: calc(100vh - 100px);
        overflow-y: auto;
        padding: 1.5rem;
    }

    .form-sidebar::-webkit-scrollbar {
        width: 5px;
    }

    .form-sidebar::-webkit-scrollbar-thumb {
        background: rgba(31, 161, 93, .25);
        border-radius: 10px;
    }
}

.glass-form-card {
    background: rgba(255, 255, 255, .72);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, .7);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    box-shadow: 0 8px 32px rgba(31, 161, 93, .10), 0 1.5px 4px rgba(0, 0, 0, .06);
}

.form-header-section {
    margin-bottom: 1.5rem;
}

.badge-limited {
    display: inline-block;
    background: linear-gradient(135deg, #F9ED2F, #A423B8);
    color: #fff;
    font-family: var(--heading-font);
    font-weight: 700;
    font-size: .75rem;
    padding: .35rem .9rem;
    border-radius: 50px;
    margin-bottom: .8rem;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.form-main-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--green);
}

.form-divider {
    display: flex;
    align-items: center;
    gap: .7rem;
    color: var(--green);
    font-weight: 600;
    font-size: .85rem;
    margin: 1.2rem 0 .8rem;
}

.form-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, var(--green), transparent);
}

.custom-input {
    border-radius: 10px !important;
    border: 1.5px solid #ddd !important;
    padding: .6rem .9rem !important;
    font-size: .88rem !important;
    transition: all .25s;
    background: var(--pale-teal) !important;
    color: var(--dark-text) !important;
}

.custom-input:focus {
    border-color: var(--green) !important;
    box-shadow: 0 0 0 3px rgba(31, 161, 93, .18) !important;
    background: #fff !important;
}

.form-label {
    font-size: .82rem;
    font-weight: 500;
    color: var(--dark-text);
}

/* ---- Buttons ---- */
.btn-gold-cta {
    background: linear-gradient(135deg, var(--green), var(--teal));
    color: #fff;
    border: 2px solid var(--green);
    border-radius: 50px;
    font-family: var(--heading-font);
    font-weight: 700;
    font-size: 1rem;
    padding: .75rem 1.5rem;
    transition: all .3s;
    animation: pulseGreen 2s infinite;
}

.btn-gold-cta:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(31, 161, 93, .35);
    color: #fff;
    background: linear-gradient(135deg, var(--light-green), var(--light-teal));
    color: var(--dark-text);
}

@keyframes pulseGreen {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(31, 161, 93, .45);
    }

    50% {
        box-shadow: 0 0 0 10px rgba(31, 161, 93, 0);
    }
}

.btn-purple-cta {
    background: linear-gradient(135deg, var(--green), var(--teal));
    color: #fff;
    border: none;
    border-radius: 50px;
    font-family: var(--heading-font);
    font-weight: 600;
    padding: .7rem 2rem;
    transition: all .3s;
}

.btn-purple-cta:hover {
    background: linear-gradient(135deg, var(--light-green), var(--light-teal));
    color: var(--dark-text);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(30, 186, 190, .3);
}

/* =========================================
   FIX MOBILE + EMAIL BREAK ISSUE
   (991px – 1210px ONLY)
========================================= */

@media (min-width: 991px) and (max-width: 1542px) {

    /* Stack mobile + email properly */
    .contact-row .col-sm-6 {
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }

    /* Add proper spacing */
    .contact-row .col-sm-6+.col-sm-6 {
        margin-top: 0.75rem;
    }

}

/* ---- Hero ---- */
.hero-section {
    position: relative;
    min-height: 90vh;
    background: linear-gradient(135deg, var(--green) 0%, var(--teal) 50%, #a517b8 100%);
    color: #fff;
    padding: 5rem 2rem 7rem;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: url('images/wow-main2.jpeg') center/cover no-repeat;
    opacity: .08;
}

.hero-badge {
    display: inline-block;
    background: rgba(168, 230, 207, .25);
    border: 1px solid rgba(168, 230, 207, .5);
    color: var(--light-green);
    font-size: .8rem;
    font-weight: 600;
    padding: .4rem 1rem;
    border-radius: 50px;
}

.hero-title {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -1px;
    margin-bottom: .5rem;
    color: #fff;
}

.text-gold-gradient {
    background: linear-gradient(135deg, var(--light-green), #e0f7fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, .85);
    margin-bottom: .8rem;
}

.hero-tagline {
    font-size: 1.25rem;
    font-style: italic;
    color: var(--light-green);
    margin-bottom: .6rem;
}

.hero-desc {
    font-size: .95rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, .85);
    max-width: 520px;
    margin-bottom: 1.5rem;
}

.hero-img-wrapper {
    position: relative;
    display: inline-block;
}

.hero-img {
    border: 4px solid rgba(255, 255, 255, .2);
    transition: transform .5s;
}

.hero-img:hover {
    transform: scale(1.03);
}

.floating-chip {
    position: absolute;
    background: rgba(255, 255, 255, .2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, .3);
    color: #fff;
    font-family: var(--heading-font);
    font-weight: 600;
    font-size: .78rem;
    padding: .4rem .9rem;
    border-radius: 50px;
    white-space: nowrap;
    animation: chipBounce 3s ease-in-out infinite;
}

.chip-1 {
    bottom: 15%;
    left: -10%;
    animation-delay: 0s;
}

.chip-2 {
    top: 10%;
    right: -5%;
    animation-delay: 1.5s;
}

@keyframes chipBounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    line-height: 0;
}

.hero-wave svg {
    width: 100%;
    height: 80px;
}

@media(max-width:991.98px) {
    .hero-section {
        min-height: auto;
        padding: 4rem 1rem 6rem;
    }

    .hero-title {
        font-size: 2.2rem;
    }
}

/* ---- Section Headings ---- */
.section-title {
    font-weight: 800;
    font-size: 2rem;
    color: var(--green);
}

.title-underline {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--green), var(--teal));
    border-radius: 4px;
    margin-top: .5rem;
}

.section-wave {
    line-height: 0;
}

.section-wave svg {
    width: 100%;
    height: 50px;
}

/* ---- Benefit Cards (Glassmorphism) ---- */
.glass-benefit-card {
    background: rgba(255, 255, 255, .6);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, .65);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(31, 161, 93, .08);
    transition: all .3s;
    height: 100%;
}

.glass-benefit-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(30, 186, 190, .18);
    border-color: var(--teal);
}

.glass-benefit-card h6 {
    font-weight: 700;
    color: var(--green);
    margin-top: .5rem;
    font-size: .95rem;
}

.benefit-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--green), var(--teal));
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: #fff;
    box-shadow: 0 4px 12px rgba(31, 161, 93, .3);
}

/* ---- Course Cards ---- */
.course-card {
    display: flex;
    align-items: center;
    gap: .8rem;
    background: rgba(255, 255, 255, .6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, .6);
    border-left: 4px solid var(--green);
    border-radius: 12px;
    padding: 1rem 1.2rem;
    transition: all .25s;
    font-weight: 500;
    color: var(--dark-text);
    font-size: .92rem;
}

.course-card:hover {
    transform: translateX(6px);
    box-shadow: 0 4px 18px rgba(30, 186, 190, .15);
    border-left-color: var(--teal);
}

.course-icon {
    font-size: 1.3rem;
    color: var(--teal);
    min-width: 28px;
    text-align: center;
}

.highlight-card {
    border-left-color: var(--teal);
    background: rgba(168, 230, 207, .12);
}

/* ---- Testimonials ---- */
.testimonial-slide {
    max-width: 650px;
    margin: 0 auto;
    padding: 2rem 1.5rem 2.5rem;
}

.stars-row {
    color: var(--green);
    font-size: 1.2rem;
    letter-spacing: 3px;
}

.testimonial-slide blockquote {
    font-style: italic;
    color: #444;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    background: var(--light-teal);
    padding: 1.2rem 1.5rem;
    border-radius: 14px;
    border-left: 4px solid var(--green);
}

.testimonial-slide cite {
    font-style: normal;
    font-weight: 600;
    color: var(--teal);
    font-size: .88rem;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: var(--green);
    border-radius: 50%;
    padding: 1rem;
}

.custom-indicators {
    bottom: 0;
}

.custom-indicators button {
    width: 10px !important;
    height: 10px !important;
    border-radius: 50% !important;
    background-color: var(--green) !important;
    opacity: .3;
}

.custom-indicators .active {
    opacity: 1 !important;
    background-color: var(--teal) !important;
}


.carousel-indicators button {
    width: 10px !important;
    height: 10px !important;
    border-radius: 50% !important;
    background-color: var(--green) !important;
    opacity: .3;
}

.carousel-indicators .active {
    opacity: 1 !important;
    background-color: var(--teal) !important;
}

/* =====================================
   Video Thumbnail Carousel
===================================== */

/* =====================================
   Video Thumbnail Fixed Size
===================================== */

.video-thumb-wrapper {
    position: relative;
    width: 100%;
    max-width: 420px;
    /* Smaller width */
    aspect-ratio: 16/9;
    /* Perfect video ratio */
    margin: 0 auto 1.5rem;
    border-radius: 14px;
    overflow: hidden;
    cursor: pointer;
    background: #000;
}

.video-thumb-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Cover like real thumbnail */
    display: block;
}


.video-thumb-wrapper:hover .video-thumb-img {
    transform: scale(1.05);
}

/* =====================================
   MX Player Style Play Button
===================================== */
/* =====================================
   Clean White Circle Play Button
===================================== */

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    width: 75px;
    height: 75px;
    border-radius: 50%;

    background: var(--green);
    /* green circle */

    display: flex;
    align-items: center;
    justify-content: center;

    box-shadow: 0 10px 30px rgba(31, 161, 93, 0.35);
    transition: transform 0.3s ease;
}

/* Remove fontawesome icon styling */
.video-play-btn i {
    font-size: 28px;
    color: var(--teal);
    margin-left: 4px;
    /* center align triangle visually */
}

/* Smooth zoom effect */
.video-thumb-wrapper:hover .video-play-btn {
    transform: translate(-50%, -50%) scale(1.08);
}

.video-play-btn::before {
    content: "";
    width: 0;
    height: 0;
    border-left: 22px solid #fff;
    border-top: 14px solid transparent;
    border-bottom: 14px solid transparent;
    margin-left: 6px;
}

@media (max-width: 768px) {
    .video-thumb-wrapper {
        max-width: 100%;
    }

    .video-play-btn {
        width: 50px;
        height: 50px;
        font-size: 16px;
    }
}

/* ---- Footer ---- */
.wow-footer {
    position: relative;
}

.footer-wave-top {
    line-height: 0;
    margin-top: 3rem;
    
}

.footer-wave-top svg {
    width: 100%;
    height: 80px;
}

.footer-body {
    background: linear-gradient(180deg, var(--teal), var(--green));
    padding: 3rem 0 1.5rem;
}

.social-icons {
    display: flex;
    gap: .6rem;
    justify-content: center;
}

@media(min-width:768px) {
    .social-icons {
        justify-content: flex-start;
    }
}

.social-icons a {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, .15);
    color: #fff;
    font-size: 1rem;
    transition: all .3s;
}

.social-icons a:hover {
    background: var(--light-green);
    color: var(--dark-text);
    transform: translateY(-3px);
}

.text-gold {
    color: var(--teal) !important;
}

.footer-contact-item {
    color: rgba(255, 255, 255, .8);
    font-size: .88rem;
    margin-bottom: .4rem;
}

.footer-contact-item i {
    margin-right: .4rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: .35rem;
}

.footer-links a {
    color: rgba(255, 255, 255, .8);
    text-decoration: none;
    font-size: .88rem;
    transition: color .2s;
}

.footer-links a:hover {
    color: var(--light-green);
    text-decoration: underline;
}

/* ---- Modal ---- */
.glass-modal {
    background: rgba(255, 255, 255, .85) !important;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, .6);
    border-radius: 20px !important;
    overflow: hidden;
}

.success-checkmark i {
    font-size: 4rem;
    color: var(--green);
    animation: popIn .5s cubic-bezier(.175, .885, .32, 1.275);
}

@keyframes popIn {
    0% {
        transform: scale(0);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* ---- Utility ---- */
.mt-4 {
    margin-top: 1.5rem !important;
}

.z-2 {
    z-index: 2;
}

/* =====================================
   Scroll To Top - Left Side
===================================== */

.scroll-top-btn-left {
    position: fixed;
    bottom: 25px;
    left: 25px;
    /* LEFT SIDE */

    width: 55px;
    height: 55px;
    border-radius: 50%;
    border: none;

    background: linear-gradient(135deg, var(--green), var(--teal));
    color: #fff;

    font-size: 20px;
    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;

    z-index: 9999;

    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

/* Show button */
.scroll-top-btn-left.show {
    opacity: 1;
    visibility: visible;
}

/* Hover effect */
.scroll-top-btn-left:hover {
    background: linear-gradient(135deg, var(--light-green), var(--light-teal));
    color: var(--dark-text);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(31, 161, 93, 0.35);
}

/* ---- Bootstrap "text-warning" override for navbar WOW Academy text ---- */
.wow-navbar .text-warning {
    color: var(--light-green) !important;
}

/* ---- Form select dropdown arrow teal ---- */
.form-select.custom-input {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%231EBABE' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right .75rem center;
    background-size: 16px 12px;
}

/* ---- Checkbox accent color ---- */
.form-check-input:checked {
    background-color: var(--green);
    border-color: var(--green);
}

.form-check-input:focus {
    box-shadow: 0 0 0 .25rem rgba(31, 161, 93, .25);
    border-color: var(--green);
}


/* ===== PARENT TESTIMONIAL SECTION ===== */

.parent-testimonial-card {
    max-width: 700px;
    margin: auto;
    padding: 30px 25px;
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.testimonial-text {
    font-size: 1.1rem;
    color: #333;
    line-height: 1.7;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .parent-testimonial-card {
        padding: 20px 15px;
    }

    .testimonial-text {
        font-size: 1rem;
    }
}