* { box-sizing: border-box; margin: 0; padding: 0; font-family: 'Poppins', sans-serif; }
body { background-color: #fff9fa; color: #333; min-height: 100vh; padding-bottom: 60px; }

.container { max-width: 1200px; margin: 0 auto; padding: 20px; }

/* Header */
.page-header { text-align: center; margin: 30px 0 40px; }
.sub-title { color: #d94e5d; font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; }
.page-header h1 { font-size: 2.2rem; color: #2b2b2b; font-weight: 800; margin: 6px 0; }
.page-header p { font-size: 0.9rem; color: #777; }

/* Grid Cards Tempat */
.place-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
}

.place-card {
    background: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid #fde2e4;
    box-shadow: 0 8px 20px rgba(246, 174, 183, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.place-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 28px rgba(246, 174, 183, 0.25);
}

/* Image Wrapper & Rating Badge */
.card-image-wrap {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    background-color: #f6aeb7;
}

.card-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.place-card:hover .card-image-wrap img {
    transform: scale(1.06);
}

.rating-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(4px);
    color: #d94e5d;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 4px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* Content Body */
.card-body {
    padding: 18px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    text-align: center;
}

.card-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #2c2c2c;
    margin-bottom: 8px;
}

.card-desc {
    font-size: 0.82rem;
    color: #666;
    line-height: 1.5;
    margin-bottom: 18px;
    flex-grow: 1;
}

/* Tombol Maps */
.btn-maps {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: #f6aeb7;
    color: #ffffff;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 10px 18px;
    border-radius: 12px;
    transition: all 0.25s ease;
}

.btn-maps:hover {
    background-color: #e597a1;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(246, 174, 183, 0.4);
}

.empty-state { text-align: center; padding: 60px 20px; color: #aaa; grid-column: 1 / -1; }
.empty-state i { font-size: 3rem; margin-bottom: 12px; color: #f6aeb7; }