
/* #region Contact Header */

    .contact-header {
        position: relative;
        height: 60vh;
        width: 100%;
        border-radius: 0px 0px 5rem 5rem;
    }

    .contact-header img {
        position: relative;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: 1;
    }

    .contact-header::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        backdrop-filter: blur(2px) contrast(1.2) saturate(0.5) brightness(0.8);
        z-index: 2;
    }

    .contact-header .text-content {
        position: absolute;
        bottom: 20%;
        left: 55%;
        transform: translate(-50%, -50%);
        color: var(--def-txtinvert-clr);
        text-shadow: 0px 5px 10px #000;
        z-index: 3;
    }

    .contact-header h1 {
        font-size: 2rem;
    }

    @media (max-width: 450px) {

        .contact-header {
            border-radius: 0px 0px 2.5rem 2.5rem;
        }

        .contact-header h1 {
            font-size: 1.5rem;
        }

        .contact-header .text-content {
            text-align: center;
            width: calc(100% - 50px);
            bottom: 20%;
            left: 50%;
            transform: translate(-50%, -50%);
        }
    }



/* #endregion */

/* #region Contact Details */

    .contact-details-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
        padding: 20px;
        background: white;
        border-radius: 8px;
        margin: 25px 0;
    }

    .contact-details {
        flex: 1;
        min-width: 250px;
        margin: 10px;
    }

    .quicklinks {
        display: flex;
        gap: 10px;
        margin: 25px 0;
    }

    .link-item {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        overflow: hidden;
        cursor: pointer;
    }

    .link-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

/* #endregion */

/* #region Contact Form */

    .contact-form-container {
        max-width: 600px;
        margin: 5rem auto;
        background: white;
        padding: 20px;
        border-radius: 8px;
        box-shadow: 0 0 10px rgba(0,0,0,0.1);
    }

    .form-group {
        margin-bottom: 15px;
    }

    input, textarea {
        width: 100%;
        padding: 10px;
    }

    button.submit-button {
        color: white;
        padding: 10px 15px;
        cursor: pointer;
    }

    .map-container {
        padding: 1rem 5rem;
        width: 100%;
    }

    .map-container .text-content {
        align-items: first baseline;
        text-align: left;
    }

    .map-container iframe {
        height: 400px;
        border-radius: 25px;
    }

    img {
        max-width: 100%;
        height: auto;
        display: block;
    }

    @media (max-width: 768px) {
        .contact-details-container {
            flex-direction: column;
            align-items: center;
        }
        .contact-form-container {
            width: 90%;
        }
        .quicklinks img {
            width: 35px;
            height: 35px;
        }
        .contact-form-container {
            padding: 10px;
        }
        .map-container {
            padding: 1rem 1rem;
            width: 100%;
            gap: 2rem;
        }
    }

/* #endregion */

