/* Keep navbar header dark always */
.header_main,
.header_main .navbar,
.header_main .container-fluid {
    background-color: #32080d !important;
}

/* Mobile dropdown menu - white background */
@media (max-width: 991px) {
    .navbar-collapse {
        background-color: #fff !important;
    }

    .navbar-collapse .nav-link {
        color: #000 !important;
        /* make text dark for visibility */
    }
}


.zen-form-container {
    background: transparent;
    color: #000;
    padding: 20px;
}

.row_body_hamburg {
    background-color: transparent;
}

.offcanvas-body {
    background-color: #cbb294;
}

.zen-form-container h2 {
    color: #fff;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 5px;
}

.zen-form-container p {
    font-size: 16px;
    color: #fff;
    margin-bottom: 25px;
}

.zen-form {
    max-width: 600px;
}

.zen-form-group {
    margin-bottom: 15px;
}

.zen-input,
.zen-select,
.zen-textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ffffff;
    background: #cbb294;
    font-size: 15px;
    outline: none;

}

.zen-textarea {
    height: 100px;
    resize: none;
}

.zen-phone-group {
    display: flex;
    gap: 10px;
}

.zen-phone-group .zen-select {
    flex: 1;
}

.zen-phone-group .zen-input {
    flex: 3;
}

.zen-button {
    background: #111;
    color: #fff;
    padding: 20px;
    border: none;
    width: 100%;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.zen-button:hover {
    background: #333;
}

.zen-form-group.zen-interest {
    margin-bottom: 25px;
}


/* Default: hide on desktop */
.custom-hamburger {
    display: none;
    border: none;
    background: transparent;
    padding: 0;
}

/* Show only on mobile */
@media (max-width: 991px) {
    .custom-hamburger {
        display: block;
    }

    .custom-hamburger img {
        width: 30px;
        /* adjust size */
        height: auto;
        margin-bottom: 20px;
    }
}


@media (max-width: 991px) {
    .navbar-collapse {
        height: auto !important;
        min-height: auto !important;
        max-height: none !important;
        /* same as header background */
    }

    .navbar-collapse .nav-link {
        color: #000 !important;
        background: #fff !important;
        margin-bottom: 1px;
    }

    /* Add a footer strip to match background color */
    .navbar-collapse::after {
        content: "";
        display: block;
        height: 1px;
        /* adjust */
        background-color: #fff;
        /* same as header */
    }
}

.navbar-collapse.collapse.show {
    height: auto !important;
}


/* Default (Desktop) */
.share-form {
    display: flex;
    align-items: stretch;
    border: 1px solid #eee;
}

.share-row {
    display: flex;
    flex: 1;
    align-items: center;
}

.share-option {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 15px 20px;
    font-size: 14px;
    border-right: 1px solid #ddd;
    background: transparent;
    min-width: auto;
}

.share-input {
    flex: 1;
}

.share-input input {
    width: 100%;
    border: none;
    background: transparent;
    padding: 15px;
    font-size: 14px;
    outline: none;
}

.share-button {
    background: #111;
    color: #fff;
    padding: 0 35px;
    border: none;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 120px;
}

.share-button:hover {
    background: #333;
}

/* Mobile Responsive */
@media (max-width: 767px) {
    .share-form {
        flex-direction: column;
        border: none;
        gap: 10px;
    }

    .share-row {
        display: flex;
        align-items: center;
        border: 1px solid #ddd;
        background: transparent;
        padding: 0 5px;
    }

    .share-option {
        border-right: none;
        padding: 10px;
        font-size: 14px;
        min-width: auto;
    }

    .share-input input {
        padding: 10px;
        font-size: 14px;
    }

    .share-button {
        width: 100%;
        padding: 14px;
        font-size: 15px;
        margin-top: 5px;
    }
}