/* TOMA Platform - Clean Modern Design */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-green: #5FDDBB;
    --dark-green: #0D4D3D;
    --dark-overlay: rgba(13, 77, 61, 0.85);
    --dark-text: #1F2937;
    --gray-text: #6B7280;
    --light-bg: #F9FAFB;
    --white: #FFFFFF;
    --border: #E5E7EB;
    --card-bg: #FFFFFF;
    --accent-amber: #FBBF24;
    --success-green: #10B981;
    --muted-gray: #9CA3AF;
}

/* Dark Mode Variables */
body.dark-mode {
    --dark-text: #F9FAFB;
    --gray-text: #D1D5DB;
    --light-bg: #1F2937;
    --white: #111827;
    --border: #374151;
    --card-bg: #1F2937;
}

body {
    font-family: 'Cairo', 'Amiri', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--white);
    color: var(--dark-text);
    line-height: 1.8;
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* استخدام خط Amiri للعناوين العربية الكبيرة */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Amiri', 'Cairo', serif !important;
    font-weight: 700;
}

/* استخدام خط Cairo للنصوص العادية */
p, span, a, button, input, textarea, select, div, label {
    font-family: 'Cairo', 'Amiri', sans-serif !important;
}

/* تطبيق الخط على جميع العناصر */
* {
    font-family: 'Cairo', 'Amiri', 'Inter', sans-serif;
}

/* ========================================
   زر الوضع الليلي الثابت
   ======================================== */
.dark-mode-toggle {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    background: linear-gradient(135deg, #1F2937 0%, #111827 100%);
    border: none;
    border-radius: 50px;
    padding: 8px;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.dark-mode-toggle:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}

.dark-mode-toggle:active {
    transform: translateY(0);
}

.toggle-track {
    position: relative;
    width: 70px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 8px;
}

.toggle-icon {
    font-size: 16px;
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 1;
}

.toggle-icon.sun {
    opacity: 1;
}

.toggle-icon.moon {
    opacity: 0.5;
}

body.dark-mode .toggle-icon.sun {
    opacity: 0.5;
}

body.dark-mode .toggle-icon.moon {
    opacity: 1;
}

.toggle-thumb {
    position: absolute;
    top: 4px;
    left: 4px;
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    border-radius: 50%;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

body.dark-mode .toggle-thumb {
    transform: translateX(34px);
    background: linear-gradient(135deg, #5FDDBB 0%, #0D4D3D 100%);
}

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

/* شريط التنقل */
.navbar {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    transition: all 0.3s ease;
}

body.dark-mode .navbar {
    background: var(--white);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-text);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo svg {
    transition: transform 0.3s ease;
}

.logo:hover svg {
    transform: scale(1.1);
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: #666;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--primary-green);
}

.nav-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.lang-switch {
    padding: 0.5rem 1rem;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: white;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

.lang-switch:hover {
    border-color: var(--primary-green);
}

/* الأزرار */
.btn-primary {
    background: var(--primary-green);
    color: var(--dark-green);
    border: none;
    padding: 0.7rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 0.95rem;
}

.btn-primary:hover {
    background: #4FD1C5;
}

.btn-secondary {
    background: transparent;
    color: var(--dark-text);
    border: 1px solid var(--border);
    padding: 0.7rem 2rem;
    border-radius: 6px;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 0.95rem;
}

.btn-secondary:hover {
    background: var(--light-bg);
}

.btn-primary-lg {
    background: var(--primary-green);
    color: var(--white);
    border: none;
    padding: 0.9rem 2.2rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-primary-lg:hover {
    background: #059669;
}

.btn-secondary-lg {
    background: transparent;
    color: var(--dark-text);
    border: 1px solid var(--border);
    padding: 0.9rem 2.2rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-secondary-lg:hover {
    background: var(--light-bg);
}

/* ========================================
   MARKETING BANNER
   ======================================== */
.marketing-banner {
    background: linear-gradient(135deg, #0D4D3D 0%, #094034 100%);
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.banner-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.banner-icon {
    font-size: 2.5rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.banner-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.banner-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
}

.banner-subtitle {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.9);
}

.banner-cta {
    background: white;
    color: var(--primary-green);
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.banner-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.2);
}

@media (max-width: 768px) {
    .banner-content {
        justify-content: center;
        text-align: center;
    }
    .banner-icon {
        font-size: 2rem;
    }
    .banner-title {
        font-size: 1.1rem;
    }
}

/* ========================================
   AIRBNB-STYLE CATEGORY TABS
   ======================================== */
.category-tabs-section {
    background: white;
    border-bottom: 1px solid var(--border);
    padding: 0;
}

.category-tabs {
    display: flex;
    gap: 0;
    justify-content: center;
    max-width: 900px;
    margin: 0 auto;
}

.category-tab {
    background: transparent;
    border: none;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    color: var(--gray-text);
    font-weight: 600;
    font-size: 1.1rem;
    border-bottom: 2px solid transparent;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border-radius: 12px 12px 0 0;
}

.category-tab .tab-icon {
    font-size: 1.6rem;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-tab .tab-icon svg {
    width: 24px;
    height: 24px;
    stroke-width: 2;
}

.category-tab.active .tab-icon {
    transform: scale(1.15);
}

.category-tab svg {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.category-tab:hover {
    color: var(--dark-text);
    background: rgba(95, 221, 187, 0.08);
    border-bottom-color: rgba(95, 221, 187, 0.3);
    transform: translateY(-2px);
}

.category-tab:hover .tab-icon {
    transform: scale(1.2) rotate(5deg);
}

.category-tab.active {
    color: var(--dark-text);
    border-bottom-color: var(--primary-green);
    background: rgba(95, 221, 187, 0.05);
}

.category-tab.active svg {
    stroke: var(--primary-green);
}

/* Dark Mode for Category Tabs */
body.dark-mode .category-tabs-section {
    background: #1F2937;
    border-bottom-color: #374151;
}

body.dark-mode .category-tab {
    color: #9CA3AF;
}

body.dark-mode .category-tab:hover {
    color: #F9FAFB;
    background: rgba(95, 221, 187, 0.15);
}

body.dark-mode .category-tab.active {
    color: #F9FAFB;
    background: rgba(95, 221, 187, 0.1);
}

/* Dark Mode for Search Inputs */
body.dark-mode .airbnb-search-bar {
    background: #1a1a1a !important;
    border-color: #374151 !important;
}

body.dark-mode .search-field {
    background: transparent !important;
}

body.dark-mode .search-field label {
    color: #F9FAFB !important;
}

body.dark-mode .search-input {
    color: #E5E7EB !important;
    background: transparent !important;
}

body.dark-mode .search-input:focus {
    color: #F9FAFB !important;
}

body.dark-mode .search-input::placeholder {
    color: #9CA3AF !important;
}

body.dark-mode .search-input option {
    background: #1F2937 !important;
    color: #E5E7EB !important;
}

body.dark-mode .search-field:hover {
    background: rgba(95, 221, 187, 0.05) !important;
}

body.dark-mode .search-divider {
    background: #374151 !important;
}

/* Dark mode for date input calendar icon */
body.dark-mode input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(1) !important;
}

/* ========================================
   AIRBNB-STYLE SEARCH BAR
   ======================================== */
.search-section {
    background: white;
    padding: 2rem 0;
    border-bottom: 1px solid var(--border);
}

.search-section-hero {
    background: 
        linear-gradient(135deg, rgba(13, 77, 61, 0.75) 0%, rgba(95, 221, 187, 0.65) 100%),
        url('/attached_assets/stock_images/photography_studio_i_b1d3f484.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 3rem 0;
    transition: background 0.5s ease;
    position: relative;
}

/* Dynamic backgrounds for different categories */
.search-section-hero.bg-photographers {
    background: 
        linear-gradient(135deg, rgba(13, 77, 61, 0.75) 0%, rgba(95, 221, 187, 0.65) 100%),
        url('/attached_assets/stock_images/photography_studio_i_b1d3f484.jpg');
    background-size: cover;
    background-position: center;
}

.search-section-hero.bg-equipment {
    background: 
        linear-gradient(135deg, rgba(13, 77, 61, 0.75) 0%, rgba(95, 221, 187, 0.65) 100%),
        url('/attached_assets/stock_images/photography_studio_i_68c676a4.jpg');
    background-size: cover;
    background-position: center;
}

.search-section-hero.bg-studios {
    background: 
        linear-gradient(135deg, rgba(13, 77, 61, 0.75) 0%, rgba(95, 221, 187, 0.65) 100%),
        url('/attached_assets/stock_images/photography_studio_i_5757fcb3.jpg');
    background-size: cover;
    background-position: center;
}

.search-section-hero.bg-models {
    background: 
        linear-gradient(135deg, rgba(13, 77, 61, 0.75) 0%, rgba(95, 221, 187, 0.65) 100%),
        url('/attached_assets/stock_images/photography_studio_i_b1d3f484.jpg');
    background-size: cover;
    background-position: center;
}

/* Marketing tagline beside search */
.search-with-tagline {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.marketing-tagline {
    text-align: center;
    max-width: 600px;
}

.tagline-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-text);
    margin: 0 0 0.5rem 0;
    line-height: 1.2;
}

.tagline-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    display: block;
    font-weight: 400;
}

@media (max-width: 1024px) {
    .search-with-tagline {
        padding: 0 1rem;
    }
    
    .marketing-tagline {
        position: static;
        transform: none;
        max-width: 100%;
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .tagline-title {
        font-size: 1.5rem;
    }
}

.airbnb-search-bar {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    border: 1px solid #DDDDDD;
    border-radius: 50px;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    box-shadow: 0 1px 2px rgba(0,0,0,0.08), 0 4px 12px rgba(0,0,0,0.05);
    transition: box-shadow 0.2s ease;
}

.airbnb-search-bar:hover {
    box-shadow: 0 2px 4px rgba(0,0,0,0.10), 0 6px 16px rgba(0,0,0,0.08);
}

.search-field {
    flex: 1;
    padding: 0.75rem 1.5rem;
    cursor: pointer;
    border-radius: 50px;
    transition: background 0.2s ease;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.search-field:hover {
    background: #F7F7F7;
}

.search-field label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--dark-text);
    display: block;
}

.search-input {
    border: none;
    outline: none;
    background: transparent;
    font-size: 0.875rem;
    color: var(--gray-text);
    width: 100%;
    font-weight: 400;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
}

.search-input:focus {
    color: var(--dark-text);
}

.search-input::placeholder {
    color: var(--gray-text);
}

.search-divider {
    width: 1px;
    height: 32px;
    background: #DDDDDD;
}

.search-field-action {
    flex: 0 0 auto;
    padding: 0.5rem;
}

.search-field-action:hover {
    background: transparent;
}

.search-button {
    background: linear-gradient(135deg, var(--primary-green) 0%, #4DCCA9 100%);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 1rem 2rem;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.2s ease;
    box-shadow: 0 1px 2px rgba(95, 221, 187, 0.3);
    white-space: nowrap;
}

.search-button:hover {
    transform: scale(1.04);
    box-shadow: 0 2px 8px rgba(95, 221, 187, 0.4);
}

.search-button svg {
    stroke-width: 2.5;
}

/* ========================================
   FILTERS SECTION - AIRBNB STYLE
   ======================================== */
.filters-section {
    background: white;
    padding: 1.5rem 0;
    border-bottom: 1px solid #EBEBEB;
}

.filters-grid {
    display: flex;
    gap: 0;
    max-width: 850px;
    margin: 0 auto;
    background: white;
    border: 1px solid #DDDDDD;
    border-radius: 32px;
    padding: 0.5rem;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08), 0 4px 12px rgba(0, 0, 0, 0.05);
}

.filters-grid .filter-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 0.75rem 1.25rem;
    cursor: pointer;
    transition: all 0.2s ease;
    border-radius: 28px;
    position: relative;
}

.filters-grid .filter-item:hover {
    background: #F7F7F7;
}

.filters-grid .filter-item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 32px;
    background: #DDDDDD;
}

.filters-grid label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    color: #222222;
    margin-bottom: 0.25rem;
    pointer-events: none;
}

.filter-select {
    width: 100%;
    padding: 0;
    border: none;
    font-size: 0.875rem;
    color: #717171;
    background: transparent;
    cursor: pointer;
    font-weight: 400;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.filter-select:hover {
    color: #222222;
}

.filter-select:focus {
    outline: none;
    color: #222222;
}

.filter-select option {
    background: white;
    color: #222222;
    padding: 0.5rem;
}

/* ========================================
   RESULTS SECTION
   ======================================== */
.results-section {
    background: var(--light-bg);
    padding: 3rem 0;
}

/* القسم الرئيسي مع صورة خلفية (مخفي) */
.hero-image {
    position: relative;
    min-height: auto;
    padding-bottom: 3rem;
    background-image: url('./attached_assets/stock_images/professional_saudi_p_82a1c674.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: none;
    align-items: flex-start;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--dark-overlay);
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 4rem 20px;
    direction: ltr;
}

.hero-content > * {
    direction: rtl;
}

.hero-text {
    text-align: right;
    color: var(--white);
}

.hero-subtitle-top {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--primary-green);
    font-weight: 500;
}

.hero-title-main {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--white);
}

.hero-form {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.booking-form-simple {
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    gap: 1rem;
    align-items: center;
}

.form-input-simple {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 1rem 1.2rem;
    border-radius: 10px;
    color: var(--white);
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s;
}

.form-input-simple:hover {
    background: rgba(255, 255, 255, 0.2);
}

.form-input-simple:focus {
    outline: none;
    border-color: var(--primary-green);
    background: rgba(255, 255, 255, 0.25);
}

.form-input-simple option {
    background: #FFFFFF !important;
    color: #1a1a1a !important;
    padding: 0.5rem;
}

.form-input,
.form-input select,
select.form-input {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 0.9rem 1rem;
    border-radius: 8px;
    color: var(--white);
    font-size: 0.95rem;
}

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

select.form-input option,
select.form-input-full option {
    background: var(--white) !important;
    color: var(--dark-text) !important;
    padding: 0.5rem;
    font-weight: 500;
}

.form-input-full {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 0.9rem 1rem;
    border-radius: 8px;
    color: var(--white);
    font-size: 0.95rem;
    width: 100%;
}

.form-input-full::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.form-phone {
    position: relative;
}

.phone-code {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.form-phone .form-input-full {
    padding-left: 4rem;
}

.btn-form-primary {
    background: var(--primary-green);
    color: var(--dark-green);
    border: none;
    padding: 0.9rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 0.95rem;
}

.btn-form-primary:hover {
    background: #4FD1C5;
}

.btn-search {
    background: var(--primary-green);
    color: var(--dark-green);
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 1.05rem;
    white-space: nowrap;
}

.btn-search:hover {
    background: #4FD1C5;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(95, 221, 187, 0.3);
}

.btn-submit {
    background: var(--primary-green);
    color: var(--dark-green);
    border: none;
    padding: 1rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 1.05rem;
    width: 100%;
}

.btn-submit:hover {
    background: #4FD1C5;
    transform: translateY(-1px);
}

.form-checkbox {
    display: flex;
    gap: 0.8rem;
    align-items: flex-start;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.85rem;
}

.form-checkbox input[type="checkbox"] {
    margin-top: 0.3rem;
}

.form-checkbox a {
    color: var(--primary-green);
    text-decoration: underline;
}

/* مساحة الإعلانات */
.ads-section {
    padding: 3rem 0;
    background: var(--light-bg);
    min-height: 150px;
}

.ads-placeholder {
    text-align: center;
    padding: 2rem;
    border: 2px dashed var(--border);
    border-radius: 12px;
    color: var(--gray-text);
}

/* الإحصائيات */
.stats {
    padding: 5rem 0;
    background: var(--light-bg);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 4rem;
    text-align: center;
}

.stat-item {
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    margin: 0 auto 1rem;
    background: rgba(95, 221, 187, 0.1);
    border-radius: 16px;
}

.stat-icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--primary-green);
    stroke-width: 2;
}

.stat-number {
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary-green);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--gray-text);
    font-weight: 400;
}

/* شريط الفلاتر */
.filters-bar {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.filters-container {
    display: flex;
    gap: 1rem;
    align-items: flex-end;
    flex-wrap: wrap;
}

.filter-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    min-width: 180px;
}

.filter-label {
    font-size: 0.85rem;
    color: var(--gray-text);
    font-weight: 500;
}

.filter-select {
    padding: 0.7rem 1rem;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--white);
    color: var(--dark-text);
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.2s;
}

.filter-select:hover {
    border-color: var(--primary-green);
}

.filter-select:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(95, 221, 187, 0.1);
}

.filter-select option,
select option,
.input option {
    padding: 0.5rem;
    background: #FFFFFF !important;
    color: #1a1a1a !important;
    font-weight: 500;
}

/* النتائج في hero section */
.results-section {
    margin-top: 2rem;
    width: 100%;
}

.hero-content .providers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.filter-reset {
    background: transparent;
    border: 1px solid var(--border);
    padding: 0.7rem 1.5rem;
    border-radius: 8px;
    color: var(--gray-text);
    cursor: pointer;
    transition: all 0.2s;
    font-weight: 500;
    margin-bottom: 0.3rem;
}

.filter-reset:hover {
    background: var(--light-bg);
    border-color: var(--primary-green);
    color: var(--dark-text);
}

/* الخدمات */
.services {
    padding: 5rem 0;
    background: var(--white);
}

.section-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 3rem;
    color: var(--dark-text);
}

.services-tabs {
    display: flex;
    gap: 0.8rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.tab-btn {
    background: transparent;
    border: none;
    padding: 0.6rem 1.2rem;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.2s;
    font-weight: 400;
    color: var(--gray-text);
    font-size: 0.95rem;
}

.tab-btn:hover {
    background: var(--light-bg);
    color: var(--dark-text);
}

.tab-btn.active {
    background: var(--light-bg);
    color: var(--dark-text);
    font-weight: 500;
}

.providers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1rem;
}

.provider-card {
    background: var(--white);
    border-radius: 10px;
    padding: 1.2rem;
    border: 1px solid var(--border);
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

body.dark-mode .provider-card {
    background: var(--card-bg);
    border-color: var(--border);
}

body.dark-mode .provider-card:hover {
    box-shadow: 0 6px 16px rgba(95, 221, 187, 0.15);
}

.provider-card:hover {
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
    transform: translateY(-3px);
}

.provider-card-with-avatar {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.provider-avatar-small {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #5FDDBB, #0D4D3D);
    flex-shrink: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.provider-content {
    flex: 1;
    min-width: 0;
}

.provider-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.provider-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark-text);
    margin: 0;
}

.provider-rating {
    font-size: 0.8rem;
}

.provider-desc {
    color: var(--gray-text);
    font-size: 0.85rem;
    line-height: 1.4;
    margin: 0;
}

.provider-info {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 0.3rem;
}

.info-item {
    font-size: 0.8rem;
    color: var(--gray-text);
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.btn-contact {
    background: var(--primary-green);
    color: var(--dark-green);
    border: none;
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 0.5rem;
}

.btn-contact:hover {
    background: #4FD1C5;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(95, 221, 187, 0.3);
}

/* بطاقات مبسطة لمقدمي الخدمات */
.provider-card-simple {
    background: var(--white);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid var(--border);
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.8rem;
}

body.dark-mode .provider-card-simple {
    background: var(--card-bg);
    border-color: var(--border);
}

.provider-card-simple:hover {
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
    transform: translateY(-3px);
}

body.dark-mode .provider-card-simple:hover {
    box-shadow: 0 6px 16px rgba(95, 221, 187, 0.15);
}

.provider-avatar-large {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #5FDDBB, #0D4D3D);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.provider-name-simple {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-text);
    line-height: 1.3;
}

.provider-meta-simple {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.provider-rating-simple {
    display: flex;
    align-items: center;
    gap: 4px;
    color: var(--gray-text);
    font-size: 0.95rem;
    font-weight: 500;
}

.provider-location-simple {
    display: flex;
    align-items: center;
    gap: 4px;
    color: var(--gray-text);
    font-size: 0.9rem;
}

/* نافذة منبثقة */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: var(--white);
    border-radius: 16px;
    padding: 2.5rem;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transition: all 0.3s ease;
}

body.dark-mode .modal-content {
    background: var(--card-bg);
}

body.dark-mode .modal-title {
    color: #F9FAFB !important;
    background: var(--card-bg);
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

body.dark-mode .modal-close {
    color: #D1D5DB;
}

body.dark-mode .modal-close:hover {
    background: rgba(95, 221, 187, 0.15);
    color: #5FDDBB;
}

body.dark-mode .input,
body.dark-mode input[type="text"],
body.dark-mode input[type="email"],
body.dark-mode input[type="password"],
body.dark-mode input[type="tel"],
body.dark-mode textarea,
body.dark-mode select {
    background: #1F2937;
    border-color: #374151;
    color: #F9FAFB !important;
}

body.dark-mode .input:focus,
body.dark-mode input:focus,
body.dark-mode textarea:focus,
body.dark-mode select:focus {
    background: #2D3748;
    border-color: #5FDDBB;
    color: #F9FAFB !important;
}

body.dark-mode .input::placeholder,
body.dark-mode input::placeholder,
body.dark-mode textarea::placeholder {
    color: #9CA3AF !important;
}

body.dark-mode label,
body.dark-mode .form-label,
body.dark-mode .input-label {
    color: #E5E7EB !important;
}

body.dark-mode .auth-form p,
body.dark-mode .modal-content p,
body.dark-mode .modal-content a {
    color: #D1D5DB;
}

body.dark-mode .modal-content a:hover {
    color: #5FDDBB;
}

.modal-close {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--gray-text);
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s;
}

.modal-close:hover {
    background: var(--light-bg);
    color: var(--dark-text);
}

.modal-title {
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    position: sticky;
    top: 0;
    color: var(--dark-text);
    font-family: 'Amiri', 'Cairo', serif !important;
    font-weight: 700;
    background: white;
    z-index: 11;
    padding-top: 0;
    margin-left: -2.5rem;
    margin-right: -2.5rem;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
    padding-bottom: 1rem;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.input {
    padding: 0.9rem;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.2s;
}

.input:focus {
    outline: none;
    border-color: var(--primary-green);
}

.btn-primary-full {
    background: var(--primary-green);
    color: var(--white);
    border: none;
    padding: 1rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    font-size: 1.1rem;
    transition: all 0.2s;
}

.btn-primary-full:hover {
    background: #059669;
}

.switch-auth {
    text-align: center;
    margin-top: 1.5rem;
    color: var(--gray-text);
}

.link-btn {
    background: none;
    border: none;
    color: var(--primary-green);
    font-weight: 600;
    cursor: pointer;
    text-decoration: underline;
}

.link-btn:hover {
    color: #059669;
}

/* How It Works Section */
.how-it-works {
    padding: 5rem 0;
    background: var(--white);
}

.how-it-works-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 2rem;
}

.how-it-works-step {
    text-align: center;
    padding: 2rem;
    background: var(--light-bg);
    border-radius: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.how-it-works-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(95, 221, 187, 0.2);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-green);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(95, 221, 187, 0.3);
}

.step-icon {
    font-size: 4rem;
    margin: 2rem 0 1rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    margin: 2rem auto 1rem;
    background: rgba(95, 221, 187, 0.1);
    border-radius: 20px;
}

.step-icon svg {
    width: 40px;
    height: 40px;
    stroke: var(--primary-green);
    stroke-width: 2;
}

.step-title {
    color: var(--dark-text);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.step-description {
    color: var(--gray-text);
    line-height: 1.8;
    font-size: 0.95rem;
}

/* Dark Mode for How It Works */
body.dark-mode .how-it-works {
    background: #0f1419;
}

body.dark-mode .how-it-works-step {
    background: #1a2332;
}

body.dark-mode .step-title {
    color: #f0f0f0;
}

/* Why TOMA Section */
.why-toma {
    padding: 5rem 0;
    background: var(--light-bg);
}

.why-toma-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.why-toma-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-toma-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(95, 221, 187, 0.15);
}

.why-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, rgba(95, 221, 187, 0.15) 0%, rgba(13, 77, 61, 0.1) 100%);
    border-radius: 18px;
}

.why-icon svg {
    width: 36px;
    height: 36px;
    stroke: var(--primary-green);
    stroke-width: 2;
}

.why-toma-card h3 {
    color: var(--dark-text);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.why-toma-card p {
    color: var(--gray-text);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Dark Mode for Why TOMA */
body.dark-mode .why-toma {
    background: #1a2332;
}

body.dark-mode .why-toma-card {
    background: #0f1419;
}

body.dark-mode .why-toma-card h3 {
    color: #f0f0f0;
}

/* App Announcement Section */
.app-announcement {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--dark-green) 100%);
    color: white;
}

.app-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.app-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.app-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.app-badges {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.coming-soon-badge {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 1rem 1.5rem;
    border-radius: 10px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.coming-soon-badge span {
    font-size: 0.85rem;
    opacity: 0.9;
}

.coming-soon-badge strong {
    font-size: 1.1rem;
    font-weight: 700;
}

.phone-mockup {
    font-size: 15rem;
    text-align: center;
    opacity: 0.9;
    display: flex;
    align-items: center;
    justify-content: center;
}

.phone-mockup svg {
    width: 200px;
    height: 200px;
    stroke: var(--primary-green);
    stroke-width: 1.5;
}

@media (max-width: 768px) {
    .app-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .phone-mockup {
        font-size: 8rem;
    }
    
    .app-text h2 {
        font-size: 2rem;
    }
}

/* Blog Section */
.blog-section {
    padding: 5rem 0;
    background: var(--white);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 2rem;
}

.blog-card {
    background: var(--light-bg);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.blog-image {
    width: 100%;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(95, 221, 187, 0.1) 0%, rgba(13, 77, 61, 0.05) 100%);
    border-radius: 12px 12px 0 0;
}

.blog-image svg {
    width: 64px;
    height: 64px;
    stroke: var(--primary-green);
    stroke-width: 1.5;
    font-size: 5rem;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--dark-green) 100%);
}

.blog-card h3 {
    padding: 1.5rem 1.5rem 0.5rem 1.5rem;
    color: var(--dark-text);
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.4;
}

.blog-card p {
    padding: 0 1.5rem 1.5rem 1.5rem;
    color: var(--gray-text);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Dark Mode for Blog */
body.dark-mode .blog-section {
    background: #0f1419;
}

body.dark-mode .blog-card {
    background: #1a2332;
}

body.dark-mode .blog-card h3 {
    color: #f0f0f0;
}

/* FAQ Section */
.faq-section {
    background: var(--light-bg);
    padding: 4rem 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.faq-item {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    transition: transform 0.3s;
}

.faq-item:hover {
    transform: translateY(-5px);
}

.faq-question {
    color: var(--dark-text);
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
}

.faq-answer {
    color: var(--gray-text);
    line-height: 1.6;
}

/* Dark Mode for FAQ */
body.dark-mode .faq-section {
    background: #1a2332;
}

body.dark-mode .faq-item {
    background: white;
}

body.dark-mode .faq-question {
    color: #1F2937;
}

body.dark-mode .faq-answer {
    color: #4B5563;
}

/* Financial Cards - Light Mode */
.financial-card-earnings {
    background: linear-gradient(135deg, #5FDDBB 0%, #0D4D3D 100%) !important;
}

.financial-card-withdrawn {
    background: linear-gradient(135deg, #9C27B0 0%, #6A1B9A 100%) !important;
}

.financial-icon {
    background: rgba(255,255,255,0.2) !important;
    color: white !important;
}

.financial-value {
    color: white !important;
}

.financial-label {
    color: rgba(255,255,255,0.9) !important;
}

/* Dark Mode for Stat Cards */
body.dark-mode .stat-card {
    background: #1F2937 !important;
    border: 1px solid #374151;
}

body.dark-mode .stat-card:hover {
    background: #2D3748 !important;
    box-shadow: 0 8px 20px rgba(95, 221, 187, 0.25);
}

body.dark-mode .stat-value,
body.dark-mode .stat-number {
    color: #5FDDBB !important;
}

body.dark-mode .stat-label {
    color: #D1D5DB !important;
}

body.dark-mode .stat-icon {
    background: rgba(95, 221, 187, 0.15);
}

/* Dark Mode for Financial Cards */
body.dark-mode .financial-card-earnings {
    background: linear-gradient(135deg, #1F2937 0%, #374151 100%) !important;
    border: 2px solid #5FDDBB;
}

body.dark-mode .financial-card-withdrawn {
    background: linear-gradient(135deg, #2D1B3D 0%, #4A2D5F 100%) !important;
    border: 2px solid #9C27B0;
}

body.dark-mode .financial-icon {
    background: rgba(95, 221, 187, 0.2) !important;
    color: #5FDDBB !important;
}

body.dark-mode .financial-value {
    color: #5FDDBB !important;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

body.dark-mode .financial-label {
    color: #D1D5DB !important;
}

/* Account Type Selector */
.account-type-selector {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    background: white;
    padding: 0.5rem;
    border-radius: 10px;
    position: sticky;
    top: 70px;
    z-index: 10;
    margin-left: -2.5rem;
    margin-right: -2.5rem;
    padding: 1rem 2.5rem;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.account-type-btn {
    flex: 1;
    padding: 0.8rem;
    border: none;
    background: transparent;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s;
}

.account-type-btn.active {
    background: var(--primary-green);
    color: white;
}

/* Terms Checkbox */
.terms-checkbox {
    display: flex;
    align-items: start;
    gap: 0.5rem;
    margin-top: 1rem;
}

.terms-checkbox input {
    margin-top: 0.3rem;
}

.terms-checkbox label {
    font-size: 0.9rem;
    color: var(--gray-text);
}

.terms-checkbox a {
    color: var(--primary-green);
    text-decoration: none;
}

/* Modal Large */
.modal-large {
    max-width: 600px;
}

.modal-text {
    line-height: 1.8;
    color: var(--gray-text);
}

/* Contact Channels */
.contact-channels {
    display: grid;
    gap: 1.5rem;
    margin-top: 2rem;
}

.contact-item h3 {
    color: var(--dark-text);
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: var(--gray-text);
}

/* Hamburger Menu للجوال */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 12px;
    min-width: 44px;
    min-height: 44px;
    justify-content: center;
    align-items: center;
}

.mobile-menu-toggle span {
    width: 22px;
    height: 3px;
    background: var(--dark-text);
    border-radius: 3px;
    transition: all 0.3s;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 99;
}

.mobile-menu.active {
    display: block;
}

.mobile-menu .nav-link {
    display: block;
    padding: 1rem;
    border-bottom: 1px solid var(--border);
    color: var(--dark-text);
    text-decoration: none;
    font-weight: 500;
    min-height: 48px;
    display: flex;
    align-items: center;
}

.mobile-menu .nav-buttons {
    margin-top: 1rem;
    flex-direction: column;
    width: 100%;
}

.mobile-menu .btn-primary,
.mobile-menu .btn-secondary {
    width: 100%;
    text-align: center;
    min-height: 48px;
}

/* استجابة الشاشات الصغيرة */
@media (max-width: 768px) {
    /* Navigation */
    .nav-links {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-buttons {
        gap: 0.5rem;
    }
    
    .nav-buttons .btn-primary,
    .nav-buttons .btn-secondary {
        padding: 0.75rem 1.2rem;
        font-size: 0.9rem;
        min-height: 44px;
    }

    /* Airbnb Style Category Tabs - Mobile */
    .category-tabs {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        justify-content: flex-start;
        padding: 0 1rem;
    }

    .category-tabs::-webkit-scrollbar {
        display: none;
    }

    .category-tab {
        flex-shrink: 0;
        padding: 1rem 1rem;
        font-size: 1rem;
        white-space: nowrap;
        font-weight: 600;
    }

    .category-tab .tab-icon {
        font-size: 1.4rem;
    }

    .category-tab svg {
        width: 20px;
        height: 20px;
    }

    /* Airbnb Search Bar - Mobile */
    .search-section {
        padding: 1.5rem 0;
    }

    .airbnb-search-bar {
        flex-direction: column;
        border-radius: 16px;
        padding: 0.5rem;
        margin: 0 1rem;
    }

    .search-field {
        width: 100%;
        padding: 1rem 1.25rem;
        border-radius: 12px;
    }

    .search-field:hover {
        background: transparent;
    }

    .search-divider {
        width: 100%;
        height: 1px;
        margin: 0;
    }

    .search-field-action {
        width: 100%;
        padding: 0.5rem 1.25rem;
    }

    .search-button {
        width: 100%;
        justify-content: center;
        padding: 1rem 1.5rem;
    }

    /* Filters - Mobile */
    .filters-grid {
        padding: 0 1rem;
    }

    .filters-grid .filter-item {
        min-width: 100%;
    }
    
    /* Hero Section */
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem 20px;
    }
    
    .hero-title-main {
        font-size: 2rem;
    }
    
    .hero-subtitle-top {
        font-size: 0.95rem;
    }
    
    /* Search Form */
    .booking-form-simple {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    
    .btn-search {
        width: 100%;
        padding: 1rem;
        min-height: 48px;
    }
    
    .form-input-simple {
        min-height: 48px;
    }
    
    .hero-form {
        padding: 1.5rem;
    }

    /* Stats Grid */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    /* Services Tabs */
    .services-tabs {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .service-tab {
        font-size: 0.9rem;
        padding: 0.75rem 1.2rem;
        min-height: 44px;
    }

    /* Providers Grid */
    .providers-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    /* FAQ Grid */
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    /* Filters */
    .filters-bar {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .filter-option {
        font-size: 0.85rem;
        padding: 0.75rem 1rem;
        min-height: 44px;
    }
    
    /* Modals للجوال */
    .modal-content {
        width: 95%;
        max-width: 95%;
        padding: 2rem 1.5rem;
    }
    
    .modal-title {
        font-size: 1.5rem;
    }
    
    .modal-large {
        max-width: 95%;
    }
    
    /* Forms للجوال */
    .booking-form {
        gap: 0.8rem;
    }
    
    .form-group {
        gap: 0.5rem;
    }
    
    .form-input,
    .form-input-full {
        font-size: 16px; /* منع zoom في iOS */
    }
}

/* استجابة للشاشات الصغيرة جداً */
@media (max-width: 480px) {
    .hero-title-main {
        font-size: 1.75rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .logo {
        font-size: 1.2rem;
    }
    
    .container {
        padding: 0 15px;
    }
}

/* نافذة المحادثة */
.chat-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.chat-container {
    background: var(--white);
    border-radius: 16px;
    width: 90%;
    max-width: 500px;
    height: 600px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.chat-header {
    background: var(--primary-green);
    color: var(--dark-green);
    padding: 1.2rem 1.5rem;
    border-radius: 16px 16px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-title {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.chat-close {
    background: none;
    border: none;
    color: var(--dark-green);
    font-size: 1.8rem;
    cursor: pointer;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.2s;
}

.chat-close:hover {
    background: rgba(13, 77, 61, 0.1);
}

.chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.message {
    max-width: 70%;
    padding: 0.8rem 1rem;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.message-own {
    align-self: flex-end;
    background: var(--primary-green);
    color: var(--dark-green);
}

.message-other {
    align-self: flex-start;
    background: var(--light-bg);
    color: var(--dark-text);
}

.message-content {
    word-wrap: break-word;
}

.message-time {
    font-size: 0.75rem;
    opacity: 0.7;
    align-self: flex-end;
}

.chat-input-container {
    padding: 1rem 1.5rem;
    border-top: 1px solid var(--border);
    display: flex;
    gap: 0.8rem;
}

.chat-input {
    flex: 1;
    padding: 0.8rem 1rem;
    border: 1px solid var(--border);
    border-radius: 24px;
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.2s;
}

.chat-input:focus {
    border-color: var(--primary-green);
}

.chat-send {
    background: var(--primary-green);
    color: var(--dark-green);
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 24px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.chat-send:hover {
    background: #4FD1C5;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .chat-container {
        width: 95%;
        height: 85vh;
        max-height: none;
    }
    
    .chat-header {
        padding: 1rem;
    }
    
    .chat-title {
        font-size: 1rem;
    }
    
    .message {
        max-width: 85%;
    }
}

/* ===============================================
   Admin Dashboard Styles - Mint Green Theme
   =============================================== */

/* Admin Login */
.admin-login {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.login-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2.5rem;
    max-width: 420px;
    width: 100%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.login-icon {
    width: 80px;
    height: 80px;
    background: rgba(95, 221, 187, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--primary-green);
}

.login-card h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 0.5rem;
}

.login-card p {
    color: var(--gray-text);
    margin-bottom: 2rem;
}

.login-card .form-group {
    text-align: right;
    margin-bottom: 1.5rem;
}

.login-card label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 0.5rem;
}

.login-card input {
    width: 100%;
    padding: 0.9rem 1rem;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.2s;
}

.login-card input:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(95, 221, 187, 0.1);
}

.error-message {
    color: #EF4444;
    font-size: 0.9rem;
    margin: 1rem 0;
    text-align: center;
}

/* Admin Dashboard */
.admin-dashboard {
    padding: 3rem 0;
    min-height: 80vh;
}

/* Statistics Cards */
.admin-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.stat-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: all 0.3s;
}

.stat-card:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.stat-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-info h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-text);
    margin: 0 0 0.3rem 0;
}

.stat-info p {
    font-size: 0.9rem;
    color: var(--gray-text);
    margin: 0;
}

/* Admin Tabs */
.admin-tabs {
    display: flex;
    gap: 0.5rem;
    border-bottom: 2px solid var(--border);
    margin-bottom: 2rem;
    overflow-x: auto;
}

.admin-tab {
    background: transparent;
    border: none;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-text);
    cursor: pointer;
    border-bottom: 3px solid transparent;
    transition: all 0.2s;
    white-space: nowrap;
}

.admin-tab:hover {
    color: var(--primary-green);
}

.admin-tab.active {
    color: var(--primary-green);
    border-bottom-color: var(--primary-green);
}

/* CMS Sub-tabs */
.cms-sections {
    width: 100%;
}

.cms-tabs {
    display: flex;
    gap: 0.5rem;
    border-bottom: 2px solid var(--border);
    margin-bottom: 2rem;
    overflow-x: auto;
}

.cms-tab {
    background: transparent;
    border: none;
    padding: 0.75rem 1.25rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gray-text);
    cursor: pointer;
    border-bottom: 3px solid transparent;
    transition: all 0.2s;
    white-space: nowrap;
}

.cms-tab:hover {
    color: var(--primary-green);
}

.cms-tab.active {
    color: var(--primary-green);
    border-bottom-color: var(--primary-green);
}

.cms-section {
    display: none;
}

.cms-section.active {
    display: block;
}

.settings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

/* Tab Content */
.tab-content {
    display: none;
}

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

/* Table Header */
.table-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.table-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-text);
}

/* Table Container */
.table-container {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
}

.admin-table thead {
    background: var(--light-bg);
}

.admin-table th {
    padding: 1rem;
    text-align: right;
    font-weight: 600;
    color: var(--dark-text);
    font-size: 0.9rem;
    border-bottom: 1px solid var(--border);
}

.admin-table td {
    padding: 1rem;
    text-align: right;
    color: var(--dark-text);
    border-bottom: 1px solid var(--border);
}

.admin-table tbody tr:hover {
    background: var(--light-bg);
}

.admin-table tbody tr:last-child td {
    border-bottom: none;
}

/* Badges */
.badge {
    padding: 0.3rem 0.8rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
}

.badge-green {
    background: rgba(95, 221, 187, 0.1);
    color: var(--dark-green);
}

.badge-blue {
    background: rgba(59, 130, 246, 0.1);
    color: #3B82F6;
}

.badge-purple {
    background: rgba(168, 85, 247, 0.1);
    color: #A855F7;
}

.badge-red {
    background: rgba(239, 68, 68, 0.1);
    color: #EF4444;
}

/* Buttons */
.btn-sm {
    padding: 0.4rem 1rem;
    font-size: 0.85rem;
    border-radius: 6px;
    border: 1px solid var(--border);
    background: var(--white);
    color: var(--dark-text);
    cursor: pointer;
    transition: all 0.2s;
    font-weight: 500;
}

.btn-sm:hover {
    background: var(--primary-green);
    color: var(--dark-green);
    border-color: var(--primary-green);
}

.btn-danger {
    border-color: #EF4444;
    color: #EF4444;
}

.btn-danger:hover {
    background: #EF4444;
    color: var(--white);
    border-color: #EF4444;
}

/* Ads Grid */
.ads-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

/* Responsive */
@media (max-width: 768px) {
    .admin-stats {
        grid-template-columns: 1fr;
    }
    
    .admin-tabs {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .admin-tab {
        font-size: 0.85rem;
        padding: 0.75rem 1rem;
        min-height: 44px;
    }
    
    .table-container {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .admin-table {
        min-width: 600px;
        font-size: 0.85rem;
    }
    
    .admin-table th,
    .admin-table td {
        padding: 0.6rem;
    }
    
    .table-header {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }
    
    .table-header .btn-primary {
        width: 100%;
        min-height: 48px;
    }
    
    /* جميع الأزرار على الجوال */
    button,
    .btn-primary,
    .btn-secondary,
    .btn-primary-lg,
    .btn-secondary-lg {
        min-height: 44px;
    }
    
    .stat-card {
        padding: 1.5rem;
    }
    
    .stat-value {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .admin-container {
        padding: 1rem;
    }
    
    .admin-stats {
        gap: 1rem;
    }
    
    .stat-card h3 {
        font-size: 0.9rem;
    }
}

/* قائمة حسابي المنسدلة */
.dropdown-menu {
    animation: dropdownFadeIn 0.2s ease;
}

body.dark-mode .dropdown-menu {
    background: #1F2937 !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.4) !important;
}

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

.dropdown-item {
    transition: background-color 0.2s ease;
    display: block;
    padding: 12px 16px;
    text-decoration: none;
    border-bottom: 1px solid #f0f0f0;
}

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

body.dark-mode .dropdown-item {
    color: var(--white) !important;
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

body.dark-mode .dropdown-item:hover {
    background-color: rgba(95, 221, 187, 0.1);
}

body.dark-mode .dropdown-item#logoutLink {
    color: #ff6b6b !important;
}

/* ========================================
   FOOTER - أسفل الصفحة
   ======================================== */
.footer {
    background: linear-gradient(135deg, #0D4D3D 0%, #1a6b56 100%);
    color: white;
    padding: 4rem 0 2rem;
    margin-top: 4rem;
}

body.dark-mode .footer {
    background: linear-gradient(135deg, #1F2937 0%, #111827 100%);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-logo img {
    filter: brightness(0) invert(1);
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: white;
}

.footer-links {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--primary-green);
    transform: translateX(-5px);
}

.footer-contact {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.contact-icon {
    font-size: 1.2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 8px;
}

.contact-icon svg {
    width: 18px;
    height: 18px;
    stroke: var(--primary-green);
    stroke-width: 2;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: var(--primary-green);
}

/* السوشيال ميديا */
.social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-link {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    color: white;
}

.social-link:hover {
    transform: translateY(-4px);
}

.social-link.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-link.instagram:hover {
    box-shadow: 0 8px 20px rgba(188, 24, 136, 0.4);
}

.social-link.twitter {
    background: #000000;
}

.social-link.twitter:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.social-link.snapchat {
    background: #FFFC00;
    color: #000;
}

.social-link.snapchat:hover {
    box-shadow: 0 8px 20px rgba(255, 252, 0, 0.4);
}

.social-link.tiktok {
    background: linear-gradient(135deg, #000000 0%, #EE1D52 50%, #69C9D0 100%);
}

.social-link.tiktok:hover {
    box-shadow: 0 8px 20px rgba(238, 29, 82, 0.4);
}

/* حقوق النشر */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer {
        padding: 3rem 0 1.5rem;
        margin-top: 3rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 2rem;
    }
    
    .footer-section {
        text-align: center;
        align-items: center;
    }
    
    .social-links {
        justify-content: center;
    }
}

/* Provider Dashboard Dark Mode Fixes */
body.dark-mode .stat-card {
    background: #1F2937 !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3) !important;
}

body.dark-mode .stat-card:hover {
    box-shadow: 0 8px 20px rgba(95, 221, 187, 0.3) !important;
}

body.dark-mode .stat-value {
    color: #E5E7EB !important;
}

body.dark-mode .stat-label {
    color: #9CA3AF !important;
}

body.dark-mode [style*="background: white"],
body.dark-mode [style*="background:white"] {
    background: #1F2937 !important;
}

body.dark-mode [style*="background: #f5f5f5"],
body.dark-mode [style*="background:#f5f5f5"] {
    background: #374151 !important;
}

body.dark-mode [style*="color: var(--dark-text)"] {
    color: #E5E7EB !important;
}

body.dark-mode [style*="color: var(--gray-text)"] {
    color: #9CA3AF !important;
}


/* ========================================
   Booking Progress Indicators
   ======================================== */
.booking-progress {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 30px;
}

.booking-progress-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 20px 16px;
    background: var(--light-bg);
    border: 2px solid var(--border);
    border-radius: 16px;
    color: var(--gray-text);
    transition: all 0.3s ease;
    position: relative;
}

.booking-progress-step .step-index {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid var(--border);
    font-size: 24px;
    font-weight: 700;
    color: var(--gray-text);
    transition: all 0.3s ease;
}

.booking-progress-step .step-label {
    font-size: 15px;
    font-weight: 600;
    text-align: center;
    color: var(--gray-text);
}

/* Completed Step */
.booking-progress-step.completed {
    background: var(--primary-green);
    border-color: var(--primary-green);
}

.booking-progress-step.completed .step-index {
    background: var(--dark-green);
    border-color: var(--dark-green);
    color: var(--white);
}

.booking-progress-step.completed .step-label {
    color: var(--white);
}

/* Current Step */
.booking-progress-step.current {
    background: var(--white);
    border-color: var(--primary-green);
    border-width: 3px;
    box-shadow: 0 4px 12px rgba(95, 221, 187, 0.2);
}

.booking-progress-step.current .step-index {
    background: var(--primary-green);
    border-color: var(--primary-green);
    color: var(--white);
    animation: pulse 2s ease-in-out infinite;
}

.booking-progress-step.current .step-label {
    color: var(--dark-green);
    font-weight: 700;
}

/* Pending Step */
.booking-progress-step.pending {
    background: transparent;
    border-color: var(--border);
}

.booking-progress-step.pending .step-index {
    background: var(--white);
    border-color: var(--border);
    color: var(--muted-gray);
}

.booking-progress-step.pending .step-label {
    color: var(--muted-gray);
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* ========================================
   Rental Option Cards
   ======================================== */
.rental-options-grid {
    display: grid;
    gap: 16px;
    margin-bottom: 24px;
}

.rental-option-card {
    background: var(--white);
    border: 2px solid var(--border);
    border-radius: 16px;
    padding: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 20px;
}

.rental-option-card:hover {
    background: rgba(95, 221, 187, 0.08);
    border-color: var(--primary-green);
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
}

.rental-option-card:focus-visible {
    outline: 2px solid var(--primary-green);
    outline-offset: 3px;
}

.rental-option-card .option-icon {
    font-size: 48px;
    flex-shrink: 0;
}

.rental-option-card .option-content {
    flex: 1;
    text-align: right;
}

.rental-option-card .option-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 4px;
}

.rental-option-card .option-desc {
    font-size: 14px;
    color: var(--gray-text);
}

/* Selected State */
.rental-option-card.selected {
    background: rgba(95, 221, 187, 0.16);
    border-color: var(--primary-green);
    border-width: 3px;
    box-shadow: 0 8px 24px rgba(95, 221, 187, 0.3);
}

.rental-option-card.selected .option-title {
    color: var(--dark-green);
}

.rental-option-card.selected .option-desc {
    color: var(--dark-green);
}

/* ========================================
   Dark Mode Overrides for Booking
   ======================================== */
body.dark-mode .rental-option-card {
    background: var(--card-bg);
}

body.dark-mode .rental-option-card:hover {
    background: rgba(95, 221, 187, 0.12);
}

body.dark-mode .rental-option-card.selected {
    background: rgba(95, 221, 187, 0.2);
}

body.dark-mode .booking-progress-step .step-index {
    background: var(--card-bg);
}

body.dark-mode .booking-progress-step.current {
    background: var(--card-bg);
}

