/* Elementor Contact Widget Styles */

.contact-widget-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
    font-family: Arial, sans-serif;
}

.contact-widget-header {
    text-align: center;
    margin-bottom: 40px;
}

.contact-widget-heading {
    font-size: 28px;
    font-weight: bold;
    color: #8B4513;
    margin-bottom: 20px;
    line-height: 1.3;
}

.contact-widget-description {
    font-size: 16px;
    color: #666666;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.contact-locations {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.location-item {
    text-align: left;
}

.location-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.location-icon {
    color: #e74c3c;
    font-size: 18px;
    margin-right: 8px;
}

.location-title {
    color: #e74c3c;
    font-size: 14px;
    font-weight: bold;
    margin: 0;
    letter-spacing: 1px;
}

.location-details p {
    margin: 8px 0;
    color: #333333;
    line-height: 1.5;
}

.location-address {
    font-size: 14px;
}

.location-phone,
.location-email {
    font-size: 16px;
    font-weight: 500;
}

.social-media-links {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #f8f8f8;
    border: 1px solid #e0e0e0;
    border-radius: 50%;
    text-decoration: none;
    color: #666666;
    font-size: 16px;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: #e74c3c;
    color: white;
    border-color: #e74c3c;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-locations {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-widget-heading {
        font-size: 24px;
    }

    .contact-widget-container {
        padding: 30px 15px;
    }

    .social-media-links {
        gap: 12px;
    }

    .social-link {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .contact-widget-heading {
        font-size: 20px;
    }

    .contact-widget-description {
        font-size: 14px;
    }

    .location-title {
        font-size: 12px;
    }

    .location-details p {
        font-size: 14px;
    }
}