html {
    scroll-behavior: smooth;
}
header {
    padding: 0.8rem 0;
    position: relative;
    background: #0a0a0a;
    width: 100%;
    z-index: 1000;
    transition: var(--transition-smooth);
}
/* Removed top offset to fix gap with relative positioning */
header.scrolled {
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(10px);
    padding: 0.5rem 0;
}
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 100% !important;
    padding-left: 5% !important;
    padding-right: 5% !important;
}
.logo img {
    height: 40px;
}
.nav-menu {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}
.header-nav-list {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}
.header-nav-list li {
    list-style: none;
}
.nav-link:hover {
    color: var(--primary);
}
.menu-toggle {
    display: none;
}
.mobile-actions {
    display: none;
}

/* Footer */
footer {
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--glass-border);
}
.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 3rem;
}
.footer-contact, .footer-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
    flex-wrap: wrap;
}
@media (max-width: 768px) {
    .footer-contact {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        width: 100%;
    }
    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 2.5rem;
    }
}
.footer-contact-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 1.2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: var(--text-white);
    transition: var(--transition-smooth);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
}
.footer-contact-link:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary);
    transform: translateY(-2px);
}
.footer-contact-link .icon-brand {
    background: transparent;
    border: none;
    width: auto;
    height: auto;
    padding: 0;
}
@media (max-width: 480px) {
    .footer-contact-link {
        font-size: 0.9rem;
        padding: 0.4rem 1rem;
        width: 100%;
        justify-content: center;
    }
}
.footer-contact svg {
    display: block;
    flex-shrink: 0;
}
.icon-whatsapp, .icon-email {
    display: flex;
    align-items: center;
    justify-content: center;
}
.icon-whatsapp {
    color: #25D366;
}
.icon-email {
    color: var(--primary);
}
.footer-menu li {
    margin: 0;
}
.footer-menu a {
    color: var(--text-muted);
}
.footer-menu a:hover {
    color: var(--primary);
}
.footer-bottom {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border);
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Responsive Legacy */
@media (max-width: 782px) {
    .admin-bar header {
        top: 46px;
    }
}

@media (max-width: 768px) {
    .mobile-actions {
        display: flex;
        align-items: center;
        gap: 0.75rem;
    }
    .menu-toggle, .mobile-action-btn {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 38px;
        height: 38px;
        z-index: 1001;
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.15);
        border-radius: 10px;
        padding: 0;
        cursor: pointer;
        outline: none;
        transition: var(--transition-smooth);
        position: relative;
    }
    .mobile-action-btn {
        color: var(--primary);
        text-decoration: none;
    }
    .mobile-action-btn svg {
        display: block;
        width: 20px;
        height: 20px;
    }
    .hamburger, .hamburger::before, .hamburger::after {
        content: '';
        display: block;
        width: 18px;
        height: 2px;
        background: var(--text-white);
        transition: var(--transition-smooth);
        position: absolute;
    }
    .hamburger {
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
    .hamburger::before {
        top: -6px;
        left: 0;
    }
    .hamburger::after {
        top: 6px;
        left: 0;
    }
    .menu-toggle[aria-expanded="true"] .hamburger {
        background: transparent;
    }
    .menu-toggle[aria-expanded="true"] .hamburger::before {
        transform: rotate(45deg);
        top: 0;
    }
    .menu-toggle[aria-expanded="true"] .hamburger::after {
        transform: rotate(-45deg);
        top: 0;
    }
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: transparent;
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        padding: 2rem;
        gap: 2rem;
        transition: var(--transition-smooth);
        z-index: 1000;
        display: flex;
    }
    .header-nav-list {
        flex-direction: column;
        width: 100%;
        text-align: center;
        gap: 2rem;
    }
    .nav-menu.active {
        right: 0;
    }
    .nav-link {
        font-size: 1.5rem;
        font-weight: 600;
    }
    .logo img {
        height: 32px;
    }
    .footer-brand .logo img {
        height: 60px;
    }
    header {
        padding: 0.6rem 0;
    }
}
