/* Kids Academy Specific Styles */

/* Hero Section */
.kids-academy-hero {
    background: #ffffff !important;
    background-color: #ffffff !important;
    background-image: none !important;
    padding: 0;
    color: #333;
    position: relative;
    height: 100vh;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.kids-academy-hero::before {
    display: none !important;
    content: none !important;
    background: none !important;
}

.kids-academy-hero .hero-container {
    max-width: none;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: stretch;
    background: #ffffff !important;
    background-color: #ffffff !important;
}

.kids-academy-hero .hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    width: 100%;
    height: 100%;
    align-items: stretch;
}

.kids-academy-hero .hero-text {
    background: linear-gradient(135deg, #000 0%, #111 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 3rem 4rem;
    color: #fff;
}

.kids-academy-hero .hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fff;
    line-height: 1.2;
}

.kids-academy-hero .hero-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #F4C430;
}

.kids-academy-hero .hero-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
}

.kids-academy-hero .hero-image {
    position: relative;
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
    height: 100%;
    align-self: stretch;
    margin-right: 0;
    background: linear-gradient(135deg, #000 0%, #111 100%);
}

.kids-academy-hero .hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: relative;
    z-index: 0;
    opacity: 0;
    transition: opacity 0.3s ease-in;
}

.kids-academy-hero .hero-image img.loaded {
    opacity: 1;
}

.kids-academy-hero .hero-image::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 150px;
    background: linear-gradient(to right, 
        rgba(0, 0, 0, 0.6) 0%, 
        rgba(0, 0, 0, 0.3) 30%,
        rgba(0, 0, 0, 0) 100%);
    z-index: 1;
    pointer-events: none;
}

.kids-academy-hero .hero-cta {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.kids-academy-hero .cta-button.primary {
    background-color: #F4C430;
    color: #333;
    border: 3px solid #F4C430;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background-color 0.2s ease;
}

.kids-academy-hero .cta-button.primary:hover {
    background-color: #e6b129;
    border-color: #e6b129;
}

.kids-academy-hero .cta-button.secondary {
    background-color: transparent;
    color: #fff;
    border: 3px solid #fff;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.kids-academy-hero .cta-button.secondary:hover {
    background-color: #fff;
    color: #333;
}

/* Introduction Section */
.intro-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.intro-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.intro-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1.5rem;
}

.intro-lead {
    font-size: 1.3rem;
    font-weight: 600;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.intro-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 1rem;
}

/* Age Groups Section */
.age-groups-section {
    padding: 5rem 0;
    background: #ffffff;
}

.age-groups-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.age-group-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    border: 1px solid #e9ecef;
}

.age-group-card:hover {
    border-color: #ddd;
}

.age-group-header {
    background: linear-gradient(135deg, #F4C430 0%, #e6b129 100%);
    padding: 2rem;
    text-align: center;
    color: #333;
}

.age-group-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #333;
}

.age-group-header h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #333;
}

.age-range {
    font-size: 1.1rem;
    font-weight: 600;
    color: #555;
}

.age-group-content {
    padding: 2rem;
}

.age-group-subtitle {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
    text-align: center;
}

.age-group-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 1.5rem;
}

.age-group-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.age-group-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    font-size: 1rem;
    color: #555;
}

.age-group-features li i.fa-check-circle {
    color: #F4C430;
    font-size: 1.1rem;
}

/* Program Details Section */
.program-details-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.program-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.program-detail-card {
    background: #fff;
    border-radius: 12px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
    border: 1px solid #e9ecef;
}

.program-detail-card:hover {
    border-color: #ddd;
}

.program-detail-card.highlight {
    background: linear-gradient(135deg, #F4C430 0%, #e6b129 100%);
    border-color: #F4C430;
    color: #333;
}

.program-detail-card.highlight .detail-icon {
    color: #333;
}

.program-detail-card.highlight h3,
.program-detail-card.highlight p {
    color: #333;
}

.detail-icon {
    font-size: 3rem;
    color: #F4C430;
    margin-bottom: 1.5rem;
}

.program-detail-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #333;
}

.program-detail-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 0.5rem;
}

.pricing-main {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.25rem;
}

.pricing-sub {
    font-size: 1rem;
    color: #555;
    margin-bottom: 0.5rem;
}

.pricing-alt {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-top: 0.5rem;
}

.detail-note {
    font-size: 0.9rem;
    color: #888;
    margin-top: 1rem;
    font-style: italic;
}

.highlight-note {
    color: #333 !important;
    font-weight: 600;
    font-style: normal;
}

.highlight-note i {
    color: #333;
    margin-right: 0.5rem;
}

/* Why Dodgeball Section */
.why-dodgeball-section {
    padding: 5rem 0;
    background: #ffffff;
}

.why-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.why-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1.5rem;
}

.why-content > p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 2.5rem;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.benefit-item i {
    font-size: 2rem;
    color: #F4C430;
    flex-shrink: 0;
}

.benefit-item h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.5rem;
}

.benefit-item p {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

.why-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

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

/* Registration Section */
.registration-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.registration-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.registration-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin: 0;
}

.registration-toggle-btn {
    background: #F4C430;
    color: #333;
    border: 3px solid #F4C430;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: background-color 0.2s ease;
}

.registration-toggle-btn:hover {
    background: #e6b129;
    border-color: #e6b129;
}

.registration-toggle-btn .toggle-icon {
    transition: transform 0.3s ease;
}

.registration-toggle-btn[aria-expanded="true"] .toggle-icon {
    transform: rotate(180deg);
}

.registration-content {
    display: none;
    max-width: 900px;
    margin: 0 auto;
}

.registration-content[aria-hidden="false"] {
    display: block;
}

.registration-form {
    background: #fff;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.registration-form *,
.registration-form *::before,
.registration-form *::after {
    box-sizing: border-box;
}

.registration-form h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 2rem;
    text-align: center;
}

.form-section {
    margin-bottom: 2.5rem;
}

.form-section h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #F4C430;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.required {
    color: #e74c3c;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="number"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #F4C430;
    box-shadow: 0 0 0 3px rgba(244, 196, 48, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}


.form-help {
    display: block;
    font-size: 0.875rem;
    color: #666;
    margin-top: 0.25rem;
}

.checkbox-group {
    margin-bottom: 1rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    cursor: pointer;
    flex-shrink: 0;
    accent-color: #F4C430;
}

.form-actions {
    margin-top: 2.5rem;
    text-align: center;
}

.submit-button {
    background: #F4C430;
    color: #333;
    border: 3px solid #F4C430;
    padding: 1rem 3rem;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.submit-button:hover {
    background: #e6b129;
    border-color: #e6b129;
}

.submit-button:active {
    transform: translateY(0);
}

/* FAQ Section */
.faq-section {
    padding: 5rem 0;
    background: #f8f9fa;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.faq-item {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    border: 2px solid #f0f0f0;
    transition: border-color 0.3s ease;
}

.faq-item.active {
    border-color: #F4C430;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.75rem 2rem;
    cursor: pointer;
    background: #fff;
    transition: background-color 0.3s ease;
}

.faq-item:hover .faq-question {
    background-color: #fafafa;
}

.faq-question h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.faq-question i {
    color: #F4C430;
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 2rem;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    padding: 1.25rem 2rem 2.5rem 2rem;
}

.faq-answer p {
    font-size: 1rem;
    line-height: 1.7;
    color: #666;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .kids-academy-hero {
        height: auto;
        min-height: auto;
    }
    
    .kids-academy-hero .hero-content {
        grid-template-columns: 1fr;
        height: auto;
    }
    
    .kids-academy-hero .hero-container {
        height: auto;
    }
    
    .kids-academy-hero .hero-text {
        padding: 3rem 2rem;
        min-height: auto;
        height: auto;
    }
    
    .kids-academy-hero .hero-image {
        order: -1;
        min-height: auto;
        height: 300px;
    }
    
    .why-content-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .age-groups-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .kids-academy-hero .hero-title {
        font-size: 2rem;
    }
    
    .kids-academy-hero .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .kids-academy-hero .hero-description {
        font-size: 1rem;
    }
    
    .kids-academy-hero .hero-text {
        padding: 2rem 1.5rem;
    }
    
    .kids-academy-hero .hero-image {
        height: 220px;
    }
    
    .kids-academy-hero .hero-cta {
        flex-direction: column;
        width: 100%;
    }
    
    .kids-academy-hero .cta-button {
        width: 100%;
    }
    
    .intro-content h2 {
        font-size: 2rem;
    }
    
    .program-details-grid {
        grid-template-columns: 1fr;
    }
    
    .age-groups-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-button {
        width: 100%;
    }
    
    .registration-section {
        padding: 3rem 0;
    }
    
    .registration-header {
        flex-direction: column;
        text-align: center;
    }
    
    .registration-header h2 {
        font-size: 1.75rem;
    }
    
    .registration-form {
        padding: 1.5rem;
    }
    
    .registration-form h3 {
        font-size: 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .form-group input[type="text"],
    .form-group input[type="email"],
    .form-group input[type="tel"],
    .form-group input[type="number"],
    .form-group select,
    .form-group textarea {
        font-size: 16px;
    }
}

