/* Home Page Styles */

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(11, 61, 46, 0.95) 0%, rgba(10, 90, 66, 0.9) 100%), 
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%230B3D2E" width="1200" height="600"/></svg>');
    padding: 8rem 0 6rem;
    position: relative;
}

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

.hero-text h1 {
    font-size: 3.5rem;
    color: var(--cream);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-text .highlight {
    color: var(--gold);
    position: relative;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--cream);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 2rem 0;
    padding: 2rem 0;
    border-top: 1px solid rgba(212, 175, 55, 0.3);
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}

.hero-stats .stat h3 {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.hero-stats .stat p {
    color: var(--cream);
    font-size: 0.9rem;
    margin: 0;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    width: 350px;
    height: 350px;
    border-radius: 50%;
    border: 5px solid var(--gold);
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.3);
    object-fit: cover;
}

.experience-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--gold);
    color: var(--deep-green);
    padding: 1.5rem;
    border-radius: 50%;
    width: 120px;
    height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.badge-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.badge-text {
    font-size: 0.7rem;
    font-weight: 600;
    line-height: 1.2;
    margin-top: 0.5rem;
}

/* Services Overview */
.services-overview {
    background: var(--cream);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

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

.service-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px var(--shadow);
    transition: all 0.3s ease;
    border-top: 4px solid var(--gold);
}

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

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--deep-green);
}

.service-card p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-link {
    color: var(--gold);
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s ease;
}

.service-link:hover {
    color: var(--deep-green);
    padding-left: 10px;
}

/* Experience Section */
.experience-section {
    background: var(--white);
}

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

.experience-text .lead {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.experience-highlights {
    margin: 2rem 0;
}

.highlight-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--cream);
    border-radius: 8px;
}

.highlight-item .icon {
    color: var(--gold);
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.highlight-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--deep-green);
}

.highlight-item p {
    color: var(--text-light);
    margin: 0;
    font-size: 0.95rem;
}

.credential-badges {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.credential-badges .badge {
    background: linear-gradient(135deg, var(--deep-green) 0%, #0a5a42 100%);
    color: var(--gold);
    padding: 1.5rem 1rem;
    border-radius: 8px;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 4px 10px var(--shadow);
}

/* Programs Section */
.programs-section {
    background: var(--cream);
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 2rem;
}

.program-card-large {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 6px 20px var(--shadow);
    border-left: 6px solid var(--gold);
}

.program-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 1rem;
}

.program-header h3 {
    font-size: 1.75rem;
    color: var(--deep-green);
}

.program-badge {
    background: var(--gold);
    color: var(--deep-green);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
}

.program-description {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.program-stats {
    display: flex;
    gap: 2rem;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(11, 61, 46, 0.1);
    border-bottom: 1px solid rgba(11, 61, 46, 0.1);
    margin-bottom: 1.5rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
    text-align: center;
}

.stat-item strong {
    font-family: 'Montserrat', sans-serif;
    color: var(--gold);
    font-size: 1.1rem;
}

.stat-item span {
    color: var(--text-light);
    font-size: 0.85rem;
}

/* Engagement Section */
.engagement-section {
    background: var(--white);
}

.section-header.centered {
    text-align: center;
}

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

.engagement-card {
    background: var(--cream);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px var(--shadow);
    transition: all 0.3s ease;
    position: relative;
}

.engagement-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.engagement-card.featured {
    background: linear-gradient(135deg, var(--deep-green) 0%, #0a5a42 100%);
    color: var(--cream);
    border: 3px solid var(--gold);
}

.engagement-card.featured h3,
.engagement-card.featured p {
    color: var(--cream);
}

.engagement-card.featured .engagement-icon {
    background: var(--gold);
}

.popular-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--gold);
    color: var(--deep-green);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
}

.engagement-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    width: 70px;
    height: 70px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.engagement-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.engagement-card p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.engagement-features {
    list-style: none;
    padding: 0;
}

.engagement-features li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    border-bottom: 1px solid rgba(11, 61, 46, 0.1);
}

.engagement-card.featured .engagement-features li {
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.engagement-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: 700;
}

.engagement-features li:last-child {
    border-bottom: none;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--deep-green) 0%, #0a5a42 100%);
    color: var(--cream);
    text-align: center;
}

.cta-content h2 {
    color: var(--gold);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    color: var(--cream);
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.btn.large {
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
}

.cta-note {
    font-size: 0.9rem;
    color: rgba(245, 240, 230, 0.8);
    font-style: italic;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content,
    .experience-content {
        grid-template-columns: 1fr;
    }

    .hero-image {
        order: -1;
    }

    .hero-image img {
        width: 280px;
        height: 280px;
    }

    .experience-badge {
        width: 100px;
        height: 100px;
        padding: 1rem;
    }

    .badge-number {
        font-size: 1.5rem;
    }

    .badge-text {
        font-size: 0.6rem;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 6rem 0 4rem;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .hero-cta {
        flex-direction: column;
    }

    .hero-cta .btn {
        width: 100%;
        text-align: center;
    }

    .programs-grid {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons .btn {
        width: 100%;
    }

    .credential-badges {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-image img {
        width: 220px;
        height: 220px;
    }

    .experience-badge {
        width: 80px;
        height: 80px;
        bottom: 10px;
        right: 10px;
    }

    .badge-number {
        font-size: 1.2rem;
    }

    .badge-text {
        font-size: 0.5rem;
    }
}
