:root {
    /* Color Palette */
    --clr-primary: #000000;
    /* Black */
    --clr-primary-dark: #333333;
    --clr-secondary: #000000;
    /* Black */
    --clr-light: #ffffff;
    /* Pure white */
    --clr-light-muted: #f5f5f5;
    /* Light gray */
    --clr-text: #000000;
    --clr-text-light: #ffffff;
    --clr-text-muted: #666666;

    /* Typography */
    --font-main: 'Outfit', sans-serif;

    /* Spacing */
    --space-1: 0.5rem;
    --space-2: 1rem;
    --space-3: 2rem;
    --space-4: 4rem;
    --space-5: 6rem;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-slow: 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* Utility Classes */
.container {
    width: 90%;
    max-width: 1280px;
    margin: 0 auto;
}

.section {
    padding: var(--space-5) 0;
}

.bg-light {
    background-color: var(--clr-light-muted);
}

.bg-dark {
    background-color: var(--clr-secondary);
    color: var(--clr-text-light);
}

.text-center {
    text-align: center;
}

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

.text-light-muted {
    color: rgba(255, 255, 255, 0.7);
}

.mt-1 {
    margin-top: var(--space-1);
}

.mt-2 {
    margin-top: var(--space-2);
}

.mt-3 {
    margin-top: var(--space-3);
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-4);
}

@media (min-width: 768px) {
    .grid-2 {
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }
}

.grid-3 {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-3);
}

@media (min-width: 768px) {
    .grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Typography Classes */
.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 500;
    margin-bottom: var(--space-2);
    line-height: 1.2;
    color: var(--clr-secondary);
}

.bg-dark .section-title {
    color: var(--clr-text-light);
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--clr-text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.section-text {
    font-size: 1.1rem;
    margin-bottom: var(--space-2);
    color: var(--clr-text-muted);
}

.bg-dark .section-text {
    color: rgba(255, 255, 255, 0.8);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    border-radius: 2px;
    transition: var(--transition-normal);
    text-align: center;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--clr-primary);
    color: var(--clr-text-light);
}

.btn-primary:hover {
    background-color: var(--clr-primary-dark);
}

.btn-outline {
    border-color: var(--clr-secondary);
    color: var(--clr-secondary);
}

.btn-outline:hover {
    background-color: var(--clr-secondary);
    color: var(--clr-text-light);
}

.btn-text {
    padding: 0;
    color: var(--clr-primary);
    font-weight: 500;
    position: relative;
}

.btn-text::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--clr-primary);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform var(--transition-normal);
}

.btn-text:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

.btn-full {
    width: 100%;
}

/* Navigation */
.navbar {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(253, 251, 249, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: var(--transition-normal);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.03);
}

.nav-container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 40px;
}

.nav-links {
    display: none;
}

@media (min-width: 992px) {
    .nav-links {
        display: flex;
        gap: 2rem;
    }

    .nav-links a {
        font-weight: 500;
        font-size: 0.95rem;
        color: var(--clr-text);
        position: relative;
        transition: var(--transition-fast);
    }

    .nav-links a:hover {
        color: var(--clr-primary);
    }

    /* Dropdown CSS */
    .nav-links li {
        position: relative;
    }

    .dropdown-menu {
        position: absolute;
        top: 100%;
        left: -1rem;
        background-color: var(--clr-light);
        min-width: 280px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px);
        transition: all 0.3s ease;
        padding: 0.5rem 0;
        z-index: 100;
        border-radius: 4px;
        display: flex;
        flex-direction: column;
        gap: 0;
    }

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

    .dropdown-menu li {
        width: 100%;
        display: block;
    }

    .dropdown-menu li a {
        display: block;
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
        color: var(--clr-text);
        font-weight: 400;
    }

    .dropdown-menu li a:hover {
        background-color: var(--clr-light-muted);
        color: var(--clr-secondary);
    }
}

/* Mobile Navigation */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 2001;
    /* Above overlay */
}

.menu-toggle span {
    width: 100%;
    height: 2px;
    background-color: var(--clr-secondary);
    transition: all 0.3s ease;
    transform-origin: center;
}

.mobile-only {
    display: none;
}

@media (max-width: 991px) {
    .menu-toggle {
        display: flex;
    }

    .mobile-only {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        height: 100dvh;
        background-color: var(--clr-light);
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        gap: 1.5rem;
        transform: translateX(100%);
        transition: transform 0.6s cubic-bezier(0.85, 0, 0.15, 1);
        z-index: 2000;
        padding: 5rem 2rem 2rem;
        overflow-y: auto;
    }

    .nav-links.active {
        transform: translateX(0);
    }

    .nav-links li {
        width: 100%;
        text-align: center;
    }

    .nav-links li:not(.mobile-actions) a {
        font-size: 1.5rem;
        font-weight: 500;
        color: var(--clr-secondary);
        display: block;
        padding: 0.5rem 0;
    }

    .nav-links li.mobile-actions a {
        padding: 0.8rem 1.8rem;
        /* Restore button padding */
        font-size: 1rem;
    }

    /* Logo in mobile menu */
    .mobile-logo {
        margin-bottom: 2rem;
    }

    .mobile-logo img {
        height: 35px;
        margin: 0 auto;
    }

    /* Actions in mobile menu */
    .mobile-actions {
        margin-top: 2rem;
        display: flex;
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        max-width: 300px;
    }

    .mobile-actions .btn {
        width: 100%;
    }

    .nav-links .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: transparent;
        text-align: center;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease;
    }

    .nav-links .has-dropdown.active .dropdown-menu {
        max-height: 500px;
        margin-top: 1rem;
    }

    .nav-links .dropdown-menu li a {
        font-size: 1.1rem;
        padding: 0.5rem 0;
        color: var(--clr-text-muted);
    }

    /* Hamburger Animation */
    .menu-toggle.active span {
        background-color: var(--clr-secondary);
    }

    .menu-toggle.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

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

    .menu-toggle.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    html.menu-open,
    body.menu-open {
        overflow: hidden;
        height: 100vh;
        width: 100%;
    }
}

.nav-actions {
    display: none;
}

@media (min-width: 768px) {
    .nav-actions {
        display: flex;
        gap: 1rem;
        align-items: center;
    }
}

/* Hero Section */
.hero {
    position: relative;
    height: 90vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 80px;
    overflow: hidden;
}

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

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

.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), rgba(0, 0, 0, 0.7));
    z-index: -1;
}

.hero-content {
    max-width: 800px;
    padding: 0 2rem;
    color: var(--clr-text-light);
}

.hero-subtitle {
    font-size: 0.9rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    font-weight: 500;
}

.hero-title {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-text {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    margin-bottom: 2.5rem;
    font-weight: 300;
    opacity: 0.9;
}

/* About Section */
.values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 600px) {
    .values-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.value-card {
    background-color: var(--clr-light-muted);
    padding: 1.5rem;
    border-left: 3px solid var(--clr-secondary);
    transition: transform var(--transition-fast);
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-title {
    font-weight: 500;
    font-size: 1.1rem;
    color: var(--clr-secondary);
    margin-bottom: 0.5rem;
}

.value-desc {
    font-size: 0.95rem;
    color: var(--clr-text-muted);
    margin-bottom: 0;
}

.about-image-wrapper {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
}

.about-image {
    width: 100%;
    height: auto;
    display: block;
}

.image-accent {
    position: absolute;
    top: -10px;
    right: -10px;
    bottom: 20px;
    left: 20px;
    border: 2px solid var(--clr-primary);
    z-index: -1;
}

/* Products Section */
.product-card {
    background-color: var(--clr-light);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform var(--transition-normal);
}

.product-card:hover {
    transform: translateY(-10px);
}

.product-image {
    height: 250px;
    background-size: cover;
    background-position: center;
}

.product-content {
    padding: 2rem;
}

.product-title {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: var(--clr-secondary);
}

.product-text {
    color: var(--clr-text-muted);
    margin-bottom: 1.5rem;
}

/* Warehouse Section */
.image-stack {
    position: relative;
    height: 500px;
}

.img-back {
    position: absolute;
    top: 0;
    left: 0;
    width: 70%;
    height: 350px;
    object-fit: cover;
    border-radius: 4px;
}

.img-front {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 60%;
    height: 300px;
    object-fit: cover;
    border-radius: 4px;
    border: 10px solid var(--clr-light);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.stats-grid {
    display: flex;
    gap: 2rem;
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--clr-primary);
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--clr-text-muted);
    margin-top: 0.5rem;
}

/* Showroom Section */
.showroom-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 200px);
    gap: 1rem;
}

.showroom-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}

.img-1 {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
}

.img-2 {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
}

.img-3 {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
}

/* Contact Section */
.contact-item {
    margin-bottom: 1.5rem;
}

.contact-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--clr-secondary);
    margin-bottom: 0.25rem;
}

.bg-dark .contact-label {
    color: rgba(255, 255, 255, 0.6);
}

.contact-value {
    color: var(--clr-text);
}

.bg-dark .contact-value {
    color: var(--clr-text-light);
}

.contact-value a:hover {
    color: var(--clr-text-muted);
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
}

.hours-list li:last-child {
    border-bottom: none;
}

.contact-form {
    background-color: var(--clr-light);
    padding: 3rem;
    border-radius: 4px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media(min-width: 600px) {
    .form-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.form-grid-3 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media(min-width: 600px) {
    .form-grid-3 {
        grid-template-columns: 2fr 1fr 1fr;
    }
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--clr-secondary);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 2px;
    font-family: var(--font-main);
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--clr-primary);
}

.form-checkbox {
    display: flex;
    gap: 0.5rem;
    align-items: flex-start;
}

.form-checkbox label {
    font-size: 0.9rem;
    color: var(--clr-text-muted);
}

/* Footer */
.footer {
    background-color: #000000;
    color: var(--clr-text-light);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

@media(min-width: 768px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr;
    }
}

.footer-logo {
    height: 35px;
    filter: brightness(0) invert(1);
    margin-bottom: 1.5rem;
}

.footer-desc {
    color: rgba(255, 255, 255, 0.6);
    max-width: 300px;
}

.footer-heading {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--clr-light);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all var(--transition-slow);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.2s;
}

.delay-2 {
    transition-delay: 0.4s;
}

.delay-3 {
    transition-delay: 0.6s;
}

/* Top Bar */
.top-bar {
    background-color: #0a0a0a;
    color: #fff;
    padding: 0.5rem 0;
    font-size: 0.75rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    z-index: 1001;
}

.top-bar .container {
    display: flex;
    justify-content: center;
    gap: 3rem;
}

.top-bar-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .top-bar .container {
        gap: 0;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        justify-content: flex-start;
    }

    .top-bar .container::-webkit-scrollbar {
        display: none;
    }

    .top-bar-item {
        flex: 0 0 100%;
        justify-content: center;
        scroll-snap-align: center;
        padding: 0 1rem;
    }
}