/* Hero Section Styles */
.hero-section {
    background: linear-gradient(135deg, #4F86FF 0%, #335BF5 100%);
    position: relative;
    overflow: hidden;
    padding: 4rem 0;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    transform: rotate(45deg);
    animation: float 20s linear infinite;
}

@keyframes float {
    0% { transform: rotate(45deg) translateY(0); }
    100% { transform: rotate(45deg) translateY(-50px); }
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.hero-subtitle {
    font-size: 1.1rem;
    opacity: 0.95;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-buttons .btn {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    font-weight: 600;
}

.hero-buttons .btn-white {
    background: white;
    color: #4F86FF;
    border: 2px solid white;
}

.hero-buttons .btn-white:hover {
    background: transparent;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.hero-buttons .btn-success {
    background: #28A745;
    border: 2px solid #28A745;
    color: white;
}

.hero-buttons .btn-success:hover {
    background: #218838;
    border-color: #218838;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(40,167,69,0.3);
}

.hero-image {
    position: relative;
    animation: float-image 3s ease-in-out infinite;
}

@keyframes float-image {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.hero-image img {
    max-width: 400px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.1));
}

/* Stats Section */
.stats-section {
    background: #F8F9FA;
    border-top: 1px solid #E9ECEF;
    border-bottom: 1px solid #E9ECEF;
}

.stat-item {
    padding: 1.5rem 1rem;
    text-align: center;
    position: relative;
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 50px;
    width: 1px;
    background: #DEE2E6;
}

.stat-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.5rem;
    border-radius: 50%;
    font-size: 1.25rem;
}

.stat-icon.primary {
    background: rgba(79, 134, 255, 0.1);
    color: #4F86FF;
}

.stat-icon.success {
    background: rgba(40, 167, 69, 0.1);
    color: #28A745;
}

.stat-icon.warning {
    background: rgba(255, 193, 7, 0.1);
    color: #FFC107;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 1rem;
    color: #6C757D;
}

/* Search Section */
.search-section {
    margin: 3rem 0;
}

.search-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    padding: 2rem;
}

.search-form .form-control,
.search-form .form-select {
    height: 50px;
    border: 2px solid #E9ECEF;
    border-radius: 10px;
    font-size: 1rem;
}

.search-form .form-control:focus,
.search-form .form-select:focus {
    border-color: #4F86FF;
    box-shadow: 0 0 0 0.2rem rgba(79, 134, 255, 0.25);
}

.search-form .btn-search {
    height: 50px;
    background: #4F86FF;
    border: none;
    color: white;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.search-form .btn-search:hover {
    background: #335BF5;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(79, 134, 255, 0.3);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-buttons .btn {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
    
    .stat-item:not(:last-child)::after {
        display: none;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .hero-section {
        min-height: 500px;
    }
}

/* Decorative Elements */
.decoration-dots {
    position: absolute;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(255,255,255,0.2) 2px, transparent 2px);
    background-size: 20px 20px;
}

.decoration-dots.top-left {
    top: 20%;
    left: 5%;
}

.decoration-dots.bottom-right {
    bottom: 20%;
    right: 5%;
}
