.locations-section {
    padding: 140px 0;
    background: #0e2539;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.location-card {
    display: block;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 24px;
    background: rgba(255, 255, 255, .04);
    color: #fff;
    text-decoration: none;
    transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease;
}

.location-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 46, 166, .45);
    box-shadow: 0 18px 55px rgba(0, 0, 0, .3);
    color: #fff;
}

.location-image {
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background: #141922;
}

.location-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform .6s ease;
}

.location-card:hover .location-image img {
    transform: scale(1.06);
}

.location-content {
    padding: 30px 32px 34px;
}

.location-city {
    display: block;
    margin-bottom: 10px;
    color: #ff2ea6;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

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

.location-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: rgba(255, 255, 255, .72);
    font-size: .95rem;
    font-weight: 600;
}

.location-link span {
    font-size: 1.4rem;
    transition: transform .3s ease;
}

.location-card:hover .location-link span {
    transform: translateX(5px);
}

@media (max-width: 991px) {
    .locations-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .locations-section {
        padding: 100px 0;
    }

    .locations-grid {
        grid-template-columns: 1fr;
    }

    .location-content {
        padding: 26px 26px 30px;
    }
}
