:root {
    --yazi-lime: #C1FF00;
    --yazi-blue: #00A3FF;
    --yazi-dark-blue: #001A33;
    --bg-white: #FEFEFE;
    --bg-light: #F8F9FA;
    --text-dark: #1A1A1A;
    --text-light: #F8F9FA;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(0, 0, 0, 0.08);
    --border-light: rgba(0, 0, 0, 0.1);
    --card-bg: #FFFFFF;
    --glass-blur: blur(12px);
    --transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    --shadow-premium: 0 20px 40px rgba(0, 0, 0, 0.1);
    --shadow-card: 8px 10px 30px rgba(0, 0, 0, 0.05), 2px 2px 8px rgba(0, 0, 0, 0.02);
    --shadow-hover: 12px 20px 40px rgba(0, 0, 0, 0.1);
    --shadow-sm: 4px 4px 12px rgba(0, 0, 0, 0.05);
}

/* Theme Toggle Button */
.theme-toggle-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    box-shadow: var(--shadow-sm);
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
    margin: 0 5px;
}

.theme-toggle-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
    border-color: var(--yazi-lime);
}

.theme-toggle-btn svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    fill: none;
}

[data-theme="dark"] .theme-toggle-btn {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .theme-toggle-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--yazi-lime);
}

header.scrolled .theme-toggle-btn {
    border-color: rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] {
    --bg-white: #0A0A0A;
    --bg-light: #121212;
    --text-dark: #F8F9FA;
    --glass-bg: rgba(0, 0, 0, 0.3);
    --glass-border: rgba(255, 255, 255, 0.1);
    --border-light: rgba(255, 255, 255, 0.05);
    --card-bg: #151515;
    --shadow-premium: 0 20px 40px rgba(0, 0, 0, 0.4);
    --shadow-card: 8px 10px 30px rgba(0, 0, 0, 0.3);
    --shadow-hover: 12px 20px 40px rgba(0, 0, 0, 0.5);
    --shadow-sm: 4px 4px 12px rgba(0, 0, 0, 0.2);
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

body {
    background-color: var(--bg-white);
    color: var(--text-dark);
    transition: var(--transition);
    overflow-x: hidden;
}

/* Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
}


/* Header */
header {
    background: var(--yazi-dark-blue);
    padding: 12px 0;
    position: sticky;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

[data-theme="dark"] header {
    background: rgba(0, 0, 0, 0.85);
}

header.header-transparent {
    background: transparent;
    padding: 20px 0;
    box-shadow: none;
}

header.scrolled {
    background: var(--yazi-dark-blue);
    backdrop-filter: var(--glass-blur);
    padding: 12px 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

[data-theme="dark"] header.scrolled {
    background: rgba(0, 0, 0, 0.85);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-left {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 15px;
}

.mobile-menu-btn, .mobile-nav-drawer, .mobile-nav-overlay {
    display: none !important;
}

.nav-center {
    flex: 2;
    display: flex;
    justify-content: center;
    gap: 30px;
}

.nav-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 15px;
    flex-wrap: nowrap;
}

.nav-center a {
    text-decoration: none;
    color: white;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    opacity: 0.9;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.nav-center a:hover {
    opacity: 1;
    color: var(--yazi-lime);
}


.btn-pro {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    padding: 8px 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 100px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    white-space: nowrap;
}

.btn-pro:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

.btn-book {
    box-shadow: 0 4px 15px rgba(193, 255, 0, 0.3);
}

.lang-switcher {
    color: white;
}

/* Buttons */
.btn {
    padding: 12px 24px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
    text-align: center;
    white-space: nowrap;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 70px; /* Enlarged logo */
    width: auto;
    transition: var(--transition);
    margin-top: 3px; /* Slightly pushed down for visual centering */
}

.logo:hover img {
    transform: scale(1.05);
}

.btn-primary {
    background: var(--yazi-lime);
    color: #000;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(193, 255, 0, 0.3);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--yazi-blue);
    color: var(--yazi-blue);
}

.btn-outline:hover {
    background: var(--yazi-blue);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 163, 255, 0.3);
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.85rem;
}

/* Status Badges */
.status-badge {
    padding: 5px 12px;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    font-size: 0.8rem;
    font-weight: 600;
}
.status-pending { background: #FFF3E0; color: #E65100; }
.status-completed { background: #E8F5E9; color: #2E7D32; }

/* Premium Hero V2 */
.hero-v2 {
    min-height: 80vh;
    background: radial-gradient(circle at 70% 30%, #002a52 0%, #001A33 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    color: white;
    padding-top: 80px;
    padding-bottom: 80px;
}

@media (max-width: 768px) {
    .hero-v2 {
        min-height: 100dvh;
        height: 100dvh;
        padding-top: 80px;
        padding-bottom: 20px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
}



.hero-v2::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -10%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, rgba(193, 255, 0, 0.05) 0%, transparent 70%);
    z-index: 1;
}

.hero-v2 .container {
    z-index: 2;
    text-align: center;
}

/* Impact Section - Chic & Premium */
.impact-section {
    padding: 60px 0;
    background: radial-gradient(circle at 30% 50%, #001A33 0%, #000c1a 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.impact-section::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: var(--yazi-blue);
    filter: blur(150px);
    opacity: 0.1;
    top: -100px;
    left: -100px;
}

.impact-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 60px;
}

.impact-badge {
    color: var(--yazi-lime);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    font-size: 0.9rem;
    display: inline-block;
}

.impact-section h2 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 25px;
    background: linear-gradient(to bottom, #ffffff 0%, #a0a0a0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.1;
}

.impact-description {
    font-size: 1.2rem;
    line-height: 1.6;
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto;
    color: #f0f0f0;
    font-weight: 400;
}

.stat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.stat-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    padding: 40px 20px;
    border-radius: 30px;
    box-shadow: var(--shadow-card);
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--yazi-lime);
    box-shadow: var(--shadow-hover);
}

.stat-item h2 {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--yazi-lime);
    margin-bottom: 10px;
    background: none;
    -webkit-text-fill-color: var(--yazi-lime);
}

.stat-item p {
    font-size: 0.95rem;
    opacity: 0.7;
    margin-bottom: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .stat-grid {
        grid-template-columns: 1fr;
    }
    .impact-section h2 {
        font-size: 2.2rem;
    }
}

.hero-bg-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    opacity: 0.03;
    pointer-events: none;
    z-index: 1;
}

.hero-bg-logo img {
    width: 100%;
    height: auto;
    filter: grayscale(1) invert(1);
}

.hero-badge {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--glass-border);
    backdrop-filter: var(--glass-blur);
    padding: 10px 25px;
    border-radius: 100px;
    box-shadow: var(--shadow-sm);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 30px;
    display: inline-block;
    color: var(--yazi-lime);
    letter-spacing: 1px;
    animation: fadeIn 1.5s ease-out;
}

.hero-v2 h1 {
    font-size: 5.5rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 25px;
    text-transform: uppercase;
    animation: fadeInUp 1s ease-out;
}

.hero-v2 h1 span {
    color: var(--yazi-lime);
}

.hero-locations {
    font-size: 1.1rem;
    opacity: 0.7;
    margin-bottom: 45px;
    letter-spacing: 1px;
}

/* Feature Cards Grid */
.hero-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    width: 100%;
    margin-top: 60px;
}

.feature-glass-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: var(--glass-blur);
    padding: 30px 20px;
    border-radius: 24px;
    text-align: center;
    box-shadow: var(--shadow-card);
    transition: var(--transition);
}

.feature-glass-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--yazi-lime);
    box-shadow: var(--shadow-hover);
}

.feature-glass-card .icon-wrapper {
    width: 50px;
    height: 50px;
    background: rgba(193, 255, 0, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--yazi-lime);
}

.feature-glass-card h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.feature-glass-card p {
    font-size: 0.85rem;
    opacity: 0.6;
    line-height: 1.5;
}

/* Mobile First Adjustments */
@media (max-width: 768px) {
    .hero-v2 h1 {
        font-size: 2.2rem;
        margin-bottom: 20px;
    }
    .nav-center {
        display: none;
    }

    /* Mobile Menu Toggle */
    .mobile-menu-btn {
        display: flex !important;
        align-items: center;
        justify-content: center;
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.2);
        color: white;
        width: 32px;
        height: 32px;
        border-radius: 10px;
        cursor: pointer;
        transition: var(--transition);
    }

    .mobile-menu-btn:hover {
        background: rgba(255, 255, 255, 0.2);
        border-color: var(--yazi-lime);
    }

    .nav-left {
        gap: 10px;
    }

    .nav-right {
        gap: 4px;
    }

    .nav-right .btn, 
    .nav-right .theme-toggle-btn, 
    .nav-right .lang-switcher {
        padding: 0 8px;
        height: 32px;
        font-size: 0.7rem;
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0;
        box-sizing: border-box;
    }

    .nav-right .theme-toggle-btn {
        width: 32px; /* Make it square like height */
        padding: 0;
    }

    .nav-right .lang-switcher {
        padding: 0 8px;
        gap: 4px;
    }

    .nav-right .btn svg,
    .nav-right .theme-toggle-btn svg,
    .nav-right .lang-switcher svg {
        width: 14px;
        height: 14px;
    }

    /* Mobile Drawer */
    .mobile-nav-drawer {
        position: fixed;
        top: 0;
        left: -280px;
        width: 280px;
        height: 100vh;
        background: var(--yazi-dark-blue);
        z-index: 3000;
        transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
        padding: 30px 20px;
        display: flex !important;
        flex-direction: column;
        gap: 10px;
        box-shadow: 10px 0 30px rgba(0,0,0,0.3);
    }

    .mobile-nav-drawer.active {
        transform: translateX(280px);
    }

    .mobile-nav-drawer a {
        color: white;
        text-decoration: none;
        font-size: 1.1rem;
        font-weight: 600;
        padding: 12px 20px;
        border-radius: 12px;
        transition: var(--transition);
        display: block;
    }

    .mobile-nav-drawer a:hover {
        background: rgba(255, 255, 255, 0.1);
        color: var(--yazi-lime);
        padding-left: 25px;
    }

    .mobile-nav-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.6);
        backdrop-filter: blur(5px);
        z-index: 2999;
        display: none;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .mobile-nav-overlay.active {
        display: block !important;
        opacity: 1;
    }

    .drawer-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 40px;
        width: 100%;
    }

    .mobile-nav-close {
        background: rgba(255, 255, 255, 0.1);
        border: none;
        color: white;
        width: 36px;
        height: 36px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        font-size: 1.2rem;
        order: 2; /* Put it on the right if needed, but flex justify-content handles it */
    }

    .logo img {
        height: 50px;
        width: auto;
    }

    .hero-v2 .container {
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding-top: 20px;
    }

    .hero-badge {
        font-size: 0.75rem;
        padding: 6px 15px;
        margin-bottom: 15px;
    }

    .hero-locations {
        margin-bottom: 25px;
        font-size: 0.95rem;
    }

    .hero-features {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        margin-top: 30px;
    }

    .feature-glass-card {
        padding: 15px 10px;
        border-radius: 16px;
    }

    .feature-glass-card h4 {
        font-size: 0.9rem;
        margin-bottom: 5px;
    }

    .feature-glass-card p {
        font-size: 0.7rem;
        line-height: 1.3;
    }

    .feature-glass-card .icon-wrapper {
        width: 35px;
        height: 35px;
        margin-bottom: 10px;
    }
}

/* Testimonial Slider Nav Adjustments */
.testimonial-container {
    position: relative;
    padding: 20px 40px; /* Space for side buttons */
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    box-shadow: var(--shadow-sm);
}

#prevBtn { left: -20px; }
#nextBtn { right: -20px; }






/* Language Switcher */
.lang-switcher {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.lang-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--bg-white);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    box-shadow: var(--shadow-card);
    display: none;
    z-index: 100;
    min-width: 150px;
    padding: 10px 0;
}

.lang-switcher:hover .lang-dropdown {
    display: block;
}

.lang-dropdown button {
    width: 100%;
    padding: 10px 20px;
    text-align: left;
    background: none;
    border: none;
    font-weight: 500;
    cursor: pointer;
    color: var(--text-dark);
}

.lang-dropdown button:hover {
    background: #001A33;
    color: white;
}

/* Footer Improvements */
.footer-grid {
    display: grid; 
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1.5fr; 
    gap: 40px; 
    margin-bottom: 60px;
}

.footer-column h4 {
    color: white;
    margin-bottom: 25px;
    font-size: 1.1rem;
    position: relative;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--yazi-lime);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--yazi-lime);
    padding-left: 5px;
}

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* Keyframe Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Floating Buttons */
.fab-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
}

.fab {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
    cursor: pointer;
    border: none;
    outline: none;
}

.fab:hover {
    transform: scale(1.1) translateY(-5px);
}

.whatsapp-fab {
    background-color: #25d366;
    animation: pulse-whatsapp 2s infinite;
}

.whatsapp-fab:hover {
    background-color: #128c7e;
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.4);
}

.scroll-top-fab {
    background-color: var(--yazi-lime);
    color: var(--yazi-dark-blue);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.scroll-top-fab.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top-fab:hover {
    background-color: var(--yazi-blue);
    color: white;
}

.fab svg {
    width: 30px;
    height: 30px;
    fill: currentColor;
}

@keyframes pulse-whatsapp {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
    70% { box-shadow: 0 0 0 20px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

@media (max-width: 768px) {
    .fab-container {
        bottom: 20px;
        right: 20px;
    }
    .fab {
        width: 50px;
        height: 50px;
    }
    .fab svg {
        width: 24px;
        height: 24px;
    }
}
/* RTL Support */
[dir="rtl"] {
    text-align: right;
}

[dir="rtl"] .nav-right {
    justify-content: flex-start;
}

[dir="rtl"] .nav-left {
    text-align: right;
}

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

[dir="rtl"] .lang-dropdown button {
    text-align: right;
}

[dir="rtl"] .footer-column h4::after {
    left: auto;
    right: 0;
}

[dir="rtl"] .feature-list li.included::before,
[dir="rtl"] .feature-list li.excluded::before {
    margin-right: 0;
    margin-left: 10px;
}

[dir="rtl"] .pricing-card.popular::before {
    left: auto;
    right: 50%;
    transform: translateX(50%);
}

[dir="rtl"] .testimonial-footer {
    flex-direction: row-reverse;
    justify-content: flex-end;
}

[dir="rtl"] .testimonial-user-info {
    text-align: right;
}

[dir="rtl"] .btn-pro:hover {
    padding-left: 16px;
    padding-right: 21px;
}

[dir="rtl"] .footer-links a:hover {
    padding-left: 0;
    padding-right: 5px;
}

[dir="rtl"] .fab-container {
    right: auto;
    left: 30px;
}

/* Custom Searchable Select - Premium Enhancement */
.custom-select-container {
    position: relative;
    width: 100%;
    overflow: visible !important;
}

.custom-select-trigger {
    position: relative;
    cursor: pointer;
    transition: var(--transition);
}

.custom-select-input {
    width: 100%;
    padding: 15px 20px;
    padding-right: 45px !important;
    border: 1.5px solid var(--border-light);
    border-radius: 14px;
    font-size: 1rem;
    background: #FDFDFD;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    outline: none;
    font-weight: 500;
    color: var(--text-dark);
}

.custom-select-input::placeholder {
    color: #999;
}

[data-theme="dark"] .custom-select-input {
    background: #1A1A1A;
    color: white;
    border-color: rgba(255,255,255,0.1);
}

.custom-select-container.active .custom-select-input {
    border-color: var(--yazi-blue);
    box-shadow: 0 0 0 4px rgba(0, 163, 255, 0.1);
    background: white;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

/* Hide default browser/form-group arrow */
.custom-select-input {
    background-image: none !important;
    background-color: #FDFDFD !important;
}

[data-theme="dark"] .custom-select-container.active .custom-select-input {
    background: #111;
}

.custom-select-arrow {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%2300A3FF' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 16px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    opacity: 0.7;
}

.custom-select-container.active .custom-select-arrow {
    transform: translateY(-50%) rotate(180deg);
    opacity: 1;
}

.custom-select-clear {
    position: absolute;
    right: 45px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #999;
    font-size: 1.2rem;
    transition: var(--transition);
    z-index: 2;
    background: transparent;
    border-radius: 50%;
}

.custom-select-clear:hover {
    color: var(--yazi-blue);
    background: rgba(0, 163, 255, 0.05);
}

[data-theme="dark"] .custom-select-clear {
    color: rgba(255,255,255,0.4);
}

[data-theme="dark"] .custom-select-clear:hover {
    color: white;
}

.custom-select-options {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1.5px solid var(--yazi-blue);
    border-top: none;
    border-bottom-left-radius: 14px;
    border-bottom-right-radius: 14px;
    max-height: 280px;
    overflow-y: auto;
    z-index: 9999;
    display: none;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    padding: 5px;
}

@keyframes selectFadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

[data-theme="dark"] .custom-select-options {
    background: #1A1A1A;
    border-color: rgba(255,255,255,0.1);
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

.custom-select-container.active .custom-select-options {
    display: block;
}

.custom-select-option {
    padding: 12px 16px;
    cursor: pointer;
    transition: all 0.2s ease;
    border-radius: 10px;
    font-size: 0.95rem;
    color: var(--text-dark);
    margin-bottom: 2px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.custom-select-option:last-child {
    margin-bottom: 0;
}

[data-theme="dark"] .custom-select-option {
    color: rgba(255,255,255,0.9);
}

.custom-select-option:hover {
    background: rgba(0, 163, 255, 0.08);
    color: var(--yazi-blue);
    padding-left: 20px;
}

.custom-select-option.active-focus {
    background: rgba(0, 163, 255, 0.12);
    color: var(--yazi-blue);
    outline: none;
}

.custom-select-option.selected {
    background: var(--yazi-dark-blue);
    color: white;
    font-weight: 600;
}

.custom-select-option.selected::after {
    content: '✓';
    font-size: 1rem;
    margin-left: 10px;
}

[data-theme="dark"] .custom-select-option.selected {
    background: var(--yazi-blue);
    color: white;
}

.custom-select-options::-webkit-scrollbar {
    width: 6px;
}

.custom-select-options::-webkit-scrollbar-thumb {
    background: #ddd;
    border-radius: 10px;
}

[data-theme="dark"] .custom-select-options::-webkit-scrollbar-thumb {
    background: #444;
}

.custom-select-no-results {
    padding: 20px;
    color: #999;
    text-align: center;
    font-size: 0.9rem;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

.custom-select-container.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.custom-select-container.disabled .custom-select-input {
    background: #f5f5f5;
    border-color: transparent;
}

[data-theme="dark"] .custom-select-container.disabled .custom-select-input {
    background: #111;
}
/* Modal Scroll Lock */
body.no-scroll {
    overflow: hidden;
    height: 100vh;
}

/* Custom Scrollbar for Modals */
.custom-scrollbar::-webkit-scrollbar {
    width: 6px;
}

.custom-scrollbar::-webkit-scrollbar-track {
    background: transparent;
}

.custom-scrollbar::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.custom-scrollbar::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 0, 0, 0.2);
}

[data-theme="dark"] .custom-scrollbar::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .custom-scrollbar::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Pro Dashboard Styles */
.pro-dashboard-container {
    padding-top: 40px;
    padding-bottom: 80px;
}

.pro-header-card {
    background: linear-gradient(135deg, var(--yazi-dark-blue) 0%, #002d5a 100%);
    border-radius: 24px;
    padding: 40px;
    color: white;
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-premium);
}

.pro-header-card::after {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(193, 255, 0, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.stat-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 16px;
    transition: var(--transition);
}

.stat-box:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--yazi-lime);
    transform: translateY(-5px);
}

.stat-box .label {
    font-size: 0.85rem;
    opacity: 0.7;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-box .value {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--yazi-lime);
}

/* Tabs */
.dashboard-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    background: rgba(0,0,0,0.03);
    padding: 5px;
    border-radius: 100px;
    width: fit-content;
}

[data-theme="dark"] .dashboard-tabs {
    background: rgba(255,255,255,0.05);
}

.tab-btn {
    padding: 10px 25px;
    border-radius: 100px;
    border: none;
    background: transparent;
    color: var(--text-dark);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.tab-btn.active {
    background: var(--yazi-dark-blue);
    color: white;
    box-shadow: var(--shadow-sm);
}

[data-theme="dark"] .tab-btn.active {
    background: var(--yazi-lime);
    color: black;
}

.tab-content {
    display: none;
    animation: fadeIn 0.4s ease;
}

.tab-content.active {
    display: block;
}

/* Mission Cards */
.mission-card {
    background: var(--card-bg);
    border: 1px solid var(--border-light);
    border-radius: 20px;
    padding: 25px;
    margin-bottom: 20px;
    transition: var(--transition);
    box-shadow: var(--shadow-card);
}

.mission-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--yazi-blue);
}

.mission-grid {
    display: grid;
    grid-template-columns: 80px 1fr auto;
    gap: 20px;
    align-items: start;
}

.mission-icon {
    width: 80px;
    height: 80px;
    background: #f8f9fa;
    border-radius: 15px;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

[data-theme="dark"] .mission-icon {
    background: #222;
}

.mission-icon img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.mission-info h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.mission-details {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 10px;
    color: #666;
    font-size: 0.9rem;
}

[data-theme="dark"] .mission-details {
    color: #aaa;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 5px;
}

.mission-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

@media (max-width: 768px) {
    .mission-grid {
        grid-template-columns: 1fr;
    }
    .mission-icon {
        width: 60px;
        height: 60px;
    }
    .pro-header-card {
        padding: 25px;
    }
    .stats-row {
        grid-template-columns: 1fr 1fr;
    }
}

/* RTL Support */
[dir="rtl"] {
    text-align: right;
}

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

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

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

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

[dir="rtl"] .btn-prev::before {
    content: '\2192\00a0';
}

[dir="rtl"] .btn-prev {
    flex-direction: row;
}

[dir="rtl"] .btn-next::after {
    content: '\00a0\2190';
}

[dir="rtl"] .step-item .step-icon {
    margin-right: 0;
    margin-left: 10px;
}

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

[dir="rtl"] .footer-column h4::after {
    left: auto;
    right: 0;
}

[dir="rtl"] .stat-item h2 {
    direction: ltr;
    display: inline-block;
}

[dir="rtl"] .price-val, [dir="rtl"] .total-val, [dir="rtl"] .value, [dir="rtl"] .mission-price {
    direction: ltr;
    display: inline-block;
}

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

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

[dir="rtl"] .nav-actions-grid {
    direction: rtl;
}

[dir="rtl"] .nav-bottom-sheet {
    text-align: right;
}

[dir="rtl"] .pro-header-card {
    text-align: right;
}

[dir="rtl"] .mission-card {
    text-align: right;
}

[dir="rtl"] .pro-header-card p {
    text-align: right;
}

/* Package Card Header, Toggle and Description Styles */
.card-header-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 10px;
    width: 100%;
}

.btn-toggle-desc {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    opacity: 0.6;
    transition: var(--transition);
}

.btn-toggle-desc:hover {
    opacity: 1 !important;
    color: var(--yazi-blue) !important;
    transform: scale(1.1);
}

.pack-description-container {
    display: none;
    background: var(--bg-light);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 12px 15px;
    margin: 5px 0 15px;
    font-size: 0.9rem;
    font-style: italic;
    text-align: center;
    color: var(--text-dark);
    opacity: 0.9;
    line-height: 1.4;
    width: 100%;
    box-sizing: border-box;
    animation: slideDown 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }
    to {
        opacity: 0.9;
        transform: translateY(0);
    }
}
