/* ==========================================
   CONTACT HERO
========================================== */

.contact-hero {
    background:
        linear-gradient(rgba(0,0,0,.65), rgba(0,0,0,.65)),
        url("../../img/why-us.png") center/cover no-repeat;
}

/* ==========================================
   CONTACT INFO
========================================== */

.contact-info-section {
    background: var(--white);
}

.contact-info-card {
    height: 100%;
    padding: 2rem;
    text-align: center;
    border-radius: 1rem;
    background: var(--background-color);
    transition: var(--transition);
}

.contact-info-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

.contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    background: rgba(198,40,40,.1);
    color: var(--primary-color);
    font-size: 1.5rem;
}

.contact-info-card h4 {
    margin-bottom: 1rem;
    color: var(--text-color);
    font-weight: 700;
}

.contact-info-card a,
.contact-info-card p {
    margin: 0;
    color: #6c757d;
    text-decoration: none;
    line-height: 1.7;
    overflow-wrap: break-word;
    word-break: break-word;
}

.contact-info-card a:hover {
    color: var(--primary-color);
}

/* ==========================================
   CONTACT FORM
========================================== */

.contact-form-section {
    background: var(--background-color);
}

.quote-form {
    padding: 2.5rem;
    border-radius: 1rem;
    background: var(--white);
    box-shadow: var(--shadow-md);
}

.quote-form label {
    display: block;
    margin-bottom: .5rem;
    color: var(--text-color);
    font-weight: 600;
}

.quote-form .form-control,
.quote-form .form-select {
    min-height: 48px;
    border-radius: .5rem;
    border: 1px solid #ddd;
}

.quote-form textarea {
    resize: none;
}

.quote-form .form-control:focus,
.quote-form .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 .2rem rgba(198,40,40,.15);
}

.contact-form-note {
    display: flex;
    gap: .75rem;
    align-items: flex-start;
    margin-top: 2rem;
    padding: 1.25rem;
    border-radius: .75rem;
    background: rgba(198,40,40,.08);
    color: var(--text-color);
}

.contact-form-note i {
    color: var(--primary-color);
    margin-top: .25rem;
}

/* ==========================================
   CONTACT MAP
========================================== */

.contact-map-section {
    background: var(--white);
}

.map-card {
    height: 100%;
    min-height: 420px;
    overflow: hidden;
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
}

.map-card iframe {
    width: 100%;
    height: 100%;
    min-height: 420px;
    border: 0;
}

.map-info-card {
    height: 100%;
    padding: 2.5rem;
    border-radius: 1rem;
    background: var(--background-color);
    box-shadow: var(--shadow-sm);
}

.map-info-card h2 {
    margin: 1rem 0;
    color: var(--text-color);
    font-weight: 700;
}

.map-info-card p {
    color: #6c757d;
    line-height: 1.8;
}

.map-detail {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    margin-top: 1.5rem;
    color: var(--text-color);
}

.map-detail i {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 50%;
    background: rgba(198,40,40,.1);
    color: var(--primary-color);
}

.map-detail a {
    color: var(--text-color);
    text-decoration: none;
}

.map-detail a:hover {
    color: var(--primary-color);
}


@media(max-width:991.98px){

    .map-card {
        min-height:350px;
    }

}

/* ==========================================
   CONTACT CTA
========================================== */

.contact-cta-section {
    padding: 100px 0;
    background: var(--background-color);
}

.contact-cta-wrapper {
    padding: 70px;
    border-radius: 1.5rem;
    background: linear-gradient(
        135deg,
        var(--primary-dark),
        var(--primary-color)
    );
    color: var(--white);
    box-shadow: var(--shadow-lg);
}

.contact-cta-wrapper h2 {
    margin: 1rem 0;
    font-size: clamp(2rem,4vw,3rem);
    font-weight: 700;
}

.contact-cta-wrapper p {
    margin: 0;
    max-width: 650px;
    color: rgba(255,255,255,.9);
    line-height: 1.8;
}

.contact-cta-wrapper .section-subtitle {
    background: rgba(255,255,255,.15);
    color: var(--white);
}

.contact-cta-wrapper .btn {
    color: var(--primary-color);
    font-weight: 700;
}


@media(max-width:991.98px){

    .contact-cta-wrapper {
        padding: 50px 30px;
        text-align:center;
    }

    .contact-cta-wrapper .btn {
        width:100%;
        margin-top:1.5rem;
    }

}