﻿.contact-hero {
    background: url(~/Images/4935875.jpg) center center/cover no-repeat;
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-overlay {
   /* background: rgba(62, 80, 84, 0.90);*/
    width: 100vw;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-container {
    width: 80%;
    max-width: 1100px;
    margin: 10px auto;
    text-align: center;
    color: black;
}

.contact-title {
    font-size: 2.6rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: rgba(27, 58, 100, 0.95);
}

.contact-divider {
    width: 70px;
    height: 4px;
    background: #fff;
    margin: 0 auto 2.5rem auto;
}

.contact-form {
    margin-top: 2rem;
}

.contact-row {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.contact-input {
    flex: 1;
    padding: 1rem;
    background: rgb(128, 128, 128,0.2);
    border: none;
    border-radius: 4px;
    color: black;
    font-size: 1.1rem;
    font-weight: 500;
}

    .contact-input::placeholder {
        color: rgba(27, 58, 100, 0.95);
       opacity: 0.8;
    }

.contact-textarea {
    width: 100%;
    min-height: 100px;
    padding: 1rem;
    background: rgb(128, 128, 128,0.2);
    border: none;
    border-radius: 4px;
    color: black;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    resize: vertical;
    font-weight: 500;
}

    .contact-textarea::placeholder {
        color: rgba(27, 58, 100, 0.95);
        opacity: 0.8;
    }

.contact-checkbox-row {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    color: black;
    font-size: 1rem;
}

.contact-checkbox {
    margin-right: 0.5rem;
}

.contact-checkbox-label {
    font-weight: 400;
}

.contact-btn {
    margin: 0 auto;
    display: block;
    font-size: 1.3rem;
    font-weight: 600;
    padding: 10px 48px; /*
    border-radius: 999px;
    border: 1px solid black;*/
    background: rgb(128, 128, 128,0.2);
    color: rgba(27, 58, 100, 0.95);
    transition: background 0.2s, color 0.2s;
}

    .contact-btn:hover {
        background: rgba(27, 58, 100, 0.95);
        color: #ffff;
        border-color: rgba(27, 58, 100, 0.95);
    }

@media (max-width: 991.98px) {
    .contact-title {
        font-size: 2rem;
    }

    .contact-row {
        flex-direction: column;
        gap: 1rem;
    }
}
