/* ════════════════════════ CONTACT SECTION ════════════════════════ */
.contact-section {
    position: relative;
    padding: 50px 0;
    overflow: hidden;
}

.contact-section::after {
    content: '';
    background: url('../images/contact-bg.png');
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 10%;
    left: 0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    opacity: 1;
}

.contact-section .container {
    position: relative;
    z-index: 2;
}

/* Heading */
.heading-content h1 {
    font-size: clamp(31px, 5.5vw, 40px);
    margin-bottom: 5px;
    color: var(--primary);
}

.heading-content p {
    color: var(--text-2);
    font-size: 22px;
}

/* Contact Box */
.contact-box {
    background-color: var(--white);
    padding: 40px;
    border-right: 2px solid var(--primary);
    border-radius: 30px;
    box-shadow: rgb(67 71 85 / 10%) 0px 0px 0.25em, rgba(90, 125, 188, 0.05) 0px 0.25em 1em;
}

.contact-box h5 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text);
}

/* Contact Info */
.contact-info h4,.contact-info h5
{
    font-size: 20px;
}
.contact-info p {
    color: var(--text-2);
}

.contact-info p a {
    color: var(--text-2);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info p a:hover {
    color: var(--primary);
}

.contact-info p span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    min-width: 30px;
    background-color: var(--primary);
    color: var(--white);
    border-radius: 50%;
    font-size: 14px;
    margin-right: 10px;
}

.contact-info p span i {
    background: none;
    width: auto;
    height: auto;
    line-height: normal;
}

/* Contact Inline */
.contact-inline .item:not(:last-child) {
    border-right: 1px solid var(--border-2);
    padding-right: 15px;
    margin-right: 15px;
}

/* Divider */
.custom-hr {
    border-top: 1px solid var(--border-2);
    opacity: 1;
}

/* Social Icons */
.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 8px;
    font-size: 28px;
    transition: transform 0.3s ease;
}

.social-icons .fb {
    color: #1877F2;
}

.social-icons .li {
    color: #0A66C2;
}

.social-icons .tw {
    color: #1DA1F2;
}

.social-icons a:hover {
    transform: translateY(-3px);
}

/* Contact Form */
.contact-form {
    display: grid;
    gap: 20px;
}

.contact-form .phone-input {
    padding: 14px 15px 14px 110px;
    font-size: 14px;
}

/* Map Section */
.location-area-map {
    padding: 0 0 45px;
}

/* ════════════════════════ RESPONSIVE ════════════════════════ */
@media (max-width: 991px) {
    .contact-section::after {
        opacity: 1;
        background-position: top;
    }

    .contact-section {
        margin-top: 62.4px;
        padding: 40px 0;
    }

    .heading-content {
        text-align: center;
    }

    .heading-content h1 {
        margin-bottom: 0;
    }

    .heading-content p {
        font-size: 16px;
    }

    .contact-box {
        margin-top: 16px;
        padding: 30px;
        border-radius: 15px;
    }
    .contact-info h4,.contact-info h5
    {
        font-size: 18px;
    }
    .location-area-map {
        padding-bottom: 40px;
    }

    .contact-inline .item:not(:last-child) {
        border-right: 0;
    }
}
