.location-area {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
    background: linear-gradient(
        135deg,
        #f0f9ff 0%,
        #e0f2fe 25%,
        #dbeafe 50%,
        #ede9fe 75%,
        #fdf2f8 100%
    );
}

.location-area::before {
    content: "";
    position: absolute;
    top: -120px;
    left: -120px;
    width: 300px;
    height: 300px;
    background: rgba(59,130,246,0.15);
    border-radius: 50%;
    filter: blur(80px);
}

.location-area::after {
    content: "";
    position: absolute;
    bottom: -120px;
    right: -120px;
    width: 300px;
    height: 300px;
    background: rgba(236,72,153,0.15);
    border-radius: 50%;
    filter: blur(80px);
}

.location-area h2 {
    text-align: center;
    font-size: 48px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 50px;
}

.location-card {
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(15px);
    border-radius: 24px;
    padding: 35px 25px;
    text-align: center;
    height: 100%;
    border: 1px solid rgba(255,255,255,0.8);
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    transition: all .4s ease;
}

.location-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(59,130,246,0.15);
}

.location-card .icon {
    width: 75px;
    height: 75px;
    margin: 0 auto 20px;
    border-radius: 20px;
    background: linear-gradient(135deg,#3b82f6,#8b5cf6);
    display: flex;
    align-items: center;
    justify-content: center;
}

.location-card .icon i {
    color: #fff;
    font-size: 28px;
}

.location-card span {
    display: block;
    color: #6366f1;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.location-card a {
    color: #1f2937;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.7;
    word-break: break-word;
}

.location-card a:hover {
    color: #3b82f6;
}