/* =========================
   HERO SECTION
========================= */
.hero-section {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg,
            rgba(84, 161, 192, 0.08),
            rgba(102, 194, 140, 0.08));
    overflow: hidden;
    padding: 2rem 1.5rem;
}

.hero-content {
    max-width: 900px;
    text-align: center;
    z-index: 2;
    animation: fadeUp 1s ease forwards;
}

/* Badge */
.hero-badge {
    display: inline-block;
    padding: 0.4rem 0.9rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-color);
    background-color: rgba(84, 161, 192, 0.15);
    margin-bottom: 1rem;
}

/* Title */
.hero-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--black-color);
}

/* Description */
.hero-description {
    max-width: 650px;
    margin: 0 auto 2rem;
    font-size: 1.05rem;
    color: var(--dark-gray);
}

/* Actions */
.hero-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* =========================
   ANIMATED SHAPES
========================= */
.hero-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.3;
    animation: float 8s ease-in-out infinite;
}

.shape-one {
    width: 260px;
    height: 260px;
    background-color: var(--primary-color);
    top: -80px;
    left: -80px;
}

.shape-two {
    width: 320px;
    height: 320px;
    background-color: var(--accent-color);
    bottom: -100px;
    right: -100px;
    animation-delay: 2s;
}

/* =========================
   ANIMATIONS
========================= */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0);
    }
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {
    .hero-actions {
        flex-direction: column;
    }
}