/* CONTACT CONTAINER */
.contact-container {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 60px 0;
}

.contact-box {
    width: 50vw;
    border: 1px solid #d1d1d1;
    border-radius: 14px;
    padding: 40px 50px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    background: white;
}

/* HEADER SECTION */
.contact-title-wrapper {
    text-align: center;
}


.contact-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 12px;
}

.contact-description {
    font-size: 18px;
    color: #555;
    max-width: 600px;
    margin: 0 auto;
}

.success-popup {
    position: fixed;
    top: 50px;
    opacity: 0;
    left: 50%;
    transform: translateX(-50%);
    background: #2ecc71;
    color: white;
    padding: 25px 25px;
    border-radius: 6px;
    font-size: 1rem;
    pointer-events: none;
    transition: opacity 0.5s ease;
    z-index: 9999;
}
.success-popup.show {
    opacity: .7;
}

/* FORM */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* INPUTS */
.contact-input,
.contact-textarea {
    width: 100%;
    padding: 14px 16px;
    background: #f2f2f2;
    border: 1px solid #ccc;
    border-radius: 10px;
    font-size: 16px;
    transition: border 0.2s ease;
    font-family: inherit;
}

.contact-input:focus,
.contact-textarea:focus {
    outline: none;
    border: 1px solid #888;
}

/* SUBMIT BUTTON */
.contact-submit-btn {
    padding: 15px;
    background: black;
    color: white;
    font-weight: 600;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-size: 17px;
    transition: opacity 0.2s ease;
}

.contact-submit-btn:hover {
    opacity: 0.85;
}