:root { --orange: #ffa500; --dark: #0f172a; --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1); }
body { font-family: 'Plus Jakarta Sans', sans-serif; color: var(--dark); }
.fw-800 { font-weight: 800; }
        
/* Hero Section */
.place-hero {
    height: 65vh; min-height: 450px;
    display: flex; align-items: flex-end; padding-bottom: 60px; color: white;
}

.rating-badge-elite {
    background: white; padding: 20px 35px; border-radius: 20px;
    display: inline-block; box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    text-align: center; color: var(--dark);
}

/* Gallery Bento Grid */
.gallery-grid-v3 {
    display: grid; grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 180px); gap: 15px; margin: 40px 0;
}
.gallery-item-v3:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery-item-v3 img { width: 100%; height: 100%; object-fit: cover; border-radius: 20px; transition: var(--transition); }
.gallery-item-v3:hover img { transform: scale(1.02); filter: brightness(0.8); }

/* Sidebar & Content */
.info-card { background: white; padding: 30px; border-radius: 24px; border: 1px solid #f1f5f9; box-shadow: 0 10px 30px rgba(0,0,0,0.02); }
.hour-row { display: flex; justify-content: space-between; padding: 12px 0; border-bottom: 1px dashed #e2e8f0; font-size: 0.9rem; }
.hour-row.active-day { color: var(--orange); font-weight: 800; border-bottom: 2px solid var(--orange); }
        
#map { height: 350px; border-radius: 24px; z-index: 1; }

/* Review Cards */
.review-card-v2 { background: #f8fafc; padding: 25px; border-radius: 20px; margin-bottom: 20px; transition: 0.3s; border: 1px solid transparent; }
.review-card-v2:hover { background: white; border-color: var(--orange); box-shadow: 0 15px 30px rgba(0,0,0,0.05); }

.review-card-v2.border-warning { border-color: #ffa500 !important; box-shadow: 0 15px 30px rgba(255, 165, 0, 0.2) !important; position: relative; }
.review-card-v2 .badge { z-index: 2; }

/* Modern Modal Styling */
.shadow-2xl { box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15) !important; }
.ls-1 { letter-spacing: 1px; }

.form-control-modern {
    display: block;
    width: 100%;
    padding: 1rem 1.2rem;
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.5;
    color: #1e293b;
    background-color: #f8fafc;
    background-clip: padding-box;
    border: 2px solid #f1f5f9;
    border-radius: 16px;
    transition: all 0.2s ease;
}

.form-control-modern:focus {
    background-color: #fff;
    border-color: #ffa500;
    outline: 0;
    box-shadow: 0 10px 20px rgba(255, 165, 0, 0.1);
}

.input-group-custom { position: relative; }
.input-icon {
    position: absolute;
    right: 1.2rem;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    pointer-events: none;
}

.star-rating {
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
}

.star-rating input { display: none; }

.star-rating label {
    color: #e2e8f0;
    cursor: pointer;
    transition: all 0.2s ease;
    padding: 0 4px;
}

.star-rating label:hover,
.star-rating label:hover ~ label,
.star-rating input:checked ~ label {
    color: #ffa500;
}

.star-rating label:active { transform: scale(1.3); }

.shadow-warning { box-shadow: 0 10px 20px rgba(255, 165, 0, 0.2); }
.transition-up { transition: transform 0.3s ease; }
.transition-up:hover { transform: translateY(-3px); }

.rounded-5 { border-radius: 2rem !important; }