/* MAIN BUTTON */
.brochure-btn {
    padding: 12px 22px;
    cursor: pointer;

    background: linear-gradient(135deg, #4db3ff, #2a8fdc) !important;
    color: #ffffff !important;

    border-radius: 10px;
    border: none;

    font-size: 16px;
    font-weight: bold;

    transition: all 0.2s ease;
}

.brochure-btn:hover {
    background: linear-gradient(135deg, #6bc3ff, #3aa0ee) !important;
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.25);
}

.brochure-btn:active {
    transform: translateY(0);
    box-shadow: 0 3px 8px rgba(0,0,0,0.25);
}


/* POPUP */
.brochure-popup {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 9999;
}

.brochure-popup-content {
    background: #0f2a4d;
    color: #ffffff;

    max-width: 420px;
    margin: 10% auto;
    padding: 24px;
    border-radius: 8px;
    position: relative;
    box-sizing: border-box;

    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}


/* CLOSE BUTTON */
.brochure-close {
    position: absolute;
    right: 12px;
    top: 8px;
    border: none;
    background: none;
    font-size: 24px;
    cursor: pointer;
    color: #ffffff;
}


/* INPUT */
#brochure-form input[type="email"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 12px;
    box-sizing: border-box;

    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.2);
    color: #ffffff;
    border-radius: 6px;
}

#brochure-form input::placeholder {
    color: rgba(255,255,255,0.6);
}


/* FORM BUTTON */
#brochure-form button {
    padding: 10px 16px;
    cursor: pointer;

    background: linear-gradient(135deg, #4db3ff, #2a8fdc);
    color: #001c33;

    border-radius: 8px;
    border: none;
    font-weight: bold;

    transition: all 0.2s ease;
}

#brochure-form button:hover {
    background: linear-gradient(135deg, #6bc3ff, #3aa0ee);
}

.brochure-hp-wrap {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

/* MESSAGE */
#brochure-message {
    margin-top: 12px;
}