@charset "UTF-8";

/* ===================================
   Location Section
=================================== */
.location {
    padding: 80px 20px;
    background: #fff;
}

.location__container {
    max-width: 1200px;
    margin: 0 auto;
}

.location__map {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 50px;
}

.location__map iframe {
    display: block;
}

/* Info */
.location-info {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.location-info__item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.location-info__item:hover {
    background: #fff;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}

.location-info__icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0066cc;
    border-radius: 50%;
    flex-shrink: 0;
}

.location-info__icon i {
    font-size: 20px;
    color: #fff;
}

.location-info__content h3 {
    font-size: 14px;
    font-weight: 600;
    color: #888;
    margin-bottom: 5px;
}

.location-info__content p {
    font-size: 15px;
    font-weight: 600;
    color: #1a1a1a;
    word-break: keep-all;
}

/* ===================================
   Responsive
=================================== */
@media (max-width: 1024px) {
    .location-info {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .location {
        padding: 60px 20px;
    }
    
    .location__map iframe {
        height: 350px;
    }
    
    .location-info {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .location-info__item {
        padding: 20px;
    }
}