/* Homepage Specific Styles */

/* CSS Variables */
:root {
    --primary-blue: #006AB0;
    --light-gray: #9FB0BB;
    --dark-navy: #012E40;
    --accent-orange: #FF8800;
    --bg-white: #FFFFFF;
    --bg-light: #F8F9FA;
    --text-dark: #1a1a1a;
    --text-gray: #666666;
    --border-light: #E5E7EB;
}

/* Hero Section */
.hero {
    padding: 150px 0 100px;
    text-align: center;
    position: relative;
    background: var(--bg-light);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: clamp(32px, 5vw, 64px);
    font-weight: 900;
    margin-bottom: 20px;
    color: var(--dark-navy);
    line-height: 1.1;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: clamp(18px, 3vw, 24px);
    color: var(--text-gray);
    margin-bottom: 30px;
    font-weight: 400;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

/* Lottie Animation Container */
.lottie-container {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.lottie-container lottie-player {
    width: 100%;
    height: auto;
    max-height: 500px;
}

/* Hero Shapes */
.hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    pointer-events: none;
}

.shape {
    position: absolute;
    opacity: 0.1;
}

.shape-1 {
    width: 200px;
    height: 200px;
    background: var(--primary-blue);
    border-radius: 50%;
    top: 10%;
    left: -100px;
}

.shape-2 {
    width: 150px;
    height: 150px;
    background: var(--accent-orange);
    transform: rotate(45deg);
    top: 60%;
    right: -75px;
}

.shape-3 {
    width: 300px;
    height: 300px;
    background: var(--light-gray);
    border-radius: 50%;
    bottom: -150px;
    left: 50%;
    transform: translateX(-50%);
}

/* Mobile Hero Adjustments */
@media (max-width: 768px) {
    .hero {
        padding: 120px 20px 80px;
        min-height: auto;
    }
    
    .hero h1 {
        font-size: clamp(28px, 7vw, 48px);
    }
    
    .hero-subtitle {
        font-size: 18px;
        margin-bottom: 20px;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .hero-cta .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .lottie-container {
        padding: 10px;
    }
    
    .hero-shapes {
        display: none;
    }
}

/* Very small screens */
@media (max-width: 480px) {
    .hero {
        padding: 100px 15px 60px;
    }
    
    .hero h1 {
        font-size: 26px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
}