/* --------------------- CONTACT SECTION --------------------- */
.contact-section {
    position: relative;
    overflow: hidden;
    background-color: #211F05;
    top: 15px;
}

/* Background vector */
.contact-bg-vector {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background: url('assets/svg/contact-us-vector.svg') no-repeat left center;
    background-size: contain;
    z-index: 1;
}

/* Container above vector */
.contact-container {
    position: relative;
    z-index: 2;
}

/* Headings */
.contact-title {
    font-family: 'Roboto Slab', serif;
    font-size: 40px;
    margin-top: 0;
    margin-bottom: 30px;
    color: #fff;
}

/* --------------------- CONTACT INFO --------------------- */
.contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-info a {
    display: flex;
    align-items: flex-start;
    /* Icon aligns to top of multi-line text */
    gap: 10px;
    line-height: 1.5;
    font-size: 16px;
    color: #fff;
    margin-bottom: 10px;
}

.contact-info a img {
    flex-shrink: 0;
    /* Prevent icon shrinking */
    width: 20px;
    height: auto;
}

/* --------------------- FORM WRAPPER --------------------- */
.contact-form-wrapper {
    background-color: rgba(33, 31, 5, 0.95);
    border-radius: 12px;
}

/* Form labels */
.contact-form-wrapper label {
    display: block;
    color: #fff;
    font-weight: 500;
    margin-bottom: 5px;
    font-size: 14px;
}

/* Inputs and textarea */
.contact-form-wrapper .form-control {
    font-size: 14px;
    border-radius: 6px;
    border: 1px solid #BDBABA24;
    color: white;
    background-color: #211F05;
    padding: 10px 15px;
    width: 100%;
    box-sizing: border-box;
}

.contact-form-wrapper .form-control::placeholder {
    color: #FFED48;
    opacity: 1;
}

/* Send button */
.btn-send {
    background-color: #FFED48;
    color: #211F05;
    font-weight: bold;
    border: none;
    padding: 12px 20px;
    font-size: 16px;
    border-radius: 6px;
    transition: all 0.3s ease;
    border-radius: 40px;
}

.btn-send:hover {
    opacity: 0.9;
}

/* --------------------- RESPONSIVE --------------------- */
@media (max-width: 992px) {
    .contact-bg-vector {
        width: 100%;
        opacity: 0.1;
        /* subtle background on smaller screens */
        background-position: center;
        background-size: contain;
    }

    .contact-form-wrapper {
        padding: 2rem 1.5rem;
        overflow: hidden;
    }

    .contact-title {
        font-size: 32px;
    }
}

@media (max-width: 576px) {
    .contact-title {
        font-size: 28px;
    }

    .contact-info a {
        font-size: 14px;
        gap: 8px;
    }

    .contact-form-wrapper label {
        font-size: 13px;
    }

    .contact-form-wrapper .form-control {
        font-size: 13px;
    }
}