.modern-navbar {
    background: linear-gradient(135deg, #FFFFFF 0%, #FFF8F3 100%);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 1rem 0;
    border-bottom: 2px solid #FFE8D6;
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

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

.navbar-brand-custom {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.navbar-brand-custom:hover {
    transform: scale(1.05);
}

.brand-icon {
    font-size: 2rem;
    animation: float3D 4s ease-in-out infinite;
    perspective: 1000px;
    transform-style: preserve-3d;
}

@keyframes float3D {
    0%, 100% { 
        transform: translateY(0) rotateX(0deg) rotateY(0deg);
    }
    33% {
        transform: translateY(-10px) rotateX(5deg) rotateY(-5deg);
    }
    66% {
        transform: translateY(-8px) rotateX(-5deg) rotateY(5deg);
    }
}


.brand-text {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #2C2C2C 0%, #FF6B35 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}

.navbar-menu {
    display: flex;
    gap: 0.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-link-custom {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    color: #2C2C2C;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.nav-link-custom::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #FFE8D6 0%, #FFD4B8 100%);
    transition: left 0.3s ease;
    z-index: -1;
}

.nav-link-custom:hover {
    color: #2C2C2C;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.2);
}

.nav-link-custom:hover::before {
    left: 0;
}

.nav-link-custom.active {
    background: linear-gradient(135deg, #2C2C2C 0%, #1a1a1a 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(44, 44, 44, 0.3);
}

.nav-link-custom.active:hover {
    color: white;
}

.nav-link-custom .nav-icon {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.nav-link-custom:hover .nav-icon {
    transform: scale(1.2) rotate(5deg);
}

.navbar-toggler-custom {
    display: none;
    background: white;
    border: 2px solid #E8E8E8;
    border-radius: 10px;
    padding: 0.5rem 0.75rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.navbar-toggler-custom:hover {
    background: #2C2C2C;
    border-color: #2C2C2C;
}

.navbar-toggler-custom:hover .toggler-icon {
    background: white;
}

.toggler-icon {
    display: block;
    width: 25px;
    height: 3px;
    background: #2C2C2C;
    margin: 5px 0;
    transition: all 0.3s ease;
    border-radius: 3px;
}

@media (max-width: 768px) {
    .navbar-toggler-custom {
        display: block;
    }

    .navbar-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, #FFFFFF 0%, #FFF8F3 100%);
        flex-direction: column;
        padding: 1rem;
        gap: 0.5rem;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
        border-radius: 0 0 20px 20px;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .navbar-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-link-custom {
        width: 100%;
        justify-content: center;
    }

    .brand-text {
        font-size: 1.25rem;
    }

    .brand-icon {
        font-size: 1.75rem;
    }
}

.navbar-divider {
    width: 2px;
    height: 30px;
    background: linear-gradient(180deg, transparent 0%, #E8E8E8 50%, transparent 100%);
}

@media (max-width: 768px) {
    .navbar-divider {
        display: none;
    }
}