:root {
    --green: #083D2B;
    --gold: #F4BF19;
    --white: #ffffff;
}

/* ==========================================
   HERO V2
========================================== */

.hero-v2 {
    position: relative;
    min-height: 680px;
    height: 680px;
    padding-top: 0;
    overflow: hidden;
    background: #083D2B;
    isolation: isolate;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: url("../../images/hero/hero-bg.webp") center center / cover no-repeat;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(8, 61, 43, 0.92) 0%,
        rgba(8, 61, 43, 0.84) 25%,
        rgba(8, 61, 43, 0.58) 48%,
        rgba(8, 61, 43, 0.18) 75%,
        rgba(8, 61, 43, 0) 100%
    );
    z-index: 2;
}

.hero-v2 .container {
    position: relative;
    z-index: 5;
    height: 100%;
}

.hero-grid {
    display: grid;
    grid-template-columns: 58% 42%;
    align-items: center;
    min-height: 100%;
    height: 100%;
}

/* ==========================================
   LEFT CONTENT
========================================== */

.hero-left {
    max-width: 560px;
    position: relative;
    z-index: 10;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 30px;
}

.hero-tag i {
    color: #F4BF19;
}

.hero-left h1 {
    font-size: 72px;
    line-height: 1.05;
    font-weight: 800;
    color: #fff;
    margin: 0 0 18px;
    letter-spacing: -2px;
}

.hero-left h1 span {
    display: block;
    color: #F4BF19;
}

.hero-left p {
    color: rgba(255, 255, 255, 0.92);
    font-size: 21px;
    line-height: 1.7;
    max-width: 520px;
    margin: 0 0 36px;
}

/* ==========================================
   BUTTONS
========================================== */

.hero-buttons {
    display: flex;
    gap: 18px;
    margin-bottom: 42px;
    flex-wrap: wrap;
}

.hero-btn {
    height: 58px;
    padding: 0 32px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s ease;
}

.hero-btn-primary {
    background: #F4BF19;
    color: #083D2B;
}

.hero-btn-primary:hover {
    background: #ffffff;
    color: #083D2B;
    transform: translateY(-2px);
}

.hero-btn-outline {
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.08);
}

.hero-btn-outline:hover {
    background: #ffffff;
    border-color: #ffffff;
    color: #083D2B;
    transform: translateY(-2px);
}

/* ==========================================
   FEATURES
========================================== */

.hero-features {
    display: flex;
    align-items: center;
    gap: 42px;
    margin-top: 10px;
    flex-wrap: wrap;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-weight: 600;
}

.hero-feature i {
    color: #F4BF19;
    font-size: 18px;
}

/* ==========================================
   RIGHT IMAGE
========================================== */

.hero-right {
    position: relative;
    height: 100%;
    min-height: 0;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    overflow: hidden;
}

.hero-maid {
    position: absolute;
    right: -10px;
    bottom: 0;

    width: auto;
    height: auto;

    max-width: 100%;
    max-height: 650px;

    object-fit: contain;
    object-position: bottom right;

    display: block;
}

/* ==========================================
   HERO DIVIDER
========================================== */

.hero-divider {
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 100%;
    height: 70px;
    z-index: 20;
    pointer-events: none;
}

.hero-divider svg {
    width: 100%;
    height: 100%;
    display: block;
}

.hero-divider path:first-child {
    filter: drop-shadow(0 0 8px rgba(244, 191, 25, 0.45));
}

/* ==========================================
   TABLET
========================================== */

@media (max-width: 1200px) {

    .hero-left h1 {
        font-size: 60px;
    }

    .hero-left p {
        font-size: 19px;
    }

    .hero-grid {
        grid-template-columns: 55% 45%;
    }

    .hero-maid {
        max-height: 600px;
    }

    .hero-features {
        gap: 24px;
    }
}

/* ==========================================
   MOBILE
========================================== */

@media (max-width: 768px) {

    .hero-v2 {
        height: auto;
        min-height: auto;
        padding: 110px 0 70px;
    }

    .hero-v2 .container {
        height: auto;
    }

    .hero-grid {
        display: flex;
        flex-direction: column;
        height: auto;
        min-height: auto;
    }

    .hero-left {
        width: 100%;
        max-width: 100%;
        text-align: left;
    }

    .hero-left h1 {
        font-size: 46px;
        line-height: 1.08;
        letter-spacing: -1px;
    }

    .hero-left p {
        font-size: 17px;
        line-height: 1.6;
    }

    .hero-buttons {
        gap: 12px;
        margin-bottom: 30px;
    }

    .hero-btn {
        height: 52px;
        padding: 0 22px;
    }

    .hero-features {
        gap: 16px;
    }

    .hero-feature {
        font-size: 14px;
    }

    .hero-right {
        width: 100%;
        height: 400px;
        min-height: 400px;
        margin-top: 25px;
        overflow: hidden;
    }

    .hero-maid {
        right: 50%;
        bottom: 0;
        transform: translateX(50%);
        max-width: 95%;
        max-height: 420px;
    }

    .hero-divider {
        height: 45px;
    }
}

/* ==========================================
   SMALL MOBILE
========================================== */

@media (max-width: 576px) {

    .hero-v2 {
        padding-top: 100px;
    }

    .hero-left h1 {
        font-size: 38px;
    }

    .hero-left p {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-btn {
        width: 100%;
    }

    .hero-features {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }

    .hero-right {
        height: 350px;
        min-height: 350px;
    }

    .hero-maid {
        max-height: 370px;
        max-width: 100%;
    }
}