:root {
    --primary-color: #000000;
    --secondary-color: gold;
    --white-color: #fefefe;
    --bg-color: #f8fafc;
    --text-color: #9ca3af;
    --transition: ease-in-out 0.3s all;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.2);
    --shadow-xl: 0 16px 32px rgba(0, 0, 0, 0.25);
    --header-height: 70px;
}
html:lang(en){
    h1 ,h2 {
    font-family: "Dancing Script", cursive;

}
}
.sidebar-dropdown {
    margin-bottom: 0.5rem;
}

.sidebar-dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    padding: 0.8rem 1rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #f9fafb;
    cursor: pointer;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.sidebar-dropdown-toggle::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.sidebar-dropdown-toggle:hover::before {
    left: 100%;
}

.sidebar-dropdown-toggle:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateX(3px);
}

.sidebar-dropdown-toggle .dropdown-arrow {
    margin-left: auto;
    transition: transform 0.3s ease;
    font-size: 0.8rem;
}

.sidebar-dropdown-toggle.active .dropdown-arrow {
    transform: rotate(180deg);
}

.sidebar-dropdown-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, opacity 0.3s ease;
    opacity: 0;
    margin-top: 0.5rem;
}

.sidebar-dropdown-menu.active {
    max-height: 200px;
    opacity: 1;
}

.sidebar-dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    padding: 0.7rem 1rem 0.7rem 2.8rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    color: #e5e7eb;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    margin-bottom: 0.3rem;
    border-left: 3px solid transparent;
}

.sidebar-dropdown-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-left-color: #3b82f6;
    transform: translateX(5px);
    color: #ffffff;
}

.sidebar-dropdown-item i {
    font-size: 1rem;
    opacity: 0.8;
}

.sidebar-dropdown-item:hover i {
    opacity: 1;
}

/* Animation for dropdown items */
.sidebar-dropdown-menu.active .sidebar-dropdown-item {
    animation: slideInLeft 0.3s ease forwards;
}

.sidebar-dropdown-menu.active .sidebar-dropdown-item:nth-child(1) {
    animation-delay: 0.1s;
}

.sidebar-dropdown-menu.active .sidebar-dropdown-item:nth-child(2) {
    animation-delay: 0.2s;
}

.videos-gallary {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    min-height: 100vh;
}

.videos-gallary .subtitle {
    font-size: 1.2rem;
    color: #64748b;
    max-width: 600px;
    margin: 30px auto ;
}

.videos-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.video-item {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.video-item[data-index="0"] { animation-delay: 0s; }
.video-item[data-index="1"] { animation-delay: 0.1s; }
.video-item[data-index="2"] { animation-delay: 0.2s; }
.video-item[data-index="3"] { animation-delay: 0.3s; }
.video-item[data-index="4"] { animation-delay: 0.4s; }
.video-item[data-index="5"] { animation-delay: 0.5s; }
.video-item[data-index="6"] { animation-delay: 0.6s; }
.video-item[data-index="7"] { animation-delay: 0.7s; }
.video-item[data-index="8"] { animation-delay: 0.8s; }
.video-item[data-index="9"] { animation-delay: 0.9s; }

.video-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.video-container {
    position: relative;
    width: 100%;
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    background: #000;
    overflow: hidden;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-info {
    padding: 25px 30px;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-top: 1px solid #e2e8f0;
}

.video-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
    line-height: 1.4;
}

.empty-state {
    text-align: center;
    padding: 100px 20px;
    color: #64748b;
}

.empty-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    opacity: 0.5;
}

.empty-state h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: #475569;
}

.empty-state p {
    font-size: 1.1rem;
    max-width: 400px;
    margin: 0 auto;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .videos-gallary {
        padding: 60px 0;
    }
    
    .videos-gallary .creative-title {
        font-size: 2.5rem;
    }
    
    .videos-gallary .subtitle {
        font-size: 1.1rem;
        padding: 0 20px;
    }
    
    .videos-grid {
        gap: 30px;
        padding: 0 20px;
    }
    
    .video-info {
        padding: 20px 25px;
    }
    
    .video-title {
        font-size: 1.2rem;
    }
    
    .empty-state {
        padding: 60px 20px;
    }
    
    .empty-icon {
        font-size: 3rem;
    }
    
    .empty-state h3 {
        font-size: 1.5rem;
    }
}
/*.sidebar-dropdown {*/
/*    margin-bottom: 0.5rem;*/
/*}*/

/*.sidebar-dropdown-toggle {*/
/*    display: flex;*/
/*    align-items: center;*/
/*    gap: 0.9rem;*/
/*    padding: 0.8rem 1rem;*/
/*    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);*/
/*    border: 1px solid rgba(255, 255, 255, 0.1);*/
/*    border-radius: 12px;*/
/*    color: #f9fafb;*/
/*    cursor: pointer;*/
/*    font-size: 0.95rem;*/
/*    transition: all 0.3s ease;*/
/*    position: relative;*/
/*    overflow: hidden;*/
/*}*/

.sidebar-dropdown-toggle::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.sidebar-dropdown-toggle:hover::before {
    left: 100%;
}

.sidebar-dropdown-toggle:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateX(3px);
}

.sidebar-dropdown-toggle .dropdown-arrow {
    margin-left: auto;
    transition: transform 0.3s ease;
    font-size: 0.8rem;
}

.sidebar-dropdown-toggle.active .dropdown-arrow {
    transform: rotate(180deg);
}

.sidebar-dropdown-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, opacity 0.3s ease;
    opacity: 0;
    margin-top: 0.5rem;
}

.sidebar-dropdown-menu.active {
    max-height: 200px;
    opacity: 1;
}

.sidebar-dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    padding: 0.7rem 1rem 0.7rem 2.8rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    color: #e5e7eb;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    margin-bottom: 0.3rem;
    border-left: 3px solid transparent;
}

.sidebar-dropdown-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-left-color: #3b82f6;
    transform: translateX(5px);
    color: #ffffff;
}

.sidebar-dropdown-item i {
    font-size: 1rem;
    opacity: 0.8;
}

.sidebar-dropdown-item:hover i {
    opacity: 1;
}

.sidebar-dropdown-menu.active .sidebar-dropdown-item {
    animation: slideInLeft 0.3s ease forwards;
}

.sidebar-dropdown-menu.active .sidebar-dropdown-item:nth-child(1) {
    animation-delay: 0.1s;
}

.sidebar-dropdown-menu.active .sidebar-dropdown-item:nth-child(2) {
    animation-delay: 0.2s;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}


/* contact buttons */
.floating-contact {
    position: fixed;
    inset-inline-start: 18px;
    inset-block-end: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    z-index: 1050;
}

.floating-btn {
    width: 52px;
    height: 52px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.35);
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.floating-btn i {
    font-size: 1.4rem;
}

.floating-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    border: 2px solid rgba(255, 255, 255, 0.35);
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.floating-btn--whatsapp {
    background: linear-gradient(135deg, #25d366, #128c7e);
    animation: whatsappchatPulse 2.2s infinite;
}

.floating-btn--phone {
    background: var(--primary-color);
    animation: chatPulse 2.2s infinite;
}

.floating-btn:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.55);
}

.floating-btn:hover::before {
    opacity: 1;
    transform: scale(1);
}

@keyframes chatPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(15, 23, 42, 0.7);
    }
    70% {
        box-shadow: 0 0 0 18px rgba(15, 23, 42, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(15, 23, 42, 0);
    }
}

@keyframes whatsappchatPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.75);
    }
    70% {
        box-shadow: 0 0 0 18px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

@media (max-width: 768px) {
    .floating-contact {
        inset-inline-start: 12px;
        inset-block-end: 16px;
        gap: 8px;
    }

    .floating-btn {
        width: 46px;
        height: 46px;
    }

    .floating-btn i {
        font-size: 1.25rem;
    }
}
a {
    text-decoration: none;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--primary-color);
    overflow-x: hidden;
    direction: ltr;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header & Mobile Sidebar */
.main-header {
    background: var(--white-color);
    box-shadow: 0 4px 20px rgba(0, 53, 128, 0.15);
    position: sticky;
    top: 0;
    z-index: 1000;
    animation: slideDown 0.4s ease-out;
    overflow: visible;
}

.main-header .header-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    direction: ltr;

}

.main-header .logo {
    position: relative;
    right: auto;
    transform: none;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    text-decoration: none;
    z-index: 10;
    transition: transform 0.3s ease;
    order: 3;
}

.main-header .logo:hover {
    transform: translateY(-2px);
}

.main-header .logo img {
    width: auto;
    height: 70px;
}

.main-header .logo:active {
    transform: translateX(-50%) scale(0.95);
}

.main-nav {
    display: flex;
    gap: 0.3rem;
    order: 2;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1rem;
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-item:hover::after,
.nav-item.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 2px;
    background: var(--secondary-color);
    border-radius: 2px 2px 0 0;
}

/* User Menu */
.user-menu {
    position: relative;
}

.user-btn {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background: var(--primary-color);
    border: none;
    padding: .5rem 1rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.user-btn span {
    color: #fff;
    font-size: 0.9rem;
    font-weight: 500;
}

.user-btn svg {
    width: 16px;
    height: 16px;
    color: rgba(255, 255, 255, 0.7);
    transition: transform 0.3s ease;
}

.user-menu:hover .user-btn svg {
    transform: rotate(180deg);
}

.dropdown {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    min-width: 200px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    overflow: hidden;
}

.user-menu:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-link {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.9rem 1.2rem;
    color: var(--gray-800);
    text-decoration: none;
    transition: all 0.2s ease;
    border-bottom: 1px solid var(--gray-200);
}

.dropdown-link:last-child {
    border-bottom: none;
}

.dropdown-link svg {
    width: 18px;
    height: 18px;
    color: var(--gray-600);
}

.dropdown-link:hover {
    background: var(--gray-100);
    padding-right: 1.5rem;
}

.dropdown-link.danger {
    color: var(--danger-color);
}

.dropdown-link.danger svg {
    color: var(--danger-color);
}

.dropdown-divider {
    height: 1px;
    background: var(--gray-200);
    margin: 0.3rem 0;
}

/* Mobile Actions */
.mobile-actions {
    display: none;
    align-items: center;
    gap: 0.5rem;
}

/* Mobile Toggle */
.mobile-toggle {
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-toggle span {
    width: 24px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* User Dropdown */
.user-dropdown {
    position: relative;
}

.user-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    padding: 8px 14px;
    background: var(--primary-color);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: 0.3s ease;
    font-weight: 600;
    color: var(--white-color);
}

.user-toggle i {
    font-size: 18px;
}

.user-menu {
    position: absolute;
    top: 110%;
    right: 0;
    width: 260px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0px 12px 24px rgba(0, 0, 0, 0.12);
    padding: 0;
    overflow: hidden;

    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: 0.25s ease;
    z-index: 999;
}

.user-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.user-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: var(--primary-color);
    color: #fff;
}

.user-avatar i {
    font-size: 38px;
}

.user-info h4 {
    margin: 0;
    font-size: 16px;
    font-weight: bold;
}

.user-info p {
    margin: 0;
    font-size: 13px;
    opacity: 0.9;
}

.menu-items {
    padding: 10px;
}

.menu-item {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    padding: 10px;
    border-radius: 8px;
    font-size: 15px;
    color: #333;
    transition: 0.25s ease;
}

.menu-item i {
    font-size: 18px;
}

.menu-item:hover {
    background: #f2f6ff;
    color: #14171b;
    transform: translateX(4px);
}

.menu-divider {
    height: 1px;
    background: #eaeaea;
    margin: 8px 0;
}

.logout-item {
    width: 100%;
    border: 0;
    background: transparent;
    cursor: pointer;
    color: #d9534f !important;
}

.logout-item:hover {
    background: #ffe9e9;
    color: #c9302c !important;
}

.login-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    background: var(--primary-color);
    color: #fff !important;
    padding: 8px 14px;
    border-radius: 8px;
    transition: 0.3s ease;
}

/* Sidebar */
.mobile-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease;
}

.mobile-sidebar.active {
    visibility: visible;
    opacity: 1;
}

.sidebar-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
}

.sidebar-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 320px;
    max-width: 85%;
    height: 100%;
    background-color: var(--primary-color);
    box-shadow: -4px 0 24px rgba(0, 0, 0, 0.3);
    overflow-y: auto;
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.sidebar-body {
    padding: 0 1.5rem 1.5rem 1.5rem;
}

.sidebar-user {
    margin-bottom: 1rem;
}

.mobile-sidebar.active .sidebar-content {
    transform: translateX(0);
}

.sidebar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--white-color);
    padding: 0 1rem;
}

.sidebar-logo {
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.sidebar-logo img {
    width: auto;
    height: 70px;
}

.sidebar-close {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.sidebar-close:hover {
    background: var(--secondary-color);
    transform: rotate(90deg);
}

.sidebar-close svg {
    width: 20px;
    height: 20px;
    color: var(--white-color);
}

.sidebar-user {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-color);
    backdrop-filter: blur(10px);
    border-radius: 12px;
}

.sidebar-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--secondary-color);
}

.sidebar-user-info h3 {
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 0.2rem 0;
}

/* Sidebar Navigation */
.sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.sidebar-nav-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.sidebar-nav-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(-5px);
}

.sidebar-nav-item.active {
    background: rgba(254, 187, 2, 0.2);
    border-right: 3px solid #febb02;
}

.sidebar-nav-item svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

.sidebar-footer {
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.sidebar-footer-link {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.sidebar-footer-link:hover {
    background: rgba(255, 255, 255, 0.1);
}

.sidebar-footer-link.danger {
    color: #ff6b6b;
}

.sidebar-footer-link.danger:hover {
    background: rgba(255, 107, 107, 0.1);
}

.sidebar-footer-link svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

/* Wedding Hero Slider */
.wedding-hero {
    padding: 0;
}

.wedding-hero .container {
    padding-left: 15px !important;
    padding-right: 15px !important;
}

.wedding-hero-inner {
    position: relative;
    overflow: hidden;

}

.wedding-slider {
    position: relative;
    width: 100%;
    height: 120vh;
    min-height: 480px;
}

.wedding-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.wedding-slide.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.wedding-slide.leaving {
    opacity: 0;
    transform: translateY(-40px);
}

.wedding-slide-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    transition: transform 4s ease-out;
}

.wedding-slide.active .wedding-slide-image {
    transform: none;
}

.wedding-slide-content {
    position: relative;
    z-index: 2;
    height: 100%;
    padding: 2.5rem 2.5rem 2.5rem 6.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white-color);
}

.wedding-title {
    font-size: 2.6rem;
    font-weight: 800;
    letter-spacing: 0.03em;
    margin-bottom: 1rem;
}

.wedding-title-main {
    color: var(--primary-color);
    display: block;
    font-size: 1.1em;
    font-family: serif;
    letter-spacing: 0.06em;
}

.wedding-title-sub {
    display: block;
    margin-top: 0.4rem;
}

.wedding-subtitle {
    font-size: 1.1rem;
    max-width: 560px;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.88);
}

.wedding-slider-nav {
    position: absolute;
    top: 50%;
    right: 1.6rem;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    z-index: 10;
}

.wedding-nav-btn {
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wedding-nav-btn span {
    display: block;
    width: 2px;
    height: 120px;
    background-color: var(--white-color);
    position: relative;
    border-radius: 2px;
    transition: background 0.25s ease;
}

.wedding-nav-btn .arrow-up::after {
    content: '';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 12px solid var(--white-color);
}

.wedding-nav-btn .arrow-down::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 12px solid var(--white-color);
}

.wedding-nav-btn:hover span {
    background-color: var(--secondary-color);
}

.wedding-nav-btn:hover .arrow-up::after {
    border-bottom-color: var(--secondary-color);
}

.wedding-nav-btn:hover .arrow-down::after {
    border-top-color: var(--secondary-color);
}

.wedding-dots {
    position: absolute;
    left: 50%;
    bottom: 1.2rem;
    transform: translateX(-50%);
    display: flex;
    gap: 2rem;
}

.wedding-dot {
    width: 10px;
    height: 10px;
    border-radius: 0;
    border: 1px solid rgba(255, 255, 255, 0.7);
    background: transparent;
    cursor: pointer;
    transform: rotate(45deg);
    transition: all 0.25s ease;
    position: relative;
}

.wedding-dot.active {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
}

.wedding-dot.active::before {
    content: '';
    position: absolute;
    inset: -12px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.7);
}

.wedding-counter {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.15rem;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.8rem;
    font-weight: 500;
}

.wedding-counter-main {
    font-size: 0.9rem;
    letter-spacing: 0.12em;
}

.wedding-counter-main span {
    display: inline-block;
}

.wedding-counter-sep {
    opacity: 0.6;
    margin: 0 0.15rem;
}

/* About Section */
.about-section {
    position: relative;
    background: var(--white-color);
    padding: 5rem 0;
    direction: ltr;
}

.about-section .about-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background-image: url('../imgs/flower-image.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 1;
}

.about-section .about-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 150px;
    height: 150px;
    background-image: url('../imgs/flower-image-two.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 1;
}

.about-section .about-section .container {
    position: relative;
    z-index: 2;
}

.about-section .about-grid {
    display: grid;
    grid-template-columns: 1.1fr 1.1fr;
    gap: 2.5rem;
    align-items: center;
}

.about-section .about-text {
    direction: ltr;
}

.about-section .about-title {
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.about-section .about-subtitle {
    font-size: 2.2rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 1.5rem;
}

.about-section .about-lead {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 2rem;
}

.about-section .about-highlight {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1rem;
}

.about-section .about-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.about-section .about-list li {
    font-size: 0.98rem;
    color: #4b5563;
    line-height: 1.7;
}

.about-section .about-list li strong {
    color: #0f172a;
}

.about-section .about-video-inner {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 22px 55px rgba(15, 23, 42, 0.5);
    background: radial-gradient(circle at top left, rgba(254, 187, 2, 0.25), transparent 55%), #000;
}

.about-section .about-video-inner::before {
    content: '';
    position: absolute;
    inset: 1px;
    border-radius: 18px;
    border: 1px solid rgba(248, 250, 252, 0.2);
    pointer-events: none;
}

.about-section .about-video-player {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

/* Portfolio Section */
.portfolio-section {
    position: relative;
    padding: 4rem 0 2rem 0 !important;
    background: var(--bg-color);
    color: var(--primary-color);
}

.portfolio-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background-image: url('../imgs/leaf-image.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 1;
}

.portfolio-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 150px;
    height: 200px;
    background-image: url('../imgs/leaf-image-two.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 1;
}

.portfolio-section .container {
    position: relative;
    z-index: 2;
}

.portfolio-header {
    text-align: center;
    margin-bottom: 3rem;
}

.portfolio-title {
    font-size: 0.95rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--text-color);
    margin-bottom: 0.8rem;
}

.portfolio-subtitle {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.portfolio-lead {
    font-size: 1.02rem;
    color: var(--text-color);
    max-width: 720px;
    margin: 0 auto;
    line-height: 1.8;
}

.portfolio-tabs {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.portfolio-tab {
    padding: 0.6rem 1.6rem;
    border: 1px solid var(--primary-color);
    background: transparent;
    color: var(--primary-color);
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.portfolio-tab.active {
    background: var(--primary-color);
    color: var(--white-color);
    border-color: var(--primary-color);
}

.portfolio-tab:hover:not(.active) {
    background: rgba(148, 163, 184, 0.12);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.8rem;
}

.portfolio-item {
    grid-column: span 1;
    border-radius: 18px;
    background: #020617;
    transition: .3s ease-in-out all;
    overflow: hidden;
    position: relative;
    width: 100%;
    height: 100%;
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    transition: .3s ease-in-out all;
    object-fit: cover;
    display: block;
}

.portfolio-item.wide {
    grid-column: span 1;
}

.portfolio-item.tall {
    grid-row: span 2;
}

.portfolio-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.7);
}

.portfolio-cta-wrapper {
    margin-top: 3rem;
    text-align: center;
}

.portfolio-cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 2.2rem;
    background: var(--primary-color);
    color: var(--white-color);
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    box-shadow: var(--shadow-md);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.portfolio-cta-button:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 18px 45px rgba(251, 191, 36, 0.6);
}

/* Pricing */
.pricing-section {
    padding: 3rem 0;
    background: #f5f5f5;
    direction: ltr;
}

.pricing-section .pricing-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-subtitle {
    font-size: 0.95rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #6b7280;
    margin-bottom: 0.8rem;
    font-weight: 500;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.pricing-section .section-title::after {
    content: '';
    position: absolute;
    bottom: -20px;
    right: 50%;
    transform: translateX(50%);
    width: 60px;
    height: 2px;
    background: var(--primary-color);
}

.pricing-section .section-title::before {
    content: '';
    position: absolute;
    bottom: -10px;
    right: 50%;
    transform: translateX(50%);
    width: 100px;
    height: 2px;
    background: var(--primary-color);
}

.pricing-section .pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.pricing-section .pricing-card {
    background: var(--white-color);
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.pricing-section .pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.pricing-section .pricing-header {
    padding: 2rem 2px 0;
    text-align: center;
}

.pricing-section .package-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2d3748;
}

.pricing-section .price {
    font-size: 2.8rem;
    font-weight: 700;
    color: #2d3748;
    margin: 0 0 .8rem;
    font-family: 'Tajawal', sans-serif;
    direction: ltr;
    display: inline-block;
}

.pricing-section .features-list {
    padding: 1rem 2rem 1.5rem 2rem;
    margin: 0;
    list-style: none;
    flex-grow: 1;
}

.pricing-section .features-list li {
    padding: 0.7rem 0;
    color: var(--primary-color);
    position: relative;
    padding-left: 2rem;
    line-height: 1.7;
    font-size: 0.95rem;
    border-bottom: 1px dashed var(--text-color);
}

.pricing-section .features-list li:last-child {
    border-bottom: none;
}

.pricing-section .features-list li::before {
    content: '\f00c';
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-right: 0.5rem;
}

.pricing-section .check-availability {
    display: block;
    width: calc(100% - 3rem);
    margin: 1.5rem;
    padding: 1rem 1.5rem;
    background: #2d3748;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Tajawal', sans-serif;
}

.articles-section .read-more:hover,
.pricing-section .check-availability:hover {
    background: #1a202c;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

@media (max-width: 992px) {
    .pricing-grid {
        grid-template-columns: 1fr !important;
        max-width: 600px;
        margin-right: auto;
        margin-left: auto;
    }

    .pricing-card {
        margin-bottom: 2rem;
    }
}

/* Rating */
#starRating {
    unicode-bidi: bidi-override;
    display: inline-block;
}

.star {
    font-size: 30px;
    cursor: pointer;
    color: var(--bg-color);
    margin: 0 5px;
    transition: color 0.3s;
}

.star:hover,
.star.hovered,
.star.selected {
    color: var(--secondary-color);
}

#ratingForm {
    max-width: 500px;
    margin: 50px auto;
    background: var(--white-color);
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 30px;
    text-align: center;
}

#starRating {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.star {
    font-size: 30px;
    color: #ccc;
    margin: 0 5px;
    cursor: pointer;
    transition: color 0.3s ease, transform 0.2s ease;
}

.star:hover,
.star.active {
    color: #ff9800;
    transform: scale(1.2);
}

.star:hover~.star {
    color: #ccc;
}

#ratingForm label {
    color: var(--primary-color);
    margin-bottom: 25px;
    font-size: 1rem;
    font-weight: 500;
}

#comment {
    width: 100%;
    min-height: 100px;
    margin-bottom: 20px;
    padding: 10px;
    border-radius: 10px;
    border: 1px solid #ddd;
    box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.1);
    font-size: 16px;
    font-family: 'Arial', sans-serif;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

#comment:focus {
    border-color: var(--primary-color);
    box-shadow: inset 0 3px 8px rgba(0, 0, 0, 0.2);
    outline: none;
}

#ratingForm button {
    background: var(--primary-color);
    color: var(--white-color);
    border: none;
    border-radius: 10px;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
}

#ratingForm button:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
}

#ratingForm button:active {
    transform: translateY(0);
    box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.2);
}

.client-feedback-section {
    padding: 3rem 2rem;
    background-color: var(--white-color);
    text-align: center;
    width: 100%;
}

.feedback-img {
    border: 2px solid var(--primary-color);
    width: 60px !important;
    aspect-ratio: 1/1;
    border-radius: 100%;
    margin-bottom: 10px;
}

.feedback-title {
    font-size: 2.2rem;
    font-weight: bold;
    margin-bottom: 25px;
    color: #333333;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.client-feedback-carousel .owl-stage {
    display: flex;
    justify-content: center;
    align-items: center;
}

.feedback-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin: 10px;
    height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.feedback-card:hover {
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.2);
}

.feedback-stars {
    margin-bottom: 10px;
}

.feedback-stars .fas {
    font-size: 1.5rem;
    margin: 0 2px;
    color: #cccccc;
}

.feedback-stars .fas.filled {
    color: #ffd700;
}

.feedback-text {
    font-size: 1rem;
    font-style: italic;
    color: #555555;
    margin-top: 10px;
    min-height: 50px;
}

.client-feedback-section {
    position: relative;
}

.client-feedback-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    margin-bottom: 1.5rem;
}

.client-feedback-header .feedback-title {
    margin: 0;
}

.client-feedback-nav {
    display: flex;
    gap: 10px;
}

.client-feedback-nav button {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.06));
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 999px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(6px);
    color: inherit;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.client-feedback-nav button:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.24);
    background: var(--primary-color);
    color: var(--white-color);
}

.client-feedback-nav button:active {
    transform: translateY(0);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}




/* Anmations */
@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}


/* Rtl  */
html:lang(ar) {
    .article-toc-link:hover {
        transform: translateX(2px);
    }

    .article-show-body ul,
    .article-show-body ol {
        padding-inline-start: 0;
        padding-inline-end: 1.3rem;
    }
    .floating-contact,
    .login-section,
    .article-show-section,
    .articles-section,
    .footer,
    .mobile-sidebar,
    .about-text,
    .pricing-section,
    .main-header .header-wrapper,
    #ratingForm {
        direction: rtl;
    }

    .pricing-section .features-list li::before {
        left: unset;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        margin-left: 0.5rem;
        margin-right: unset;
    }

    .pricing-section .features-list li {
        padding-right: 2rem;
        padding-left: unset;
    }

    .client-feedback-header {
        flex-direction: row-reverse;
    }

    .sidebar-overlay,
    .mobile-sidebar {
        right: 0;
        left: unset;
    }

    .sidebar-content {
        transform: translateX(100%);
        left: unset;
        right: 0;
    }

    .sidebar-nav-item.active {
        border-left: 3px solid #febb02;
        border-right: none;
    }

    .about-section {
        position: relative;
        background: var(--white-color);
        padding: 5rem 0;
        direction: rtl;
    }


}






/* Responsive */
@media (max-width: 1200px) {
    .main-nav {
        gap: 0.2rem;
    }

    .nav-item {
        padding: 0.5rem 0.8rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 992px) {

    .main-nav,
    .header-actions {
        display: none;
    }

    .mobile-actions {
        display: flex;
    }

    .header-wrapper {
        justify-content: space-between;
    }

    .logo {
        position: static;
        transform: none;
        order: -1;
    }

    .logo:hover {
        transform: translateY(-2px);
    }


}

@media (max-width: 768px) {
    .header-wrapper {
        padding: 0.8rem 1rem;
    }

    .mobile-toggle {
        width: 36px;
        height: 36px;
    }

    .mobile-toggle span {
        width: 20px;
        height: 2.5px;
    }

    .sidebar-content {
        width: 300px;
    }

    .container {
        padding: 0 1.5rem;
    }
}

@media (max-width: 480px) {
    .header-wrapper {
        padding: 0.7rem 0.8rem;
    }

    .feedback-title {
        font-size: 1.6rem;
    }

    .mobile-toggle {
        width: 32px;
        height: 32px;
        padding: 0.3rem;
    }

    .mobile-actions {
        gap: 0.3rem;
    }

    .container {
        padding: 0 1rem;
    }
}

@media (max-width: 992px) {
    .wedding-slide-content {
        padding: 1rem 3rem 2rem 1.6rem;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .wedding-title {
        font-size: 1.7rem;
    }

    .wedding-subtitle {
        font-size: 0.95rem;
        max-width: 100%;
    }

    .wedding-slider-nav {
        top: 50%;
        right: 0.5rem;
        left: auto;
        transform: translateY(-50%);
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 2rem !important;
    }

    .wedding-nav-btn {
        width: 32px;
        height: 120px;
    }

    .wedding-counter {
        margin-top: 0.3rem;
        text-align: right;
    }

    .wedding-counter-main {
        display: flex;
        flex-direction: row;
        justify-content: flex-end;
        align-items: center;
        gap: 0;
    }

    .wedding-counter-main span {
        display: inline-block;
    }
}

@media (max-width: 768px) {
    .wedding-hero {
        padding: 0;
    }

    .wedding-slider {
        height: 400px;
    }

    .wedding-slide-content {
        padding: 1rem 2.5rem 1.8rem 1.4rem;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .wedding-title {
        font-size: 1.6rem;
    }

    .wedding-subtitle {
        font-size: 0.95rem;
    }

    .wedding-slider-nav {
        top: 50%;
        right: 0.4rem;
        left: auto;
        transform: translateY(-50%);
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.6rem;
    }

    .wedding-nav-btn {
        width: 28px;
        height: 100px;
    }

    .wedding-counter {
        margin-top: 0.25rem;
        text-align: right;
    }

    .wedding-counter-main {
        display: flex;
        flex-direction: row;
        justify-content: flex-end;
        align-items: center;
        gap: 0;
    }

    .wedding-counter-main span {
        display: inline-block;
    }
}

@media (max-width: 480px) {
    .wedding-slider {
        height: 360px;
    }

    .wedding-slide-content {
        padding: 0.8rem 2rem 1.5rem 1.2rem;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .wedding-title {
        font-size: 1.5rem;
    }

    .wedding-subtitle {
        font-size: 0.9rem;
    }

    .wedding-slider-nav {
        top: 50%;
        right: 0.2rem;
        left: auto;
        transform: translateY(-50%);
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }

    .wedding-nav-btn {
        width: 24px;
        height: 90px;
    }

    .wedding-counter {
        margin-top: 0.2rem;
        text-align: right;
    }

    .wedding-counter-main {
        display: flex;
        flex-direction: row;
        justify-content: flex-end;
        align-items: center;
        gap: 0;
    }

    .wedding-counter-main span {
        display: inline-block;
    }
}


@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: minmax(0, 1fr) !important;
        gap: 2.5rem;
    }

    .about-section {
        padding: 4rem 0;
    }
}

@media (max-width: 768px) {
    .about-subtitle {
        font-size: 1.8rem;
    }

    .about-lead {
        font-size: 1rem;
    }

    .about-section .container {
        padding-inline: 1.5rem;
    }
}

/* Footer  */
.footer {
    background: var(--primary-color);
    color: #e5e7eb;
    padding: 3.5rem 0 2rem 0;
    position: relative;
    overflow: hidden;
}

.footer-inner {
    position: relative;
    z-index: 1;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1fr;
    gap: 2rem;
    align-items: flex-start;
}

.footer-column {
    min-width: 0;
}

.footer-logo img {
    height: 60px;
    width: auto;
    display: block;
    filter: drop-shadow(0 10px 18px rgba(15, 23, 42, 0.7));
}

.footer-text {
    margin-top: 1rem;
    font-size: 0.95rem;
    line-height: 1.8;
    color: #9ca3af;
}

.footer-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.9rem;
    color: #f9fafb;
    position: relative;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    inset-inline-start: 0;
    width: 38px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--secondary-color), transparent);
}

.footer-link-list {
    list-style: none;
    margin: 0;
    padding: 1rem 0 0 0;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.footer-link-list a {
    font-size: 0.95rem;
    color: #d1d5db;
    text-decoration: none;
    position: relative;
    padding-inline-start: 0.6rem;
    transition: color 0.2s ease, transform 0.2s ease;
}

.footer-link-list a::before {
    content: '';
    position: absolute;
    inset-inline-start: 0;
    top: 50%;
    width: 4px;
    height: 4px;
    border-radius: 999px;
    background: var(--secondary-color);
    transform: translateY(-50%);
    opacity: 0;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.footer-link-list a:hover {
    color: #f9fafb;
    transform: translateX(-2px);
}

html[dir="rtl"] .footer-link-list a:hover {
    transform: translateX(2px);
}

.footer-link-list a:hover::before {
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
}

.footer-social-list {
    padding-top: 1.2rem;
}

.footer-social-list a {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding-inline-start: 0;
    font-size: 0.95rem;
    color: #d1d5db;
    text-decoration: none;
    position: relative;
    transition: color 0.2s ease, transform 0.2s ease;
}

.footer-social-list a::before {
    display: none;
}

.footer-social-list i {
    font-size: 1.1rem;
}

.footer-social-icons {
    display: flex;
    gap: 0.7rem;
    padding-top: 1.2rem;
}

.footer-social-link {
    width: 38px;
    height: 38px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(15, 23, 42, 0.85);
    color: #e5e7eb;
    border: 1px solid rgba(148, 163, 184, 0.6);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5);
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.footer-social-link i {
    font-size: 1.1rem;
}

.footer-social-link:hover {
    background: var(--secondary-color);
    color: #111827;
    border-color: transparent;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 18px 45px rgba(251, 191, 36, 0.7);
}

.footer-bottom {
    border-top: 1px solid rgba(148, 163, 184, 0.35);
    margin-top: 2.5rem;
    padding-top: 1.4rem;
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    /* gap: 1rem; */
    font-size: 0.85rem;
    color: #9ca3af;
}

.footer-copy {
    white-space: normal;
}

.footer-copy img {
    width: 40px;
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        row-gap: 2.2rem;
    }
}

@media (max-width: 640px) {
    .footer {
        padding: 2.5rem 0 1.8rem 0;
    }

    .footer-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .footer-bottom-inner {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ======== Articles Page ======== */
.articles-section {
    padding: 4rem 0 3rem 0;
    background: var(--bg-color);
}

.articles-header {
    margin-bottom: 2rem;
}

.articles-title {
    font-size: 2rem;
    font-weight: 800;
    color: #0f172a;
}

.articles-search-wrapper {
    margin: 2rem auto;
    max-width: 500px;
}

.articles-search-input {
    width: 100%;
    padding: 0.7rem 1rem;
    border-radius: 999px;
    border: 1px solid #e5e7eb;
    background: #fff;
    font-size: 0.95rem;
    outline: none;
    box-shadow: 0 4px 15px rgba(15, 23, 42, 0.08);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
}

.articles-search-input:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 8px 25px rgba(15, 23, 42, 0.15);
    transform: translateY(-1px);
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
}

.article-card {
    background: #fff;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.14);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    display: flex;
    flex-direction: column;
}

.article-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.35);
}

.article-image-wrapper {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.article-image-wrapper img,
.article-image-placeholder {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.article-image-placeholder {
    background: radial-gradient(circle at top left, rgba(254, 187, 2, 0.25), #020617);
}

.article-content {
    padding: 1.2rem 1.3rem 1.4rem 1.3rem;
}

.article-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.6rem;
}

.articles-section .read-more {
    display: inline-block;
    padding: .8rem 1rem;
    background: #2d3748;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.article-excerpt {
    margin: 2rem 0;
    font-size: 0.95rem;
    color: #6b7280;
    line-height: 1.7;
}

.articles-actions {
    margin-top: 2.2rem;
    text-align: center;
}

.articles-load-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 2.3rem;
    border-radius: 999px;
    border: none;
    background: #111827;
    color: #f9fafb;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 14px 35px rgba(15, 23, 42, 0.45);
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.articles-load-more:hover {
    background: var(--secondary-color);
    color: #111827;
    transform: translateY(-2px);
    box-shadow: 0 18px 45px rgba(251, 191, 36, 0.7);
}

.articles-load-more:active {
    transform: translateY(0);
    box-shadow: 0 8px 22px rgba(15, 23, 42, 0.5);
}

@media (max-width: 992px) {
    .articles-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .articles-section {
        padding: 3rem 0 2.2rem 0;
    }

    .articles-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .articles-grid {
        grid-template-columns: minmax(0, 1fr);
    }
}

/* Show Article */
.article-show-section {
    padding: 4rem 0 3.5rem 0;
    background-color: var(--bg-color);
}

.article-show-main {
    background: var(--white-color);
    border-radius: 22px;
    box-shadow: 0 22px 55px rgba(15, 23, 42, 0.35);
    padding: 1.8rem 1.9rem 2.1rem 1.9rem;
    position: relative;
    overflow: hidden;
}

.article-show-image-wrapper {
    border-radius: 18px;
    overflow: hidden;
    margin-bottom: 1.6rem;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.45);
}

.article-show-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transform: scale(1.03);
    transition: transform 1.2s ease-out;
}

.article-show-main:hover .article-show-image-wrapper img {
    transform: scale(1.07);
}

.article-show-title {
    position: relative;
    font-size: 2rem;
    font-weight: 800;
    color: #020617;
    margin-bottom: 1rem;
}

.article-show-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    inset-inline-start: 0;
    width: 80px;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--secondary-color), transparent);
}

.article-show-body {
    position: relative;
    z-index: 1;
    margin-top: 1.6rem;
    font-size: 1rem;
    line-height: 1.9;
    color: #111827;
}

.article-show-body p {
    margin-bottom: 1.1rem;
}

.article-show-body h2,
.article-show-body h3,
.article-show-body h4 {
    margin-top: 1.7rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
    color: #020617;
}

.article-show-body h2 {
    font-size: 1.4rem;
}

.article-show-body h3 {
    font-size: 1.2rem;
}

.article-show-body ul,
.article-show-body ol {
    padding-inline-start: 1.3rem;
    margin-bottom: 1.1rem;
}

.article-show-body li {
    margin-bottom: 0.4rem;
}

.article-show-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.article-toc-card,
.article-other-card {
    background: var(--bg-color);
    color: #e5e7eb;
    border-radius: 18px;
    padding: 1.3rem 1.4rem 1.4rem 1.4rem;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.65);
    position: relative;
    overflow: hidden;
}

.article-toc-card::before {
    content: '';
    position: absolute;
    inset-inline-start: -40px;
    top: -60px;
    width: 120px;
    height: 120px;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.45);
    opacity: 0.6;
}

.article-toc-card::after {
    content: '';
    position: absolute;
    inset-inline-end: -40px;
    bottom: -40px;
    width: 120px;
    height: 120px;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.45);
    opacity: 0.6;
}

.article-toc-title,
.article-other-title {
    position: relative;
    z-index: 1;
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.9rem;
    color: var(--primary-color);
}

.article-toc-list {
    list-style: none;
    margin: 0;
    padding: 0;
    position: relative;
    z-index: 1;
}

.article-toc-item+.article-toc-item {
    margin-top: 0.3rem;
}

.article-toc-link {
    display: block;
    font-size: 0.9rem;
    color: var(--text-color);
    text-decoration: none;
    padding: 0.45rem 0.6rem;
    transition: background 0.18s ease, transform 0.18s ease, color 0.18s ease;
}

.article-toc-link:hover {
    color: var(--primary-color);
    transform: translateX(-2px);
}

.article-other-list {
    list-style: none;
    margin: 0;
    padding: 0;
    position: relative;
    z-index: 1;
}

.article-other-item+.article-other-item {
    margin-top: 0.35rem;
}

.article-other-link {
    display: block;
    font-size: 0.9rem;
    color: #e5e7eb;
    text-decoration: none;
    padding: 0.45rem 0.6rem;
    border-radius: 10px;
    background: rgba(15, 23, 42, 0.75);
    border: 1px solid transparent;
    transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease, color 0.18s ease;
}

.article-other-link:hover {
    background: var(--primary-color);
    color: var(--white-color);
    transform: translateY(-1px);
}

@media (max-width: 992px) {
    .article-show-section {
        padding: 3.2rem 0 2.8rem 0;
    }

    .article-show-main {
        margin-bottom: 1.8rem;
    }
}

@media (max-width: 640px) {
    .article-show-main {
        padding: 1.4rem 1.2rem 1.7rem 1.2rem;
        border-radius: 18px;
    }

    .article-show-title {
        font-size: 1.65rem;
    }
}





.login-main {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.login-main .login-form-container {
    width: 100%;
    max-width: 450px;
}

.login-main .login-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 50px 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.login-main .card-header {
    text-align: center;
    margin-bottom: 40px;
}

.login-main .card-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.login-main .card-header p {
    font-size: 1rem;
    color: #666;
}

.login-main .login-form {
    width: 100%;
}

.login-main .form-group {
    margin-bottom: 25px;
}

.login-main .form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
    font-size: 0.95rem;
}

.login-main .form-group input {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e1e8ed;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.login-main .form-group input:focus {
    outline: none;
    border-color: #667eea;
    background: white;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
}

.login-main .form-group input::placeholder {
    color: #999;
}

.login-main .error-message {
    color: #e74c3c;
    font-size: 0.85rem;
    margin-top: 5px;
    display: block;
}

.login-main .form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.login-main .remember-me {
    display: flex;
    align-items: center;
}

.login-main .remember-me input[type="checkbox"] {
    width: auto;
    margin-left: 8px;
    margin-right: 8px;
}

.login-main .remember-me label {
    color: #666;
    font-size: 0.95rem;
    cursor: pointer;
}

.login-main .forgot-password {
    color: #667eea;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.login-main .forgot-password:hover {
    color: #764ba2;
}

.login-main .login-button {
    width: 100%;
    padding: 18px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.login-main .login-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

.login-main .login-button:active {
    transform: translateY(0);
}

.login-main .login-divider {
    text-align: center;
    margin: 30px 0;
    position: relative;
}

.login-main .login-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #e1e8ed;
}

.login-main .login-divider span {
    background: white;
    padding: 0 20px;
    color: #999;
    font-size: 0.9rem;
}

.login-main .register-link {
    text-align: center;
    margin-top: 30px;
    color: #666;
    font-size: 0.95rem;
}

.login-main .register-link a {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.login-main .register-link a:hover {
    color: #764ba2;
}

.login-main .alert {
    padding: 15px 20px;
    border-radius: 12px;
    margin-bottom: 25px;
    font-weight: 500;
}

.login-main .alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

@media (max-width: 768px) {
    .login-main .login-main {
        padding: 20px 15px;
    }

    .login-main .login-form-container {
        width: 100%;
        max-width: 450px;
    }

    .login-main .login-card {
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
        border-radius: 20px;
        padding: 50px 40px;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
        border: 1px solid rgba(255, 255, 255, 0.3);
    }

    .login-main .card-header {
        text-align: center;
        margin-bottom: 40px;
    }

    .login-main .card-header h2 {
        font-size: 2rem;
        font-weight: 700;
        color: #333;
        margin-bottom: 10px;
    }

    .login-main .card-header p {
        font-size: 1rem;
        color: #666;
    }

    .login-main .login-form {
        width: 100%;
    }

    .login-main .form-group {
        margin-bottom: 25px;
    }

    .login-main .form-group label {
        display: block;
        margin-bottom: 8px;
        font-weight: 500;
        color: #333;
        font-size: 0.95rem;
    }

    .login-main .form-group input {
        width: 100%;
        padding: 15px 20px;
        border: 2px solid #e1e8ed;
        border-radius: 12px;
        font-size: 1rem;
        transition: all 0.3s ease;
        background: #f8f9fa;
    }

    .login-main .form-group input:focus {
        outline: none;
        border-color: #667eea;
        background: white;
        box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
    }

    .login-main .form-group input::placeholder {
        color: #999;
    }

    .login-main .error-message {
        color: #e74c3c;
        font-size: 0.85rem;
        margin-top: 5px;
        display: block;
    }

    .login-main .form-options {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 30px;
    }

    .login-main .remember-me {
        display: flex;
        align-items: center;
    }

    .login-main .remember-me input[type="checkbox"] {
        width: auto;
        margin-left: 8px;
        margin-right: 8px;
    }

    .login-main .remember-me label {
        color: #666;
        font-size: 0.95rem;
        cursor: pointer;
    }

    .login-main .forgot-password {
        color: #667eea;
        text-decoration: none;
        font-size: 0.95rem;
        font-weight: 500;
        transition: color 0.3s ease;
    }

    .login-main .forgot-password:hover {
        color: #764ba2;
    }

    .login-main .login-button {
        width: 100%;
        padding: 18px;
        background: var(--primary-color);
        color: white;
        border: none;
        border-radius: 12px;
        font-size: 1.1rem;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }

    .login-main .login-button:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
    }

    .login-main .login-button:active {
        transform: translateY(0);
    }

    .login-main .login-divider {
        text-align: center;
        margin: 30px 0;
        position: relative;
    }

    .login-main .login-divider::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 0;
        right: 0;
        height: 1px;
        background: #e1e8ed;
    }

    .login-main .login-divider span {
        background: white;
        padding: 0 20px;
        color: #999;
        font-size: 0.9rem;
    }

    .login-main .register-link {
        text-align: center;
        margin-top: 30px;
        color: #666;
        font-size: 0.95rem;
    }

    .login-main .register-link a {
        color: #667eea;
        text-decoration: none;
        font-weight: 600;
        transition: color 0.3s ease;
    }

    .login-main .register-link a:hover {
        color: #764ba2;
    }

    .login-main .alert {
        padding: 15px 20px;
        border-radius: 12px;
        margin-bottom: 25px;
        font-weight: 500;
    }

    .login-main .alert-success {
        background: #d4edda;
        color: #155724;
        border: 1px solid #c3e6cb;
    }

    @media (max-width: 768px) {
        .login-main .login-main {
            padding: 20px 15px;
        }

        .login-main .login-card {
            padding: 40px 30px;
        }

        .login-main .card-header h2 {
            font-size: 1.8rem;
        }
    }

    /* Creative User Dropdown */
    .user-dropdown {
        position: relative;
    }

    .user-toggle {
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 8px 16px;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: white;
        border-radius: 25px;
        cursor: pointer;
        transition: all 0.3s ease;
        border: 2px solid transparent;
        font-size: 14px;
        font-weight: 500;
    }

    .user-toggle:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
        border-color: rgba(255, 255, 255, 0.3);
    }

    .user-toggle i {
        font-size: 18px;
    }

    .user-toggle i.bi-chevron-down {
        font-size: 12px;
        transition: transform 0.3s ease;
    }

    .user-dropdown.active .user-toggle i.bi-chevron-down {
        transform: rotate(180deg);
    }

    .user-menu {
        position: absolute;
        top: calc(100% + 15px);
        right: 0;
        background: white;
        border-radius: 20px;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
        min-width: 320px;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-20px) scale(0.95);
        transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        z-index: 1000;
        border: 1px solid rgba(102, 126, 234, 0.1);
        overflow: hidden;
    }

    .user-dropdown.active .user-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0) scale(1);
    }

    .user-header {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        padding: 25px 20px;
        display: flex;
        align-items: center;
        gap: 15px;
        color: white;
    }

    .user-avatar {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.2);
        backdrop-filter: blur(10px);
        display: flex;
        align-items: center;
        justify-content: center;
        border: 2px solid rgba(255, 255, 255, 0.3);
    }

    .user-avatar i {
        font-size: 28px;
        color: white;
    }

    .user-info h4 {
        margin: 0;
        font-size: 18px;
        font-weight: 600;
        margin-bottom: 5px;
    }

    .user-info p {
        margin: 0;
        font-size: 14px;
        opacity: 0.9;
    }

    .menu-items {
        padding: 15px 0;
    }

    .menu-item {
        display: flex;
        align-items: center;
        gap: 15px;
        padding: 15px 25px;
        color: #333;
        text-decoration: none;
        transition: all 0.3s ease;
        font-size: 15px;
        border: none;
        background: none;
        width: 100%;
        text-align: left;
        cursor: pointer;
        position: relative;
    }

    .menu-item::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        height: 100%;
        width: 0;
        background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
        transition: width 0.3s ease;
    }

    .menu-item:hover::before {
        width: 100%;
    }

    .menu-item:hover {
        color: #667eea;
        padding-left: 30px;
    }

    .menu-item i {
        font-size: 18px;
        width: 20px;
        color: #667eea;
    }

    .menu-divider {
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.2), transparent);
        margin: 10px 25px;
    }

    .logout-form {
        margin: 0;
        padding: 0;
    }

    .logout-item {
        color: #dc3545 !important;
    }

    .logout-item i {
        color: #dc3545 !important;
    }

    .logout-item:hover {
        color: #dc3545 !important;
    }

    .logout-item::before {
        background: linear-gradient(135deg, rgba(220, 53, 69, 0.1), rgba(220, 53, 69, 0.05)) !important;
    }

    .login-btn {
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 10px 20px;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: white !important;
        border-radius: 25px;
        text-decoration: none;
        font-weight: 500;
        transition: all 0.3s ease;
        border: 2px solid transparent;
    }

    .login-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
        border-color: rgba(255, 255, 255, 0.3);
        color: white !important;
    }

    /* RTL Support */
    [dir="rtl"] .user-menu {
        right: auto;
        left: 0;
    }

    [dir="rtl"] .user-header {
        flex-direction: row-reverse;
    }

    [dir="rtl"] .menu-item {
        flex-direction: row-reverse;
        text-align: right;
    }

    [dir="rtl"] .menu-item::before {
        left: auto;
        right: 0;
    }

    [dir="rtl"] .menu-item:hover {
        padding-left: 25px;
        padding-right: 30px;
    }

    [dir="rtl"] .login-btn {
        flex-direction: row-reverse;
    }

    /* Mobile Responsive */
    @media (max-width: 768px) {
        .user-menu {
            right: -10px;
            min-width: 290px;
        }

        [dir="rtl"] .user-menu {
            left: -10px;
            right: auto;
        }

        .user-toggle span {
            display: none;
        }

        .user-toggle {
            padding: 8px 12px;
        }
    }