
/* Mobile dropdown improvements */
@media (max-width: 991px) {
    /* Make dropdown toggles more tappable */
    .dropdown-toggle {
        cursor: pointer;
        position: relative;
        z-index: 1060;
    }
    
    /* Ensure dropdown menus don't interfere with toggles */
    .dropdown-menu {
        position: relative !important;
        z-index: 1055;
        margin-top: 5px !important;
        margin-bottom: 10px !important;
        transition: all 0.3s ease;
    }
    
    /* Visual feedback for active dropdown */
    .dropdown-toggle[aria-expanded="true"] {
        background: rgba(76, 201, 240, 0.15) !important;
        border-radius: 12px 12px 0 0;
    }
    
    /* Smooth animation for dropdown */
    .dropdown-menu.show {
        animation: slideDown 0.3s ease forwards;
    }
    
    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    /* Ensure dropdown items are clickable */
    .dropdown-item-with-icon {
        pointer-events: auto;
        position: relative;
        z-index: 1060;
    }
}










/* Navbar Wrapper */
.navbar-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1040;
}

/* Offer Panel - Normal Style */
.offer-panel {
    background: linear-gradient(135deg, rgba(76, 201, 240, 0.15), rgba(30, 64, 175, 0.15));
    backdrop-filter: blur(10px) saturate(180%);
    -webkit-backdrop-filter: blur(10px) saturate(180%);
    border-bottom: 1px solid rgba(76, 201, 240, 0.2);
    padding: 8px 0;
}

.offer-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.offer-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.offer-icon {
    color: #ffd700;
    font-size: 1rem;
}

.offer-text {
    color: #ffffff;
    font-size: 0.9rem;
}

.offer-text .highlight {
    color: #ffd700;
    font-weight: 700;
}

.offer-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #ffd700, #ffa500);
    color: #0a0e17;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.offer-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

/* Navbar */
.navbar-gg {
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(76, 201, 240, 0.1);
    padding: 12px 0;
}

.navbar-gg.scrolled {
    background: rgba(0, 0, 0, 0.15);
    padding: 8px 0;
}

/* Brand */
.brand-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-pulse {
    width: 35px;
    height: 35px;
    animation: pulseGlow 2s infinite;
}

@keyframes pulseGlow {
    0%, 100% { filter: drop-shadow(0 0 6px rgba(76, 201, 240, 0.5)); }
    50% { filter: drop-shadow(0 0 12px rgba(76, 201, 240, 0.8)); }
}

.brand-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.brand-text {
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 3px;
}

.brand-glow {
    background: linear-gradient(135deg, #4cc9f0, #1e40af);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.brand-subtle {
    color: #ffffff;
}

/* Navbar Items */
.navbar-nav {
    gap: 5px;
}

.nav-link {
    color: #ffffff !important;
    padding: 8px 15px !important;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.nav-link:hover {
    background: rgba(76, 201, 240, 0.1) !important;
}

.nav-link.active {
    background: rgba(76, 201, 240, 0.15) !important;
}

.nav-icon {
    font-size: 1rem;
    width: 18px;
}

.dropdown-arrow {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
    margin-left: 5px;
}

.dropdown.show .dropdown-arrow {
    transform: rotate(180deg);
}

/* Old Style Big Dropdown Panels */
.dropdown-menu {
    background: rgba(0, 0, 0, 0.3) !important;
    backdrop-filter: blur(40px) saturate(200%);
    -webkit-backdrop-filter: blur(40px) saturate(200%);
    border: 1px solid rgba(76, 201, 240, 0.2);
    border-radius: 20px;
    padding: 25px;
    margin-top: 15px;
    width: 700px !important;
    max-width: 90vw;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.hosting-menu {
    left: -200px !important;
}

.important-menu {
    left: -300px !important;
}

/* Dropdown Title */
.dropdown-title {
    color: #4cc9f0;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(76, 201, 240, 0.2);
    display: flex;
    align-items: center;
    gap: 8px;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

/* Dropdown Items with Icons - With Blur */
.dropdown-item-with-icon {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 15px;
    border-radius: 12px;
    margin-bottom: 8px;
    text-decoration: none;
    color: #ffffff;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px) saturate(180%);
    -webkit-backdrop-filter: blur(10px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.dropdown-item-with-icon:hover {
    background: rgba(76, 201, 240, 0.15);
    backdrop-filter: blur(15px) saturate(200%);
    -webkit-backdrop-filter: blur(15px) saturate(200%);
    border-color: rgba(76, 201, 240, 0.3);
    transform: translateX(8px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Icon Wrapper */
.icon-wrapper {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.icon-wrapper i {
    color: white;
    font-size: 1.3rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.dropdown-item-with-icon:hover .icon-wrapper {
    transform: scale(1.1);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

.dropdown-item-with-icon div {
    display: flex;
    flex-direction: column;
}

.dropdown-item-with-icon strong {
    font-size: 0.95rem;
    margin-bottom: 4px;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.dropdown-item-with-icon span {
    font-size: 0.8rem;
    color: #b0b0b0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Highlight item */
.highlight-item {
    background: rgba(255, 215, 0, 0.1);
    backdrop-filter: blur(10px) saturate(180%);
    -webkit-backdrop-filter: blur(10px) saturate(180%);
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.highlight-item:hover {
    background: rgba(255, 215, 0, 0.2);
    backdrop-filter: blur(15px) saturate(200%);
    -webkit-backdrop-filter: blur(15px) saturate(200%);
    border-color: rgba(255, 215, 0, 0.4);
}

.highlight-item .icon-wrapper {
    box-shadow: 0 8px 16px rgba(255, 215, 0, 0.3);
}

/* Action Buttons */
.action-group {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3px;
    margin-left: 15px;
}

.action-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.action-free {
    background: transparent;
    color: #ffffff;
}

.action-panel {
    background: transparent;
    color: #4cc9f0;
}

.action-free:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-1px);
}

.action-panel:hover {
    background: rgba(76, 201, 240, 0.1);
    transform: translateY(-1px);
}

.action-divider {
    width: 1px;
    height: 20px;
    background: rgba(255, 255, 255, 0.1);
    margin: 0 5px;
}

.action-arrow {
    transition: transform 0.3s ease;
    font-size: 0.8rem;
}

.action-panel:hover .action-arrow {
    transform: translateX(3px);
}

/* Mobile Styles */
@media (max-width: 991px) {
    .offer-content {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .navbar-collapse {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 350px;
        height: 100vh;
        background: rgba(0, 0, 0, 0.4) !important;
        backdrop-filter: blur(40px) saturate(200%);
        -webkit-backdrop-filter: blur(40px) saturate(200%);
        border-left: 2px solid rgba(76, 201, 240, 0.3);
        padding: 20px;
        transition: right 0.3s ease;
        z-index: 1050;
        overflow-y: auto;
    }

    .navbar-collapse.show {
        right: 0;
    }

    .navbar-nav {
        flex-direction: column;
        gap: 8px;
        margin-top: 50px;
    }

    .nav-link {
        padding: 15px 20px !important;
        font-size: 1rem;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 12px;
    }

    /* Mobile Dropdowns */
    .dropdown-menu {
        position: static !important;
        width: 100% !important;
        max-width: 100%;
        background: rgba(0, 0, 0, 0.5) !important;
        backdrop-filter: blur(40px) saturate(200%);
        border: 1px solid rgba(76, 201, 240, 0.2);
        margin: 10px 0;
        padding: 15px;
        transform: none !important;
        left: 0 !important;
        box-shadow: none;
    }

    .dropdown-item-with-icon {
        background: rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(15px) saturate(200%);
        -webkit-backdrop-filter: blur(15px) saturate(200%);
        margin-bottom: 10px;
        padding: 15px;
    }
    
    .dropdown-item-with-icon:hover {
        background: rgba(76, 201, 240, 0.2);
        backdrop-filter: blur(20px) saturate(200%);
        transform: translateX(8px);
    }
    
    .icon-wrapper {
        width: 50px;
        height: 50px;
    }
    
    .icon-wrapper i {
        font-size: 1.5rem;
    }
    
    .dropdown-item-with-icon strong {
        font-size: 1rem;
    }
    
    .dropdown-item-with-icon span {
        font-size: 0.85rem;
    }

    .action-group {
        margin: 20px 0;
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(15px);
    }

    .action-btn {
        padding: 12px 25px;
    }

    /* Mobile Toggle */
    .navbar-toggler {
        border: none;
        padding: 8px;
    }

    .hamburger {
        width: 30px;
        height: 20px;
        position: relative;
    }

    .hamburger-line {
        position: absolute;
        width: 100%;
        height: 2px;
        background: linear-gradient(90deg, #4cc9f0, #1e40af);
        border-radius: 2px;
        transition: all 0.3s ease;
    }

    .hamburger-line:nth-child(1) { top: 0; }
    .hamburger-line:nth-child(2) { top: 9px; }
    .hamburger-line:nth-child(3) { top: 18px; }

    .navbar-toggler[aria-expanded="true"] .hamburger-line:nth-child(1) {
        transform: rotate(45deg);
        top: 9px;
    }

    .navbar-toggler[aria-expanded="true"] .hamburger-line:nth-child(2) {
        opacity: 0;
    }

    .navbar-toggler[aria-expanded="true"] .hamburger-line:nth-child(3) {
        transform: rotate(-45deg);
        top: 9px;
    }

    /* Close button */
    .navbar-collapse::before {
        content: '\f00d';
        font-family: 'Font Awesome 6 Free';
        font-weight: 900;
        position: absolute;
        top: 20px;
        right: 20px;
        color: #ffffff;
        font-size: 1.3rem;
        cursor: pointer;
        width: 40px;
        height: 40px;
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .navbar-collapse::before:hover {
        background: rgba(255, 255, 255, 0.2);
        transform: rotate(90deg);
    }
}

@media (max-width: 576px) {
    .brand-text {
        font-size: 1.1rem;
    }
    
    .logo-pulse {
        width: 30px;
        height: 30px;
    }
    
    .dropdown-item-with-icon {
        padding: 12px;
        gap: 12px;
    }
    
    .icon-wrapper {
        width: 40px;
        height: 40px;
    }
    
    .icon-wrapper i {
        font-size: 1.2rem;
    }
}

