/* ==================== Hero Video Section ==================== */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
}

.video-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--white);
    padding: 20px;
}

.video-overlay h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.video-overlay p {
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--white);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    margin-bottom: 0;
}

/* ==================== Facilities Section ==================== */
.facilities-section {
    padding: 80px 0;
    background-color: var(--white);
}

.facilities-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-top: 40px;
}

.facilities-image img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
}

.facilities-text h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.facilities-text p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.facilities-list {
    list-style: none;
}

.facilities-list li {
    padding: 12px 0 12px 30px;
    color: var(--text-light);
    position: relative;
    border-bottom: 1px solid var(--gray-light);
}

.facilities-list li:last-child {
    border-bottom: none;
}

.facilities-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1.2rem;
}

/* ==================== Why Choose Section ==================== */
.why-choose-section {
    padding: 80px 0;
    background-color: var(--off-white);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.benefit-box {
    background-color: var(--white);
    padding: 0;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
    border-top: 4px solid var(--primary-color);
    transition: var(--transition);
    overflow: hidden;
}

.benefit-box:hover {
    box-shadow: var(--shadow-lg);
}

.benefit-icon {
    margin-bottom: 0;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.benefit-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.benefit-box h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin: 20px 20px 15px;
}

.benefit-box p {
    color: var(--text-light);
    line-height: 1.7;
    padding: 0 20px 20px;
}

/* ==================== Programs Section ==================== */
.programs-section {
    padding: 80px 0;
    background-color: var(--white);
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.program-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 2px solid var(--gray-light);
    transition: var(--transition);
}

.program-header {
    background-color: var(--accent-color);
    color: var(--white);
    padding: 30px 20px;
    text-align: center;
}

.program-header h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.program-header .age {
    font-size: 1.1rem;
    opacity: 0.9;
}

.program-body {
    padding: 30px;
}

.fee-breakdown {
    background-color: var(--off-white);
    padding: 20px;
    border-radius: var(--border-radius);
}

.fee-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    color: var(--text-light);
    border-bottom: 1px solid var(--gray-light);
}

.fee-row:last-of-type {
    border-bottom: 2px solid var(--primary-color);
    margin-bottom: 15px;
}

.fee-row span:last-child {
    font-weight: 600;
    color: var(--text-dark);
}

.fee-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    font-weight: 700;
}

.fee-total span:first-child {
    color: var(--accent-color);
    font-size: 1.1rem;
}

.fee-total span:last-child {
    color: var(--accent-color);
    font-size: 1.5rem;
}

/* ==================== Enrollment Section ==================== */
.enrollment-section {
    padding: 80px 0;
    background-color: var(--off-white);
    color: var(--text-dark);
    text-align: center;
}

.enrollment-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.enrollment-content > p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 40px;
    color: var(--text-light);
}

.enrollment-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.contact-info-quick {
    background-color: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    max-width: 600px;
    margin: 0 auto;
}

.contact-info-quick p {
    margin: 10px 0;
    font-size: 1rem;
    color: var(--text-dark);
}

.contact-info-quick a {
    color: var(--accent-color);
    text-decoration: underline;
}

.contact-info-quick a:hover {
    opacity: 0.8;
}

/* ==================== Responsive ==================== */
@media (max-width: 968px) {
    .hero-section {
        margin-top: -90px;
        padding-top: 90px;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .programs-grid {
        grid-template-columns: 1fr;
    }

    .facilities-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .video-overlay h1 {
        font-size: 2rem;
    }

    .video-overlay p {
        font-size: 1.1rem;
    }

    .hero-section {
        height: 80vh;
        min-height: 500px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .enrollment-content h2 {
        font-size: 2rem;
    }

    .enrollment-actions {
        flex-direction: column;
        align-items: center;
    }

    .enrollment-actions .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .hero-section {
        margin-top: -70px;
        padding-top: 70px;
    }

    .video-overlay h1 {
        font-size: 1.6rem;
    }

    .cta-button {
        padding: 12px 30px;
        font-size: 1rem;
    }
}
