* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.contact-us-hero-section {
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('../images/bg-img.jpg');
    background-repeat: no-repeat;
    background-size: cover;
}

/* 
.contact-us-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary-color);

    opacity: 0.1;
    pointer-events: none;
} */

.contact-us-hero-section .page-details {
    color: white;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}

.page-details h1 {
    margin: 0;
    color: white;
    justify-self: center;
    font-size: 4rem;
}

/* Service Section */
.services-section {
    width: 80vw;
    display: flex;
    justify-content: center;
    margin: 0 auto;
    margin-top: -7rem;
    margin-bottom: 4rem;
    border-radius: 1rem;
}

.service-item {
    width: 33.33%;
    background-color: #e5d0c8;
    text-align: center;
    padding: 32px 24px;
}

.service-item:first-child {
    background-color: #eee;
}

.service-item:last-child {
    border-left: 2px solid white;
}

.service-item h2 {
    color: #9c7883;
    font-size: 44px;
    font-weight: 500;
}

.service-item i {
    font-size: 40px;
    color: #7a5676;
    margin-top: 1.6rem;
    margin-bottom: .6rem;
}

.service-item h3 {
    color: black;
    font-size: 1.6rem;
    font-weight: 400;
}

.service-item:first-child h3 {
    color: #7a5676;
    font-size: 1.6rem;
    font-weight: 400;
}

/* Contact Info Section */
.contact-info-section {
    width: 97%;
    display: flex;
    justify-content: center;
    gap: 6.4rem;
    margin: 4rem 0;
    align-items: center;
    flex-wrap: wrap;
    margin: 0px 20px;
}

.contact-info-item {
    width: 15%;
    text-align: center;
    background-color: #fff;
    padding: 32px 24px;
    border: 1px solid #7a5676;
    min-width: 225px;
}

.contact-info-item:hover {
    background-color: #fafafa;
}

.contact-info-item i {
    font-size: 30px;
    color: #7a5676;
    margin-bottom: 10px;
}

.contact-info-item h4 {
    font-size: 16px;
    color: #7a5676;
    margin: 5px 0;
}

.contact-info-item p {
    color: #666;
    font-size: 14px;
}

/* Map and Contact Form Section */
.map-contact-section {
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 4rem 0;
    flex-wrap: wrap;
}

.map {
    width: 40%;
    min-width: 600px;
}

.contact-form {
    width: 40%;
    background-color: #eee;
    padding: 20px;
    min-width: 600px;
}

.contact-form h3 {
    font-size: 18px;
    color: #7a5676;
    margin-bottom: 15px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ddd;
}

.contact-form input:placeholder-shown::after {
    content: " *";
    color: red;
    position: absolute;
    left: 8rem;
}

.contact-form textarea {
    resize: vertical;
}

.contact-form button {
    background-color: var(--primary-color);
    color: #fff;
    padding: 10px 15px;
    border: none;
    cursor: pointer;
}

.contact-form button:hover {
    background-color: var(--primary-hover-color);
}

/* Responsive Styles */
@media screen and (max-width: 1267px) {
    .contact-info-section {
        width: 97%;
        display: flex;
        justify-content: center;
        gap: 3rem;
        margin: 4rem 0;
        align-items: center;
        flex-wrap: wrap;
        margin: 0px 20px;
    }
}

/* Responsive Styles */
@media screen and (max-width: 678px) {
    .map {
        width: 90%;
        min-width: unset;
    }

    .contact-form {
        width: 90%;

        min-width: unset;
    }

    .map iframe {
        border: 0;
        width: 100%;
    }
}

/* Responsive Styles */
@media screen and (max-width: 403px) {
    .map {
        width: 90%;
        min-width: unset;
    }

    .contact-form {
        width: 90%;

        min-width: unset;
    }

    .map iframe {
        border: 0;
        width: 100%;
    }

    .map iframe {
        border: 0;
        width: 100%;
        height: 274px;
    }
}

.contact-info-section {
    margin: 60px 0px;
}

#contact-us-hero-section {
    animation: scaleDown 1.5s ease-in-out forwards;
}

#header {
    animation: fadeTop 1.5s ease-in-out forwards;
}

#footer {
    animation: fadeTop 1.5s ease-in-out forwards;
}

#rotate-silder-animation {
    animation: fadeDown 1.5s ease-in-out forwards;
}

.contact-info-section a {
    text-decoration: none;
}

#contact-info-section {
    animation: scaleDown 1.5s ease-in-out forwards;
}

#map-contact-section {
    animation: fadeLeft 1.5s ease-in-out forwards;
}

.contact-us-hero-section {

    height: 80vh;

}