/* =========================================
   LUXE INTERIORS - PREMIUM DESIGN SYSTEM
   Theme: Pure Black & White (#000000 / #FFFFFF)
   No gradients. No yellow. Modern typography.
   ========================================= */

:root {
    --bg-pure: #000000;
    --bg-elevated: #0a0a0a;
    --bg-surface: #121212;
    --bg-surface-hover: #1c1c1c;
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --text-muted: #666666;

    /* Gold Theme Accents */
    --gold: #D4AF37;
    --gold-bright: #FFD700;
    --gold-muted: #996515;
    --gold-glow: rgba(212, 175, 55, 0.3);

    --border-color: #222222;
    --border-light: rgba(255, 255, 255, 0.1);
    --border-gold: rgba(212, 175, 55, 0.2);

    --transition-fast: 0.2s ease;
    --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);

    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Outfit', sans-serif;

    --container-width: 1200px;
    --padding-x: 2rem;
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-pure);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.logo-img {
    height: 40px;
    width: auto;
    display: block;
}

/* Layout */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--padding-x);
}

.section {
    padding: 4rem 0;
}

.bg-darker {
    background-color: var(--bg-elevated);
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header p {
    color: var(--text-secondary);
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    font-weight: 500;
    border-radius: 4px;
    /* Minimalist slightly rounded corners */
    cursor: pointer;
    transition: var(--transition-smooth);
    font-family: var(--font-body);
    font-size: 1rem;
    border: none;
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
}

.btn-full {
    width: 100%;
}

.btn-primary {
    background-color: var(--gold);
    color: var(--bg-pure);
}

.btn-primary:hover {
    background-color: var(--gold-bright);
    transform: translateY(-2px);
    box-shadow: 0 0 20px var(--gold-glow);
}

.btn-outline {
    background-color: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-gold);
}

.btn-outline:hover {
    background-color: var(--gold-glow);
    border-color: var(--gold);
    transform: translateY(-2px);
}

.btn-text {
    background: transparent;
    color: var(--text-primary);
    padding: 0;
}

.btn-text:hover {
    color: var(--text-secondary);
    gap: 0.75rem;
    /* slightly move the arrow */
}

/* Iconography */
.lucide {
    width: 20px;
    height: 20px;
}

/* =========================================
   COMPONENTS
   ========================================= */

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 1.5rem 0;
    transition: var(--transition-smooth);
    border-bottom: 1px solid transparent;
}

.navbar.scrolled {
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.logo span {
    font-weight: 300;
    color: var(--text-secondary);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 500;
    color: var(--text-secondary);
}

.nav-links a:hover {
    color: var(--text-primary);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 5rem;
    overflow: hidden;
    background: radial-gradient(circle at 10% 20%, #1a1a1a 0%, #000000 100%);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 60%;
    height: 100%;
    background: linear-gradient(to right, #000000 40%, transparent 100%);
    z-index: 1;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-text-side {
    flex: 1;
    max-width: 600px;
}

.hero-visual-side {
    flex: 1.2;
    display: flex;
    justify-content: flex-end;
    perspective: 1000px;
    max-height: 60vh;
    border-radius: 16px;
    overflow: hidden;
}



.text-gold {
    color: var(--gold);
    text-shadow: 0 0 10px var(--gold-glow);
}

.hero-title {
    font-size: clamp(2rem, 3.5vw, 3.5rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-primary);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 550px;
    line-height: 1.6;
}

.hero-trust-badges {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 3rem;
}

.trust-item {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.1rem;
    color: var(--text-primary);
    font-weight: 500;
}

.trust-item i {
    color: var(--gold);
    width: 20px;
    height: 20px;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.hero-socials {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.social-link:hover {
    color: var(--gold);
}

.social-link i {
    width: 18px;
    height: 18px;
}

/* Services Banner */
.services-banner {
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    background-color: var(--bg-elevated);
    padding: 4rem 0;
}

.banner-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 2rem;
    align-items: center;
}

.banner-item {
    text-align: center;
}

.banner-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--bg-surface-hover);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.banner-item h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.banner-item p {
    color: var(--text-secondary);
    font-size: 1rem;
}

.banner-divider {
    width: 1px;
    height: 60px;
    background-color: var(--border-color);
}

/* Gallery / Before After */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.gallery-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: rgba(18, 18, 18, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--border-gold);
    transition: var(--transition-smooth);
}

.gallery-card:hover {
    border-color: var(--gold);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8), 0 0 15px var(--gold-glow);
}

/* Base image styling */
.gallery-img-wrapper {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
}

.gallery-img-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.before-after-slider {
    cursor: ew-resize;
    user-select: none;
    -webkit-user-select: none;
    touch-action: none;
}

.img-after-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    clip-path: inset(0 0 0 50%);
}

.slider-handle {
    position: absolute;
    top: 0;
    left: 50%;
    bottom: 0;
    width: 2px;
    background: var(--gold);
    z-index: 10;
    transform: translateX(-50%);
    pointer-events: none;
}

.slider-knob {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background-color: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-pure);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
    z-index: 11;
}

.slider-knob .lucide {
    width: 20px;
    height: 20px;
}

.img-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    background-color: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 0.85rem;
    text-align: center;
    padding: 1rem;
    transition: var(--transition-smooth);
}

.gallery-card:hover .img-placeholder {
    transform: scale(1.05);
}

.badge {
    position: absolute;
    background-color: var(--bg-pure);
    color: var(--text-primary);
    padding: 0.4rem 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    pointer-events: none;
}

.badge-before {
    left: 1rem;
    bottom: 1rem;
    z-index: 3;
}

.badge-after {
    right: 1rem;
    bottom: 1rem;
    z-index: 3;
}

.category-label {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 4px;
    z-index: 3;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* Product Catalog */
/* Product Catalog - Main Categories (Large Elegant Text Tabs) */
#category-filters {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 1.5rem;
}

#category-filters .filter-btn {
    background: transparent;
    border: none;
    color: #555;
    padding: 0;
    font-size: 1.8rem;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 4px;
    cursor: pointer;
    transition: all 0.4s ease;
    border-radius: 0;
    box-shadow: none;
}

#category-filters .filter-btn:hover,
#category-filters .filter-btn.active {
    color: var(--gold);
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
    background: transparent;
    border: none;
    box-shadow: none;
    font-weight: 500;
}

/* Secondary & Tertiary (Sleek Subfolders / Brands & Types) */
.secondary-filters, .tertiary-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.secondary-filters .filter-btn,
.tertiary-filters .filter-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #888;
    padding: 0.6rem 2rem;
    border-radius: 0;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    border-bottom: 2px solid transparent;
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.secondary-filters .filter-btn:hover,
.tertiary-filters .filter-btn:hover,
.secondary-filters .filter-btn.active,
.tertiary-filters .filter-btn.active {
    background: rgba(212, 175, 55, 0.05);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.2);
    border-bottom: 2px solid var(--gold);
    box-shadow: none;
}

.filter-btn {
    display: inline-block;
}

.catalog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2.5rem;
}

.catalog-card {
    background-color: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    transition: all var(--transition-smooth);
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

.catalog-card:hover {
    border-color: var(--gold);
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.8);
}

.catalog-img {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    background-color: #111;
}

.catalog-img img, .catalog-img video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.catalog-card:hover .catalog-img img {
    transform: scale(1.05);
}

/* Video Play Overlay */
.video-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(212, 175, 55, 0.85);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    z-index: 2;
    transition: var(--transition-smooth);
}

.catalog-card:hover .video-overlay {
    background: var(--gold-bright);
    transform: translate(-50%, -50%) scale(1.1);
}

.catalog-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    flex-grow: 1;
}

.catalog-header {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.catalog-category {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gold);
    font-weight: 600;
}

.catalog-card h3 {
    font-size: 1.125rem;
    margin: 0;
    color: var(--text-primary);
    font-weight: 500;
}

/* Modal Styles */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.modal.active {
    display: flex;
}

.modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
}

.modal-content {
    position: relative;
    width: 100%;
    background: transparent;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 40px;
    height: 100vh;
}

.modal-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #fff;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-fast);
    z-index: 2000;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.modal-prev,
.modal-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid var(--gold);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-fast);
    z-index: 30;
}

.modal-prev {
    left: 20px;
}

.modal-next {
    right: 20px;
}

.modal-prev:hover,
.modal-next:hover {
    background: var(--gold);
    color: #000;
}

.modal-media-container {
    width: 100%;
    flex: 1 1 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 0;
}

.modal-media-container img, .modal-media-container video {
    width: 100%;
    max-width: 1000px;
    max-height: 80vh;
    object-fit: contain;
    margin: 0 auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.8);
}

.modal-info {
    padding: 1rem 2rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    background: rgba(18, 18, 18, 0.85);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    width: 100%;
    max-width: 1000px;
    flex-shrink: 0;
}

.modal-info h2 {
    font-size: 1.1rem;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.modal-info .btn-primary {
    flex-shrink: 0;
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
}

.modal-product-details {
    margin: 0;
    width: auto;
    display: none;
}

.modal-headline {
    font-size: 1rem;
    margin-bottom: 0;
    color: var(--text-primary);
}

/* Featured Slider Native Scroll */
#featuredSlider {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    gap: 10px;
    width: 100%;
    height: 100%;
    scrollbar-width: none; /* Firefox */
}
#featuredSlider::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}
.slide {
    flex: 0 0 100%;
    scroll-snap-align: start;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.modal-highlights {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.modal-highlights li {
    display: flex;
    align-items: center;
    font-size: 1rem;
    color: var(--text-secondary);
}

.modal-notes {
    border-top: 1px solid var(--border-color);
    padding-top: 1rem;
    margin-top: 1rem;
    width: 100%;
}

.loading-details {
    opacity: 0.5;
    font-style: italic;
}

@media (max-width: 768px) {
    .modal {
        padding: 0;
    }
    .modal-content {
        height: 100%;
        border-radius: 0;
        padding: 1rem;
    }
    .modal-info {
        flex-direction: column;
        gap: 0.75rem;
        padding: 1rem;
        text-align: center;
        border-radius: 8px;
    }
    .modal-info h2 {
        white-space: normal;
        font-size: 1rem;
    }
    .modal-media-container {
        flex-grow: 1;
    }
    .modal-media-container img, .modal-media-container video {
        max-height: 60vh;
    }
}

/* Reviews, Expert, & FAQ Grid */
.dual-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 4rem;
}

/* Expert Profile */
.expert-card {
    background-color: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.expert-img-wrapper {
    aspect-ratio: 1/1;
    overflow: hidden;
}

.expert-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.expert-info {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.expert-info p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    flex-grow: 1;
}

.style-expert-btn {
    padding: 0.75rem;
    font-size: 0.95rem;
}

.reviews-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.review-card {
    padding: 2rem;
    background-color: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: 8px;
}

.stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.star.filled {
    color: var(--text-primary);
    fill: var(--text-primary);
    width: 16px;
    height: 16px;
}

.review-text {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    font-style: italic;
    color: var(--text-secondary);
}

.review-author {
    font-weight: 600;
}

/* Accordion FAQ */
.accordion {
    border-top: 1px solid var(--border-color);
}

.accordion-item {
    border-bottom: 1px solid var(--border-color);
}

.accordion-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.125rem;
    font-weight: 500;
    font-family: inherit;
    cursor: pointer;
    text-align: left;
}

.acc-icon {
    transition: transform var(--transition-fast);
}

.accordion-item.active .acc-icon {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-smooth);
}

.accordion-content p {
    padding-bottom: 1.5rem;
    color: var(--text-secondary);
}

/* Footer */
.footer {
    border-top: 1px solid var(--border-color);
    padding-top: 4rem;
    background-color: var(--bg-elevated);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 4rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.footer-brand p {
    margin-top: 1rem;
    color: var(--text-secondary);
    max-width: 300px;
}

.footer-links {
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
}

.link-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.link-group h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.link-group a,
.link-group p {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.link-group a:hover {
    color: var(--text-primary);
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding: 2rem 0;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* =========================================
   RESPONSIVE DESIGN (3-TIER SYSTEM)
   ========================================= */

/* 1. TABLET (Small Laptops & iPads) */
@media (max-width: 1024px) {
    .container {
        padding: 0 1.5rem;
    }

    .hero-container {
        gap: 2rem;
    }

    .hero-visual-side {
        flex: 1;
    }



    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .catalog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

/* 2. MOBILE (Phones) */
@media (max-width: 768px) {
    .navbar {
        padding: 1rem 0;
    }

    .nav-links,
    .nav-btn {
        display: none;
    }

    .hero {
        min-height: auto;
        padding-top: 6rem;
        padding-bottom: 2rem;
    }

    .hero-container {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .hero-overlay {
        width: 100%;
        background: linear-gradient(to bottom, #000000 50%, transparent 100%);
    }

    .hero-text-side {
        max-width: 100%;
        order: 1;
    }

    .hero-visual-side {
        max-height: 40vh !important;
        width: 100%;
        justify-content: center;
        order: 2;
        margin-top: 1rem;
    }

    .hero-title {
        font-size: 2.2rem !important;
    }

    .hero-actions {
        justify-content: center;
        width: 100%;
    }

    .btn-large {
        width: 100%;
    }

    /* SHOW ALL GALLERY ITEMS ON MOBILE */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .gallery-img-wrapper {
        aspect-ratio: 1/1;
    }

    .category-label {
        font-size: 0.6rem;
        padding: 0.2rem 0.5rem;
        top: 0.5rem;
        left: 0.5rem;
    }

    .badge {
        font-size: 0.6rem;
        padding: 0.2rem 0.5rem;
    }

    .catalog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    #dynamic-portfolio,
    .portfolio-2col-grid {
        gap: 1rem;
    }

    .best-month-grid {
        gap: 1rem;
    }

    .section {
        padding: 3rem 0;
    }

    h2 {
        font-size: 2rem;
    }
}

/* 3. EXTRA SMALL MOBILE */
@media (max-width: 480px) {
    .gallery-grid {
        /* Even tighter for very small screens to ensure visibility */
        gap: 0.5rem;
    }

    .hero-title {
        font-size: 2rem;
    }
}

/* Animation utilities for JS */
.motion-fade-up {
    opacity: 0;
}

/* ===== CINEMATIC HERO UPGRADE ===== */

.hero-visual-side.cinematic {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 16/9;
}

.hero-visual-img-full {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.92) contrast(1.05);
    transition: transform 1.2s ease;
}

.hero-visual-side.cinematic:hover .hero-visual-img-full {
    transform: scale(1.03);
}

.hero-visual-side.cinematic::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to left,
        rgba(0, 0, 0, 0.05),
        rgba(0, 0, 0, 0.35)
    );
    pointer-events: none;
}

/* =========================
   BEST OF THE MONTH
========================= */

.best-month {
    background: #000;
}

.best-month-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 3rem;
}

.best-month-text {
    background: linear-gradient(135deg, #d4af37, #b68c2a);
    padding: 3rem;
    color: #000; /* teks jadi hitam agar kontras */
}

.best-month-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.best-month-text .best-sub {
    display: block;
    letter-spacing: 4px;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

.best-month-text p {
    line-height: 1.7;
    margin-bottom: 2rem;
    color: #111;
}

.best-month-text .btn-primary {
    background: #000;
    color: #d4af37;
    border: 1px solid #000;
}

.best-month-text .btn-primary:hover {
    background: #111;
}

.best-month-image {
    aspect-ratio: 16 / 9;
}

/* Responsive */
@media (max-width: 992px) {
    .best-month-grid {
        grid-template-columns: 1fr;
    }

    .best-month-text {
        padding: 2rem;
    }
}

/* Sound Toggle Button */
.sound-toggle {
    position: absolute;
    bottom: 16px;
    right: 16px;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.7);
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    padding: 0;
}

.sound-toggle .lucide,
.sound-toggle i {
    width: 16px;
    height: 16px;
}

.sound-toggle:hover {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
}

/* Portfolio 2-Column Grid */
#dynamic-portfolio,
.portfolio-2col-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

@media (max-width: 768px) {
    #dynamic-portfolio,
    .portfolio-2col-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.portfolio-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 16/9;
    cursor: pointer;
    background: #111;
}

.portfolio-item img,
.portfolio-item video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    border-radius: inherit;
    transition: transform 0.6s ease;
}

.portfolio-item:hover img,
.portfolio-item:hover video {
    transform: scale(1.05);
}

.portfolio-item .play-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.portfolio-item:hover .play-overlay {
    opacity: 1;
}

.play-overlay i {
    width: 48px;
    height: 48px;
    color: white;
    filter: drop-shadow(0 0 10px rgba(0,0,0,0.5));
}

.portfolio-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    color: white;
}

.portfolio-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.portfolio-info p {
    color: var(--gold);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Modal Playlist Styling */
.modal-playlist-scroll {
    width: 100%;
    max-width: 1000px;
    height: 120px;
    display: flex;
    overflow-x: auto;
    gap: 15px;
    padding-bottom: 10px;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
}

.modal-playlist-scroll::-webkit-scrollbar {
    height: 6px;
}

.modal-playlist-scroll::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
}

.modal-playlist-scroll::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
}

.modal-playlist-scroll::-webkit-scrollbar-thumb:hover {
    background: var(--gold);
}

.playlist-thumb {
    flex: 0 0 160px;
    scroll-snap-align: start;
    cursor: pointer;
    transition: var(--transition-smooth);
    opacity: 0.6;
}

.playlist-thumb:hover, .playlist-thumb.active {
    opacity: 1;
}

.playlist-thumb.active {
    pointer-events: none;
}

.playlist-img-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 6px;
    overflow: hidden;
    background: #111;
    margin-bottom: 0.5rem;
    border: 2px solid transparent;
    transition: var(--transition-smooth);
}

.playlist-thumb:hover .playlist-img-wrapper {
    border-color: rgba(255, 255, 255, 0.3);
}

.playlist-thumb.active .playlist-img-wrapper {
    border-color: var(--gold);
}

.playlist-img-wrapper video,
.playlist-img-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    border-radius: inherit;
}

.playlist-play-icon {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-smooth);
}

.playlist-thumb:hover .playlist-play-icon {
    opacity: 1;
}

.playlist-play-icon i {
    width: 24px;
    height: 24px;
    color: white;
}

.playlist-title {
    font-size: 0.8rem;
    color: var(--text-muted);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: var(--transition-smooth);
}

.playlist-thumb.active .playlist-title {
    color: var(--gold);
}