/* ===== CSS Variables ===== */
:root {
    --primary: #2d7d46;
    --primary-dark: #1e5c32;
    --primary-light: #4a9e63;
    --secondary: #f5a623;
    --accent: #8bc34a;
    --bg-light: #f8faf9;
    --bg-dark: #1a2e1f;
    --text-dark: #1a2e1f;
    --text-body: #4a5568;
    --text-light: #718096;
    --white: #ffffff;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.15);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ===== Reset & Base ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font);
    color: var(--text-body);
    background: var(--bg-light);
    line-height: 1.7;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== Typography ===== */
h1, h2, h3, h4, h5, h6 {
    color: var(--text-dark);
    font-weight: 700;
    line-height: 1.3;
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-tag {
    display: inline-block;
    background: rgba(45, 125, 70, 0.1);
    color: var(--primary);
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.section-header h2 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.section {
    padding: 100px 0;
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(45, 125, 70, 0.3);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(45, 125, 70, 0.4);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

/* ===== Navbar ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(26, 46, 31, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    transition: var(--transition);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.navbar.scrolled {
    background: rgba(26, 46, 31, 0.98);
    box-shadow: 0 2px 30px rgba(0,0,0,0.3);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-size: 1.25rem;
    font-weight: 700;
}

.nav-brand i {
    font-size: 1.5rem;
    color: var(--accent);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-menu a {
    color: rgba(255,255,255,0.75);
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--white);
    background: rgba(255,255,255,0.1);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle span {
    display: block;
    width: 28px;
    height: 2.5px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== Hero Section ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #1a2e1f 0%, #2d7d46 50%, #1a2e1f 100%);
    z-index: 0;
}

.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(139, 195, 74, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(45, 125, 70, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 80%, rgba(245, 166, 35, 0.05) 0%, transparent 50%);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    padding: 120px 0 60px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--accent);
    margin-bottom: 28px;
    border: 1px solid rgba(255,255,255,0.1);
}

.hero h1 {
    font-size: 4.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 8px;
    letter-spacing: -1px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.hero-subtitle {
    font-size: 1.4rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 24px;
    font-weight: 400;
}

.hero-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 24px;
}

.hero-rating .stars {
    display: flex;
    gap: 4px;
    color: var(--secondary);
    font-size: 1.3rem;
}

.rating-text {
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
}

.rating-count {
    font-size: 1rem;
    color: rgba(255,255,255,0.6);
}

.hero-desc {
    max-width: 600px;
    margin: 0 auto 36px;
    font-size: 1.1rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 56px;
}

.hero-info-cards {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.info-card {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
    padding: 16px 24px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255,255,255,0.1);
    min-width: 200px;
}

.info-card i {
    font-size: 1.5rem;
    color: var(--accent);
}

.info-card .label {
    display: block;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--white);
}

.info-card small {
    color: rgba(255,255,255,0.6);
    font-size: 0.8rem;
}

/* ===== About Section ===== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-content p {
    margin-bottom: 20px;
    font-size: 1.05rem;
    line-height: 1.8;
}

.about-stats {
    display: flex;
    gap: 40px;
    margin-top: 32px;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
}

.about-image {
    display: flex;
    justify-content: center;
}

.about-img-placeholder {
    width: 100%;
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, var(--primary-light), var(--primary-dark));
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    gap: 16px;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.about-img-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3z' fill='%23ffffff' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
}

.about-img-placeholder i {
    font-size: 4rem;
    opacity: 0.8;
}

.about-img-placeholder span {
    font-size: 1.3rem;
    font-weight: 600;
    opacity: 0.9;
}

/* ===== Highlights Section ===== */
.highlights {
    background: var(--white);
}

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

.highlight-card {
    background: var(--bg-light);
    padding: 36px 28px;
    border-radius: var(--radius-md);
    text-align: center;
    transition: var(--transition);
    border: 1px solid transparent;
}

.highlight-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(45, 125, 70, 0.15);
    background: var(--white);
}

.highlight-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--white);
    font-size: 1.5rem;
}

.highlight-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.highlight-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* ===== Gallery Section ===== */
.gallery-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-auto-rows: 200px;
    gap: 16px;
}

.gallery-item-large {
    grid-row: span 2;
    grid-column: 1;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
}

.gallery-img {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-light), var(--primary-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: rgba(255,255,255,0.4);
    transition: var(--transition);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-img {
    transform: scale(1.1);
}

.gallery-overlay span {
    color: var(--white);
    font-weight: 600;
    font-size: 1rem;
}

/* ===== Facilities Section ===== */
.facilities {
    background: var(--white);
}

.facilities-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}

.facility-card {
    background: var(--bg-light);
    padding: 28px 16px;
    border-radius: var(--radius-sm);
    text-align: center;
    transition: var(--transition);
    border: 1px solid transparent;
}

.facility-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(45, 125, 70, 0.15);
    background: var(--white);
}

.facility-card i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 12px;
}

.facility-card h4 {
    font-size: 0.9rem;
    font-weight: 600;
}

/* ===== Kuliner Section ===== */
.kuliner-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.kuliner-card {
    display: flex;
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid #e8edf0;
}

.kuliner-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.kuliner-img {
    width: 120px;
    min-height: 140px;
    background: linear-gradient(135deg, var(--accent), var(--primary));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: rgba(255,255,255,0.5);
    flex-shrink: 0;
}

.kuliner-info {
    padding: 16px 20px;
    flex: 1;
}

.kuliner-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 4px;
}

.kuliner-header h3 {
    font-size: 1.05rem;
    font-weight: 700;
}

.kuliner-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    color: var(--secondary);
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
}

.kuliner-rating small {
    color: var(--text-light);
    font-weight: 400;
}

.kuliner-type {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 10px;
}

.kuliner-meta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    font-size: 0.85rem;
}

.open-status {
    color: var(--primary);
    font-weight: 500;
}

.open-status i {
    margin-right: 4px;
}

.price {
    color: var(--text-light);
}

/* ===== Reviews Section ===== */
.reviews {
    background: var(--bg-light);
}

.reviews-summary {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 40px;
    align-items: center;
    background: var(--white);
    padding: 36px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    margin-bottom: 40px;
}

.summary-score {
    text-align: center;
    padding-right: 40px;
    border-right: 2px solid #e8edf0;
}

.score-number {
    font-size: 4rem;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1;
}

.score-stars {
    color: var(--secondary);
    font-size: 1.3rem;
    margin: 8px 0;
}

.score-total {
    font-size: 0.9rem;
    color: var(--text-light);
}

.rating-bars {
    flex: 1;
}

.rating-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
    font-size: 0.85rem;
}

.rating-bar span:first-child {
    width: 16px;
    font-weight: 600;
    color: var(--text-dark);
}

.rating-bar span:last-child {
    width: 36px;
    text-align: right;
    color: var(--text-light);
}

.bar-track {
    flex: 1;
    height: 8px;
    background: #e8edf0;
    border-radius: 4px;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--secondary), #f7b731);
    border-radius: 4px;
    transition: width 1s ease;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 32px;
}

.review-card {
    background: var(--white);
    padding: 24px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid #e8edf0;
    transition: var(--transition);
}

.review-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.review-header {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 12px;
}

.review-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.review-user h4 {
    font-size: 0.95rem;
    font-weight: 600;
}

.review-badge {
    font-size: 0.75rem;
    color: var(--text-light);
}

.review-stars {
    margin-left: auto;
    color: var(--secondary);
    font-size: 0.8rem;
    display: flex;
    gap: 2px;
}

.review-time {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-bottom: 8px;
}

.review-text {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--text-body);
    font-style: italic;
}

.reviews-tags {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.review-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--white);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-body);
    border: 1px solid #e8edf0;
    transition: var(--transition);
}

.review-tag:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(45, 125, 70, 0.05);
}

.review-tag i {
    color: var(--primary);
}

/* ===== Location Section ===== */
.location-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
}

.location-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.location-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.location-item i {
    font-size: 1.5rem;
    color: var(--primary);
    margin-top: 4px;
    flex-shrink: 0;
}

.location-item h4 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.location-item p {
    font-size: 0.95rem;
    color: var(--text-light);
}

.btn-map {
    align-self: flex-start;
    margin-top: 8px;
}

.location-map {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    min-height: 400px;
}

.location-map iframe {
    display: block;
}

/* ===== Jam Ramai Section ===== */
.jam-section {
    background: var(--white);
}

.jam-chart {
    display: flex;
    align-items: flex-end;
    gap: 12px;
    justify-content: center;
    padding: 20px 0;
    height: 300px;
}

.jam-bar {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    width: 60px;
}

.jam-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-light);
    order: 2;
}

.jam-track {
    width: 36px;
    height: 200px;
    background: #e8edf0;
    border-radius: 18px;
    position: relative;
    order: 1;
}

.jam-fill {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, var(--primary), var(--accent));
    border-radius: 18px;
    transition: height 1.5s ease;
    min-height: 4px;
}

.jam-legend {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-top: 24px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--text-body);
}

.legend-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.legend-dot.active {
    background: var(--primary);
}

.legend-dot.not-busy {
    background: #e8edf0;
    border: 2px solid #ccc;
}

/* ===== Footer ===== */
.footer {
    background: var(--bg-dark);
    color: rgba(255,255,255,0.7);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 60px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-brand i {
    font-size: 2rem;
    color: var(--accent);
}

.footer-brand h3 {
    color: var(--white);
    font-size: 1.3rem;
}

.footer-brand p {
    line-height: 1.8;
    font-size: 0.95rem;
}

.footer-links h4,
.footer-contact h4 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.footer-links ul,
.footer-contact ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: rgba(255,255,255,0.6);
    font-size: 0.95rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent);
    padding-left: 4px;
}

.footer-contact li {
    display: flex;
    gap: 10px;
    font-size: 0.95rem;
}

.footer-contact i {
    color: var(--accent);
    margin-top: 4px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    font-size: 0.9rem;
}

.footer-maps {
    color: var(--accent);
}

/* ===== Back to Top ===== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

/* ===== Animations ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.animate-in {
    animation: fadeInUp 0.6s ease forwards;
}

/* ===== Responsive ===== */

/* Tablet */
@media (max-width: 1024px) {
    .highlights-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .facilities-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-item-large {
        grid-column: span 2;
        grid-row: span 1;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.8rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-rating .stars {
        font-size: 1.1rem;
    }

    .rating-text {
        font-size: 1.5rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .hero-info-cards {
        flex-direction: column;
        align-items: center;
    }

    .info-card {
        width: 100%;
        max-width: 300px;
    }

    .section {
        padding: 60px 0;
    }

    .section-header h2 {
        font-size: 1.7rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-stats {
        justify-content: center;
    }

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

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: 160px;
    }

    .gallery-item-large {
        grid-column: span 2;
    }

    .facilities-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

    .reviews-summary {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 24px;
    }

    .summary-score {
        padding-right: 0;
        border-right: none;
        padding-bottom: 20px;
        border-bottom: 2px solid #e8edf0;
    }

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

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

    .location-map {
        min-height: 300px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .nav-menu {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(26, 46, 31, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 20px;
        gap: 8px;
        transform: translateY(-120%);
        transition: var(--transition);
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }

    .nav-menu.active {
        transform: translateY(0);
    }

    .nav-menu a {
        width: 100%;
        text-align: center;
        padding: 12px;
        font-size: 1rem;
    }

    .nav-toggle {
        display: flex;
    }

    .jam-chart {
        gap: 8px;
        height: 250px;
    }

    .jam-bar {
        width: 40px;
    }

    .jam-track {
        width: 28px;
        height: 160px;
    }

    .score-number {
        font-size: 3rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2.2rem;
    }

    .container {
        padding: 0 16px;
    }

    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 180px;
    }

    .gallery-item-large {
        grid-column: 1;
    }

    .facilities-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .reviews-tags {
        gap: 8px;
    }

    .review-tag {
        font-size: 0.8rem;
        padding: 6px 14px;
    }

    .kuliner-img {
        width: 80px;
        min-height: 100px;
        font-size: 1.8rem;
    }

    .about-stats {
        gap: 24px;
        flex-wrap: wrap;
    }

    .jam-chart {
        gap: 4px;
    }

    .jam-bar {
        width: 32px;
    }

    .jam-track {
        width: 24px;
    }
}

/* ===== Scrollbar ===== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-light);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-light);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}