/* ==========================================
   HERO SECTION
========================================== */

.hero-section {
    position: relative;
    width: 100%;
    height: 372px;
    overflow: hidden;
    background: #082535;
}


/* ==========================================
   BACKGROUND IMAGE
========================================== */

.hero-bg {
    position: absolute;
    inset: 0;

    background-image: url("../images/headerbg.png");

    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
}


/* ==========================================
   DARK LEFT OVERLAY
========================================== */

.hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(4, 28, 42, 0.98) 0%,
            rgba(4, 28, 42, 0.94) 27%,
            rgba(4, 28, 42, 0.78) 42%,
            rgba(4, 28, 42, 0.35) 55%,
            rgba(4, 28, 42, 0.00) 72%
        );
}


/* ==========================================
   CONTAINER
========================================== */

.hero-container {
    position: relative;
    z-index: 2;

    width: 94%;
    max-width: 1400px;

    height: 100%;

    margin: auto;

    display: flex;
    align-items: center;
}


/* ==========================================
   HERO CONTENT
========================================== */

.hero-content {
    width: 560px;
    color: #fff;
}


/* ==========================================
   WELCOME TEXT
========================================== */

.hero-welcome {
    margin-bottom: 11px;

    color: #f2b21b;

    font-size: 14px;
    font-weight: 700;

    letter-spacing: 1px;
}


/* ==========================================
   MAIN HEADING
========================================== */

.hero-content h1 {
    margin: 0 0 7px;

    color: #ffffff;

    font-size: 38px;
    line-height: 1.1;

    font-weight: 800;

    letter-spacing: -0.5px;
}


/* ==========================================
   SUB HEADING
========================================== */

.hero-content h2 {
    margin: 0 0 18px;

    color: #f2b21b;

    font-size: 17px;
    font-weight: 600;

    line-height: 1.3;
}


/* ==========================================
   SERVICES TEXT
========================================== */

.hero-services {
    margin: 0 0 16px;

    color: #ffffff;

    font-size: 14px;
    line-height: 1.75;

    font-weight: 400;
}


/* ==========================================
   FEATURES
========================================== */

.hero-features {
    display: flex;
    align-items: center;

    margin-bottom: 19px;
}


/* Individual feature */

.hero-feature {
    display: flex;
    align-items: center;

    gap: 9px;
}


/* ==========================================
   FEATURE ICON
========================================== */

.feature-icon {
    width: 35px;
    height: 35px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #f2b21b;

    border: 2px solid #f2b21b;

    border-radius: 50%;

    font-size: 19px;

    flex-shrink: 0;
}

.feature-icon span {
    line-height: 1;
}


/* ==========================================
   FEATURE TEXT
========================================== */

.feature-text {
    display: flex;
    flex-direction: column;

    line-height: 1.3;
}

.feature-text strong {
    color: #ffffff;

    font-size: 11px;
    font-weight: 700;
}

.feature-text span {
    color: #ffffff;

    font-size: 11px;
}


/* ==========================================
   FEATURE DIVIDER
========================================== */

.feature-divider {
    width: 1px;
    height: 32px;

    background: rgba(255,255,255,0.75);

    margin: 0 20px;
}


/* ==========================================
   BUTTONS
========================================== */

.hero-buttons {
    display: flex;
    align-items: center;

    gap: 13px;
}


/* Common */

.hero-call,
.hero-whatsapp {
    height: 38px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 0 20px;

    border-radius: 4px;

    font-size: 12px;
    font-weight: 700;

    transition: all 0.25s ease;
}


/* ==========================================
   CALL BUTTON
========================================== */

.hero-call {
    color: #ffffff;

    background: #efb21b;

    border: 1px solid #efb21b;
}

.hero-call:hover {
    background: #d99e0e;

    border-color: #d99e0e;
}


/* ==========================================
   WHATSAPP BUTTON
========================================== */

.hero-whatsapp {
    color: #ffffff;

    background: transparent;

    border: 1px solid #ffffff;
}

.hero-whatsapp:hover {
    color: #082535;

    background: #ffffff;
}


/* Icons */

.hero-call span,
.hero-whatsapp span {
    margin-right: 8px;

    font-size: 16px;
}


/* ==========================================
   TABLET
========================================== */

@media (max-width: 1000px) {

    .hero-section {
        height: 400px;
    }

    .hero-content {
        width: 520px;
    }

    .hero-content h1 {
        font-size: 34px;
    }

    .hero-content h2 {
        font-size: 16px;
    }

    .hero-services {
        font-size: 13px;
    }

}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 768px) {

    .hero-section {
        height: 560px;
    }


    .hero-bg {
        background-position: center;
    }


    .hero-overlay {
        background:
            linear-gradient(
                90deg,
                rgba(4, 28, 42, 0.97),
                rgba(4, 28, 42, 0.80)
            );
    }


    .hero-container {
        width: 90%;

        align-items: center;
    }


    .hero-content {
        width: 100%;
    }


    .hero-welcome {
        font-size: 13px;
    }


    .hero-content h1 {
        font-size: 30px;
    }


    .hero-content h2 {
        font-size: 15px;
    }


    .hero-services {
        font-size: 13px;

        line-height: 1.7;
    }


    /* Features */

    .hero-features {
        flex-wrap: wrap;

        gap: 12px;
    }


    .feature-divider {
        margin: 0 7px;
    }


    .feature-icon {
        width: 32px;
        height: 32px;
    }


    /* Buttons */

    .hero-buttons {
        margin-top: 5px;

        flex-wrap: wrap;
    }


    .hero-call,
    .hero-whatsapp {
        height: 40px;

        padding: 0 17px;
    }

}


/* ==========================================
   SMALL MOBILE
========================================== */

@media (max-width: 480px) {

    .hero-section {
        height: 590px;
    }


    .hero-content h1 {
        font-size: 27px;
    }


    .hero-content h2 {
        font-size: 14px;
    }


    .hero-services {
        font-size: 12px;
    }


    .hero-features {
        display: grid;

        grid-template-columns: 1fr 1fr;

        gap: 15px;
    }


    .feature-divider {
        display: none;
    }


    .hero-buttons {
        flex-direction: column;

        align-items: stretch;

        width: 100%;
    }


    .hero-call,
    .hero-whatsapp {
        width: 100%;
    }

}