/* Location Map Section - Homepage */

.location-map-section {
    background: #f8f9fa;
    padding: 80px 0;
    position: relative;
}

.location-map-wrapper {
    display: flex;
    align-items: stretch;
    background: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 50px rgba(0,0,0,0.1);
    min-height: 500px;
}

.location-info-box {
    flex: 0 0 40%;
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #ffffff;
}

.location-info-box h2 {
    font-size: 42px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
    line-height: 1.2;
}

.location-info-box .location-address {
    font-size: 16px;
    color: #666;
    margin-bottom: 10px;
    line-height: 1.6;
}

.location-info-box .location-phone {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 30px;
}

.location-info-box .location-phone a {
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.location-info-box .location-phone a:hover {
    color: #ffc326;
}

.location-info-box .location-description {
    font-size: 15px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 35px;
}

.location-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.location-buttons .theme_button {
    padding: 14px 30px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.location-buttons .theme_button.color1 {
    background: #ffc326;
    border: 2px solid #ffc326;
    color: #1a1a1a;
}

.location-buttons .theme_button.color1:hover {
    background: #ffb800;
    border-color: #ffb800;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255,195,38,0.4);
}

.location-buttons .theme_button.inverse {
    background: transparent;
    border: 2px solid #1a1a1a;
    color: #1a1a1a;
}

.location-buttons .theme_button.inverse:hover {
    background: #1a1a1a;
    color: #ffffff;
}

.location-map-box {
    flex: 0 0 60%;
    position: relative;
    min-height: 500px;
}

.location-map-box iframe {
    width: 100%;
    height: 100%;
    border: none;
    position: absolute;
    top: 0;
    left: 0;
}

.location-map-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 24px;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 991px) {
    .location-map-wrapper {
        flex-direction: column;
    }
    
    .location-info-box {
        flex: 0 0 100%;
        padding: 40px 30px;
    }
    
    .location-map-box {
        flex: 0 0 100%;
        min-height: 400px;
    }
    
    .location-info-box h2 {
        font-size: 36px;
    }
}

@media (max-width: 767px) {
    .location-map-section {
        padding: 60px 0;
    }
    
    .location-info-box {
        padding: 30px 20px;
    }
    
    .location-info-box h2 {
        font-size: 32px;
    }
    
    .location-buttons {
        flex-direction: column;
    }
    
    .location-buttons .theme_button {
        width: 100%;
        justify-content: center;
    }
    
    .location-map-box {
        min-height: 350px;
    }
}
