/* ===== CONSOLIDATED PAGE-SPECIFIC STYLES ===== */
/* Combined from extracted inline styles from contest-prep, about, kids, contact, and locations */

/* ===== CONTEST PREP PAGE ===== */

.contest-section {
    padding: var(--section-padding);
    padding-top: 120px;
}

.contest-hero {
    position: relative;
    height: 400px;
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
                      url('../img/WhatsApp_Image_2025-03-02_at_1.48.48_AM.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-bottom: 3rem;
    border-radius: 8px;
    overflow: hidden;
}

.contest-hero-content {
    max-width: 800px;
    padding: 0 1rem;
}

.contest-hero-title {
    font-family: var(--heading-font);
    font-size: 3rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.contest-hero-text {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.features-section {
    margin-bottom: 4rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.feature-box {
    background-color: var(--dark-gray);
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon i {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.feature-title {
    font-family: var(--heading-font);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.feature-description {
    color: var(--light-gray);
}

.process-section {
    margin-bottom: 4rem;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.process-step {
    background-color: var(--dark-gray);
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    position: relative;
}

.process-step:not(:last-child)::after {
    content: '→';
    position: absolute;
    top: 50%;
    right: -1.5rem;
    transform: translateY(-50%);
    color: var(--primary-color);
    font-size: 2rem;
}

.step-number {
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.step-title {
    font-family: var(--heading-font);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.step-description {
    color: var(--light-gray);
}

.testimonials-section {
    margin-bottom: 4rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.testimonial-quote {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--light-gray);
    font-style: italic;
}

.testimonial-quote::before {
    content: '"';
    font-size: 3rem;
    color: var(--primary-color);
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    opacity: 0.3;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #666;
    margin-right: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    font-weight: bold;
    font-size: 0.8rem;
    text-transform: uppercase;
}

.pricing-section {
    margin-bottom: 4rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.pricing-card {
    background-color: var(--dark-gray);
    border-radius: 8px;
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s ease;
}

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

.pricing-header {
    background-color: var(--primary-color);
    padding: 1.5rem;
}

.pricing-title {
    font-family: var(--heading-font);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.pricing-subtitle {
    font-size: 0.9rem;
    opacity: 0.8;
}

.pricing-price {
    padding: 2rem;
    font-size: 2.5rem;
    font-weight: 700;
}

.pricing-price span {
    font-size: 1rem;
    opacity: 0.7;
}

.pricing-features {
    padding: 0 1.5rem 1.5rem;
}

.pricing-feature {
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--light-gray);
}

.pricing-feature:last-child {
    border-bottom: none;
}

.pricing-action {
    padding: 0 1.5rem 2rem;
}

/* ===== ABOUT PAGE ===== */

.about-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../img/about-hero-bg.jpg') center/cover;
    padding: 120px 0 80px;
    text-align: center;
    background-color: var(--bg-dark);
}

.about-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-family: var(--heading-font);
    color: var(--white);
}

.about-hero .lead {
    font-size: 1.3rem;
    color: var(--white);
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto;
}

.mission-vision-section {
    padding: var(--section-padding);
    background: var(--bg-dark);
}

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

.statement-card {
    background: var(--bg-card);
    padding: 2.5rem;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
}

.statement-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-hover));
}

.statement-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.statement-card .icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.statement-card .icon i {
    font-size: 1.8rem;
    color: var(--white);
}

.statement-card h2 {
    color: var(--white);
    margin-bottom: 1rem;
    font-family: var(--heading-font);
    font-size: 2rem;
}

.statement-card p {
    color: var(--white);
    opacity: 0.9;
    line-height: 1.8;
    font-size: 1.1rem;
}

.promises-section {
    background: var(--bg-darker);
    padding: var(--section-padding);
}

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

.promise-card {
    background: var(--bg-card);
    border-radius: 10px;
    padding: 2rem;
    border: 1px solid rgba(255,255,255,0.1);
}

.promise-card h3 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-family: var(--heading-font);
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.promise-card h3 i {
    font-size: 1.5rem;
}

.promise-list {
    list-style: none;
    padding: 0;
}

.promise-list li {
    padding: 1rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--white);
    opacity: 0.9;
    line-height: 1.6;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.promise-list li:last-child {
    border-bottom: none;
}

.promise-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.values-section {
    background: var(--bg-dark);
    padding: var(--section-padding);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.values-grid .value-item:nth-child(5) {
    grid-column: 2 / 4;
}

.value-item {
    text-align: center;
    padding: 2rem;
    background: var(--bg-card);
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.1);
    transition: transform 0.3s;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.value-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.section-title {
    text-align: center;
    color: var(--white);
    font-family: var(--heading-font);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    color: var(--white);
    opacity: 0.8;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.btn-white {
    background: var(--white);
    color: var(--primary-color);
    padding: 1rem 2rem;
    border-radius: 4px;
    font-weight: bold;
    transition: var(--transition-base);
    text-decoration: none;
    display: inline-block;
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    padding: 1rem 2rem;
    border: 2px solid var(--white);
    border-radius: 4px;
    font-weight: bold;
    transition: var(--transition-base);
    text-decoration: none;
    display: inline-block;
}

.btn-outline-white:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-2px);
}

/* ===== KIDS PAGE ===== */

.kids-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../img/kids-hero-bg.jpg') center/cover;
    padding: 100px 0;
    color: var(--white);
    text-align: center;
    background-color: var(--bg-dark);
}

.kids-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-family: var(--heading-font);
}

.kids-hero .subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: var(--white);
    opacity: 0.9;
}

.kids-logo {
    max-width: 200px;
    margin: 0 auto 2rem;
    display: block;
}

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

.age-group-card {
    background: var(--bg-card);
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    transition: transform 0.3s;
    border: 1px solid rgba(255,255,255,0.1);
}

.age-group-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
    border-color: var(--primary-color);
}

.age-group-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-family: var(--heading-font);
}

.age-group-card p,
.age-group-card ul li {
    color: var(--white);
    opacity: 0.9;
}

.age-group-card .age-badge {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-weight: bold;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.policies-section {
    background: var(--bg-darker);
    padding: 4rem 0;
}

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

.policy-card {
    background: var(--bg-card);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
    border: 1px solid rgba(255,255,255,0.1);
}

.policy-card h4 {
    color: var(--white);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    font-family: var(--heading-font);
}

.policy-card h4 i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

.features-banner {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-hover));
    color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    margin: 3rem 0;
    text-align: center;
}

.features-banner h3 {
    margin-bottom: 1rem;
    font-family: var(--heading-font);
}

.features-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.feature-item i {
    font-size: 1.5rem;
}

/* ===== CONTACT & LOCATIONS PAGES ===== */

.contact-section,
.locations-section {
    padding: var(--section-padding);
    padding-top: 120px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.contact-info,
.contact-form {
    background-color: var(--dark-gray);
    padding: 2rem;
    border-radius: 8px;
}

.contact-info h3,
.contact-form h3 {
    font-family: var(--heading-font);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.contact-item {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: flex-start;
}

.contact-icon {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-right: 1rem;
    min-width: 24px;
}

.contact-text h4 {
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.contact-text p {
    color: var(--light-gray);
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.location-card {
    background-color: var(--dark-gray);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

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

.location-image {
    height: 200px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    font-weight: bold;
    text-transform: uppercase;
}

.location-content {
    padding: 1.5rem;
}

.location-title {
    font-family: var(--heading-font);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.max-width-800 {
    max-width: 800px;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.lead {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .values-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    
    .values-grid .value-item:nth-child(5) {
        grid-column: auto;
    }
}

@media (max-width: 991.98px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-step:nth-child(2)::after {
        display: none;
    }
    
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767.98px) {
    .features-grid,
    .process-steps,
    .testimonials-grid,
    .pricing-grid,
    .mission-vision-grid,
    .promises-container,
    .age-groups,
    .policies-grid,
    .contact-grid,
    .locations-grid {
        grid-template-columns: 1fr;
    }
    
    .process-step::after {
        display: none;
    }
    
    .about-hero h1 {
        font-size: 2.5rem;
    }
}
