﻿/* body {
    background-color: #FAFAFA;
} */

.contact-section {
    padding: 20px 0;
}

.contact-info-card {
    background: #fff;
    border-radius: 8px;
    padding: 40px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.contact-form-card {
    background: #fff;
    border-radius: 8px;
    padding: 40px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-section .section-title {
    color: #BF874A;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
    text-align: right !important;
}

.contact-section .section-title::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background: #C89C46;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    padding: 20px;
    border-radius: 10px;
    transition: all 0.3s ease;
    background: rgba(191, 135, 74, 0.05);
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(191, 135, 74, 0.2);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: #BF874A;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 20px;
}

.contact-icon i {
    color: #fff;
    font-size: 20px;
}
.contact-icon em {
    color: #fff;
    font-size: 20px;
}

.contact-info {
    flex: 1;
}

.contact-info h4 {
    color: #000;
    font-size: 18px;
    margin-bottom: 5px;
}

.contact-info p,
.contact-info a {
    color: #000;
    margin: 0;
    font-size: 16px;
    transition: color 0.3s ease;
}
.contact-info a{
    font-family: "Poppins", sans-serif !important;
}
.contact-info a:hover {
    color: #000;
}

.form-control {
    text-align: right;
}


@media (max-width: 768px) {
    .contact-section {
        padding: 40px 0;
    }

    .contact-info-card,
    .contact-form-card {
        padding: 20px;
        margin-bottom: 30px;
    }
}

/*************** Enquiry Form *********************/
.enquiry-box-wrapper {
    width: 100%;
    height: auto;
    padding: 40px;
    margin: 0px auto;
    /* border: 1px solid #BF874A;  */
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.enquiry-box-title h4 {
    text-transform: uppercase;
    text-align: center;
    padding: 10px 0 15px 0;
    text-align: center;
}

.enquiry-grid-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.enquiry-info-wrapper img {
    border-radius: 8px;
    box-shadow: 0 2px 7px rgb(0 0 0 / 30%);
}

@media(max-width: 768px) {
    .enquiry-grid-wrapper {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 30px;
    }
}

/*************** End Enquiry Form *********************/