/* ==================== HERO SECTION ==================== */

.hero {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fb 0%, #f0f4f8 100%);
    position: relative;
    overflow: hidden;
    animation: fadeInSection 0.8s ease;
}

@keyframes fadeInSection {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 153, 216, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: 5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(230, 57, 70, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text h1 {
    font-size: 56px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 25px;
    line-height: 1.15;
    letter-spacing: -1px;
    animation: slideInLeft 0.8s ease;
}

.hero-text h1 strong {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-text p {
    color: var(--text-light);
    font-size: 17px;
    margin-bottom: 40px;
    line-height: 1.8;
    animation: slideInUp 0.8s ease 0.1s both;
}

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

.hero-buttons {
    display: flex;
    gap: 20px;
    animation: slideInUp 0.8s ease 0.2s both;
}

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

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.experience-badge {
    position: absolute;
    top: 30px;
    right: 40px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 40px rgba(0, 153, 216, 0.35);
    z-index: 10;
    text-align: center;
    border: 4px solid rgba(255, 255, 255, 0.3);
}

.badge-number {
    font-size: 48px;
    font-weight: 900;
    line-height: 1;
}

.badge-text {
    font-size: 11px;
    text-align: center;
    line-height: 1.3;
    margin-top: 8px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.image-placeholder {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    width: 100%;
    height: 450px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    font-weight: 600;
    box-shadow: 0 15px 50px rgba(0, 153, 216, 0.3);
    position: relative;
    overflow: hidden;
}

img.image-placeholder {
    display: block;
    object-fit: cover;
}

.image-placeholder::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    border-radius: 50%;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero {
        padding: 80px 0;
    }

    .hero-content {
        gap: 50px;
    }

    .hero-text h1 {
        font-size: 44px;
    }

    .hero-text p {
        font-size: 16px;
    }

    .hero-buttons {
        flex-wrap: wrap;
    }

    .image-placeholder {
        height: 380px;
    }

    .experience-badge {
        width: 110px;
        height: 110px;
    }

    .badge-number {
        font-size: 38px;
    }

    .badge-text {
        font-size: 10px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 60px 0;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-text h1 {
        font-size: 36px;
    }

    .hero-text p {
        font-size: 15px;
    }

    .hero-buttons {
        gap: 15px;
    }

    .hero-buttons .btn {
        flex: 1;
        min-width: 150px;
    }

    .image-placeholder {
        height: 320px;
    }

    .experience-badge {
        width: 100px;
        height: 100px;
        top: 20px;
        right: 20px;
    }

    .badge-number {
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 40px 0;
    }

    .hero-text h1 {
        font-size: 28px;
    }

    .hero-text p {
        font-size: 14px;
        margin-bottom: 25px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .image-placeholder {
        height: 250px;
    }
}
