:root {
    /* Color Palette - Dark Cinematic and Gold */
    --bg-base: #000000;
    --bg-surface: #0a0a0a;
    --bg-surface-elevated: #111111;
    
    --accent-gold: hsl(38, 45%, 45%);
    --accent-gold-hover: hsl(38, 55%, 35%);
    
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7);
    
    --border-subtle: rgba(255, 255, 255, 0.1);
    --glass-bg: rgba(0, 0, 0, 0.6);
    --glass-border: rgba(255, 255, 255, 0.05);
    
    /* Typography */
    --font-sans: 'Outfit', sans-serif;
    --font-serif: 'Playfair Display', serif;
    
    /* Transitions */
    --transition-smooth: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-base);
    color: var(--text-primary);
    font-family: var(--font-sans);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
}

html {
    overflow-x: hidden;
    width: 100%;
}

h1, h2, h3, .logo, .footer-brand h2 {
    font-family: var(--font-serif);
    font-weight: 400;
}

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

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
}

/* --- Layout Utilities --- */
.page-content {
    padding-top: 120px;
    min-height: calc(100vh - 300px);
}

/* --- Typography --- */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--accent-gold);
}

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

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.btn-primary {
    background: var(--accent-gold);
    color: var(--bg-base);
    font-weight: 600;
}

.btn-primary:hover {
    background: var(--accent-gold-hover);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(220, 185, 120, 0.2);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border-color: var(--border-subtle);
}

.btn-secondary:hover {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
    transform: translateY(-3px);
}

/* --- Navbar (Glassmorphism) --- */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: var(--transition-smooth);
    border-bottom: 1px solid transparent;
}

.navbar.scrolled {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    padding: 1rem 5%;
}

.navbar.transparent-hero:not(.scrolled):not(.menu-open) .logo a,
.navbar.transparent-hero:not(.scrolled):not(.menu-open) .nav-links a {
    color: #fff;
}
.navbar.transparent-hero:not(.scrolled):not(.menu-open) .hamburger .line {
    background-color: #fff;
}

.logo a {
    font-size: 1.8rem;
    letter-spacing: 4px;
    color: var(--accent-gold);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-secondary);
}

.nav-links a:hover {
    color: var(--accent-gold);
}

.logo {
    position: relative;
    z-index: 1001;
}

.hamburger {
    display: none;
    position: relative;
    z-index: 1001;
}

.mobile-menu {
    display: none;
}


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

.hero-slider {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-color: #000;
}

.hero-slide {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 0;
}

.hero-slide.active {
    opacity: 1;
    z-index: 1;
}

.hero-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: -1;
}

.hero-bg img,
.hero-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-bg img {
    transform: scale(1) translateZ(0);
    transition: transform 8s ease;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    will-change: transform;
}

.hero-slide.active .hero-bg img {
    transform: scale(1.05) translateZ(0);
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.4) 0%, rgba(10,10,10,0.85) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 20px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease 0.4s, transform 0.8s ease 0.4s;
}

.hero-slide.active .hero-content {
    opacity: 1;
    transform: translateY(0);
}

.slider-controls {
    position: absolute;
    bottom: 12%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.slider-arrow {
    background: rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: var(--text-primary);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
    backdrop-filter: blur(5px);
}

.slider-arrow:hover {
    background: var(--accent-gold);
    border-color: var(--accent-gold);
    transform: scale(1.1);
}

.slider-dots {
    display: flex;
    gap: 12px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.dot.active {
    background: var(--accent-gold);
    transform: scale(1.2);
}

.hero-title {
    font-size: 5vw;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, #fff, var(--accent-gold));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.hero-buttons .btn-secondary {
    border-color: rgba(255, 255, 255, 0.5);
    color: #fff;
}

.hero-buttons .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
    color: #fff;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.mouse {
    width: 24px;
    height: 36px;
    border: 2px solid var(--text-secondary);
    border-radius: 12px;
    position: relative;
}

.mouse::before {
    content: '';
    position: absolute;
    top: 6px; left: 50%;
    transform: translateX(-50%);
    width: 4px; height: 4px;
    background: var(--text-secondary);
    border-radius: 50%;
    animation: scrollDown 2s infinite;
}

/* --- Philosophy / Who Are We Section --- */
.philosophy-section {
    padding: 8rem 0;
    background: var(--bg-surface);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--bg-surface-elevated);
    padding: 3rem 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-subtle);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 4px;
    background: var(--accent-gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border-color: var(--glass-border);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* --- Categories Section --- */
.categories-section {
    padding: 8rem 0;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.category-card {
    position: relative;
    height: 600px;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
    filter: brightness(0.6);
}

.category-card:hover img {
    transform: scale(1.05);
    filter: brightness(0.4);
}

.category-info {
    position: absolute;
    bottom: 0; left: 0; width: 100%;
    padding: 3rem 2rem 2rem 2rem;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 100%);
    z-index: 1;
    transition: var(--transition-smooth);
}

.category-info h3 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: #fff;
    transform: translateY(20px);
    transition: var(--transition-smooth);
}

.subcategories {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition-smooth);
}

.subcategories li {
    font-size: 0.85rem;
    color: #fff;
    background: rgba(255,255,255,0.15);
    padding: 0.3rem 1rem;
    border-radius: 20px;
    backdrop-filter: blur(5px);
}

.category-card:hover .category-info h3 {
    transform: translateY(0);
    color: var(--accent-gold);
}

.category-card:hover .subcategories {
    opacity: 1;
    transform: translateY(0);
}

/* --- About Page Design --- */
.about-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 2rem 0;
}

.about-text h2 {
    font-size: 3rem;
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

.about-text h3.highlight-title {
    font-size: 1.8rem;
    font-weight: 300;
    line-height: 1.4;
    margin-bottom: 2rem;
    color: var(--text-primary);
}

.about-text p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.about-stats {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-subtle);
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2.5rem;
    font-family: var(--font-serif);
    color: var(--accent-gold);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-secondary);
}

.about-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 600px;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* --- Contact Page Simple Modern Design --- */
.contact-simple-modern {
    padding: 8rem 0;
    background: var(--bg-base);
}

.contact-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: flex-start;
}

.contact-title {
    font-size: 3.5rem;
    color: var(--accent-gold);
    margin-bottom: 1rem;
    font-family: var(--font-serif);
}

.contact-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    line-height: 1.6;
}

.simple-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row-simple {
    display: flex;
    gap: 1.5rem;
}

.form-row-simple .input-group-simple {
    flex: 1;
}

.input-group-simple {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.input-group-simple label {
    font-size: 0.9rem;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.input-group-simple input,
.input-group-simple textarea {
    width: 100%;
    padding: 1rem;
    background: var(--bg-surface-elevated);
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
    color: var(--text-primary);
    font-family: var(--font-sans);
    font-size: 1rem;
    transition: var(--transition-smooth);
    resize: none;
}

.input-group-simple input:focus,
.input-group-simple textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
}

.btn-full {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
    margin-top: 1rem;
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.info-card-simple {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.icon-simple {
    width: 50px; height: 50px;
    background: rgba(220, 185, 120, 0.1);
    color: var(--accent-gold);
    display: flex; justify-content: center; align-items: center;
    border-radius: 50%;
}

.info-card-simple h4 {
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
    color: var(--text-primary);
}

.info-card-simple p, .info-card-simple a {
    color: var(--text-secondary);
    font-size: 1rem;
}

.info-card-simple a:hover {
    color: var(--accent-gold);
}

.contact-map-simple {
    width: 100%;
    height: 350px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-subtle);
}

.contact-map-simple iframe {
    width: 100%; height: 100%;
    filter: grayscale(80%) contrast(1.1);
}

/* Responsive adjustments */
@media (max-width: 900px) {
    .contact-split {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    .form-row-simple {
        flex-direction: column;
    }
}

/* --- Cinematic Category Experience --- */
.cinematic-showroom {
    width: 100%;
    scroll-snap-type: y mandatory;
}

.cinematic-section {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    scroll-snap-align: start;
}

.cinematic-inner {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    /* GSAP will animate opacity and transform on this element */
    opacity: 0;
    transform: translateY(80px);
    will-change: transform, opacity;
}

.cinematic-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.cinematic-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cinematic-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 70%);
    z-index: 2;
}

.cinematic-content {
    position: absolute;
    bottom: 3rem;
    left: 3rem;
    z-index: 3;
    text-align: left;
    max-width: 800px;
    padding: 0;
}

.cinematic-label {
    display: inline-block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
    background: rgba(0,0,0,0.5);
    padding: 0.5rem 1rem;
    border-radius: 30px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(220, 185, 120, 0.3);
}

.cinematic-title {
    font-size: 4vw;
    font-family: var(--font-serif);
    color: #fff;
    margin-bottom: 0.5rem;
    line-height: 1.1;
    text-shadow: 0 4px 10px rgba(0,0,0,0.5);
}

@media (max-width: 768px) {
    .cinematic-title {
        font-size: 2.5rem;
    }
    .cinematic-content {
        bottom: 2rem;
        left: 1.5rem;
        right: 1.5rem;
    }
    .cinematic-section {
        height: 70vh;
    }
}

.cinematic-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    font-weight: 300;
    line-height: 1.6;
}

/* --- Categories Page Specific Design --- */
.categories-page-section {
    padding-bottom: 8rem;
}

/* Filter Bar */
.filter-bar {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: var(--bg-surface-elevated);
    color: var(--text-secondary);
    border: 1px solid var(--border-subtle);
    padding: 0.8rem 2rem;
    border-radius: 30px;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.filter-btn:hover, .filter-btn.active {
    background: var(--accent-gold);
    color: var(--bg-base);
    border-color: var(--accent-gold);
    box-shadow: 0 5px 15px rgba(220, 185, 120, 0.2);
}

/* Subcategories Grid */
.subcategories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 3rem;
}

.sub-card {
    background: var(--bg-surface-elevated);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-subtle);
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
    position: relative;
}

.sub-card.hide {
    display: none;
}

.sub-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border-color: var(--accent-gold);
}

.sub-img {
    height: 250px;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.sub-img::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; width: 100%; height: 50%;
    background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 100%);
    pointer-events: none;
}

.sub-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.sub-card:hover .sub-img img {
    transform: scale(1.08);
}

.sub-info {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    position: relative;
}

.sub-info h3 {
    font-size: 1.8rem;
    color: var(--accent-gold);
    margin-bottom: 1rem;
    font-family: var(--font-serif);
}

.sub-info p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.btn-sub {
    align-self: flex-start;
    color: var(--text-primary);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-sub:hover {
    color: var(--accent-gold);
}

/* --- Useful & Simple Footer --- */
.useful-footer {
    background: var(--bg-base);
    padding-top: 5rem;
    border-top: 1px solid var(--border-subtle);
    font-family: var(--font-sans);
}

.useful-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 4rem;
}

.footer-brand h2 {
    font-size: 2.2rem;
    font-family: var(--font-serif);
    color: var(--accent-gold);
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.footer-brand p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    max-width: 250px;
}

.footer-socials {
    display: flex;
    gap: 1rem;
}

.footer-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-surface-elevated);
    color: var(--text-primary);
    transition: var(--transition-smooth);
    border: 1px solid var(--border-subtle);
}

.footer-socials a:hover {
    color: var(--accent-gold);
    border-color: var(--accent-gold);
    transform: translateY(-3px);
}

.footer-nav-col h4 {
    font-size: 1.05rem;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-nav-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-nav-col li {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.footer-nav-col a {
    color: var(--text-secondary);
    transition: var(--transition-smooth);
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 0;
    border-top: 1px solid var(--border-subtle);
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    color: var(--text-secondary);
    transition: var(--transition-smooth);
}

.footer-legal a:hover {
    color: var(--accent-gold);
}

@media (max-width: 1024px) {
    .about-hero {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .about-stats {
        justify-content: center;
    }
    .about-image {
        height: 400px;
        order: -1;
    }
}

@media (max-width: 992px) {
    .category-grid {
        grid-template-columns: 1fr;
    }
    .useful-footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 900px) {
    .contact-split {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .form-row-simple {
        flex-direction: column;
        gap: 0;
    }
    .contact-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .page-content {
        padding-top: 100px;
    }
    
    /* Navbar Hamburger */
    .hamburger {
        display: block;
        cursor: pointer;
        z-index: 1001;
    }
    .hamburger .line {
        width: 25px; height: 2px;
        background-color: var(--text-primary);
        margin: 6px auto;
        transition: var(--transition-smooth);
    }
    .nav-links {
        display: none;
    }
    .mobile-menu {
        position: fixed;
        top: 0; right: -100%;
        width: 100%; height: 100vh;
        background: var(--bg-base);
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        padding: 120px 5% 50px 5%;
        gap: 2.5rem;
        transition: 0.5s ease-in-out;
        z-index: 999; 
        overflow-y: auto;
    }
    .mobile-menu.active {
        right: 0;
    }
    .mobile-link {
        font-size: 1.8rem;
        color: var(--text-primary);
        text-transform: uppercase;
        letter-spacing: 2px;
        font-weight: 300;
    }
    .mobile-link:hover {
        color: var(--accent-gold);
    }
    
    .accordion-item {
        width: 100%;
    }
    .accordion-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        cursor: pointer;
    }
    .toggle-btn, .toggle-sub-btn {
        background: transparent;
        border: none;
        color: var(--text-primary);
        cursor: pointer;
        padding: 5px;
        transition: transform 0.3s ease;
    }
    .toggle-btn[aria-expanded="true"], .toggle-sub-btn[aria-expanded="true"] {
        transform: rotate(180deg);
        color: var(--accent-gold);
    }
    .accordion-content {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease;
        padding-left: 1.5rem;
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }
    .accordion-content a {
        color: var(--text-secondary);
        font-size: 1.1rem;
        transition: var(--transition-smooth);
        text-transform: none;
        letter-spacing: normal;
    }
    .accordion-content a:hover {
        color: var(--accent-gold);
    }
    .accordion-content.active {
        max-height: 1000px;
        margin-top: 2rem;
    }
    .accordion-sub-item {
        width: 100%;
    }
    .accordion-sub-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        cursor: pointer;
    }
    .sub-title {
        font-size: 1.3rem;
        color: var(--text-secondary);
        text-transform: uppercase;
        letter-spacing: 1px;
    }
    .accordion-sub-content {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease;
        padding-left: 1.5rem;
        display: flex;
        flex-direction: column;
        gap: 1.2rem;
    }
    .accordion-sub-content.active {
        max-height: 500px;
        margin-top: 1.2rem;
    }
    .accordion-sub-content a {
        color: var(--text-secondary);
        font-size: 1.1rem;
        transition: var(--transition-smooth);
    }
    .accordion-sub-content a:hover {
        color: var(--accent-gold);
    }
    .hamburger.active .line:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    .hamburger.active .line:nth-child(2) {
        opacity: 0;
    }
    .hamburger.active .line:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .navbar {
        padding: 1.5rem 5%;
    }
    .navbar.scrolled {
        padding: 1.2rem 5%;
    }

    .hero-content {
        padding-top: 40px;
        margin-top: 0;
    }

    .hero-title {
        font-size: 2.2rem;
        line-height: 1.2;
        margin-bottom: 1.5rem;
    }
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        padding: 0;
    }
    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
    }
    
    .slider-controls {
        bottom: 8%;
        gap: 1rem;
    }
    
    .slider-arrow {
        width: 35px;
        height: 35px;
    }
    
    .slider-arrow svg {
        width: 18px;
        height: 18px;
    }
    
    .dot {
        width: 10px;
        height: 10px;
    }
    
    .scroll-indicator {
        display: none;
    }
    
    .category-card {
        height: 400px;
    }
    .subcategories-grid {
        grid-template-columns: 1fr;
    }
    
    .useful-footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-brand p {
        margin: 0 auto 1.5rem auto;
    }
    .footer-socials {
        justify-content: center;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .about-stats {
        flex-direction: column;
        gap: 2rem;
    }
}

/* --- Cinematic Theme Enhancements for About & Contact Pages --- */
.contact-simple-modern .contact-title,
.about-hero h2, .about-hero h3 {
    color: var(--accent-gold);
}

.feature-card {
    background: var(--bg-surface-elevated);
    border: 1px solid var(--border-subtle);
    padding: 2.5rem;
    border-radius: 8px;
    transition: var(--transition-smooth);
}
.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-gold);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}
.feature-card h3 {
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

.input-group-simple input,
.input-group-simple textarea {
    background: var(--bg-surface-elevated);
    border: 1px solid var(--border-subtle);
    color: var(--text-primary);
    padding: 1rem;
    border-radius: 4px;
    width: 100%;
    font-family: var(--font-sans);
}
.input-group-simple input:focus,
.input-group-simple textarea:focus {
    border-color: var(--accent-gold);
    outline: none;
}
.input-group-simple label {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    display: block;
}

.contact-info-large {
    background: var(--bg-surface-elevated);
    border: 1px solid var(--border-subtle);
    padding: 3rem;
    border-radius: 8px;
}
.contact-info-large p {
    color: var(--text-secondary);
}
.contact-info-large a {
    color: var(--accent-gold);
}

/* --- Premium Form floating Labels & Glassmorphism --- */
.premium-glass-form {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    padding: 2.5rem;
    border-radius: 12px;
}
.input-group-floating {
    position: relative;
    margin-bottom: 1.5rem;
    flex: 1;
}
.input-group-floating input,
.input-group-floating textarea {
    width: 100%;
    background: transparent;
    border: 1px solid var(--border-subtle);
    color: var(--text-primary);
    padding: 1.2rem 1rem 0.8rem 1rem;
    border-radius: 4px;
    font-family: var(--font-sans);
    font-size: 1rem;
    transition: var(--transition-smooth);
}
.input-group-floating label {
    position: absolute;
    top: 50%;
    left: 1rem;
    transform: translateY(-50%);
    color: var(--text-secondary);
    font-size: 1rem;
    pointer-events: none;
    transition: all 0.3s ease;
}
.input-group-floating textarea ~ label {
    top: 1.5rem;
    transform: none;
}
.input-group-floating input:focus,
.input-group-floating textarea:focus {
    border-color: var(--accent-gold);
    outline: none;
    background: rgba(255,255,255,0.02);
}
.input-group-floating input:focus ~ label,
.input-group-floating input:not(:placeholder-shown) ~ label,
.input-group-floating textarea:focus ~ label,
.input-group-floating textarea:not(:placeholder-shown) ~ label {
    top: 0.3rem;
    font-size: 0.75rem;
    color: var(--accent-gold);
    transform: translateY(0);
}

.glowing-btn:hover {
    box-shadow: 0 0 15px rgba(197, 160, 89, 0.4);
    transform: translateY(-2px);
}

/* --- Dark Mode Google Map --- */
.dark-mode-map {
    filter: invert(90%) hue-rotate(180deg) contrast(85%);
    border-radius: 8px;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}
.dark-mode-map:hover {
    opacity: 1;
}
body.light-theme .dark-mode-map {
    filter: none;
    opacity: 1;
}

/* --- Interactive FAQ Accordion --- */
.faq-container {
    padding: 4rem 5%;
    max-width: 800px;
    margin: 0 auto;
}
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.faq-item {
    background: var(--bg-surface-elevated);
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
    overflow: hidden;
}
.faq-question {
    width: 100%;
    text-align: left;
    padding: 1.5rem;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-size: 1.1rem;
    font-family: var(--font-sans);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s ease;
}
.faq-question:hover {
    color: var(--accent-gold);
}
.faq-icon {
    font-size: 1.5rem;
    color: var(--accent-gold);
    transition: transform 0.3s ease;
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 1.5rem;
    color: var(--text-secondary);
}
.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem 1.5rem;
    max-height: 200px;
}
.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

/* --- Global Responsive Overrides --- */
@media (max-width: 768px) {
    .faq-container {
        padding: 3rem 5%;
    }
    .feature-card {
        padding: 2rem 1.5rem;
    }
    .contact-info-large {
        padding: 2rem 1.5rem;
    }
    .premium-glass-form {
        padding: 2rem 1.5rem;
    }
    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.8rem;
        letter-spacing: 1px;
    }
    .hero-buttons .btn {
        max-width: 220px;
    }
}

/* --- Light Theme Overrides --- */
body.light-theme {
    --bg-base: #ffffff;
    --bg-surface: #f8f9fa;
    --bg-surface-elevated: #ffffff;
    
    --accent-gold: hsl(38, 45%, 40%);
    --accent-gold-hover: hsl(38, 55%, 30%);
    
    --text-primary: #111111;
    --text-secondary: rgba(17, 17, 17, 0.7);
    
    --border-subtle: rgba(0, 0, 0, 0.1);
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(0, 0, 0, 0.05);
}

/* --- Dropdown Styles --- */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropbtn {
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

.dropbtn svg {
    transition: transform 0.3s ease;
}
.dropdown:hover .dropbtn svg {
    transform: rotate(180deg);
}

.dropdown-content {
    visibility: hidden;
    opacity: 0;
    transform: translateY(15px);
    position: absolute;
    background-color: var(--bg-surface-elevated);
    min-width: 220px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1000;
    border: 1px solid var(--border-subtle);
    border-radius: 4px;
    top: 100%;
    left: 0;
    max-height: 70vh;
    overflow-y: auto;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.dropdown-content::-webkit-scrollbar {
    width: 6px;
}
.dropdown-content::-webkit-scrollbar-track {
    background: transparent;
}
.dropdown-content::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
}

.dropdown-content.show {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.dropdown-content a {
    color: var(--text-primary);
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-transform: none;
    font-size: 0.9rem;
    letter-spacing: normal;
}

/* Ensure dropdown links stay dark even when navbar links are white */
.navbar.transparent-hero:not(.scrolled):not(.menu-open) .nav-links .dropdown-content a {
    color: var(--text-primary);
}
.navbar.transparent-hero:not(.scrolled):not(.menu-open) .nav-links .dropdown-content a.group-title {
    color: var(--accent-gold);
}
.navbar.transparent-hero:not(.scrolled):not(.menu-open) .nav-links .dropdown-content a:hover {
    color: var(--accent-gold);
}
.navbar.transparent-hero:not(.scrolled):not(.menu-open) .nav-links .dropdown-content a.group-title:hover {
    color: var(--text-primary);
    background-color: transparent;
}

.dropdown-content a:hover {
    background-color: var(--bg-surface);
    color: var(--accent-gold);
}

.dropdown:hover .dropdown-content {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

body.light-theme .dropdown-content {
    background-color: var(--bg-surface-elevated);
}
body.light-theme .dropdown-content::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.2);
}

/* --- Products Grid --- */
.products-section {
    padding: 2rem 0 6rem 0;
}

.products-header {
    text-align: center;
    margin-bottom: 4rem;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.product-card {
    background-color: var(--bg-surface-elevated);
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

body.light-theme .product-card:hover {
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.product-image {
    width: 100%;
    height: 350px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-info {
    padding: 2rem;
    text-align: center;
}

.product-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.product-info p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.product-info .btn-secondary {
    padding: 0.8rem 2rem;
    font-size: 0.9rem;
}


/* --- Mega Menu & Sub-dropdown Styles --- */
@media (min-width: 1024px) {
    .dropdown {
        position: static !important;
    }
    .dropdown-content {
        left: 50% !important;
        right: auto !important;
        transform: translateX(-50%) translateY(15px) !important;
        width: 90vw !important;
        max-width: 1000px !important;
        display: grid !important;
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 2rem !important;
        padding: 2.5rem !important;
        border-radius: 8px !important;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4) !important;
        background: var(--bg-surface-elevated) !important;
    }
    .dropdown-content.show, .dropdown:hover .dropdown-content {
        display: grid !important;
        visibility: visible !important;
        opacity: 1 !important;
        transform: translateX(-50%) translateY(0) !important;
    }
    .dropdown-group {
        display: flex;
        flex-direction: column;
        gap: 0.8rem;
    }
    .dropdown-group .group-title {
        font-family: var(--font-serif);
        font-size: 1.2rem;
        color: var(--accent-gold);
        border-bottom: 1px solid var(--border-subtle);
        padding-bottom: 0.5rem;
        margin-bottom: 0.5rem;
        display: block;
        text-transform: none;
        letter-spacing: normal;
        font-weight: 600;
        padding-left: 0;
    }
    .dropdown-group a.group-title:hover {
        color: var(--text-primary);
    }
    .dropdown-group .group-links {
        display: flex;
        flex-direction: column;
        gap: 0.4rem;
    }
    .dropdown-group .group-links a {
        padding: 4px 0 !important;
        font-size: 0.95rem;
        color: var(--text-secondary) !important;
        transition: var(--transition-smooth);
        display: block;
    }
    .dropdown-group .group-links a:hover {
        color: var(--accent-gold) !important;
        padding-left: 8px !important;
        background-color: transparent !important;
    }
}

.subcategory-section.hide {
    display: none !important;
}

/* --- Category Landing Page Enhancements --- */
.subcategory-section {
    margin-bottom: 7rem;
}

.subcategory-header {
    margin-bottom: 3.5rem;
    text-align: left;
}

.category-meta-tag {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--accent-gold);
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 0.5rem;
}

.subcategory-title {
    font-size: 2.8rem;
    font-family: var(--font-serif);
    color: var(--text-primary);
    margin-bottom: 0.8rem;
}

.title-divider {
    width: 60px;
    height: 2px;
    background: var(--accent-gold);
    margin: 0.8rem 0 1.5rem 0;
    transition: width 0.4s ease;
}

.subcategory-section:hover .title-divider {
    width: 120px;
}

.subcategory-desc {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 800px;
    line-height: 1.7;
}

/* Glassmorphism Product Card Override */
.product-card {
    background: var(--bg-surface-elevated);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.5s ease;
    position: relative;
}

.product-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-gold);
    box-shadow: 0 20px 40px rgba(197, 160, 89, 0.15);
}

body.light-theme .product-card:hover {
    box-shadow: 0 20px 40px rgba(197, 160, 89, 0.1);
}

.product-image {
    position: relative;
    width: 100%;
    height: 380px;
    overflow: hidden;
    background: #0d0d0d;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: zoom-in;
}

.product-card:hover .product-image img {
    transform: scale(1.06);
}

/* Badge overlay */
.product-badge {
    position: absolute;
    top: 1.2rem;
    left: 1.2rem;
    background: rgba(10, 10, 10, 0.75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(220, 185, 120, 0.3);
    color: var(--accent-gold);
    padding: 0.4rem 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 4px;
    z-index: 10;
    transition: all 0.3s ease;
}

.product-card:hover .product-badge {
    background: var(--accent-gold);
    color: var(--bg-base);
    border-color: var(--accent-gold);
}

/* --- Interactive Filter Bar --- */
.filter-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin: 0 auto 4.5rem auto;
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-subtle);
    border-radius: 50px;
    max-width: fit-content;
}

body.light-theme .filter-bar {
    background: rgba(0, 0, 0, 0.02);
}

.filter-btn {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    padding: 0.8rem 1.8rem;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    border-radius: 40px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.filter-btn:hover {
    color: var(--accent-gold);
}

.filter-btn.active {
    background: var(--accent-gold);
    color: var(--bg-base);
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(197, 160, 89, 0.3);
}

/* Beautiful Interactive Lightbox */
.lightbox-modal {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.lightbox-modal.active {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    max-width: 90%;
    max-height: 85%;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.lightbox-modal.active .lightbox-content {
    transform: scale(1);
}

.lightbox-img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.8);
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 2.2rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.lightbox-close:hover {
    color: var(--accent-gold);
}

.lightbox-caption {
    color: var(--text-secondary);
    text-align: center;
    margin-top: 1rem;
    font-size: 1.1rem;
    font-family: var(--font-sans);
    letter-spacing: 1px;
}

/* Responsiveness for Filter Bar */
@media (max-width: 768px) {
    .filter-bar {
        border-radius: 16px;
        max-width: 100%;
        width: 100%;
        padding: 0.8rem;
        gap: 0.5rem;
    }
    .filter-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.8rem;
        width: calc(50% - 0.25rem);
        text-align: center;
        border-radius: 8px;
    }
    .filter-btn.active {
        box-shadow: 0 2px 8px rgba(197, 160, 89, 0.2);
    }
    .product-image {
        height: 300px;
    }
}
