/* assets/css/sections/hero.css */
.hero-modern {
    padding: 110px 0 140px;
    background: #ffffff;
    position: relative;
    overflow-x: hidden;
}

.hero-modern-title {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(2.2rem, 6vw, 5.2rem);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.04em;
    color: #0f172a;
    margin-bottom: 60px;
    max-width: 1200px;
}

.hero-modern-title span {
    display: block;
    color: #FF5E00;
}

.hero-modern-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 90px;
    align-items: center;
}

.hero-modern-left {
    max-width: 640px;
    position: relative;
    z-index: 2;
}

.hero-modern-status {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    color: #475569;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.dot {
    width: 9px;
    height: 9px;
    background: #10b981;
    border-radius: 50%;
    flex-shrink: 0;
}

.hero-modern-sub {
    font-size: 1.25rem;
    line-height: 1.75;
    color: #334155;
    margin-bottom: 40px;
}

.hero-modern-sub strong {
    font-weight: 800;
    color: #0f172a;
}

.hero-modern-info,
.hero-modern-warning {
    padding: 16px 22px;
    border-radius: 16px;
    margin-bottom: 20px;
    font-weight: 700;
    font-size: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    line-height: 1.5;
}

.hero-modern-info i,
.hero-modern-warning i {
    margin-top: 4px;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.hero-modern-info {
    background: #eef2ff;
    border: 1px solid #dbeafe;
    color: #1e40af;
}

.hero-modern-warning {
    background: #fff1f2;
    border: 1px solid #fecdd3;
    color: #b91c1c;
}

.hero-modern-cta {
    display: flex;
    gap: 20px;
    margin: 45px 0;
    flex-wrap: wrap;
}

.btn-call-modern {
    background: #FF5E00;
    color: white;
    padding: 20px 40px;
    border-radius: 100px;
    text-decoration: none;
    font-size: 1.6rem;
    font-weight: 900;
    box-shadow: 0 25px 50px rgba(255,94,0,0.35);
    transition: all 0.3s ease;
    text-align: center;
    display: inline-block;
}

.btn-call-modern span {
    display: block;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    font-weight: 800;
    opacity: 0.9;
    margin-bottom: 6px;
}

.btn-call-modern:hover {
    transform: translateY(-5px);
}

.btn-outline-modern {
    background: transparent;
    border: 2px solid #e2e8f0;
    padding: 18px 32px;
    border-radius: 100px;
    font-weight: 800;
    font-size: 1rem;
    cursor: pointer;
    transition: 0.3s;
    color: #0f172a;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-outline-modern i {
    color: #FF5E00;
    font-size: 1.2rem;
}

.btn-outline-modern:hover {
    border-color: #0056D2;
    color: #0056D2;
}

.hero-modern-wa {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #25D366;
    color: white;
    padding: 16px 28px;
    border-radius: 100px;
    font-weight: 800;
    text-decoration: none;
    margin-top: 10px;
    box-shadow: 0 15px 35px rgba(37,211,102,0.35);
    transition: 0.3s;
    line-height: 1.3;
}

.hero-modern-wa i {
    font-size: 1.6rem;
    flex-shrink: 0;
}

.hero-modern-wa:hover {
    transform: translateY(-4px);
}

.hero-modern-right {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.hero-modern-bg {
    position: absolute;
    width: 460px;
    height: 460px;
    background: #f1f5f9;
    border-radius: 50%;
    top: -80px;
    z-index: 0;
}

.hero-modern-mascot {
    width: 100%;
    max-width: 460px;
    height: auto;
    z-index: 1;
    margin-bottom: -50px;
    display: block;
}

.hero-modern-card {
    background: #0056D2;
    color: white;
    padding: 35px 45px;
    border-radius: 32px;
    text-align: center;
    z-index: 2;
    box-shadow: 0 30px 70px rgba(0,86,210,0.35);
    width: 100%;
    max-width: 420px;
    box-sizing: border-box;
}

.card-title {
    font-weight: 900;
    font-size: 1.6rem;
    margin-bottom: 10px;
    line-height: 1.2;
}

.card-sub {
    font-size: 1rem;
    margin-bottom: 18px;
    opacity: 0.95;
    line-height: 1.4;
}

.card-badge {
    display: inline-block;
    background: rgba(255,255,255,0.25);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 900;
}

@media (max-width: 1100px) {
    .hero-modern-grid {
        grid-template-columns: 1fr;
        gap: 70px;
        text-align: center;
    }

    .hero-modern-left {
        margin: 0 auto;
    }

    .hero-modern-status {
        justify-content: center;
    }

    .hero-modern-info,
    .hero-modern-warning {
        text-align: left;
    }

    .hero-modern-cta {
        justify-content: center;
    }

    .hero-modern-bg {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero-modern {
        padding: 60px 0 80px;
    }

    .hero-modern-title {
        font-size: 2.2rem;
        margin-bottom: 30px;
    }

    .hero-modern-sub {
        font-size: 1.1rem;
    }

    .hero-modern-cta {
        flex-direction: column;
        gap: 15px;
        margin: 30px 0;
        width: 100%;
    }

    .btn-call-modern {
        font-size: 1.4rem;
        padding: 15px;
        width: 100%;
        box-sizing: border-box;
    }

    .btn-outline-modern {
        width: 100%;
        box-sizing: border-box;
        padding: 15px;
    }

    .hero-modern-wa {
        width: 100%;
        box-sizing: border-box;
        justify-content: center;
        font-size: 0.9rem;
        padding: 15px;
        flex-wrap: wrap;
    }

    .hero-modern-card {
        padding: 25px 20px;
    }

    .card-title {
        font-size: 1.4rem;
    }
}