/* ========================================
   LANDING PAGE SPECIFIC STYLES
   ======================================== */

/* Landing Hero Section */
.landing-hero {
    background: linear-gradient(135deg, #1976d2 0%, #42a5f5 100%);
    color: white;
    padding: 120px 0 80px 0;
    text-align: center;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.landing-hero .hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    animation: fadeInDown 1s ease-out;
}

.landing-hero .hero-subtitle {
    font-size: 1.8rem;
    font-weight: 300;
    margin-bottom: 2rem;
    opacity: 0.95;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.landing-hero .hero-description {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 3rem auto;
    line-height: 1.8;
    opacity: 0.9;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.cta-buttons {
    animation: fadeInUp 1s ease-out 0.6s both;
}

/* Quick Stats */
.quick-stats {
    background: white;
    padding: 60px 0;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.05);
}

.stat-box {
    text-align: center;
    padding: 30px 20px;
    transition: transform 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-10px);
}

.stat-icon {
    font-size: 3.5rem !important;
    color: #1976d2;
    margin-bottom: 1rem;
}

.stat-box .stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--secondary-color);
    display: block;
    margin-bottom: 0.5rem;
}

.stat-box .stat-label {
    font-size: 1.1rem;
    color: #1976d2;
    font-weight: 500;
}

/* Features Preview */
.features-preview {
    padding: 80px 0;
    background: #f8f9fa;
}

.features-preview .section-title {
    text-align: center;
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
    font-weight: 600;
}

.feature-box {
    background: white;
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
    min-height: 280px;
}

.feature-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.12);
}

.feature-box h3 {
    color: var(--primary-color);
    font-size: 1.6rem;
    margin: 20px 0 15px 0;
    font-weight: 600;
}

.feature-box p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    padding: 80px 0;
    color: white;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media screen and (max-width: 768px) {
    .landing-hero .hero-title {
        font-size: 2.8rem;
    }
    
    .landing-hero .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .landing-hero .hero-description {
        font-size: 1rem;
    }
    
    .stat-box .stat-number {
        font-size: 2.5rem;
    }
}

@media screen and (max-width: 600px) {
    .landing-hero {
        padding: 80px 0 60px 0;
        min-height: 500px;
    }
    
    .cta-button {
        display: block;
        margin: 10px auto;
        max-width: 300px;
    }
}

