/* ============================================
   HEADER V5.1 - PREMIUM RANI TOUR & TRAVELS
   ============================================ */

/* ---------- HEADER ---------- */
.rani-header-v5 {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: rgba(10, 10, 35, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding: 0 30px;
    height: 80px;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.rani-header-v5.scrolled {
    background: rgba(10, 10, 35, 0.98);
    box-shadow: 0 4px 40px rgba(0, 0, 0, 0.4);
    height: 70px;
}

.rani-header-inner-v5 {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    gap: 20px;
}

/* ---------- LOGO ---------- */
.rani-logo-wrap-v5 {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.rani-logo-v5 {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
}

.rani-logo-v5:hover {
    text-decoration: none;
}

.rani-logo-circle-v5 {
    position: relative;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FF6B35, #E71D36);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 25px rgba(255, 107, 53, 0.35);
    transition: all 0.3s ease;
    overflow: hidden;
}

.rani-logo-v5:hover .rani-logo-circle-v5 {
    transform: scale(1.05) rotate(-5deg);
    box-shadow: 0 8px 40px rgba(255, 107, 53, 0.5);
}

.rani-logo-img-v5 {
    width: 42px;
    height: 42px;
    object-fit: contain;
    border-radius: 50%;
    position: relative;
    z-index: 2;
}

.rani-logo-pulse-v5 {
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border-radius: 50%;
    border: 2px solid rgba(255, 107, 53, 0.3);
    animation: raniPulseV5 2s ease-in-out infinite;
}

@keyframes raniPulseV5 {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.3); opacity: 0; }
}

.rani-logo-ring-v5 {
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    border-radius: 50%;
    border: 1px solid rgba(255, 107, 53, 0.1);
    animation: raniRingV5 3s ease-in-out infinite;
}

@keyframes raniRingV5 {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.2); opacity: 0; }
}

.rani-logo-text-v5 {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.rani-logo-name-v5 {
    font-size: 24px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.rani-logo-dot-v5 {
    font-size: 16px;
    background: linear-gradient(135deg, #FF6B35, #F7C59F, #2EC4B6, #FF6B35);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: raniDotGlowV5 3s ease-in-out infinite;
}

@keyframes raniDotGlowV5 {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.rani-logo-tag-v5 {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: -2px;
}

.rani-header-v5.scrolled .rani-logo-circle-v5 {
    width: 44px;
    height: 44px;
}

.rani-header-v5.scrolled .rani-logo-img-v5 {
    width: 34px;
    height: 34px;
}

.rani-header-v5.scrolled .rani-logo-name-v5 {
    font-size: 20px;
}

.rani-header-v5.scrolled .rani-logo-tag-v5 {
    font-size: 8px;
}

/* ---------- NAVIGATION ---------- */
.rani-nav-v5 {
    display: flex;
    align-items: center;
    height: 100%;
    flex: 1;
    justify-content: center;
}

.rani-nav-list-v5 {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 6px;
    height: 100%;
    align-items: center;
}

.rani-nav-item-v5 {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.rani-nav-item-v5 > a {
    display: flex;
    align-items: center;
    padding: 0 18px;
    height: 100%;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    letter-spacing: 0.3px;
    gap: 4px;
    white-space: nowrap;
}

.rani-nav-item-v5 > a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #FF6B35, #2EC4B6);
    transition: all 0.3s ease;
    transform: translateX(-50%);
    border-radius: 2px;
}

.rani-nav-item-v5 > a:hover::after,
.rani-nav-item-v5.current-menu-item > a::after,
.rani-nav-item-v5.current_page_item > a::after {
    width: 60%;
}

.rani-nav-item-v5 > a:hover {
    color: #ffffff;
}

.rani-nav-item-v5.current-menu-item > a,
.rani-nav-item-v5.current_page_item > a {
    color: #ffffff;
}

.rani-nav-arrow-v5 {
    font-size: 9px;
    transition: transform 0.3s ease;
    color: rgba(255, 255, 255, 0.3);
}

.rani-has-children-v5:hover .rani-nav-arrow-v5 {
    transform: rotate(180deg);
}

/* ---------- SUB MENU ---------- */
.rani-sub-menu-v5 {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    min-width: 220px;
    background: rgba(20, 10, 40, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 12px;
    padding: 8px 0;
    list-style: none;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.rani-has-children-v5:hover .rani-sub-menu-v5 {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.rani-sub-menu-v5 .rani-nav-item-v5 {
    display: block;
    height: auto;
}

.rani-sub-menu-v5 .rani-nav-item-v5 a {
    display: block;
    padding: 10px 20px;
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    transition: all 0.3s ease;
    border-left: 2px solid transparent;
    white-space: nowrap;
}

.rani-sub-menu-v5 .rani-nav-item-v5 a:hover {
    color: #ffffff;
    background: rgba(255, 107, 53, 0.08);
    border-left-color: #FF6B35;
}

.rani-sub-menu-v5 .rani-nav-arrow-v5 {
    display: none;
}

/* ---------- ACTIONS ---------- */
.rani-actions-v5 {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.rani-action-btn-v5 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
}

.rani-action-btn-v5 svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.rani-action-label-v5 {
    font-size: 13px;
    font-weight: 500;
}

/* Search Button */
.rani-search-btn-v5 {
    padding: 8px 14px;
}

.rani-search-btn-v5:hover {
    background: rgba(255, 107, 53, 0.12);
    border-color: rgba(255, 107, 53, 0.3);
    color: #FF6B35;
    transform: translateY(-2px);
}

/* Phone Button */
.rani-phone-btn-v5 {
    gap: 8px;
}

.rani-phone-btn-v5:hover {
    background: rgba(255, 107, 53, 0.12);
    border-color: rgba(255, 107, 53, 0.3);
    color: #FF6B35;
    transform: translateY(-2px);
}

.rani-phone-number-v5 {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

/* WhatsApp Button */
.rani-whatsapp-btn-v5 {
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-color: transparent;
    color: white;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.25);
    padding: 8px 18px;
}

.rani-whatsapp-btn-v5 svg {
    width: 20px;
    height: 20px;
}

.rani-whatsapp-btn-v5:hover {
    transform: scale(1.05) translateY(-2px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
    color: white;
}

/* ---------- TOGGLE ---------- */
.rani-toggle-v5 {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    margin-left: 4px;
    z-index: 100001;
}

.rani-toggle-bar-v5 {
    display: block;
    height: 2px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s ease;
    width: 24px;
}

.rani-toggle-bar-v5:nth-child(2) {
    width: 18px;
}

.rani-toggle-v5.active .rani-toggle-bar-v5:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
    width: 24px;
}
.rani-toggle-v5.active .rani-toggle-bar-v5:nth-child(2) {
    opacity: 0;
    width: 0;
}
.rani-toggle-v5.active .rani-toggle-bar-v5:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
    width: 24px;
}

/* ---------- SEARCH OVERLAY - FIXED ---------- */
.rani-search-v5 {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99999;
    background: rgba(10, 10, 35, 0.98);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    margin: 0;
}

.rani-search-v5.active {
    opacity: 1;
    visibility: visible;
}

.rani-search-box-v5 {
    max-width: 800px;
    width: 100%;
    padding: 40px;
    position: relative;
    margin: 0 auto;
}

.rani-search-close-v5 {
    position: absolute;
    top: -10px;
    right: 0;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.4);
    font-size: 28px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.rani-search-close-v5:hover {
    color: #FF6B35;
    transform: rotate(90deg);
}

.rani-search-form-v5 {
    display: flex;
    gap: 12px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 16px;
    margin-bottom: 20px;
}

.rani-search-input-v5 {
    flex: 1;
    background: none;
    border: none;
    color: white;
    font-size: 32px;
    font-weight: 300;
    padding: 8px 0;
    outline: none;
}

.rani-search-input-v5::placeholder {
    color: rgba(255, 255, 255, 0.25);
}

.rani-search-input-v5:focus {
    outline: none;
}

.rani-search-submit-v5 {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 8px;
}

.rani-search-submit-v5:hover {
    color: #FF6B35;
    transform: scale(1.1);
}

.rani-search-submit-v5 svg {
    width: 28px;
    height: 28px;
}

.rani-search-tags-v5 {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.rani-search-tags-v5 span {
    padding: 6px 18px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 50px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.rani-search-tags-v5 span:hover {
    background: rgba(255, 107, 53, 0.1);
    border-color: rgba(255, 107, 53, 0.2);
    color: #FF6B35;
}

/* ---------- DRAWER MENU - FIXED ---------- */
.rani-drawer-v5 {
    position: fixed;
    top: 0;
    right: 0;
    width: 400px;
    max-width: 90%;
    height: 100vh;
    z-index: 100000;
    background: linear-gradient(180deg, #1a0a2e 0%, #0a0a23 50%, #1a0a2e 100%);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    box-shadow: -10px 0 60px rgba(0, 0, 0, 0.6);
    border-left: 1px solid rgba(255, 255, 255, 0.06);
}

.rani-drawer-v5.active {
    transform: translateX(0);
}

.rani-drawer-inner-v5 {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 30px 28px 30px;
}

.rani-drawer-header-v5 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    flex-shrink: 0;
}

.rani-drawer-logo-v5 {
    display: flex;
    align-items: center;
    gap: 12px;
}

.rani-drawer-logo-img-v5 {
    width: 44px;
    height: 44px;
    object-fit: contain;
    border-radius: 50%;
    border: 2px solid rgba(255, 107, 53, 0.2);
}

.rani-drawer-brand-v5 {
    font-size: 20px;
    font-weight: 700;
    color: white;
    letter-spacing: 0.5px;
}

.rani-drawer-brand-v5 span {
    color: #FF6B35;
}

.rani-drawer-close-v5 {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.4);
    font-size: 28px;
    cursor: pointer;
    padding: 4px 8px;
    transition: all 0.3s ease;
}

.rani-drawer-close-v5:hover {
    color: #FF6B35;
    transform: rotate(90deg);
}

.rani-drawer-body-v5 {
    flex: 1;
    padding: 24px 0;
    overflow-y: auto;
}

.rani-drawer-nav-v5 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.rani-drawer-nav-v5 .rani-nav-item-v5 {
    height: auto;
    display: block;
    margin-bottom: 2px;
}

.rani-drawer-nav-v5 .rani-nav-item-v5 a {
    display: block;
    padding: 14px 18px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 17px;
    font-weight: 500;
    border-radius: 10px;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
    position: relative;
}

.rani-drawer-nav-v5 .rani-nav-item-v5 a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 0;
    background: linear-gradient(180deg, #FF6B35, #2EC4B6);
    transition: height 0.3s ease;
    border-radius: 2px;
}

.rani-drawer-nav-v5 .rani-nav-item-v5 a:hover::before,
.rani-drawer-nav-v5 .rani-nav-item-v5.current-menu-item a::before {
    height: 70%;
}

.rani-drawer-nav-v5 .rani-nav-item-v5 a:hover,
.rani-drawer-nav-v5 .rani-nav-item-v5.current-menu-item a,
.rani-drawer-nav-v5 .rani-nav-item-v5.current_page_item a {
    color: #ffffff;
    background: rgba(255, 107, 53, 0.06);
    border-left-color: #FF6B35;
}

.rani-drawer-nav-v5 .rani-nav-arrow-v5 {
    display: none;
}

.rani-drawer-nav-v5 .rani-sub-menu-v5 {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    padding: 6px 0;
    margin: 4px 0 4px 16px;
    border: none;
    box-shadow: none;
    backdrop-filter: none;
}

.rani-drawer-nav-v5 .rani-sub-menu-v5 .rani-nav-item-v5 a {
    font-size: 15px;
    padding: 10px 18px;
    border-left: 2px solid transparent;
    font-weight: 400;
}

.rani-drawer-nav-v5 .rani-sub-menu-v5 .rani-nav-item-v5 a:hover {
    border-left-color: #FF6B35;
}

.rani-drawer-footer-v5 {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 20px;
    flex-shrink: 0;
}

.rani-drawer-contact-v5 {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
}

.rani-drawer-phone-v5,
.rani-drawer-whatsapp-v5 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex: 1;
    padding: 12px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
}

.rani-drawer-phone-v5 {
    background: rgba(255, 255, 255, 0.06);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.rani-drawer-phone-v5:hover {
    background: rgba(255, 107, 53, 0.15);
    border-color: rgba(255, 107, 53, 0.3);
    color: #FF6B35;
    transform: translateY(-2px);
}

.rani-drawer-phone-v5 svg {
    width: 18px;
    height: 18px;
}

.rani-drawer-whatsapp-v5 {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.2);
}

.rani-drawer-whatsapp-v5:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.3);
    color: white;
}

.rani-drawer-whatsapp-v5 svg {
    width: 18px;
    height: 18px;
}

.rani-drawer-social-v5 {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.rani-drawer-social-v5 span {
    color: rgba(255, 255, 255, 0.3);
    font-size: 13px;
    letter-spacing: 1px;
}

.rani-drawer-social-v5 div {
    display: flex;
    gap: 12px;
}

.rani-drawer-social-v5 a {
    font-size: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
    opacity: 0.4;
}

.rani-drawer-social-v5 a:hover {
    opacity: 1;
    transform: scale(1.15) translateY(-2px);
}

/* ---------- BACKDROP ---------- */
.rani-drawer-backdrop-v5 {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99998;
    background: rgba(0, 0, 0, 0.7);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.rani-drawer-backdrop-v5.active {
    opacity: 1;
    visibility: visible;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1100px) {
    .rani-phone-number-v5 {
        display: none;
    }
    
    .rani-action-label-v5 {
        display: none;
    }
    
    .rani-phone-btn-v5,
    .rani-whatsapp-btn-v5,
    .rani-search-btn-v5 {
        padding: 8px 10px;
    }
}

@media (max-width: 992px) {
    .rani-nav-v5 {
        display: none;
    }
    
    .rani-toggle-v5 {
        display: flex;
    }
    
    .rani-header-v5 {
        padding: 0 20px;
        height: 70px;
    }
    
    .rani-header-v5.scrolled {
        height: 62px;
    }
}

@media (max-width: 768px) {
    .rani-header-v5 {
        padding: 0 16px;
        height: 64px;
    }
    
    .rani-header-v5.scrolled {
        height: 56px;
    }
    
    .rani-logo-circle-v5 {
        width: 44px;
        height: 44px;
    }
    
    .rani-logo-img-v5 {
        width: 34px;
        height: 34px;
    }
    
    .rani-logo-name-v5 {
        font-size: 18px;
    }
    
    .rani-logo-tag-v5 {
        display: none;
    }
    
    .rani-header-v5.scrolled .rani-logo-circle-v5 {
        width: 38px;
        height: 38px;
    }
    
    .rani-header-v5.scrolled .rani-logo-img-v5 {
        width: 28px;
        height: 28px;
    }
    
    .rani-header-v5.scrolled .rani-logo-name-v5 {
        font-size: 15px;
    }
    
    .rani-actions-v5 {
        gap: 6px;
    }
    
    .rani-action-btn-v5 {
        padding: 6px 8px;
    }
    
    .rani-action-btn-v5 svg {
        width: 16px;
        height: 16px;
    }
    
    .rani-drawer-v5 {
        width: 340px;
    }
    
    .rani-search-input-v5 {
        font-size: 24px;
    }
    
    .rani-search-box-v5 {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .rani-header-v5 {
        padding: 0 12px;
        height: 58px;
    }
    
    .rani-header-v5.scrolled {
        height: 52px;
    }
    
    .rani-logo-circle-v5 {
        width: 36px;
        height: 36px;
    }
    
    .rani-logo-img-v5 {
        width: 28px;
        height: 28px;
    }
    
    .rani-logo-name-v5 {
        font-size: 15px;
    }
    
    .rani-logo-dot-v5 {
        font-size: 12px;
    }
    
    .rani-header-v5.scrolled .rani-logo-circle-v5 {
        width: 32px;
        height: 32px;
    }
    
    .rani-header-v5.scrolled .rani-logo-img-v5 {
        width: 24px;
        height: 24px;
    }
    
    .rani-header-v5.scrolled .rani-logo-name-v5 {
        font-size: 13px;
    }
    
    .rani-actions-v5 {
        gap: 4px;
    }
    
    .rani-action-btn-v5 {
        padding: 4px 6px;
    }
    
    .rani-action-btn-v5 svg {
        width: 14px;
        height: 14px;
    }
    
    .rani-drawer-v5 {
        width: 300px;
    }
    
    .rani-drawer-nav-v5 .rani-nav-item-v5 a {
        font-size: 15px;
        padding: 12px 14px;
    }
    
    .rani-drawer-contact-v5 {
        flex-direction: column;
    }
    
    .rani-search-input-v5 {
        font-size: 18px;
    }
    
    .rani-search-tags-v5 span {
        font-size: 12px;
        padding: 4px 12px;
    }
}

/* ---------- REDUCED MOTION ---------- */
@media (prefers-reduced-motion: reduce) {
    .rani-header-v5,
    .rani-header-v5 *,
    .rani-search-v5,
    .rani-search-v5 *,
    .rani-drawer-v5,
    .rani-drawer-v5 * {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}

/* ---------- PRINT ---------- */
@media print {
    .rani-header-v5 {
        position: relative;
        background: white;
        border-bottom: 1px solid #ddd;
        height: auto;
        padding: 20px;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }
    
    .rani-header-v5 * {
        color: #000 !important;
        background: transparent !important;
        backdrop-filter: none !important;
        box-shadow: none !important;
    }
    
    .rani-actions-v5,
    .rani-toggle-v5,
    .rani-search-v5,
    .rani-drawer-v5 {
        display: none !important;
    }
    
    .rani-nav-v5 {
        display: block !important;
    }
}