/* ============================================
   HOME PAGE SECTIONS STYLES
   Missing styles for home.html sections
   ============================================ */

/* CRITICAL FIX: Ensure all sections are visible */
main {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
}

section {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.container {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
}

/* Override any reveal animations that might hide content */
.reveal,
.social-proof-section,
.transformations-showcase,
.why-choose-section,
.programs-section,
.final-cta-section,
.free-resources-section {
    opacity: 1 !important;
    transform: none !important;
    visibility: visible !important;
}

/* Hero Section New */
.hero-section-new {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
    overflow: hidden;
    padding: 120px 20px 60px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.hero-content-new {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    color: white;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(16, 185, 129, 0.2);
    border: 1px solid rgba(16, 185, 129, 0.3);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #10B981;
}

.hero-title {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.hero-title-small {
    font-size: 1.2rem;
    font-weight: 500;
    color: #10B981;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-title-main {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
}

.text-gradient {
    background: linear-gradient(135deg, #10B981, #059669);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.3rem;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto 30px;
    color: rgba(255, 255, 255, 0.9);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.hero-stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #10B981;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-cta-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.btn-primary-new, .btn-secondary-new {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary-new {
    background: linear-gradient(135deg, #10B981, #059669);
    color: white;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
}

.btn-primary-new:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.6);
}

.btn-secondary-new {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary-new:hover {
    background: white;
    color: #0F172A;
}

.hero-trust {
    margin-top: 40px;
}

.trust-avatars {
    display: flex;
    justify-content: center;
    gap: -10px;
    margin-bottom: 15px;
}

.trust-avatars img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 3px solid #0F172A;
    object-fit: cover;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

/* Social Proof Section */
.social-proof-section {
    padding: 60px 20px;
    background: white;
}

.proof-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.proof-item {
    text-align: center;
}

.proof-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #10B981, #059669);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: white;
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
    transition: all 0.3s ease;
}

.proof-icon:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 30px rgba(16, 185, 129, 0.4);
}

.proof-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #0F172A;
    margin-bottom: 10px;
}

.proof-label {
    font-size: 1rem;
    color: #64748B;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-tag {
    display: inline-block;
    background: #10B981;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
}

.section-title-new {
    font-size: 2.5rem;
    color: #0F172A;
    margin-bottom: 15px;
    font-weight: 800;
}

.section-desc {
    font-size: 1.1rem;
    color: #64748B;
    max-width: 700px;
    margin: 0 auto;
}

/* Why Choose Section */
.why-choose-section {
    padding: 80px 20px;
    background: white;
}

.features-grid-new {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card-new {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: center;
}

.feature-card-new:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #10B981, #059669);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: white;
}

.feature-card-new h3 {
    font-size: 1.5rem;
    color: #0F172A;
    margin-bottom: 15px;
}

.feature-card-new p {
    color: #64748B;
    line-height: 1.6;
}

/* Programs Section */
.programs-section {
    padding: 80px 20px;
    background: #F8FAFC;
}

.programs-grid-new {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.program-card-new {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.program-card-new:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.program-header-new {
    background: linear-gradient(135deg, #10B981, #059669);
    color: white;
    padding: 30px;
    text-align: center;
}

.program-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.program-header-new h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.program-price {
    font-size: 2.5rem;
    font-weight: 800;
    margin: 15px 0;
}

.program-body-new {
    padding: 30px;
}

.program-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.program-features li {
    padding: 12px 0;
    border-bottom: 1px solid #E2E8F0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.program-features li i {
    color: #10B981;
}

.btn-outline-new {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border: 2px solid #10B981;
    border-radius: 50px;
    color: #10B981;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-new:hover {
    background: #10B981;
    color: white;
}

/* Final CTA Section */
.final-cta-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #0F172A, #1E293B);
    color: white;
}

.cta-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.cta-content-new h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: white;
}

.cta-content-new p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
}

.cta-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

/* Free Resources Section */
.free-resources-section {
    padding: 80px 20px;
    background: #F8FAFC;
}

.resources-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.resources-content h2 {
    font-size: 2.5rem;
    color: #0F172A;
    margin-bottom: 20px;
}

.resources-content p {
    font-size: 1.1rem;
    color: #64748B;
    margin-bottom: 30px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-title-main {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        gap: 20px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .hero-cta-group {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-primary-new, .btn-secondary-new {
        width: 100%;
        justify-content: center;
    }
    
    .cta-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .section-title-new {
        font-size: 2rem;
    }
}
