/* =========================================================
   CONTACT PAGE
========================================================= */

/* =========================================================
   CONTACT HERO — DARK GREEN EV THEME
========================================================= */

.contact-hero {

    position: relative;

    padding: 60px 0;

    background:
        radial-gradient(
            circle at 80% 40%,
            rgba(32,189,103,0.16),
            transparent 32%
        ),
        radial-gradient(
            circle at 10% 90%,
            rgba(69,245,143,0.06),
            transparent 28%
        ),
        #07130e;

    overflow: hidden;

    color: #fff;

}


/* FUTURISTIC GRID */

.contact-hero::before {

    content: "";

    position: absolute;

    inset: 0;

    width: auto;

    height: auto;

    border-radius: 0;

    background-image:
        linear-gradient(
            rgba(255,255,255,0.025) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,0.025) 1px,
            transparent 1px
        );

    background-size: 55px 55px;

    mask-image:
        linear-gradient(
            to bottom,
            black,
            transparent 95%
        );

    pointer-events: none;

}


/* AMBIENT GLOW */

.contact-hero::after {

    content: "";

    position: absolute;

    width: 450px;

    height: 450px;

    border-radius: 50%;

    background: rgba(32,189,103,0.10);

    filter: blur(90px);

    left: -180px;

    bottom: -220px;

    pointer-events: none;

}


.contact-hero .container {

    position: relative;

    z-index: 2;

}


/* =========================================================
   HERO LABEL
========================================================= */

.contact-hero-label {

    display: inline-flex;

    align-items: center;

    gap: 9px;

    padding: 7px 14px;

    border-radius: 50px;

    background: rgba(69,245,143,0.06);

    border: 1px solid rgba(69,245,143,0.15);

    color: #45f58f;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 2px;

    margin-bottom: 22px;

}


.contact-hero-label i {

    color: #45f58f;

    filter:
        drop-shadow(
            0 0 7px rgba(69,245,143,0.7)
        );

}


/* =========================================================
   HEADING
========================================================= */

.contact-hero h1 {

    max-width: 750px;

    font-size: clamp(42px, 5vw, 65px);

    line-height: 1.06;

    font-weight: 750;

    letter-spacing: -2.5px;

    margin-bottom: 25px;

    color: #ffffff;

}


.contact-hero h1 span {

    background:
        linear-gradient(
            90deg,
            #45f58f,
            #20bd67
        );

    -webkit-background-clip: text;

    -webkit-text-fill-color: transparent;

}


/* =========================================================
   DESCRIPTION
========================================================= */

.contact-hero > .container p {

    max-width: 650px;

    color: #8c9d94;

    font-size: 16px;

    line-height: 1.85;

}


/* =========================================================
   HERO POINTS
========================================================= */

.contact-hero-points {

    display: flex;

    flex-wrap: wrap;

    gap: 20px;

    margin-top: 30px;

}


.contact-hero-points div {

    display: flex;

    align-items: center;

    gap: 8px;

    font-size: 12px;

    font-weight: 600;

    color: #b4c2bb;

}


.contact-hero-points i {

    color: #45f58f;

    font-size: 14px;

}


/* =========================================================
   HERO CARD
========================================================= */

.contact-hero-card {

    position: relative;

    padding: 35px;

    border-radius: 20px;

    background:
        linear-gradient(
            145deg,
            rgba(18,43,31,0.90),
            rgba(7,19,14,0.82)
        );

    border: 1px solid rgba(69,245,143,0.14);

    backdrop-filter: blur(15px);

    box-shadow:
        0 25px 60px rgba(0,0,0,0.35);

    overflow: hidden;

}


/* Card subtle glow */

.contact-hero-card::before {

    content: "";

    position: absolute;

    width: 160px;

    height: 160px;

    border-radius: 50%;

    background: rgba(69,245,143,0.08);

    filter: blur(45px);

    top: -70px;

    right: -50px;

    pointer-events: none;

}


/* =========================================================
   CARD ICON
========================================================= */

.contact-hero-card-icon {

    width: 55px;

    height: 55px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 13px;

    background:
        rgba(69,245,143,0.08);

    border: 1px solid rgba(69,245,143,0.12);

    color: #45f58f;

    font-size: 24px;

    margin-bottom: 25px;

    box-shadow:
        0 0 25px rgba(69,245,143,0.06);

}


/* =========================================================
   CARD LABEL
========================================================= */

.contact-hero-card > span {

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 2px;

    color: #45f58f;

}


/* =========================================================
   CARD HEADING
========================================================= */

.contact-hero-card h3 {

    font-size: 30px;

    line-height: 1.25;

    margin: 10px 0 15px;

    color: #ffffff;

    letter-spacing: -0.5px;

}


/* =========================================================
   CARD DESCRIPTION
========================================================= */

.contact-hero-card p {

    color: #81938a;

    line-height: 1.75;

}


/* =========================================================
   CARD BUTTON
========================================================= */

.contact-hero-card a {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    margin-top: 15px;

    padding: 12px 20px;

    border-radius: 8px;

    background: #45f58f;

    color: #07130e;

    text-decoration: none;

    font-weight: 700;

    font-size: 13px;

    transition: .3s ease;

}


.contact-hero-card a:hover {

    color: #07130e;

    transform: translateY(-3px);

    box-shadow:
        0 10px 30px rgba(69,245,143,0.18);

}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 991px) {

    .contact-hero {

        padding: 70px 0 80px;

    }

    .contact-hero h1 {

        text-align: center;

        margin-left: auto;

        margin-right: auto;

    }

    .contact-hero-label {

        display: flex;

        width: fit-content;

        margin-left: auto;

        margin-right: auto;

    }

    .contact-hero > .container p {

        text-align: center;

        margin-left: auto;

        margin-right: auto;

    }

    .contact-hero-points {

        justify-content: center;

    }

    .contact-hero-card {

        margin-top: 20px;

    }

}


@media (max-width: 576px) {

    .contact-hero {

        padding: 55px 0 60px;

    }

    .contact-hero h1 {

        font-size: 42px;

        letter-spacing: -1.5px;

    }

    .contact-hero > .container p {

        font-size: 14px;

    }

    .contact-hero-points {

        gap: 12px;

    }

    .contact-hero-points div {

        font-size: 11px;

    }

    .contact-hero-card {

        padding: 25px;

        border-radius: 16px;

    }

    .contact-hero-card h3 {

        font-size: 26px;

    }

}

/* =========================================================================================== */

/* =========================================================
   CONTACT INFORMATION
========================================================= */

/* ================================
   CONTACT INFORMATION SECTION
================================ */

.contact-info-section {
    padding: 60px 30px;
    background: #fff;
}


/* ================================
   CONTACT CARD
================================ */

.contact-info-card {
    height: 100%;
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 25px;

    border: 1px solid #e8e8e8;
    border-radius: 14px;
    background: #fff;

    transition: all 0.3s ease;
    box-sizing: border-box;

    /* Prevent overflow */
    overflow: hidden;
}


/* Text content container */
.contact-info-card > div:last-child {
    flex: 1;
    min-width: 0;
}


/* ================================
   HOVER EFFECT
================================ */

.contact-info-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 128, 64, 0.25);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.07);
}


/* ================================
   ICON
================================ */

.contact-info-icon {
    flex: 0 0 52px;
    width: 52px;
    height: 52px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 12px;
    background: rgba(0, 128, 64, 0.08);
    color: var(--color-brand-light);

    font-size: 20px;
}


/* ================================
   SMALL LABEL
================================ */

.contact-info-card span {
    display: block;

    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.2px;

    color: var(--color-brand-light);

    line-height: 1.3;
}


/* ================================
   HEADING
================================ */

.contact-info-card h4 {
    margin: 5px 0;

    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;

    color: #222;

    /* Long text/email wrap */
    overflow-wrap: anywhere;
    word-break: break-word;
    white-space: normal;
}


/* ================================
   PARAGRAPH
================================ */

.contact-info-card p {
    margin: 0;

    font-size: 12px;
    line-height: 1.6;

    color: #777;

    /* Long address/text wrap */
    overflow-wrap: anywhere;
    word-break: break-word;
    white-space: normal;
}


/* ================================
   TABLET RESPONSIVE
================================ */

@media (max-width: 991px) {

    .contact-info-section {
        padding: 50px 25px;
    }

    .contact-info-card {
        padding: 22px;
        gap: 16px;
    }

    .contact-info-card h4 {
        font-size: 15px;
    }

    .contact-info-card p {
        font-size: 11px;
    }
}


/* ================================
   MOBILE RESPONSIVE
================================ */

@media (max-width: 576px) {

    .contact-info-section {
        padding: 40px 20px;
    }

    .contact-info-card {
        min-height: auto;
        padding: 18px;
        gap: 14px;

        align-items: center;
    }

    .contact-info-icon {
        flex: 0 0 42px;
        width: 42px;
        height: 42px;

        border-radius: 10px;
        font-size: 16px;
    }

    .contact-info-card span {
        font-size: 8px;
        letter-spacing: 1px;
    }

    .contact-info-card h4 {
        margin: 4px 0;

        font-size: 13px;
        line-height: 1.4;
    }

    .contact-info-card p {
        font-size: 10px;
        line-height: 1.5;
    }
}


/* ================================
   SMALL MOBILE
================================ */

@media (max-width: 375px) {

    .contact-info-section {
        padding: 35px 15px;
    }

    .contact-info-card {
        padding: 15px;
        gap: 12px;
    }

    .contact-info-icon {
        flex: 0 0 38px;
        width: 38px;
        height: 38px;

        font-size: 14px;
    }

    .contact-info-card h4 {
        font-size: 12px;
    }

    .contact-info-card p {
        font-size: 9px;
    }
}


/* ===================================================================================== */
/* =========================================================
   ENQUIRY SECTION
========================================================= */

.enquiry-section {
    position: relative;

    padding: 60px 0;

    background:
        linear-gradient(
            135deg,
            #061a13 0%,
            #08251b 45%,
            #04150f 100%
        );

    overflow: hidden;
}


/* =========================================================
   LEFT CONTENT
========================================================= */

.enquiry-content {
    position: relative;
    z-index: 2;
}


.section-mini-label {
    display: inline-block;

    color: #4fd18b;

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 2px;

    margin-bottom: 15px;
}


.enquiry-content h2 {
    font-size: clamp(34px, 4vw, 52px);

    line-height: 1.12;

    font-weight: 800;

    color: #ffffff;

    margin-bottom: 20px;
}


.enquiry-content h2 span {
    color: #4fd18b;
}


.enquiry-content > p {
    max-width: 500px;

    color: rgba(255, 255, 255, 0.68);

    line-height: 1.8;

    font-size: 14px;

    margin-bottom: 0;
}


/* =========================================================
   PRODUCT LIST
========================================================= */

.enquiry-products {
    margin-top: 30px;
}


.enquiry-product {
    display: flex;

    align-items: center;

    gap: 14px;

    padding: 15px 0;

    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}


.enquiry-product-icon {
    flex: 0 0 43px;

    width: 43px;
    height: 43px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 10px;

    background: rgba(255, 255, 255, 0.08);

    color: #4fd18b;

    font-size: 17px;

    border: 1px solid rgba(255, 255, 255, 0.08);
}


.enquiry-product strong {
    display: block;

    font-size: 14px;

    color: #ffffff;

    font-weight: 700;
}


.enquiry-product small {
    display: block;

    color: rgba(255, 255, 255, 0.48);

    font-size: 11px;

    margin-top: 3px;

    line-height: 1.5;
}


/* =========================================================
   TRUST BOX
========================================================= */

.enquiry-trust {
    display: flex;

    align-items: center;

    gap: 13px;

    margin-top: 30px;

    padding: 18px;

    border-radius: 12px;

    background: rgba(255, 255, 255, 0.06);

    border: 1px solid rgba(255, 255, 255, 0.10);

    backdrop-filter: blur(5px);
}


.enquiry-trust > i {
    flex: 0 0 auto;

    font-size: 25px;

    color: #4fd18b;
}


.enquiry-trust strong {
    display: block;

    font-size: 13px;

    color: #ffffff;
}


.enquiry-trust p {
    margin: 3px 0 0;

    font-size: 11px;

    color: rgba(255, 255, 255, 0.50);

    line-height: 1.5;
}


/* =========================================================
   ENQUIRY FORM CARD
========================================================= */

.enquiry-form-card {
    position: relative;

    padding: 38px;

    background: #ffffff;

    border-radius: 20px;

    border: 1px solid rgba(255, 255, 255, 0.15);

    box-shadow:
        0 25px 70px rgba(0, 0, 0, 0.30);
}


/* =========================================================
   FORM HEADER
========================================================= */

.form-card-header {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    padding-bottom: 25px;

    margin-bottom: 28px;

    border-bottom: 1px solid #eeeeee;
}


.form-card-header span {
    display: block;

    font-size: 10px;

    font-weight: 800;

    color: var(--color-brand-light);

    letter-spacing: 1.5px;
}


.form-card-header h3 {
    margin: 5px 0 0;

    font-size: 25px;

    font-weight: 750;

    color: #111;

    line-height: 1.3;
}


.form-header-icon {
    flex: 0 0 48px;

    width: 48px;
    height: 48px;

    border-radius: 12px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: rgba(0, 128, 64, 0.08);

    color: var(--color-brand-light);

    font-size: 18px;
}


/* =========================================================
   FORM LABEL
========================================================= */

.enquiry-form label {
    display: block;

    margin-bottom: 8px;

    font-size: 12px;

    font-weight: 700;

    color: #333;
}


.enquiry-form label span {
    color: #e53935;
}


/* =========================================================
   INPUT WRAPPER
========================================================= */

.input-wrapper {
    position: relative;

    width: 100%;
}


.input-wrapper > i {
    position: absolute;

    left: 15px;
    top: 50%;

    transform: translateY(-50%);

    color: #999;

    font-size: 14px;

    z-index: 2;

    pointer-events: none;
}


/* =========================================================
   INPUT + SELECT
========================================================= */

.input-wrapper .form-control,
.input-wrapper .form-select {

    width: 100%;

    min-height: 50px;

    padding: 0 15px 0 43px;

    border: 1px solid #e1e4e2;

    border-radius: 9px;

    font-size: 13px;

    color: #333;

    background-color: #fff;

    box-shadow: none;

    transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}


.input-wrapper .form-control::placeholder {
    color: #aaa;
}


.input-wrapper .form-control:focus,
.input-wrapper .form-select:focus {

    border-color: var(--color-brand-light);

    box-shadow:
        0 0 0 3px rgba(0, 128, 64, 0.08);

    outline: none;
}


/* =========================================================
   SELECT
========================================================= */

.select-wrapper > i {
    z-index: 3;
}


.select-wrapper .form-select {
    cursor: pointer;

    padding-right: 35px;
}


/* =========================================================
   TEXTAREA
========================================================= */

.textarea-wrapper {
    position: relative;
}


.textarea-wrapper > i {
    top: 10px;

    transform: none;
}


.textarea-wrapper textarea {

    min-height: 140px;

    padding-top: 10px !important;

    resize: vertical;

    line-height: 1.6;
}


/* =========================================================
   CHECKBOX
========================================================= */

.enquiry-check {

    display: flex;

    align-items: center;

    gap: 7px;
}


.enquiry-check .form-check-input {

    margin-top: 0;

    cursor: pointer;

    width: 15px;
    height: 15px;
}


.enquiry-check .form-check-input:checked {

    background-color: var(--color-brand-light);

    border-color: var(--color-brand-light);
}


.enquiry-check label {

    margin: 0;

    font-size: 11px;

    color: #777;

    font-weight: 500;

    line-height: 1.5;

    cursor: pointer;
}


/* =========================================================
   SUBMIT BUTTON
========================================================= */

.enquiry-submit-btn {

    width: 100%;

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding: 15px 20px;

    border: none;

    border-radius: 9px;

    background: var(--color-brand);

    color: #fff;

    font-size: 14px;

    font-weight: 700;

    cursor: pointer;

    transition: all 0.3s ease;
}


.enquiry-submit-btn i {

    font-size: 17px;

    transition: transform 0.3s ease;
}


.enquiry-submit-btn:hover {

    background: var(--color-brand-light);

    transform: translateY(-2px);

    box-shadow:
        0 10px 25px rgba(0, 128, 64, 0.25);
}


.enquiry-submit-btn:hover i {

    transform: translateX(5px);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .enquiry-section {
        padding: 80px 0;
    }

    .enquiry-content {
        margin-bottom: 10px;
    }

    .enquiry-form-card {
        padding: 30px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .enquiry-section {
        padding: 60px 0;
    }


    .enquiry-content h2 {
        font-size: 36px;
    }


    .enquiry-content > p {
        font-size: 13px;
    }


    .enquiry-products {
        margin-top: 25px;
    }


    .enquiry-product {
        padding: 13px 0;
    }


    .enquiry-form-card {
        padding: 24px 20px;

        border-radius: 16px;
    }


    .form-card-header {
        padding-bottom: 20px;

        margin-bottom: 22px;
    }


    .form-card-header h3 {
        font-size: 21px;
    }


    .form-header-icon {
        width: 42px;
        height: 42px;

        flex-basis: 42px;

        font-size: 16px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 575px) {

    .enquiry-section {
        padding: 50px 0;
    }


    .enquiry-form-card {
        padding: 22px 16px;
    }


    .enquiry-content h2 {
        font-size: 32px;
    }


    .enquiry-content > p {
        line-height: 1.7;
    }


    .enquiry-product-icon {
        flex: 0 0 40px;

        width: 40px;
        height: 40px;

        font-size: 15px;
    }


    .enquiry-product strong {
        font-size: 13px;
    }


    .enquiry-product small {
        font-size: 10px;
    }


    .enquiry-trust {
        padding: 15px;

        gap: 10px;
    }


    .enquiry-trust > i {
        font-size: 22px;
    }


    .enquiry-trust strong {
        font-size: 12px;
    }


    .enquiry-trust p {
        font-size: 10px;
    }


    /* Keep every input inside card */

    .input-wrapper,
    .input-wrapper .form-control,
    .input-wrapper .form-select {
        max-width: 100%;
        min-width: 0;
    }

}

/* =========================================
   FORM VALIDATION
========================================= */

.enquiry-form .form-control.input-error,
.enquiry-form .form-select.input-error {
    border: 1.5px solid #dc3545 !important;
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.08) !important;
}

.enquiry-form .input-wrapper.input-error-wrapper {
    border-radius: 8px;
}

.enquiry-form .input-wrapper.input-error-wrapper i {
    color: #dc3545;
}

/* Focus after error */
.enquiry-form .form-control.input-error:focus,
.enquiry-form .form-select.input-error:focus {
    border-color: #dc3545 !important;
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.12) !important;
}


/* =========================================
   CHECKBOX ERROR
========================================= */

.enquiry-check .form-check-input.input-error {
    border-color: #dc3545 !important;
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.10) !important;
}


/* =========================================
   FORM MESSAGE
========================================= */

.form-message {
    display: none;
    margin-top: 15px;
    padding: 12px 15px;
    border-radius: 8px;
    font-size: 14px;
    line-height: 1.5;
}

.form-message.success {
    display: block;
    color: #146c43;
    background: #d1e7dd;
    border: 1px solid #a3cfbb;
}

.form-message.error {
    display: block;
    color: #b02a37;
    background: #f8d7da;
    border: 1px solid #f1aeb5;
}


/* =========================================
   SUBMIT BUTTON LOADING
========================================= */

.enquiry-submit-btn.loading {
    opacity: 0.7;
    pointer-events: none;
}

.enquiry-submit-btn.loading span {
    opacity: 0.8;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .form-message {
        font-size: 13px;
    }

}

/* ============================================================================================ */

/* =========================================================
   BENEFITS
========================================================= */

.contact-benefits-section {
    padding: 100px 0;
    background: #fff;
}


.contact-benefits-section > .container > .text-center h2 {
    font-size: clamp(32px, 4vw, 45px);
    font-weight: 800;
    margin-bottom: 0;
}


.contact-benefit-card {
    position: relative;
    height: 100%;
    padding: 35px 30px;
    border: 1px solid #e9e9e9;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}


.contact-benefit-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.07);
}


.benefit-number {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 55px;
    line-height: 1;
    font-weight: 900;
    color: rgba(0,128,64,0.06);
}


.benefit-icon {
    width: 55px;
    height: 55px;
    border-radius: 12px;
    background: rgba(0,128,64,0.08);
    color: var(--color-brand-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 22px;
}


.contact-benefit-card h4 {
    font-size: 19px;
    font-weight: 750;
    color: #222;
}


.contact-benefit-card p {
    margin: 0;
    color: #777;
    font-size: 14px;
    line-height: 1.75;
}