body {
    margin: 0;
    font-family: Arial, sans-serif;
    min-height: 100vh;

    background-image: url("Assets/index_bg.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;

    position: relative;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.62);
    z-index: 0;
}

.contact-page {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;

    padding: 95px 20px 20px;

    position: relative;
    z-index: 1;
}

.contact-card {
    width: 100%;
    max-width: 560px;

    background: rgba(255, 255, 255, 0.97);

    padding: 28px 32px;
    border-radius: 14px;

    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.28);
}

.contact-card h1 {
    text-align: center;
    margin-bottom: 8px;

    color: #075136;
    font-size: 1.85rem;
    font-weight: 700;
}

.contact-text {
    text-align: center;
    color: #555;

    font-size: 0.9rem;
    line-height: 1.4;

    max-width: 460px;
    margin: 0 auto 18px;
}

.form-label {
    color: #075136;
    font-weight: 600;
    margin-bottom: 5px;
    font-size: 0.9rem;
}

.form-control {
    min-height: 40px;
    border-radius: 7px;
    border: 1px solid #ced4da;
    font-size: 0.9rem;
}

.form-control:focus {
    border-color: #075136;
    box-shadow: 0 0 0 0.18rem rgba(7, 81, 54, 0.18);
}

textarea.form-control {
    resize: none;
    min-height: 95px;
}

.contact-btn {
    width: 100%;

    background: #075136;
    color: white;

    border: none;

    padding: 11px;

    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    border-radius: 7px;

    transition: 0.2s;
}

.contact-btn:hover {
    background: #06452d;
}

@media (max-width: 576px) {
    body {
        background-attachment: scroll;
    }

    .contact-page {
        align-items: flex-start;
        padding: 95px 15px 18px;
    }

    .contact-card {
        max-width: 100%;
        padding: 24px 20px;
        border-radius: 10px;
    }

    .contact-card h1 {
        font-size: 1.6rem;
    }

    .contact-text {
        font-size: 0.85rem;
        margin-bottom: 15px;
    }

    .form-label,
    .form-control,
    .contact-btn {
        font-size: 0.88rem;
    }

    textarea.form-control {
        min-height: 85px;
    }
}

@media (max-width: 380px) {
    .contact-page {
        padding-left: 10px;
        padding-right: 10px;
    }

    .contact-card {
        padding: 22px 16px;
    }

    .contact-card h1 {
        font-size: 1.45rem;
    }

    textarea.form-control {
        min-height: 75px;
    }
}