/* ========== HERO SECTION ========== */
.hero-section {
    background: linear-gradient(135deg, var(--light-blue-bg) 0%, var(--white) 100%);
    padding: var(--spacing-5xl) 0;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-4xl);
    align-items: center;
}

.hero-content {
    animation: slideInLeft 0.8s ease-out;
}

.hero-content .badge {
    margin-bottom: var(--spacing-lg);
}

.hero-content h1 {
    font-size: var(--font-size-5xl);
    line-height: var(--line-height-tight);
    color: var(--navy-blue);
    margin-bottom: var(--spacing-lg);
}

.hero-text {
    font-size: var(--font-size-lg);
    color: var(--text-light);
    line-height: var(--line-height-relaxed);
    margin-bottom: var(--spacing-2xl);
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-3xl);
    flex-wrap: wrap;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-xl);
    padding-top: var(--spacing-2xl);
    border-top: 2px solid var(--gray-200);
}

.hero-image {
    position: relative;
    animation: slideInRight 0.8s ease-out;
}

.hero-image-wrapper {
    position: relative;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-2xl);
}

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

.hero-decoration {
    position: absolute;
    border-radius: var(--radius-full);
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    opacity: 0.1;
    z-index: -1;
}

.hero-decoration-1 {
    width: 300px;
    height: 300px;
    top: -50px;
    right: -50px;
}

.hero-decoration-2 {
    width: 200px;
    height: 200px;
    bottom: -30px;
    left: -30px;
}

.section-header {
    margin-bottom: var(--spacing-3xl);
}

.section-header .badge {
    margin-bottom: var(--spacing-md);
}

.section-header h2 {
    margin-bottom: var(--spacing-md);
}

.section-header p {
    font-size: var(--font-size-lg);
    max-width: 600px;
    margin: 0 auto;
}

.why-choose-section .grid-2 {
    align-items: center;
}

.why-choose-content .badge {
    margin-bottom: var(--spacing-md);
}

.why-choose-content h2 {
    margin-bottom: var(--spacing-lg);
}

.why-choose-content .hero-text {
    margin-bottom: var(--spacing-2xl);
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.why-choose-image img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-xl);
}

.rounded-image {
    border-radius: var(--radius-2xl);
}

.cta-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    text-align: center;
}

.cta-content h2 {
    color: var(--white);
    margin-bottom: var(--spacing-lg);
}

.cta-content p {
    color: var(--white);
    opacity: 0.9;
}

@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-3xl);
    }
    
    .hero-content h1 {
        font-size: var(--font-size-4xl);
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: var(--spacing-4xl) 0;
    }
    
    .hero-content h1 {
        font-size: var(--font-size-3xl);
    }
    
    .hero-text {
        font-size: var(--font-size-base);
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .why-choose-section .grid-2 {
        grid-template-columns: 1fr;
    }
}
