body {
    box-sizing: border-box;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    min-height: 100vh;
}

/* Header Styles */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 0;
}

@media (min-width: 769px) {
.right-panel,
.outlets-container {
    overflow-x: hidden !important;
}

.outlets-container {
    height: calc(100vh - 220px);
    max-height: calc(100vh - 220px);
    overflow-y: auto !important;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    box-sizing: border-box;
}

/* WebKit (Chrome, Edge, Safari) */
.outlets-container::-webkit-scrollbar {
    width: 6px;
}

.outlets-container::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.06);
    border-radius: 6px;
}

.outlets-container::-webkit-scrollbar-thumb {
    background: #beb4b4;
    border-radius: 6px;
    border: 2px solid transparent;
    background-clip: padding-box;
}

.outlets-container::-webkit-scrollbar-thumb:hover {
    background: #ffffff;
}

/* Firefox */
.outlets-container {
    scrollbar-width: thin;
    scrollbar-color: #ffffff rgba(229, 223, 223, 0.06);
}
}

/* ===== Optional: styling scrollbar halaman (body) di desktop, jika kamu mau juga ===== */
@media (min-width: 769px) {
body::-webkit-scrollbar { width: 10px; }
body::-webkit-scrollbar-track { background: transparent; }
body::-webkit-scrollbar-thumb { background: rgba(0,0,0,0.25); border-radius: 8px; }
body { scrollbar-width: thin; scrollbar-color: rgba(0,0,0,0.25) transparent; }
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 600;
    color: #000000 !important;
    letter-spacing: 1px;
}

.navbar-nav .nav-link {
    color: #030000 !important;
    font-weight: 500;
    margin: 0 1rem;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-nav .nav-link:hover {
    color: #000000 !important;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 50%;
    background-color: #000000;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover::after {
    width: 100%;
    left: 0;
}

/* Main Content Styles */
.main-content {
    min-height: calc(100vh - 200px);
    padding: 2rem 0;
}

.left-panel {
    padding: 2rem;
}

.right-panel {
    padding: 2rem;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    height: calc(400px + 4rem + 2rem); /* Carousel height + title + padding */
    overflow-y: auto;
    position: relative;
}

.outlets-container {
    overflow-x: hidden; 
    max-width: 100%;    
    box-sizing: border-box;
}

.outlets-container::-webkit-scrollbar {
    width: 6px;
}

.outlets-container::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}

.outlets-container::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 3px;
}

.outlets-container::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.5);
}

.scroll-indicator {
    position: sticky;
    top: 0;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    padding: 0.5rem 1rem;
    margin: -2rem -2rem 1rem -2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: #cccccc;
    text-align: center;
    z-index: 10;
}

.scroll-indicator i {
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-5px);
    }
    60% {
        transform: translateY(-3px);
    }
}

.panel-title {
    font-size: 1.8rem;
    font-weight: 300;
    margin-bottom: 2rem;
    color: #ffffff;
    letter-spacing: 1px;
}

/* Carousel Styles */
.carousel-item img {
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
}

.carousel-control-prev,
.carousel-control-next {
    width: 5%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    padding: 20px;
}

.carousel-indicators button {
    background-color: rgba(255, 255, 255, 0.5);
}

.carousel-indicators button.active {
    background-color: #ffffff;
}

/* Outlet Card Styles */
.outlet-card {
    background: #ffffff;
    border: none;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.1);
    margin-bottom: 2rem;
    cursor: pointer;
    max-width: 100%;
    box-sizing: border-box;
}

.outlet-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(255, 255, 255, 0.2);
}

.card-img-container {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.outlet-card:hover .card-img {
    transform: scale(1.05);
}

.card-body {
    padding: 1.5rem;
    color: #000000;
}

.outlet-name {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #000000;
}

.outlet-address {
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.booking-btn {
    background: #000000;
    color: #ffffff;
    border: 2px solid #000000;
    padding: 0.75rem 2rem;
    border-radius: 6px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    width: 100%;
}

.booking-btn:hover {
    background: #ffffff;
    color: #000000;
    border-color: #000000;
}

/* Footer Styles */
.footer {
    background: #ffffff;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3rem 0 1rem;
    margin-top: 2rem;
}

.footer h5 {
    color: #000000;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer p, .footer a {
    color: #252525;
    text-decoration: none;
    line-height: 1.6;
}

.footer a:hover {
    color: #000000;
}

.social-links a {
    display: inline-block;
    margin-right: 1rem;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-2px);
}

.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
    margin-top: 2rem;
    text-align: center;
    color: #ffffff;
}

/* Responsive */
/* Hide scroll-indicator on mobile */
@media (max-width: 768px) {
.scroll-indicator {
    display: none;
}

/* Outlets container full display in mobile */
.outlets-container {
    height: auto !important;
    overflow-y: visible !important;
    padding-right: 0 !important;
}

/* Right panel jangan pakai overflow scroll di mobile */
.right-panel {
    height: auto !important;
    overflow-y: visible !important;
    border-left: none; /* opsional, biar nggak ada garis di mobile */
    padding-top: 1rem;
}
}

/* Caption mobile */
.carousel-caption-mobile {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    text-align: center;
    padding: 12px 15px;
    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.carousel-caption-mobile .title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
    line-height: 1.3;
}

.carousel-caption-mobile .subtitle {
    font-size: 0.9rem;
    font-weight: 400;
    color: #f1f1f1;
    margin: 4px 0 0;
    line-height: 1.4;
}