/* File: bali-contact.css */

/* Wrapper */
.bl-contact-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    font-family: inherit;
    color: #333;
    padding: 0 15px;
}

/* 1. Hero Section (WhatsApp) */
.bl-contact-hero {
    text-align: center;
    background: #f9f9f9;
    padding: 40px 20px;
    border-radius: 12px;
    margin-bottom: 40px;
    border: 1px solid #eee;
}

.bl-contact-hero h3 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 24px;
    font-weight: 700;
}

.bl-whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #25D366;
    color: white !important;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 18px;
    text-decoration: none;
    margin: 20px 0 10px 0;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.bl-whatsapp-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.bl-small-note {
    font-size: 13px;
    color: #666;
    margin-top: 5px;
}

/* 2. Grid Layout */
.bl-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

/* Info Card */
.bl-info-card {
    padding: 20px;
}

.bl-info-card h4 {
    font-size: 18px;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
    margin-bottom: 20px;
    color: #222;
}

.bl-info-item {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.6;
}

.bl-info-item a {
    color: #0073aa;
    text-decoration: none;
    font-weight: 500;
}

.bl-highlight {
    color: #25D366;
    font-weight: 500;
}

.bl-divider {
    border: 0;
    border-top: 1px solid #eee;
    margin: 30px 0;
}

.bl-desc {
    font-size: 14px;
    color: #777;
    font-style: italic;
}

/* Map Card */
.bl-map-card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    height: 100%;
}

.bl-map-card iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 350px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .bl-contact-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .bl-map-card {
        order: -1; 
        min-height: 300px;
    }
}