/* Additional Fixes for Hero Section */

/* Ensure proper z-index layering */
.hero-section-enhanced {
    position: relative;
    z-index: 1;
}

.hero-bg-container-enhanced {
    z-index: 0;
}

.hero-main-content-enhanced {
    position: relative;
    z-index: 2;
}

/* Fix for container width */
.hero-section-enhanced .container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 100%;
}

/* Ensure proper spacing */
.hero-main-content-enhanced {
    margin-bottom: 0 !important;
}

/* Fix for mobile layout */
@media (max-width: 1200px) {
    .hero-main-content-enhanced {
        grid-template-columns: 1fr !important;
        gap: 3rem;
    }
    
    .hero-visual-enhanced {
        order: 2;
    }
    
    .hero-text-content-enhanced {
        order: 1;
    }
}

/* Fix for image container */
.hero-image-container-enhanced {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 500px;
}

@media (max-width: 768px) {
    .hero-image-container-enhanced {
        min-height: 400px;
    }
}

/* Ensure stats grid works properly */
.hero-stats-enhanced {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

@media (max-width: 640px) {
    .hero-stats-enhanced {
        grid-template-columns: 1fr;
    }
}

/* Fix CTA buttons layout */
.hero-cta-enhanced {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

@media (max-width: 640px) {
    .hero-cta-enhanced {
        flex-direction: column;
    }
    
    .cta-primary-enhanced,
    .cta-secondary-enhanced,
    .cta-call-enhanced {
        width: 100%;
    }
}










