* {
    caret-color: transparent !important;
    outline: none !important;
    user-select: none !important;
    box-sizing: border-box;
}

body {
    margin: 0;
    background: #fff;
    color: #222;
    font-family: 'Oswald', Arial, sans-serif;
}

.page-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    opacity: 1;
    transform: translateY(0);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 40px;
    background: #000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.7);
    color: #fff;
    position: relative;
    z-index: 1002;
    will-change: transform;
}

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

.navbar-left a {
    display: block;
    text-decoration: none;
}

.logo {
    height: 48px;
    margin-right: 8px;
    display: block;
}

.brand-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-size: 18px;
    line-height: 1.1;
}

.brand-text strong {
    font-size: 22px;
    letter-spacing: 1px;
}

.brand-text small {
    font-size: 12px;
    color: #ccc;
    margin-top: 2px;
}

.navbar-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 32px;
    z-index: 2000;
    background: #000;
}

.navbar-menu li {
    font-size: 18px;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    color: #fff;
    padding: 8px 0;
}

.navbar-menu li::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #FFD700;
    transition: width 0.3s ease;
}

.navbar-menu li:hover::after {
    width: 100%;
}

.navbar-menu li:hover {
    color: #FFD700;
    transform: translateY(-1px);
}

.navbar-menu a {
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
    letter-spacing: 0.5px;
    padding: 8px 4px;
}

.navbar-menu a:hover {
    color: #FFD700;
}

.arrow {
    font-size: 13px;
    margin-left: 3px;
}

.navbar-right {
    display: flex;
    align-items: center;
    gap: 14px;
}

.user-link,
.cart-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.2s;
    padding: 4px;
}

.user-icon,
.cart-icon {
    width: 28px;
    height: 28px;
    filter: brightness(0) invert(1) drop-shadow(0 1px 2px rgba(0,0,0,0.08));
    transition: transform 0.2s;
    display: block;
}

.user-link:hover .user-icon,
.cart-link:hover .cart-icon {
    transform: scale(1.1);
}

.cart-count {
    position: absolute;
    top: -6px;
    right: -8px;
    background: #FFD700;
    color: #000;
    font-size: 13px;
    font-weight: bold;
    border-radius: 50%;
    padding: 2px 6px;
    min-width: 20px;
    text-align: center;
    box-shadow: 0 1px 4px rgba(0,0,0,0.12);
    pointer-events: none;
}

.flag {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 4px;
}

.lang, .active-lang, #lang-en, #lang-ar,
#lang-en:focus, #lang-ar:focus,
#lang-en:active, #lang-ar:active,
#lang-en:hover, #lang-ar:hover {
    text-decoration: none !important;
    outline: none !important;
}

.lang {
    font-size: 16px;
    margin-left: 2px;
    letter-spacing: 1px;
    color: #fff;
    cursor: pointer;
}

.active-lang {
    font-weight: bold;
    text-decoration: none;
}

html[dir="rtl"] .navbar {
    flex-direction: row-reverse;
}

html[dir="rtl"] .navbar-left,
html[dir="rtl"] .navbar-right {
    flex-direction: row-reverse;
}

html[dir="rtl"] .navbar-menu {
    flex-direction: row-reverse;
}

html[dir="rtl"] .brand-text {
    text-align: right;
}

.lang, #lang-en, #lang-ar {
    cursor: pointer;
}

#lang-en, #lang-ar {
    user-select: none;
    outline: none !important;
    border: none !important;
    box-shadow: none !important;
    background: none !important;
}

#lang-en:focus, #lang-ar:focus,
#lang-en:active, #lang-ar:active,
#lang-en::-moz-focus-inner, #lang-ar::-moz-focus-inner {
    outline: none !important;
    border: none !important;
    box-shadow: none !important;
    background: none !important;
}

.navbar-menu a {
    color: #fff;
    text-decoration: none;
    transition: color 0.2s;
}

.navbar-menu a:hover {
    color: #FFD700;
}

.lang a {
    color: #fff !important;
    text-decoration: none !important;
}
.lang a:hover {
    color: #ccc !important;
}

/* Content styles */
.content {
    flex: 1;
    padding: 32px 16px;
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
    text-align: center;
}

.content h1 {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    margin-bottom: 1rem;
    color: #222;
    text-align: center;
}

.content p {
    font-size: clamp(1rem, 3vw, 1.2rem);
    color: #666;
    line-height: 1.6;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    padding: 0 15px;
}

.content, .content * {
    user-select: text !important;
    -webkit-user-select: text !important;
    -moz-user-select: text !important;
    -ms-user-select: text !important;
}

/* Footer styles */
.footer {
    background: #000;
    padding: 16px 0 6px 0;
    color: #fff;
    text-align: center;
    margin-top: auto;
}

/* Copyright styles */
.copyright {
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
}

.copyright p {
    font-size: 14px;
    color: #fff;
    margin: 0;
    user-select: text !important;
    display: block;
    width: 100%;
    text-align: center;
}

/* RTL support for copyright */
html[dir="rtl"] .copyright {
    direction: rtl;
}

html[dir="rtl"] .copyright p {
    text-align: center;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 10px;
}

.footer-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1.5px solid #fff;
    border-radius: 8px;
    overflow: hidden;
    box-sizing: border-box;
}

.footer-icon svg {
    width: 12px;
    height: 12px;
}

.social-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.footer-icon:hover {
    background: #222;
    border-color: #FFD700;
}

.footer-payments {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.payment-icon {
    width: 32px;
    height: 20px;
    background: #fff;
    border-radius: 4px;
    padding: 2px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.06);
    object-fit: contain;
    display: block;
}

/* Hamburger menu styles */
.hamburger {
    display: none;
    cursor: pointer;
    padding: 12px;
    z-index: 1001;
    background: none;
    border: none;
    border-radius: 8px;
    transition: background 0.2s;
}

.hamburger:focus, .hamburger:hover {
    background: rgba(255,255,255,0.08);
    outline: 2px solid #FFD700;
}

.hamburger span {
    display: block;
    width: 28px;
    height: 3.5px;
    background: #fff;
    margin: 6px 0;
    border-radius: 2px;
    transition: 0.3s;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -7px);
}

/* Cart Styles */
.cart-link {
    position: relative;
    display: inline-block;
    margin-right: 12px;
    vertical-align: middle;
    text-decoration: none;
}

.cart-icon {
    width: 28px;
    height: 28px;
    filter: brightness(0) invert(1) drop-shadow(0 1px 2px rgba(0,0,0,0.08));
    transition: transform 0.2s;
}

.cart-link:hover .cart-icon {
    transform: scale(1.1);
}

.cart-count {
    position: absolute;
    top: -6px;
    right: -8px;
    background: #FFD700;
    color: #000;
    font-size: 13px;
    font-weight: bold;
    border-radius: 50%;
    padding: 2px 6px;
    min-width: 20px;
    text-align: center;
    box-shadow: 0 1px 4px rgba(0,0,0,0.12);
    pointer-events: none;
}

/* Cart Modal */
.cart-modal {
    display: none;
    position: fixed;
    z-index: 20000;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.4);
    justify-content: center;
    align-items: center;
}

.cart-modal-content {
    font-family: 'Tajawal', 'Cairo', 'Oswald', Arial, sans-serif;
    background: #fff;
    color: #222;
    border-radius: 16px;
    padding: 32px 28px 24px 28px;
    min-width: 320px;
    max-width: 95vw;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 16px 48px rgba(0,0,0,0.18);
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.cart-modal-close {
    width: 36px;
    height: 36px;
    background: none;
    border: none;
    color: #888;
    font-size: 24px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.2s;
    box-shadow: none;
    outline: none;
    position: absolute;
    top: 18px;
    right: 24px;
    z-index: 10;
    padding: 0;
}

.cart-modal-close:hover,
.cart-modal-close:focus {
    background: none;
    transform: scale(1.1);
}

#cart-modal-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 18px;
    letter-spacing: 0.5px;
    text-align: inherit;
}

#cart-items-list {
    list-style: none;
    padding: 0;
    margin: 0 0 18px 0;
    text-align: inherit;
}

#cart-items-list li {
    padding: 12px 0 8px 0;
    border-bottom: 1.5px solid #f2f2f2;
    font-size: 1.08rem;
    color: #222;
    font-weight: 500;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

#cart-total {
    margin: 22px 0 12px 0;
    font-weight: bold;
    font-size: 1.15rem;
    text-align: inherit;
    border-top: 1.5px solid #eee;
    padding-top: 12px;
}

#cart-empty-msg {
    color: #888;
    margin-top: 24px;
    text-align: center;
    font-size: 1.1rem;
}

.proceed-payment-btn {
    width: 100%;
    background: #FFD700;
    color: #000;
    border: none;
    border-radius: 8px;
    padding: 15px 0;
    font-size: 1.15rem;
    font-weight: bold;
    margin-top: 18px;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.10);
    letter-spacing: 0.5px;
    text-align: center;
}

.proceed-payment-btn:hover {
    background: #ffe066;
    color: #222;
    box-shadow: 0 4px 16px rgba(0,0,0,0.14);
}

.proceed-payment-btn:active {
    background: #ffe066;
    color: #222;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}

.cancel-btn {
    width: 100%;
    background: #f2f2f2;
    color: #666;
    border: none;
    border-radius: 8px;
    padding: 15px 0;
    font-size: 1.15rem;
    font-weight: bold;
    margin-top: 12px;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    letter-spacing: 0.5px;
    text-align: center;
}

.cancel-btn:hover {
    background: #e6e6e6;
    color: #333;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.cancel-btn:active {
    background: #e6e6e6;
    color: #333;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

/* RTL Support for Modal */
html[dir="rtl"] .cart-modal-content {
    text-align: right;
}

html[dir="ltr"] .cart-modal-content {
    text-align: left;
}

html[dir="rtl"] .cart-modal-close {
    right: unset;
    left: 24px;
}

.remove-cart-item {
    background: none;
    border: none;
    color: #bbb;
    font-size: 1.2em;
    margin-left: 12px;
    margin-right: 0;
    cursor: pointer;
    transition: color 0.2s, background 0.2s, box-shadow 0.2s;
    padding: 6px;
    border-radius: 50%;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    outline: none;
    box-shadow: none;
}

.remove-cart-item svg {
    display: block;
    pointer-events: none;
}

.remove-cart-item:hover, .remove-cart-item:focus {
    color: #fff;
    background: #222;
    box-shadow: 0 2px 8px rgba(0,0,0,0.10);
}

html[dir="rtl"] .remove-cart-item {
    margin-left: 0;
    margin-right: 12px;
}

#cart-items-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
}

/* Payment Overlay */
.payment-overlay {
    display: none;
    position: fixed;
    z-index: 30000;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(255,255,255,0.7);
    justify-content: center;
    align-items: center;
}

.payment-overlay.active {
    display: flex;
}

.payment-spinner {
    border: 4px solid #eee;
    border-top: 4px solid #FFD700;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Payment Success Modal */
.payment-success-modal {
    display: none;
    position: fixed;
    z-index: 40000;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.25);
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s;
}

.payment-success-modal.active {
    display: flex;
}

.payment-success-content {
    background: #fff;
    color: #222;
    border-radius: 20px;
    padding: 44px 36px 32px 36px;
    min-width: 320px;
    max-width: 92vw;
    box-shadow: 0 16px 48px rgba(0,0,0,0.22), 0 2px 8px rgba(255,215,0,0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    text-align: center;
    animation: popIn 0.35s cubic-bezier(.4,2,.6,1);
}

.payment-success-check {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #FFD700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    box-shadow: 0 2px 8px rgba(255,215,0,0.12);
}

.payment-success-check svg {
    width: 32px;
    height: 32px;
    color: #fff;
    display: block;
}

.payment-success-close {
    position: absolute;
    top: 14px;
    right: 18px;
    font-size: 26px;
    font-weight: bold;
    color: #bbb;
    cursor: pointer;
    transition: color 0.2s, background 0.2s;
    background: none;
    border: none;
    border-radius: 50%;
    padding: 2px 8px;
    line-height: 1;
}

.payment-success-close:hover {
    color: #fff;
    background: #FFD700;
}

/* Media Queries */
@media screen and (max-width: 1024px) {
    .hamburger {
        display: block;
    }
    
    .navbar-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: #000;
        padding: 80px 20px 20px;
        transition: left 0.3s ease;
        z-index: 999;
        overflow-y: auto;
        display: block;
    }
    
    .navbar-menu.active {
        left: 0;
    }
    
    .navbar-menu li {
        display: block;
        margin: 15px 0;
        text-align: left;
    }
    
    .navbar-menu a {
        color: #fff;
        font-size: 18px;
        padding: 10px 0;
        display: block;
    }
    
    body.menu-open {
        overflow: hidden;
    }
}

/* RTL Support */
html[dir="rtl"] .navbar-menu {
    left: auto;
    right: -100%;
}

html[dir="rtl"] .navbar-menu.active {
    left: auto;
    right: 0;
}

html[dir="rtl"] .navbar-menu li {
    text-align: right;
}

@media screen and (max-width: 768px) {
    .logo {
        height: 38px;
    }
    .brand-text {
        font-size: 15px;
    }
    .brand-text strong {
        font-size: 17px;
    }
    .flag {
        width: 28px;
        height: 28px;
    }
    .navbar {
        padding: 10px;
    }
    .content {
        padding: 16px 10px;
    }
    .user-icon,
    .cart-icon {
        width: 24px;
        height: 24px;
    }
    .workshop-image {
        max-height: 300px;
    }
}

@media screen and (max-width: 480px) {
    .logo {
        height: 38px;
    }
    .brand-text {
        font-size: 12px;
    }
    .brand-text strong {
        font-size: 14px;
    }
    .flag {
        width: 28px;
        height: 28px;
    }
    .navbar {
        padding: 8px;
    }
    .navbar-menu {
        width: 70%;
        max-width: 220px;
        padding: 60px 10px 10px;
    }
    .navbar-menu li {
        font-size: 15px;
        padding: 10px 0;
    }
    .content {
        padding: 12px 8px;
    }
    .user-icon,
    .cart-icon {
        width: 28px;
        height: 28px;
    }
    .cart-count {
        font-size: 12px;
        padding: 1px 5px;
        min-width: 18px;
    }
    .workshop-image {
        max-height: 200px;
    }
    .lang, .active-lang, #lang-en, #lang-ar {
        font-size: 18px;
    }
}

@media screen and (max-width: 360px) {
    .logo {
        height: 24px;
    }
}

@media screen and (max-width: 320px) {
    .logo {
        height: 20px;
    }
}

/* RTL Support */
html[dir="rtl"] .whatsapp-float {
    right: auto;
    left: 20px;
    float: left;
}

/* Animations */
@keyframes popIn {
    0% { transform: scale(0.85); opacity: 0; }
    80% { transform: scale(1.05); opacity: 1; }
    100% { transform: scale(1); opacity: 1; }
}

@keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

/* Prevent horizontal scroll */
body, html {
    overflow-x: hidden;
    width: 100%;
    margin: 0;
    padding: 0;
}

/* Optimize images */
img {
    max-width: 100%;
    height: auto;
    content-visibility: auto;
}

/* Header Images Container */
.header-images {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 250px));
    gap: 15px;
    padding: 15px;
    justify-content: center;
    align-items: stretch;
    max-width: 900px;
    margin: 0 auto;
    width: fit-content;
}

/* Header Image */
.header-image {
    width: 250px;
    aspect-ratio: 1;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.workshop-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.3s ease;
}

/* Media Queries for Header */
@media screen and (max-width: 1024px) {
    .header-images {
        grid-template-columns: repeat(3, minmax(0, 220px));
        gap: 12px;
        padding: 12px;
    }
    
    .header-image {
        width: 220px;
    }
}

@media screen and (max-width: 768px) {
    .header-images {
        grid-template-columns: repeat(2, minmax(0, 200px));
        gap: 10px;
        padding: 10px;
    }
    
    .header-image {
        width: 200px;
        border-radius: 8px;
    }
}

@media screen and (max-width: 480px) {
    .header-images {
        grid-template-columns: repeat(2, minmax(0, 160px));
        gap: 8px;
        padding: 8px;
    }
    
    .header-image {
        width: 160px;
        border-radius: 8px;
    }
}

/* RTL Support for Header */
html[dir="rtl"] .header-images {
    justify-content: center;
}

/* RTL Support for navbar right */
html[dir="rtl"] .navbar-right {
    flex-direction: row-reverse;
}

html[dir="rtl"] .cart-count {
    right: auto;
    left: -8px;
}

/* User Dropdown Styles */
.user-dropdown {
    position: relative;
    display: inline-block;
}

.user-dropdown-content {
    display: none;
    position: absolute;
    right: 0;
    background-color: #fff;
    min-width: 160px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    border-radius: 8px;
    z-index: 1000;
    overflow: hidden;
    margin-top: 8px;
}

.dropdown-item {
    color: #333;
    padding: 12px 16px;
    text-decoration: none;
    display: flex;
    align-items: center;
    font-size: 14px;
    transition: background-color 0.2s;
}

.dropdown-item:hover {
    background-color: #f5f5f5;
    color: #FFD700;
}

.dropdown-icon {
    width: 20px;
    height: 20px;
    margin-right: 12px;
    filter: none;
    color: #666;
    transition: color 0.2s;
    flex-shrink: 0;
}

.dropdown-item:hover .dropdown-icon {
    color: #FFD700;
}

.dropdown-text-en,
.dropdown-text-ar {
    font-size: 14px;
    font-weight: 500;
}

/* RTL support for dropdown items */
html[dir="rtl"] .dropdown-item {
    text-align: right;
}

html[dir="rtl"] .dropdown-icon {
    margin-right: 0;
    margin-left: 12px;
}

html[dir="rtl"] .user-dropdown-content {
    right: auto;
    left: 0;
}

/* Media Queries for User Dropdown */
@media screen and (max-width: 768px) {
    .user-dropdown-content {
        min-width: 160px;
    }
    
    .dropdown-item {
        padding: 8px 12px;
    }
    
    .dropdown-icon {
        width: 18px;
        height: 18px;
    }
}

@media screen and (max-width: 480px) {
    .user-dropdown-content {
        min-width: 140px;
    }
    
    .dropdown-item {
        padding: 6px 10px;
    }
    
    .dropdown-icon {
        width: 16px;
        height: 16px;
    }
}

/* Payment Choice Modal Styles */
.payment-choice-modal {
    display: none;
    position: fixed;
    z-index: 40000;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.25);
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s;
}

.payment-choice-modal.active {
    display: flex;
}

.payment-choice-content {
    background: #fff;
    color: #222;
    border-radius: 20px;
    padding: 44px 36px 32px 36px;
    min-width: 320px;
    max-width: 92vw;
    box-shadow: 0 16px 48px rgba(0,0,0,0.22);
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    text-align: center;
    animation: popIn 0.35s cubic-bezier(.4,2,.6,1);
}

.payment-choice-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #222;
}

.payment-choice-content p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 24px;
}

.payment-choice-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    max-width: 280px;
}

.payment-choice-btn {
    width: 100%;
    padding: 14px 0;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    text-align: center;
}

.signin-btn {
    background: #FFD700;
    color: #000;
}

.signin-btn:hover {
    background: #ffe066;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.signup-btn {
    background: #222;
    color: #fff;
}

.signup-btn:hover {
    background: #333;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.payment-choice-btn.cancel-btn {
    background: #f2f2f2;
    color: #666;
}

.payment-choice-btn.cancel-btn:hover {
    background: #e6e6e6;
    color: #333;
}

/* RTL Support for Payment Choice Modal */
html[dir="rtl"] .payment-choice-content {
    text-align: center;
}

html[dir="rtl"] .payment-choice-btn {
    direction: rtl;
}

@media (max-width: 500px) {
    .payment-choice-content {
        padding: 32px 24px 24px 24px;
    }
    
    .payment-choice-content h3 {
        font-size: 1.3rem;
    }
    
    .payment-choice-content p {
        font-size: 1rem;
    }
    
    .payment-choice-btn {
        padding: 12px 0;
        font-size: 1rem;
    }
}

/* Custom Notification */
.custom-notification {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #FFD700;
    color: #000;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    z-index: 10000;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.custom-notification.show {
    opacity: 1;
    transform: translateY(0);
}

/* RTL Support for Notification */
html[dir="rtl"] .custom-notification {
    right: auto;
    left: 20px;
}

/* Media Queries for Notification */
@media screen and (max-width: 768px) {
    .custom-notification {
        font-size: 14px;
        padding: 10px 20px;
        bottom: 16px;
        right: 16px;
    }
    
    html[dir="rtl"] .custom-notification {
        right: auto;
        left: 16px;
    }
}

@media screen and (max-width: 480px) {
    .custom-notification {
        font-size: 13px;
        padding: 8px 16px;
        bottom: 12px;
        right: 12px;
        max-width: calc(100% - 24px);
    }
    
    html[dir="rtl"] .custom-notification {
        right: auto;
        left: 12px;
    }
}

/* Language Support */
html[lang="en"] {
    direction: ltr;
    text-align: left;
}

html[lang="en"] .navbar {
    flex-direction: row;
}

html[lang="en"] .navbar-left,
html[lang="en"] .navbar-right {
    flex-direction: row;
}

html[lang="en"] .navbar-menu {
    flex-direction: row;
}

html[lang="en"] .brand-text {
    text-align: left;
}

html[lang="en"] .custom-notification {
    right: 20px;
    left: auto;
}

html[lang="en"] .user-dropdown-content {
    right: 0;
    left: auto;
}

html[lang="en"] .dropdown-icon {
    margin-right: 12px;
    margin-left: 0;
}

html[lang="en"] .dropdown-item {
    text-align: left;
}

/* Media Queries for English Language */
@media screen and (max-width: 768px) {
    html[lang="en"] .custom-notification {
        right: 16px;
        left: auto;
    }
}

@media screen and (max-width: 480px) {
    html[lang="en"] .custom-notification {
        right: 12px;
        left: auto;
    }
}

/* Enhanced Service Modal Styles */
.service-modal {
    display: none;
    position: fixed;
    z-index: 30000;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    justify-content: center;
    align-items: center;
}
.service-modal.active {
    display: flex;
}
.service-modal-overlay {
    position: absolute;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(30, 30, 30, 0.55);
    backdrop-filter: blur(4px);
    z-index: 1;
}
.service-modal-content {
    position: relative;
    background: #fff;
    color: #222;
    border-radius: 20px;
    padding: 0 0 28px 0;
    min-width: 340px;
    max-width: 95vw;
    max-height: 85vh;
    overflow-y: auto;
    box-shadow: 0 16px 48px rgba(0,0,0,0.22), 0 2px 8px rgba(255,215,0,0.08);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    text-align: left;
    animation: popIn 0.35s cubic-bezier(.4,2,.6,1);
}
.service-modal-content::before {
    content: '';
    display: block;
    width: 100%;
    height: 8px;
    background: linear-gradient(90deg, #FFD700 0%, #fffbe6 100%);
    border-radius: 20px 20px 0 0;
    margin-bottom: 0;
}
.service-modal-close {
    position: absolute;
    top: 14px;
    right: 18px;
    font-size: 28px;
    font-weight: bold;
    color: #bbb;
    cursor: pointer;
    background: none;
    border: none;
    border-radius: 50%;
    padding: 2px 10px;
    line-height: 1;
    z-index: 3;
    transition: color 0.2s, background 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.service-modal-close:hover {
    color: #fff;
    background: #FFD700;
    box-shadow: 0 4px 16px rgba(255,215,0,0.18);
}
.service-modal-body {
    padding: 32px 32px 12px 32px;
    font-family: 'Tajawal', 'Cairo', 'Oswald', Arial, sans-serif;
}
.service-modal-body h2 {
    font-size: 2rem;
    font-weight: bold;
    color: #FFD700;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
    text-align: center;
}
.service-modal-body p {
    font-size: 1.15rem;
    color: #444;
    margin-bottom: 10px;
    text-align: center;
}
.service-modal-body ul {
    margin: 18px 0 18px 0;
    padding-left: 24px;
    padding-right: 24px;
}
.service-modal-body ul li {
    margin-bottom: 10px;
    font-size: 1.08rem;
    color: #222;
    font-weight: 500;
    line-height: 1.7;
    position: relative;
    padding-left: 28px;
}
.service-modal-body ul li:before {
    content: '\2022';
    color: #FFD700;
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: 0;
    line-height: 1.2;
}
html[lang="ar"] .service-modal-content-en { display: none !important; }
html[lang="ar"] .service-modal-content-ar { display: block !important; }
html[lang="en"] .service-modal-content-en { display: block !important; }
html[lang="en"] .service-modal-content-ar { display: none !important; }
@media (max-width: 600px) {
    .service-modal-content {
        min-width: 0;
        padding: 0 0 10px 0;
    }
    .service-modal-body {
        padding: 18px 8px 8px 8px;
    }
    .service-modal-close {
        right: 6px;
        top: 6px;
    }
    .service-modal-body h2 {
        font-size: 1.3rem;
    }
    .service-modal-body p {
        font-size: 1rem;
    }
    .service-modal-body ul li {
        font-size: 0.98rem;
        padding-left: 18px;
    }
}
@keyframes popIn {
    0% { transform: scale(0.85); opacity: 0; }
    80% { transform: scale(1.05); opacity: 1; }
    100% { transform: scale(1); opacity: 1; }
}

.service-modal-body, .service-modal-body * {
    user-select: text !important;
    -webkit-user-select: text !important;
    -moz-user-select: text !important;
    -ms-user-select: text !important;
}

.services-intro {
    background: linear-gradient(90deg, #fffbe6 0%, #f7f7fa 100%);
    border: 1.5px solid #ffe066;
    border-radius: 16px;
    padding: 24px 18px 18px 18px;
    margin: 32px auto 24px auto;
    max-width: 900px;
    box-shadow: 0 2px 12px rgba(255,215,0,0.06);
    text-align: center;
    font-family: 'Tajawal', 'Cairo', 'Oswald', Arial, sans-serif;
}
.services-intro p {
    font-size: 1.18rem;
    color: #222;
    margin: 0;
    line-height: 1.7;
    font-weight: 500;
    letter-spacing: 0.1px;
}
@media (max-width: 600px) {
    .services-intro {
        padding: 14px 6px 10px 6px;
        font-size: 1rem;
        border-radius: 10px;
        margin: 18px 4px 14px 4px;
    }
    .services-intro p {
        font-size: 1rem;
    }
}
html[lang="ar"] .services-intro p {
    text-align: right;
    direction: rtl;
}
html[lang="en"] .services-intro p {
    text-align: center;
    direction: ltr;
}
.services-intro, .services-intro * {
    user-select: text !important;
    -webkit-user-select: text !important;
    -moz-user-select: text !important;
    -ms-user-select: text !important;
} 