/* Umrah Services Navbar e505a81f */

.usn-e505a81f-navbar {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    position: relative;
    z-index: 1000;
    font-family: 'Poppins', sans-serif;
}

.usn-e505a81f-nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

/* Logo */
.usn-e505a81f-logo {
    padding: 15px 0;
}
.usn-e505a81f-logo a {
    color: #fff;
    text-decoration: none;
    font-size: 28px;
    font-weight: bold;
    letter-spacing: 1px;
}
.usn-e505a81f-logo span {
    color: #fbbf24;
}

/* Nav Menu */
.usn-e505a81f-nav-menu {
    display: flex;
    list-style: none;
    gap: 5px;
    margin: 0;
    padding: 0;
}
.usn-e505a81f-nav-item {
    position: relative;
}
.usn-e505a81f-nav-link {
    color: #fff;
    text-decoration: none;
    padding: 25px 15px;
    display: block;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    border-radius: 5px;
    white-space: nowrap;
}
.usn-e505a81f-nav-link:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-2px);
}
.usn-e505a81f-nav-link i {
    font-size: 10px;
    margin-left: 4px;
}

/* Dropdown */
.usn-e505a81f-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 220px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    list-style: none;
    z-index: 100;
    padding: 0;
    margin: 0;
}
.usn-e505a81f-dropdown:hover .usn-e505a81f-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.usn-e505a81f-dropdown-menu li a {
    color: #333;
    padding: 12px 20px;
    display: block;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
}
.usn-e505a81f-dropdown-menu li a:hover {
    background: #f0f0f0;
    padding-left: 25px;
    color: #2a5298;
}
.usn-e505a81f-dropdown-menu li:first-child a {
    border-radius: 8px 8px 0 0;
}
.usn-e505a81f-dropdown-menu li:last-child a {
    border-radius: 0 0 8px 8px;
}

/* Auth Buttons */
.usn-e505a81f-auth-buttons {
    display: flex;
    gap: 12px;
    align-items: center;
}
.usn-e505a81f-btn-login,
.usn-e505a81f-btn-signup {
    padding: 10px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 14px;
}
.usn-e505a81f-btn-login {
    background: transparent;
    color: white;
    border-color: white;
}
.usn-e505a81f-btn-login:hover {
    background: white;
    color: #2a5298;
    transform: translateY(-2px);
}
.usn-e505a81f-btn-signup {
    background: #fbbf24;
    color: #1e3c72;
}
.usn-e505a81f-btn-signup:hover {
    background: #f59e0b;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* User Profile */
.usn-e505a81f-user-profile {
    display: none;
    align-items: center;
    gap: 15px;
}
.usn-e505a81f-user-name {
    color: white;
    font-weight: 500;
}
.usn-e505a81f-user-avatar {
    width: 40px;
    height: 40px;
    background: #fbbf24;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1e3c72;
    font-weight: bold;
    cursor: pointer;
    font-size: 16px;
}
.usn-e505a81f-logout-btn {
    background: #ef4444;
    color: white;
    padding: 8px 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 14px;
}
.usn-e505a81f-logout-btn:hover {
    background: #dc2626;
    transform: translateY(-2px);
}

/* Mobile Toggle */
.usn-e505a81f-menu-toggle {
    display: none;
    font-size: 28px;
    color: white;
    cursor: pointer;
    padding: 15px 0;
}

/* Modal */
.usn-e505a81f-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    animation: usnFadeIn_e505a81f 0.3s ease;
}
@keyframes usnFadeIn_e505a81f {
    from { opacity: 0; }
    to { opacity: 1; }
}
.usn-e505a81f-modal-content {
    background: white;
    margin: 5% auto;
    max-width: 450px;
    width: 90%;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    animation: usnSlideDown_e505a81f 0.3s ease;
}
@keyframes usnSlideDown_e505a81f {
    from { transform: translateY(-50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}
.usn-e505a81f-modal-header {
    padding: 20px;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    border-radius: 20px 20px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.usn-e505a81f-modal-header h2 {
    margin: 0;
    font-size: 22px;
}
.usn-e505a81f-close {
    font-size: 28px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: white;
}
.usn-e505a81f-close:hover {
    transform: scale(1.1);
}
.usn-e505a81f-modal-body {
    padding: 30px;
}
.usn-e505a81f-form-group {
    margin-bottom: 20px;
}
.usn-e505a81f-form-group input {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 16px;
    transition: all 0.3s ease;
    box-sizing: border-box;
}
.usn-e505a81f-form-group input:focus {
    outline: none;
    border-color: #2a5298;
}
.usn-e505a81f-auth-submit-btn {
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}
.usn-e505a81f-auth-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}
.usn-e505a81f-switch-auth {
    text-align: center;
    margin-top: 20px;
}
.usn-e505a81f-switch-auth a {
    color: #2a5298;
    text-decoration: none;
    font-weight: 600;
}
.usn-e505a81f-error-msg {
    color: #ef4444;
    font-size: 14px;
    margin-top: 5px;
    margin-bottom: 10px;
    display: none;
}

/* Notification */
.usn-e505a81f-notification {
    position: fixed;
    top: 100px;
    right: 20px;
    color: white;
    padding: 15px 25px;
    border-radius: 10px;
    z-index: 10000;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    font-weight: 500;
    animation: usnSlideIn_e505a81f 0.3s ease;
}
.usn-e505a81f-notification.usn-e505a81f-success { background: #10b981; }
.usn-e505a81f-notification.usn-e505a81f-error-notif { background: #ef4444; }
@keyframes usnSlideIn_e505a81f {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}
@keyframes usnSlideOut_e505a81f {
    from { transform: translateX(0); opacity: 1; }
    to { transform: translateX(100%); opacity: 0; }
}

/* Responsive */
@media (max-width: 1024px) {
    .usn-e505a81f-nav-container {
        padding: 0 20px;
    }
    .usn-e505a81f-nav-link {
        padding: 25px 10px;
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .usn-e505a81f-menu-toggle {
        display: block;
    }
    .usn-e505a81f-nav-menu {
        display: none;
        width: 100%;
        flex-direction: column;
        padding: 20px;
    }
    .usn-e505a81f-nav-menu.usn-e505a81f-active {
        display: flex;
    }
    .usn-e505a81f-nav-item {
        width: 100%;
    }
    .usn-e505a81f-nav-link {
        padding: 12px 15px;
    }
    .usn-e505a81f-dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: rgba(255,255,255,0.1);
        box-shadow: none;
        margin-left: 20px;
        margin-top: 5px;
        display: none;
        border-radius: 5px;
    }
    .usn-e505a81f-dropdown.usn-e505a81f-dd-active .usn-e505a81f-dropdown-menu {
        display: block;
    }
    .usn-e505a81f-dropdown-menu li a {
        color: white;
    }
    .usn-e505a81f-dropdown-menu li a:hover {
        background: rgba(255,255,255,0.15);
        color: #fbbf24;
    }
    .usn-e505a81f-auth-buttons {
        width: 100%;
        justify-content: center;
        padding: 15px 0;
    }
    .usn-e505a81f-user-profile {
        width: 100%;
        justify-content: center;
        padding: 15px 0;
    }
}
