/* Desktop Hover Dropdown */
    @media (min-width: 992px) {
        .dropdown-hover:hover .dropdown-menu {
            display: block;
            visibility: visible;
            opacity: 1;
            margin-top: 0;
        }
        
        .dropdown-hover .dropdown-menu {
            display: none;
            visibility: hidden;
            opacity: 0;
            transition: all 0.2s ease;
            margin-top: 0.5rem;
        }
        
        .dropdown-hover:hover .dropdown-toggle::after {
            transform: rotate(180deg);
            transition: transform 0.2s ease;
        }
        
        .dropdown-toggle::after {
            transition: transform 0.2s ease;
        }
    }
    
    /* Custom Dropdown Menu Styling */
    .dropdown-menu-custom {
        min-width: 500px;
        padding: 0.5rem;
        border-radius: 15px;
        border: none;
        box-shadow: 0 15px 35px rgba(0,0,0,0.15);
        background: white;
        left: auto;
        right: auto;
    }
    
    .dropdown-menu-custom .dropdown-item {
        padding: 8px 15px;
        border-radius: 10px;
        transition: all 0.2s ease;
        font-weight: 500;
    }
    
    .dropdown-menu-custom .dropdown-item:hover {
        background: var(--kerala-gold, #d4a017);
        color: #1e3d2e;
        transform: translateX(5px);
    }
    
    /* Mobile Responsive */
    @media (max-width: 991px) {
        .dropdown-menu-custom {
            position: static !important;
            width: 100%;
            min-width: auto;
            box-shadow: none;
            background: #f8f9fa;
            margin-top: 0;
            border-radius: 10px;
        }
        
        .dropdown-menu-custom .row {
            flex-direction: column;
        }
        
        .dropdown-menu-custom .col-md-6 {
            width: 100%;
        }
        
        .dropdown-hover .dropdown-toggle {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .dropdown-hover .dropdown-toggle::after {
            margin-left: auto;
        }
        
        /* Mobile touch friendly */
        .dropdown-item {
            padding: 12px 20px !important;
            font-size: 1rem;
        }
        
        .dropdown-menu-custom {
            border: 1px solid #e0d5c0;
            margin-top: 0.5rem;
        }
    }
    
    /* Small devices */
    @media (max-width: 576px) {
        .dropdown-menu-custom .dropdown-item {
            padding: 10px 15px !important;
            font-size: 0.9rem;
        }
    }
    
    /* Active dropdown styling */
    .dropdown-item:active {
        background-color: var(--kerala-gold, #d4a017);
        color: #1e3d2e;
    }
    
    /* Hover gold effect */
    .hover-gold:hover {
        color: var(--kerala-gold, #d4a017) !important;
    }