.location-card {
    display: flex;
    flex-wrap: wrap;
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: 0.3s ease;
    margin-bottom: 30px;
}

.location-card:hover {
    transform: translateY(-5px);
}

/* IMAGE */
.location-image {
    width: 40%;
    min-height: 280px;
    position: relative;
}

.location-image img {
    width: 100%;
    height: 100% !important;
    object-fit: cover;
}

.location-badge {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: rgba(255,255,255,0.9);
    padding: 5px 12px;
    font-size: 10px;
    font-weight: bold;
    border-radius: 20px;
    text-transform: uppercase;
}

/* CONTENT */
.location-content {
    width: 60%;
    padding: 30px;
}

.location-title {
    font-size: 26px;
    margin-bottom: 10px;
}

.location-address {
    color: #0f9d8a;
    font-weight: 600;
    margin-bottom: 20px;
}

/* META */
.location-meta {
    display: flex;
    gap: 30px;
    margin-bottom: 25px;
}

.meta-group {
    flex: 1;
}

.meta-item {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.meta-item small {
    display: block;
    font-size: 10px;
    text-transform: uppercase;
    color: #888;
}

.meta-item p {
    margin: 0;
    font-weight: 600;
    font-size: 14px;
}

/* BUTTONS */
.location-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
    padding: 12px 24px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
}

.btn-outline {
    border: 2px solid #0f9d8a;
    color: #0f9d8a;
    padding: 12px 24px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .location-image,
    .location-content {
        width: 100%;
    }

    .location-meta {
        flex-direction: column;
    }
}