.brand-devacode:hover,
.brand-devacode:focus {
    color: transparent !important; /* Keep original color */
}

/* هدر بلوری */
.glass-header {
    position: relative !important;
    z-index: 1000;
    animation: slideDown 0.7s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

@keyframes slideDown {
    0% {
        transform: translateY(-120%);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

/* نوار ناوبری */
.navbar {
    background: rgba(20, 28, 45, 0.6);
    backdrop-filter: blur(20px);
    border-radius: 70px;
    padding: 6px 28px;
    border: 1px solid rgba(129, 140, 248, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(129, 140, 248, 0.05) inset;
    transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

    .navbar:hover {
        border-color: rgba(129, 140, 248, 0.45);
        box-shadow: 0 15px 45px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(129, 140, 248, 0.15) inset;
        background: rgba(20, 28, 45, 0.75);
    }

/* آیتم‌های منو */
.nav-item {
    position: relative;
    margin: 0 2px;
}

.nav-link {
    color: #cbd5e1 !important;
    font-weight: 600;
    font-size: 12px;
    padding: 10px 22px !important;
    border-radius: 50px;
    transition: all 0.3s;
    position: relative;
    letter-spacing: 0.3px;
}

    .nav-link:hover {
        color: #ffffff !important;
        background: rgba(129, 140, 248, 0.15);
        transform: translateY(-2px);
    }

    /* افکت نور زیر منو */
    .nav-link::after {
        content: '';
        position: absolute;
        bottom: 4px;
        right: 50%;
        width: 0;
        height: 2px;
        background: linear-gradient(90deg, #818cf8, #c084fc, #e8b0ff);
        transition: all 0.3s;
        transform: translateX(50%);
        border-radius: 2px;
    }

    .nav-link:hover::after {
        width: 35px;
    }

    /* آیتم فعال */
    .nav-link.active {
        color: #ffffff !important;
        background: rgba(129, 140, 248, 0.12);
    }

        .nav-link.active::after {
            width: 35px;
        }

/* دکمه تماس خلاقانه */
.btn-contact {
    background: linear-gradient(120deg, #4f46e5, #7c3aed, #6d28d9) !important;
    background-size: 200% auto !important;
    color: white !important;
    padding: 10px 28px !important;
    border-radius: 60px !important;
    box-shadow: 0 4px 15px rgba(79, 70, 229, 0.35);
    transition: all 0.3s ease;
    margin-right: 10px;
    font-weight: 600;
    letter-spacing: 0.5px;
    border: none !important;
}

    .btn-contact:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 25px rgba(79, 70, 229, 0.5);
        background-position: 100% 0 !important;
    }

    .btn-contact::after {
        display: none;
    }

/* دکمه همبرگر */
.navbar-toggler {
    background: rgba(129, 140, 248, 0.15);
    border: 1px solid rgba(129, 140, 248, 0.3);
    border-radius: 50px;
    padding: 8px 18px;
    transition: all 0.3s;
}

    .navbar-toggler:hover {
        background: rgba(129, 140, 248, 0.25);
        border-color: rgba(129, 140, 248, 0.5);
    }

    .navbar-toggler:focus {
        box-shadow: 0 0 0 3px rgba(129, 140, 248, 0.3);
    }

.navbar-toggler-icon {
    font-size: 20px;
    color: #cbd5e1;
}

/* انیمیشن منو */
.collapse.show {
    animation: fadeInMenu 0.3s ease-out;
}

@keyframes fadeInMenu {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* محتوای اصلی */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

    .hero h1 {
        font-size: 56px;
        font-weight: 800;
        background: linear-gradient(135deg, #ffffff, #a5b4fc, #c084fc);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
        margin-bottom: 20px;
        animation: fadeInUp 0.8s ease-out;
    }

    .hero p {
        color: #94a3b8;
        font-size: 18px;
        animation: fadeInUp 0.8s ease-out 0.2s both;
    }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* موبایل */
@media (max-width: 992px) {
    .navbar {
        border-radius: 45px;
        padding: 8px 20px;
    }

    .navbar-nav {
        margin-top: 20px;
        padding-top: 20px;
        border-top: 1px solid rgba(129, 140, 248, 0.15);
    }

    .nav-link {
        text-align: center;
        padding: 12px 20px !important;
    }

        .nav-link::after {
            display: none;
        }

        .nav-link:hover {
            transform: none;
        }

    .btn-contact {
        text-align: center;
        margin: 12px 0 8px 0;
        display: block;
        width: fit-content;
    }

    .hero h1 {
        font-size: 36px;
    }
}

@media (max-width: 576px) {
    .navbar {
        border-radius: 35px;
        padding: 6px 16px;
    }

    .hero h1 {
        font-size: 28px;
    }

    .hero p {
        font-size: 14px;
    }
}

/* ===== دایهدر اختصاصی ===== */
.dh-glass-header {
    z-index: 1000;
    animation: dhSlideDown 0.7s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

@keyframes dhSlideDown {
    0% {
        transform: translateY(-120%);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.dh-navbar {
    background: rgba(20, 28, 45, 0.6);
    backdrop-filter: blur(20px);
    border-radius: 70px;
    padding: 6px 28px;
    border: 1px solid rgba(129, 140, 248, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(129, 140, 248, 0.05) inset;
    transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

    .dh-navbar:hover {
        border-color: rgba(129, 140, 248, 0.45);
        box-shadow: 0 15px 45px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(129, 140, 248, 0.15) inset;
        background: rgba(20, 28, 45, 0.75);
    }

.dh-logo {
    margin: 0;
    padding-left: 8px;
}

.dh-brand {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ffffff, #a5b4fc, #c084fc);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-decoration: none;
}

    .dh-brand:hover,
    .dh-brand:focus {
        color: transparent !important;
    }

/* دکمه همبرگر */
.dh-toggler {
    background: rgba(129, 140, 248, 0.15);
    border: 1px solid rgba(129, 140, 248, 0.3);
    border-radius: 50px;
    padding: 8px 18px;
    transition: all 0.3s;
}

    .dh-toggler:hover {
        background: rgba(129, 140, 248, 0.25);
        border-color: rgba(129, 140, 248, 0.5);
    }

    .dh-toggler:focus {
        box-shadow: 0 0 0 3px rgba(129, 140, 248, 0.3);
    }

/* دکمه ورود */
.dh-login-btn {
    /*    background: linear-gradient(120deg, #4f46e5, #7c3aed, #6d28d9) !important;*/
    background: rgba(129, 140, 248, 0.15);
    color: #cbd5e1 !important;
    padding: 10px 28px !important;
    border-radius: 60px !important;
    transition: all 0.3s ease;
    margin-right: 10px;
    font-weight: 600;
    letter-spacing: 0.5px;
    /*    border: 1px solid;*/
    text-decoration: none;
    display: inline-block;
}

    .dh-login-btn:hover {
        background: rgba(129, 140, 248, 0.25);
        color: #ffffff !important;
        border-color: rgba(129, 140, 248, 0.6);
        transform: translateY(-2px);
    }

/* دکمه کاربری (دراپ داون) */
.dh-user-dropdown {
    background: rgba(129, 140, 248, 0.12);
    padding: 10px 15px !important;
    border-radius: 60px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: .2em;
    color: #ffffff !important;
    text-decoration: none;
    font-weight: 500;
    font-size: 12px;
}

    .dh-user-dropdown:hover {
        background: rgba(129, 140, 248, 0.25);
        transform: translateY(-2px);
    }

    .dh-user-dropdown i:first-child {
        font-size: 18px;
        color: #818cf8;
    }

    .dh-user-dropdown::after {
        display: inline-block;
        margin-left: 8px;
        content: "▼";
        font-size: 10px;
        border: none;
    }

/* منوی دراپ داون */
.dh-dropdown-menu {
    background: rgba(20, 28, 45, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(129, 140, 248, 0.2);
    border-radius: 20px;
    padding: 8px 0;
    font-size: 12px;
    margin-top: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.dh-dropdown-item {
    color: #cbd5e1;
    padding: 10px 24px;
    transition: all 0.2s;
    font-size: 13px;
}

    .dh-dropdown-item:hover {
        background: rgba(129, 140, 248, 0.15);
        color: #ffffff;
    }

    .dh-dropdown-item.text-danger:hover {
        background: rgba(220, 38, 38, 0.15);
        color: #f87171;
    }

/* دکمه تماس */
.dh-contact-btn {
    background: linear-gradient(120deg, #4f46e5, #7c3aed, #6d28d9) !important;
    background-size: 200% auto !important;
    color: white !important;
    padding: 10px 28px !important;
    border-radius: 60px !important;
    box-shadow: 0 4px 15px rgba(79, 70, 229, 0.35);
    transition: all 0.3s ease;
    margin-right: 10px;
    font-weight: 600;
    letter-spacing: 0.5px;
    border: none !important;
    text-decoration: none;
    display: inline-block;
}

    .dh-contact-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 25px rgba(79, 70, 229, 0.5);
        background-position: 100% 0 !important;
        color: white !important;
    }

/* ریسپانسیو */
@media (max-width: 992px) {
    .dh-navbar {
        border-radius: 45px;
        padding: 8px 20px;
    }

    .navbar-nav {
        margin-top: 20px;
        padding-top: 20px;
        border-top: 1px solid rgba(129, 140, 248, 0.15);
    }

    .nav-link {
        text-align: center;
        padding: 12px 20px !important;
    }

    .dh-login-btn,
    .dh-user-dropdown,
    .dh-contact-btn {
        text-align: center;
        margin: 8px auto;
        display: block;
        width: fit-content;
    }

    .dh-dropdown-menu {
        background: rgba(20, 28, 45, 0.98);
        width: 100%;
    }
}

@media (max-width: 576px) {
    .dh-navbar {
        border-radius: 35px;
        padding: 6px 16px;
    }
}

@media (max-width: 991px) {
    .nav-link.btn-contact 
    {
        margin-left: auto;
        margin-right: auto;
    }
}
