/* ===== Navbar Styles ===== */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(10, 14, 39, 0.95);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.navbar-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.navbar-logo a {
    font-size: 1.5rem;
    color: var(--accent-gold);
    font-weight: 600;
    letter-spacing: 2px;
    white-space: nowrap;
    text-decoration: none;
    transition: all 0.3s ease;
}

.navbar-logo a:hover {
    color: var(--accent-champagne);
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

/* ===== Navbar Search ===== */
.navbar-search {
    flex: 1;
    max-width: 400px;
    position: relative;
}

.search-input {
    width: 100%;
    padding: 10px 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--text-light);
    border-radius: 4px;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.search-input::placeholder {
    color: var(--text-muted);
}

.search-input:focus {
    outline: none;
    border-color: var(--accent-gold);
    background: rgba(212, 175, 55, 0.1);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
}

.search-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(10, 14, 39, 0.98);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-top: none;
    border-radius: 0 0 4px 4px;
    max-height: 300px;
    overflow-y: auto;
    display: none;
    z-index: 100;
    backdrop-filter: blur(10px);
}

.search-suggestions.active {
    display: block;
}

.search-suggestion {
    padding: 12px 15px;
    cursor: pointer;
    transition: all 0.2s ease;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.search-suggestion:last-child {
    border-bottom: none;
}

.search-suggestion:hover {
    background: rgba(212, 175, 55, 0.1);
    padding-left: 20px;
}

.search-suggestion-name {
    color: var(--text-light);
    font-weight: 500;
}

.search-suggestion-type {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-left: 8px;
}

/* ===== Navbar Menu ===== */
.navbar-menu {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: var(--text-light);
    transition: all 0.3s ease;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    position: relative;
    padding-bottom: 5px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    transition: width 0.3s ease;
}

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

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* ===== Navbar Icons ===== */
.navbar-icons {
    display: flex;
    gap: 20px;
    align-items: center;
}

.icon-link {
    position: relative;
    font-size: 1.2rem;
    color: var(--text-light);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.icon-link:hover {
    color: var(--accent-gold);
}

.badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--accent-gold);
    color: var(--primary-dark);
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
}

/* ===== Hamburger Menu ===== */
.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 6px;
    padding: 5px;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--accent-gold);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(10px, 10px);
}

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

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* ===== Mobile Menu ===== */
.mobile-menu {
    display: none;
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    background: rgba(10, 14, 39, 0.98);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    backdrop-filter: blur(10px);
    animation: slideDown 0.3s ease;
    z-index: 999;
}

.mobile-menu.active {
    display: block;
}

.mobile-menu-links {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-height: 300px;
    overflow-y: auto;
}

.mobile-menu-links a {
    padding: 15px 20px;
    color: var(--text-light);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.3s ease;
}

.mobile-menu-links a:hover {
    background: rgba(212, 175, 55, 0.1);
    color: var(--accent-gold);
    padding-left: 30px;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== Floating WhatsApp Button ===== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-champagne));
    color: var(--primary-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
    animation: bounce 2s infinite;
    transition: all 0.3s ease;
    z-index: 900;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.6);
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* ===== Responsive Navigation ===== */
@media (max-width: 768px) {
    .navbar-container {
        gap: 15px;
    }
    
    .navbar-search {
        max-width: 150px;
    }
    
    .search-input {
        padding: 8px 12px;
        font-size: 0.85rem;
    }
    
    .navbar-menu {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .navbar-logo a {
        font-size: 1.1rem;
    }
    
    .navbar-icons {
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .navbar-container {
        gap: 10px;
    }
    
    .navbar-logo a {
        font-size: 0.95rem;
    }
    
    .navbar-search {
        display: none;
    }
    
    .search-input::placeholder {
        font-size: 0.8rem;
    }
    
    .icon-link {
        font-size: 1rem;
    }
    
    .whatsapp-float {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
        bottom: 20px;
        right: 20px;
    }
}
