


.contact-header {
    padding:3rem 0;
}
 .contact-header h2 {
    font-size: 2rem;
    color: #222;
    margin-bottom: 0.8rem;
    font-weight: 600;
}
.contact-header p {
    color: #666;
    font-size: 16px;
}
.contact-section {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    border-radius: 0.5rem;
}
.contact-section .contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.contact-section .contact-item {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    padding: 2rem 1.5rem;
    background-color: #f8f9fa;
    border-radius: 0.5rem;
    transition: background-color 0.3s ease;
}
.contact-section .contact-item:hover {
    background-color: #eef1f5;
}
.contact-section .contact-icon i{
    margin-right: 1rem;
    color: var(--comcolor);
    font-size: 2rem;
}
.contact-section .contact-label {
    font-weight: 500;
    color: #444;
    min-width: 5rem;
}
.contact-section .contact-value {
    color: #333;
    font-size: 1rem;
}
.contact-section .whatsapp-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-radius: 0.5rem;
}
.contact-section .whatsapp-label {
    font-weight: 500;
    background: #25d366;
    color: #ffffff;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
}
.contact-section .whatsapp-label i {
    font-size: 2rem;
}
.contact-section .whatsapp-label:hover {background: #48a064;}
.contact-section .qrcode-img {
    width: 10rem;
    border: 1px solid #eee;
    padding: 0.5rem;
    background: #fff;
    margin-bottom: 0.5rem;
}

@media (max-width: 1000px) {
    .contact-header {
        padding:3rem 0 0;
    }
    .contact-section {
        grid-template-columns: 1fr;
        padding: 2rem 0;
    }
    .contact-section .contact-item .contact-value {
        margin-top: 1rem;
        width: 100%;
    }
}


#map {height:50vh;padding:3rem 0;}