:root {
    --bg-color: #030303;
    --surface-color: #0a0a0a;
    --surface-light: #161616;
    --text-primary: #ffffff;
    --text-secondary: #8892b0;
    --accent-blue: #0055ff;
    --accent-deep: #001f3f;
    --glow-color: rgba(0, 85, 255, 0.4);
    --glow-color-strong: rgba(0, 85, 255, 0.6);
    --header-bg: rgba(3, 3, 3, 0.8);
    --header-bg-solid: rgba(3, 3, 3, 0.95);
    --shine-bg: rgba(255, 255, 255, 0.04);
    --shine-glow: rgba(255, 255, 255, 0.03);
    --logo-bg: #000;
}

[data-theme="light"] {
    --bg-color: #f8fafc;
    --surface-color: #ffffff;
    --surface-light: #e2e8f0;
    --text-primary: #0f172a;
    --text-secondary: #64748b;
    --accent-blue: #0055ff;
    --accent-deep: #bfdbfe;
    --glow-color: rgba(0, 85, 255, 0.15);
    --glow-color-strong: rgba(0, 85, 255, 0.3);
    --header-bg: rgba(248, 250, 252, 0.85);
    --header-bg-solid: rgba(248, 250, 252, 0.98);
    --shine-bg: rgba(0, 0, 0, 0.04);
    --shine-glow: rgba(0, 0, 0, 0.03);
    --logo-bg: #fff;
}

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

html {
    scroll-behavior: smooth;
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-primary);
}

body {
    overflow-x: hidden;
}

/* Header */
.glow-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background-color: var(--header-bg);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--accent-deep);
    box-shadow: 0 4px 30px var(--glow-color);
    transition: all 0.3s ease;
}

.glow-header.scrolled {
    background-color: var(--header-bg-solid);
    box-shadow: 0 4px 40px var(--glow-color-strong);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--text-primary);
}

.desktop-nav a {
    color: var(--text-secondary);
    text-decoration: none;
    margin-left: 2.5rem;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

.desktop-nav a:hover {
    color: var(--accent-blue);
    text-shadow: 0 0 10px var(--glow-color);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.theme-toggle-btn {
    background: transparent;
    border: 1px solid var(--accent-blue);
    color: var(--text-primary);
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.theme-toggle-btn:hover {
    box-shadow: 0 0 10px var(--glow-color);
    background-color: var(--accent-blue);
    color: #fff;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    z-index: 101;
}

.mobile-menu-btn span {
    width: 25px;
    height: 2px;
    background-color: var(--text-primary);
    transition: 0.3s;
}

/* Hero Gallery Background */
.hero-bg-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    background-color: var(--surface-color);
}

.bg-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.bg-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.4) 0%, transparent 20%, transparent 80%, rgba(0,0,0,0.6) 100%);
    z-index: 1;
}

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

/* --- New Editorial Hero Layout --- */
.hero-overlay-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 3fr 1fr;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 0 5vw;
    z-index: 2;
    color: #ffffff;
}

/* Left Column: Slide Counter */
.slide-counter {
    display: flex;
    align-items: flex-start;
    gap: 5px;
    font-weight: 800;
}
.current-slide {
    font-size: 4rem;
    line-height: 1;
}
.total-slides {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 5px;
}

/* Center Column: Text Block */
.hero-text-block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.hero-subtitle {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1rem;
    font-weight: 600;
    transition: opacity 0.3s ease;
}
.hero-main-title {
    font-size: clamp(3rem, 6vw, 6rem);
    font-weight: 800;
    line-height: 1.1;
    text-transform: uppercase;
    margin-bottom: 2rem;
    transition: opacity 0.3s ease;
}
.hero-cta-link {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
}
.cta-line-wrapper {
    display: flex;
    align-items: center;
}
.cta-line {
    width: 50px;
    height: 2px;
    background-color: #ffffff;
}
.cta-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #ffffff;
    margin-left: 10px;
}

/* Right Column: Navigation */
.hero-right-col {
    display: flex;
    justify-content: flex-end;
}
.slider-nav {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.nav-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: transparent;
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}
.nav-btn:hover {
    border-color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
}

/* Brands Section */
.brands-section {
    padding: 8rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 6rem;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
}

.brand-card {
    position: relative;
    background-color: var(--surface-color);
    border: 1px solid var(--surface-light);
    border-radius: 12px;
    padding: 2.5rem;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease, border-color 0.4s ease;
    cursor: pointer;
}

.card-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200%;
    height: 60px;
    background-color: var(--shine-bg);
    box-shadow: 0 0 30px 15px var(--shine-glow);
    margin-left: -100%;
    margin-top: -30px;
    transform: rotate(-45deg) translateY(500px);
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
    z-index: 0;
    pointer-events: none;
    mix-blend-mode: screen;
}

.brand-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px var(--glow-color);
    border-color: var(--accent-blue);
}

.brand-card:hover .card-glow {
    transform: rotate(-45deg) translateY(-500px);
}

.brand-logo-wrapper {
    position: relative;
    z-index: 1;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 2rem;
    border: 2px solid transparent;
    transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

.brand-card:hover .brand-logo-wrapper {
    border-color: var(--accent-blue);
    box-shadow: 0 0 20px var(--glow-color);
}

.brand-logo-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.brand-info {
    position: relative;
    z-index: 1;
}

.brand-info h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.brand-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.key-details {
    list-style: none;
    margin-bottom: 2rem;
}

.key-details li {
    font-size: 0.85rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.key-details li::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    background-color: var(--accent-blue);
    border-radius: 50%;
    margin-right: 10px;
}

.btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background-color: transparent;
    color: var(--accent-blue);
    border: 1px solid var(--accent-blue);
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease, box-shadow 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.brand-card:hover .btn {
    background-color: var(--accent-blue);
    color: var(--text-primary);
    box-shadow: 0 0 15px var(--glow-color);
}

/* About Section */
.about-section {
    padding: 7rem 2rem;
    text-align: center;
    background-color: var(--surface-color);
    border-top: 1px solid var(--surface-light);
    border-bottom: 1px solid var(--surface-light);
}

.about-content {
    max-width: 850px;
    margin: 0 auto;
}

.about-content h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

.about-content p {
    color: var(--text-secondary);
    font-size: 1.2rem;
    line-height: 1.8;
}

/* Contact Section */
.contact-section {
    padding: 8rem 2rem;
    background-color: var(--bg-color);
}

.contact-container {
    max-width: 600px;
    margin: 0 auto;
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background-color: var(--surface-color);
    border: 1px solid var(--surface-light);
    border-radius: 8px;
    color: var(--text-primary);
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--accent-blue);
    box-shadow: 0 0 10px var(--glow-color);
}

.submit-btn {
    align-self: flex-start;
    padding: 1rem 2rem;
    cursor: pointer;
    font-size: 1rem;
}

.form-status {
    margin-top: 1rem;
    font-size: 0.95rem;
    font-weight: 600;
    padding: 0.5rem;
    border-radius: 4px;
    display: none;
}

.form-status.success {
    display: block;
    color: #10b981;
    background-color: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.form-status.error {
    display: block;
    color: #ef4444;
    background-color: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
}

/* Footer */
.glow-footer {
    background-color: var(--surface-color);
    border-top: 1px solid var(--accent-deep);
    box-shadow: 0 -4px 30px var(--glow-color);
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand {
    max-width: 350px;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.footer-brand p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-links-group h4 {
    color: var(--text-primary);
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
}

.footer-links-group a {
    display: block;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    margin-bottom: 0.8rem;
    transition: color 0.3s ease;
}

.footer-links-group a:hover {
    color: var(--accent-blue);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--surface-light);
}

.copyright {
    color: var(--text-secondary);
    font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .brand-name-bg {
        font-size: 22vw;
    }

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

        .footer-contact { text-align: left !important; }
    /* Hero layout mobile fixes */
    .slide-counter { display: none; }
    .hero-overlay-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto 1fr auto;
        padding: 100px 5vw 40px 5vw;
        gap: 2rem;
    }
    .hero-left-col {
        display: flex;
        justify-content: center;
    }
    .hero-text-block {
        align-items: center;
        text-align: center;
    }
    .hero-main-title {
        font-size: clamp(2rem, 8vw, 3rem);
    }
    .hero-right-col {
        display: flex;
        justify-content: center;
    }
    .slider-nav {
        flex-direction: row;
    }
}

/* Mobile Navigation Menu */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--header-bg-solid);
    backdrop-filter: blur(15px);
    z-index: 99;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.mobile-nav-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.mobile-nav-overlay.active .mobile-nav-links {
    transform: translateY(0);
}

.mobile-nav-link {
    color: var(--text-primary);
    text-decoration: none;
    font-size: clamp(1.2rem, 5vw, 2rem);
    font-weight: 800;
    letter-spacing: 1px;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.mobile-nav-link:hover,
.mobile-nav-link:active {
    color: var(--accent-blue);
}

/* Hamburger to X animation */
.mobile-menu-btn.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}
.mobile-menu-btn.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Gallery Page Styles */
/* Gallery Filters */
.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}



.filter-btn {
    padding: 0.5rem 1rem;
    background: transparent;
    border: 1px solid var(--border-color);
    border-radius: 30px;
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--accent-blue);
    color: white;
    border-color: var(--accent-blue);
    box-shadow: 0 0 15px rgba(0, 153, 255, 0.4);
}

.gallery-showcase {
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    margin-bottom: 6rem;
}

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

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    background-color: var(--surface-color);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

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

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px var(--glow-color);
}

.gallery-item-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    color: #fff;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.2s ease-out;
}

.gallery-item:hover .gallery-item-info {
    transform: translateY(0);
    opacity: 1;
}

.gallery-item-info h3 {
    margin: 0 0 0.5rem 0;
    font-size: 1.2rem;
    font-weight: 600;
}

.gallery-item-info p {
    margin: 0;
    font-size: 0.9rem;
    color: #ddd;
}

/* Gallery Slider */
.gallery-hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 1;
}

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

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

.slide::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.8));
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -40%);
    text-align: center;
    color: white;
    z-index: 3;
    opacity: 0;
    transition: opacity 1s ease 0.5s, transform 1s ease 0.5s;
    width: 80%;
}

.slide.active .slide-content {
    opacity: 1;
    transform: translate(-50%, -50%);
}

.slide-content h2 {
    font-size: 4rem;
    margin-bottom: 1rem;
    text-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.slide-content p {
    font-size: 1.5rem;
    color: #ddd;
}

/* Slider Controls */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 3rem;
    padding: 1rem;
    cursor: pointer;
    z-index: 10;
    transition: color 0.3s ease, transform 0.3s ease;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.slider-btn:hover {
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.prev-btn { left: 2rem; }
.next-btn { right: 2rem; }

.slider-dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: white;
    box-shadow: 0 0 10px white;
}

/* Hide filtered items */
.gallery-item.hide {
    display: none;
}



/* Dropdown CSS for Desktop Nav */
.nav-dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: var(--surface-color);
    min-width: 220px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    z-index: 1000;
    border-radius: 8px;
    border: 1px solid var(--surface-light);
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.5rem 0;
}

/* For Product dropdown, which has 12 items, we might want it slightly wider or scrollable if screen is small, but a fixed width is fine */
.dropdown-content a {
    color: var(--text-primary);
    padding: 10px 16px;
    text-decoration: none;
    display: block;
    font-size: 0.95rem;
    font-weight: 400;
    transition: background-color 0.2s, color 0.2s;
    text-align: left;
}

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

.nav-dropdown:hover .dropdown-content {
    display: block;
    animation: fadeInDropdown 0.2s ease forwards;
}

@keyframes fadeInDropdown {
    from { opacity: 0; transform: translate(-50%, -10px); }
    to { opacity: 1; transform: translate(-50%, 0); }
}

/* Ensure mobile nav hides this if we use the same structure, but mobile nav is separate in this HTML */