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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #e2e8f0;
    background-color: #0f172a;
}

/* Container */
.container-lux {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Navigation */
.nav-lux {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(245, 158, 11, 0.1);
    z-index: 1000;
}

.nav-container-lux {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 64px;
}

.logo-lux img {
    width: 120px;
    height: auto;
}

.menu-lux {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.link-lux {
    text-decoration: none;
    color: #94a3b8;
    font-size: 0.9rem;
    font-weight: 400;
    transition: color 0.25s ease;
}

.link-lux:hover {
    color: #f59e0b;
}

.link-lux.active {
    color: #f59e0b;
}

.btn-lux {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: #0f172a !important;
    padding: 8px 20px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.25s ease;
}

.btn-lux:hover {
    box-shadow: 0 0 20px rgba(245, 158, 11, 0.3);
}

/* Mobile Toggle */
.toggle-lux {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.bar-lux {
    width: 22px;
    height: 2px;
    background: #f59e0b;
    border-radius: 2px;
    transition: 0.3s;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border: 1px solid #f59e0b;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.25s ease;
}

.btn-primary {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: #0f172a;
    border: none;
}

.btn-primary:hover {
    box-shadow: 0 0 25px rgba(245, 158, 11, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #f59e0b;
}

.btn-secondary:hover {
    background: rgba(245, 158, 11, 0.1);
}

.btn-large {
    padding: 14px 36px;
    font-size: 1rem;
}

/* Section Titles */
.section-title-lux {
    font-size: 2rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 0.75rem;
    color: #f1f5f9;
    letter-spacing: -0.02em;
}

.section-subtitle-lux {
    font-size: 1rem;
    text-align: center;
    color: #64748b;
    margin-bottom: 3rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
.footer-lux {
    background: #020617;
    color: #94a3b8;
    padding: 3rem 0 1.5rem;
    border-top: 1px solid rgba(245, 158, 11, 0.1);
}

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

.footer-section-lux h4 {
    margin-bottom: 0.75rem;
    color: #f1f5f9;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.footer-section-lux ul {
    list-style: none;
}

.footer-section-lux ul li {
    margin-bottom: 0.4rem;
}

.footer-section-lux ul li a {
    color: #64748b;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.25s ease;
}

.footer-section-lux ul li a:hover {
    color: #f59e0b;
}

.footer-bottom-lux {
    border-top: 1px solid rgba(245, 158, 11, 0.1);
    padding-top: 1.5rem;
    text-align: center;
    color: #475569;
    font-size: 0.8rem;
}

/* Responsive */
@media (max-width: 768px) {
    .menu-lux {
        position: fixed;
        left: -100%;
        top: 64px;
        flex-direction: column;
        background: rgba(15, 23, 42, 0.98);
        backdrop-filter: blur(16px);
        width: 100%;
        text-align: center;
        padding: 2rem 0;
        gap: 1.5rem;
        z-index: 999;
        height: calc(100vh - 64px);
        overflow-y: auto;
        border-bottom: 1px solid rgba(245, 158, 11, 0.1);
    }

    .menu-lux.active {
        left: 0;
    }

    .toggle-lux {
        display: flex;
    }

    .toggle-lux.active .bar-lux:nth-child(2) {
        opacity: 0;
    }

    .toggle-lux.active .bar-lux:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .toggle-lux.active .bar-lux:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .section-title-lux {
        font-size: 1.6rem;
    }

    .container-lux {
        padding: 0 16px;
    }

    .footer-content-lux {
        flex-direction: column;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .section-title-lux {
        font-size: 1.4rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes glowPulse {
    0%, 100% {
        box-shadow: 0 0 20px rgba(245, 158, 11, 0.2);
    }
    50% {
        box-shadow: 0 0 30px rgba(245, 158, 11, 0.4);
    }
}

.fade-in-up {
    animation: fadeInUp 0.5s ease-out;
}
