/* Locations Page */
.locations-page {
    background-color: #f5fafb;
    min-height: 100vh;
    padding: 80px 60px;
}

.locations-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.locations-intro {
    display: flex;
    flex-direction: column;
    gap: 20px;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.locations-intro.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.locations-label {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    color: #0f7a8c;
    font-size: 14px;
}

.locations-title {
    font-size: 48px;
    font-weight: 700;
    color: #0b2c3d;
    margin: 0;
}

.locations-description {
    font-size: 16px;
    color: #415660;
    line-height: 1.7;
}

.locations-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.location-card {
    background-color: white;
    border-radius: 14px;
    padding: 24px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.location-card h3 {
    margin: 0;
    font-size: 20px;
    color: #0b2c3d;
}

.location-meta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    font-size: 14px;
    color: #0f7a8c;
}

.location-meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.location-info {
    margin: 0;
    font-size: 15px;
    color: #415660;
    line-height: 1.6;
}

.location-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.location-actions a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 999px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.location-actions .btn-outline {
    border: 1px solid #0f7a8c;
    color: #0f7a8c;
    background: none;
}

.location-actions .btn-outline:hover {
    background-color: #0f7a8c;
    color: white;
}

.location-actions .btn-solid {
    border: none;
    background: linear-gradient(135deg, #0f7a8c 0%, #19a4b7 100%);
    color: white;
}

.locations-map {
    background-color: white;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    gap: 20px;
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 1s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.locations-map.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.locations-map iframe {
    width: 100%;
    height: 360px;
    border: none;
    border-radius: 12px;
}

.locations-map p {
    margin: 0;
    font-size: 14px;
    color: #415660;
}

@media (max-width: 1024px) {
    .locations-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .locations-page {
        padding: 60px 25px;
    }

    .locations-title {
        font-size: 36px;
    }
}

@media (max-width: 480px) {
    .locations-page {
        padding: 50px 20px;
    }

    .locations-title {
        font-size: 32px;
    }
}
