
    body {
        font-family: 'Tajawal', sans-serif;
    }

    .property-card {
        transition: all 0.3s ease;
    }

    .property-card:hover {
        transform: translateY(-5px);
    }

    .badge {
        padding: 0.25rem 0.5rem;
        font-size: 0.75rem;
        background: red;
        border-radius: 9999px;
        font-weight: 500;
    }

    .badge-featured {
        background-color: rgba(37, 99, 235, 0.1);
        color: #2563EB;
    }

    .badge-popular {
        background-color: #dcfce7;
        color: #16a34a;
    }

    /* Custom Scrollbar */
    ::-webkit-scrollbar {
        width: 8px;
    }

    ::-webkit-scrollbar-track {
        background: #f1f1f1;
    }

    ::-webkit-scrollbar-thumb {
        background: #2563EB;
        border-radius: 4px;
    }

    ::-webkit-scrollbar-thumb:hover {
        background: #1d4ed8;
    }

    /* Advertisement Slider Styles */
    .adSwiper {
        width: 100% !important;
        height: auto !important;
    }

    .adSwiper .swiper-slide {
        width: 100% !important;
        flex-shrink: 0 !important;
    }

    .adSwiper .swiper-button-next,
    .adSwiper .swiper-button-prev {
        --swiper-theme-color: #ffffff;
        background: rgba(0, 0, 0, 0.2);
        border-radius: 50%;
        width: 48px !important;
        height: 48px !important;
        margin-top: -24px !important;
    }

    .adSwiper .swiper-button-next:hover,
    .adSwiper .swiper-button-prev:hover {
        background: rgba(0, 0, 0, 0.4);
    }

    .adSwiper .swiper-pagination {
        --swiper-pagination-color: #ffffff;
        --swiper-pagination-bullet-inactive-color: rgba(255, 255, 255, 0.5);
        --swiper-pagination-bullet-size: 12px;
        --swiper-pagination-bullet-horizontal-gap: 6px;
    }

    .adSwiper .swiper-pagination-bullet-active {
        background: #ffffff !important;
    }

    /* Elan Slider Styles - Full Width */
    .elanSwiper {
        width: 100% !important;
        height: auto !important;
        margin: 0 !important;
    }

    .elanSwiper .swiper-slide {
        width: 100% !important;
        flex-shrink: 0 !important;
        background: transparent;
        overflow: hidden;
        position: relative;
    }

    .elanSwiper .swiper-slide img {
        width: 100%;
        height: auto;
        display: block;
    }

    .elanSwiper .swiper-button-next,
    .elanSwiper .swiper-button-prev {
        --swiper-theme-color: #ffffff;
        background: rgba(0, 0, 0, 0.3);
        backdrop-filter: blur(10px);
        border-radius: 50%;
        width: 56px !important;
        height: 56px !important;
        margin-top: -28px !important;
        transition: all 0.3s ease;
        z-index: 10;
    }

    .elanSwiper .swiper-button-next:hover,
    .elanSwiper .swiper-button-prev:hover {
        background: rgba(0, 0, 0, 0.5);
        transform: scale(1.1);
    }

    .elanSwiper .swiper-pagination {
        --swiper-pagination-color: #ffffff;
        --swiper-pagination-bullet-inactive-color: rgba(255, 255, 255, 0.5);
        --swiper-pagination-bullet-size: 14px;
        --swiper-pagination-bullet-horizontal-gap: 8px;
        bottom: 24px !important;
        z-index: 10;
    }

    .elanSwiper .swiper-pagination-bullet-active {
        background: #ffffff !important;
        transform: scale(1.2);
    }

    /* Fade effect support */
    .elanSwiper .swiper-slide {
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .elanSwiper .swiper-slide-active {
        opacity: 1;
    }

    /* Title overlay enhancements for full width */
    .elanSwiper .swiper-slide h3 {
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .elanSwiper .swiper-slide p {
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    }

    /* Property Filter Styles */
    .marketplace-quick-search {
        background: rgba(248, 250, 252, 0.8);
        border-radius: 12px;
        padding: 16px;
        border: 1px solid rgba(226, 232, 240, 0.8);
        backdrop-filter: blur(8px);
    }

    @media (max-width: 1024px) {
        .marketplace-quick-search {
            padding: 12px;
            border-radius: 10px;
            margin: 0 8px;
        }
    }

    @media (max-width: 768px) {
        .marketplace-quick-search {
            padding: 8px;
            border-radius: 8px;
            margin: 0 4px;
            max-width: calc(100vw - 8px);
            overflow: hidden;
        }
    }

    @media (max-width: 480px) {
        .marketplace-quick-search {
            padding: 6px;
            margin: 0 2px;
            max-width: calc(100vw - 4px);
        }
    }

    .filter-slider-container {
        position: relative;
        overflow: hidden;
        width: 100%;
        max-width: 100%;
    }

    .list-thumbnail-slider {
        display: flex;
        gap: 8px;
        overflow-x: auto;
        scroll-behavior: smooth;
        padding: 2px 0 8px 0;
        /* Show thin scrollbar */
        scrollbar-width: thin;
        scrollbar-color: #2563EB rgba(0, 0, 0, 0.1);
        width: 100%;
        max-width: 100%;
    }

    @media (max-width: 1024px) {
        .filter-slider-container {
            margin: 0 -4px;
            padding: 0 4px;
        }
        
        .list-thumbnail-slider {
            gap: 6px;
            padding: 2px 0 6px 0;
        }
    }

    @media (max-width: 768px) {
        .filter-slider-container {
            margin: 0 -2px;
            padding: 0 2px;
            max-width: calc(100vw - 16px);
        }
        
        .list-thumbnail-slider {
            gap: 4px;
            padding: 1px 0 8px 0;
            -webkit-overflow-scrolling: touch;
            max-width: 100%;
        }
    }

    @media (max-width: 480px) {
        .filter-slider-container {
            margin: 0 -1px;
            padding: 0 1px;
            max-width: calc(100vw - 12px);
        }
        
        .list-thumbnail-slider {
            gap: 3px;
            padding: 1px 0 6px 0;
        }
    }

    .list-thumbnail-slider::-webkit-scrollbar {
        height: 6px;
    }

    .list-thumbnail-slider::-webkit-scrollbar-track {
        background: rgba(0, 0, 0, 0.05);
        border-radius: 3px;
    }

    .list-thumbnail-slider::-webkit-scrollbar-thumb {
        background: #2563EB;
        border-radius: 3px;
    }

    .list-thumbnail-slider::-webkit-scrollbar-thumb:hover {
        background: #1d4ed8;
    }

    /* City Cards Component Styles */
    .city-cards-section {
        background-color: #f9fafb;
        padding: 2rem 0;
        direction: rtl;
    }

    .city-cards-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 1.5rem;
        padding: 0 1.25rem;
    }

    .city-cards-header-left {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .city-cards-header-left:hover {
        color: #2563EB;
    }

    .city-cards-header-left .back-arrow {
        font-size: 1.25rem;
        font-weight: bold;
    }

    .city-cards-header-left .view-all-text {
        font-size: 1rem;
        font-weight: 500;
    }

    .city-cards-header-title {
        font-size: 1.5rem;
        font-weight: bold;
        color: #1e293b;
    }

    .city-cards-container {
        display: flex;
        gap: 1rem;
        overflow-x: auto;
        scroll-behavior: smooth;
        padding: 0 1.25rem 1rem;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .city-cards-container::-webkit-scrollbar {
        display: none;
    }

    .city-card {
        position: relative;
        width:310px;
        height: 240px;
        border-radius: 20px;
        overflow: hidden;
        flex-shrink: 0;
        cursor: pointer;
        transition: all 0.3s ease;
        text-decoration: none;
    }

    .city-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    }

    .city-card-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;
    }

    .city-card:hover .city-card-image {
        transform: scale(1.05);
    }

    .city-card-overlay {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 50%;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
        pointer-events: none;
    }

    .city-card-name {
        position: absolute;
        bottom: 1.25rem;
        right: 1.5rem;
        color: white;
        font-size: 1.5rem;
        font-weight: bold;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        z-index: 1;
    }

    @media (max-width: 768px) {
        .city-cards-section {
            padding: 1.5rem 0;
        }

        .city-cards-header {
            padding: 0 1rem;
        }

        .city-cards-header-title {
            font-size: 1.25rem;
        }
        .city-card{
            width: 280px;
            height: 210px;
            
        }

        .city-cards-container {
            padding: 0 1rem 1rem;
            gap: 0.75rem;
        }

       
        .city-card-name {
            font-size: 1.25rem;
            bottom: 1rem;
            right: 1.25rem;
        }
    }

    @media (max-width: 480px) {
      
        .city-card-name {
            font-size: 1.1rem;
        }
    }

    /* Floating Action Buttons - Right Side */
    .floating-buttons-right {
        position: fixed;
        right: 20px;
        bottom: 16px;
        z-index: 50;
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .fab-button {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        background: #7A38FE;
        color: white;
        border-radius: 12px;
        cursor: pointer;
        transition: all 0.2s ease;
        text-decoration: none;
        border: none;
        width: 56px;
        height: 56px;
        padding: 5px;
    }

    .fab-button:hover {
        transform: scale(1.05);
        background: #7A38FE;
        color:white;
    }

    .fab-button i {
        font-size: 24px;
        margin-bottom: 2px;
    }

    .fab-button .fab-text {
        font-size: 10px;
        font-weight: 600;
        white-space: nowrap;
    }

    @media (max-width: 768px) {
        .floating-buttons-right {
            right: 16px;
            bottom: 16px;
        }

        .fab-button {
            width: 56px;
            height: 56px;
        }

        .fab-button i {
            font-size: 24px;
        }

        .fab-button .fab-text {
            font-size: 10px;
        }
    }

    @media (max-width: 576px) {
        .floating-buttons-right {
            right: 12px;
            bottom: 16px;
        }

        .fab-button {
            width: 56px;
            height: 56px;
        }
    }

    @media (max-width: 480px) {
        .floating-buttons-right {
            right: 10px;
            bottom: 16px;
        }
        
        .city-card{
            width: 250px;
            height: 180px;
        }

        .fab-button {
            width: 56px;
            height: 56px;
        }
    }

    .property-filter-link {
        display: inline-flex;
        align-items: center;
        gap: 4px;
        white-space: nowrap;
        font-weight: 500;
        border: 1px solid transparent;
        text-decoration: none;
        cursor: pointer;
        position: relative;
        min-height: 40px;
        flex-shrink: 0;
        padding: 8px 12px;
        font-size: 14px;
        border-radius: 8px;
    }

    @media (max-width: 1024px) {
        .property-filter-link {
            padding: 6px 8px;
            font-size: 13px;
            min-height: 34px;
            gap: 3px;
            max-width: fit-content;
        }
    }

    @media (max-width: 768px) {
        .property-filter-link {
            padding: 5px 7px;
            font-size: 12px;
            min-height: 30px;
            gap: 2px;
            border-radius: 6px;
            max-width: fit-content;
        }
    }

    @media (max-width: 480px) {
        .property-filter-link {
            padding: 4px 6px;
            font-size: 11px;
            min-height: 28px;
            gap: 2px;
            max-width: fit-content;
        }
    }

    .property-filter-link:hover {
        transform: translateY(-1px);
        box-shadow: 0 4px 12px rgba(37, 99, 235, 0.15);
    }

    .property-filter-link.bg-primary {
        background: linear-gradient(135deg, #2563EB, #3B82F6) !important;
        color: white !important;
        border-color: #2563EB;
        box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
    }

    .property-filter-link .text-xs {
        opacity: 0.8;
        font-weight: 400;
    }

    @media (max-width: 1024px) {
        .property-filter-link .text-xs {
            font-size: 11px;
        }
    }

    @media (max-width: 768px) {
        .property-filter-link .text-xs {
            font-size: 10px;
        }
    }

    @media (max-width: 480px) {
        .property-filter-link .text-xs {
            font-size: 9px;
        }
    }



    .search.span-property {
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 8px 12px;
        background: rgba(255, 255, 255, 0.9);
        border-radius: 8px;
        border: 1px solid rgba(226, 232, 240, 0.8);
        backdrop-filter: blur(4px);
    }

    @media (max-width: 1024px) {
        .search.span-property {
            gap: 5px;
            padding: 5px 8px;
            font-size: 13px;
            max-width: fit-content;
        }
    }

    @media (max-width: 768px) {
        .search.span-property {
            gap: 3px;
            padding: 4px 6px;
            font-size: 12px;
            max-width: fit-content;
        }
    }

    @media (max-width: 480px) {
        .search.span-property {
            gap: 2px;
            padding: 3px 4px;
            font-size: 10px;
            max-width: fit-content;
        }
    }

    .advanced_search_count {
        min-width: 20px;
        height: 20px;
        font-size: 11px;
        font-weight: 600;
    }

    /* Comprehensive Mobile & Tablet Responsive Styles */
    @media (max-width: 1024px) {
        .advanced_search_count {
            width: 18px;
            height: 18px;
            font-size: 10px;
        }

        .list-thumbnail-slider::-webkit-scrollbar {
            height: 5px;
        }

        .property-filter-link .text-xs {
            font-size: 11px;
        }
    }

    @media (max-width: 768px) {
        .advanced_search_count {
            width: 16px;
            height: 16px;
            font-size: 9px;
        }

        .list-thumbnail-slider::-webkit-scrollbar {
            height: 4px;
        }

        .search_span {
            font-size: 12px;
        }

        .property-filter-link .text-xs {
            font-size: 10px;
        }
    }

    @media (max-width: 480px) {
        .marketplace-quick-search .flex.items-center.justify-center {
            margin-bottom: 8px;
        }

        .advanced_search_count {
            width: 14px;
            height: 14px;
            font-size: 8px;
        }

        .search_span {
            font-size: 10px;
        }

        .list-thumbnail-slider::-webkit-scrollbar {
            height: 3px;
        }

        .list-thumbnail-slider::-webkit-scrollbar-thumb {
            border-radius: 2px;
        }

        .property-filter-link .text-xs {
            font-size: 9px;
        }

        /* Ensure main search form container doesn't overflow */
        .bg-white\/95.backdrop-blur-sm {
            margin: 0 4px;
            max-width: calc(100vw - 8px);
            padding: 12px;
        }
    }

    /* Additional overflow protection */
    @media (max-width: 768px) {
        .bg-white\/95.backdrop-blur-sm {
            margin: 0 8px;
            max-width: calc(100vw - 16px);
            padding: 16px 12px;
        }
    }

    /* Smooth scroll animation */
    @keyframes slideLeft {
        from { transform: translateX(0); }
        to { transform: translateX(-100px); }
    }

    @keyframes slideRight {
        from { transform: translateX(0); }
        to { transform: translateX(100px); }
    }

    /* Hero Swiper Styles */
    .heroSwiper {
        width: 100% !important;
        height: 100% !important;
    }

    .heroSwiper .swiper-slide {
        opacity: 0;
        transition: opacity 0.8s ease-in-out;
    }

    .heroSwiper .swiper-slide-active {
        opacity: 1 !important;
    }

    .heroSwiper .swiper-button-next,
    .heroSwiper .swiper-button-prev {
        --swiper-theme-color: #ffffff;
        background: rgba(0, 0, 0, 0.3);
        backdrop-filter: blur(10px);
        border-radius: 50%;
        width: 56px !important;
        height: 56px !important;
        margin-top: -28px !important;
        transition: all 0.3s ease;
        z-index: 20;
    }

    .heroSwiper .swiper-button-next:hover,
    .heroSwiper .swiper-button-prev:hover {
        background: rgba(37, 99, 235, 0.8);
        transform: scale(1.1);
        box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
    }

    .heroSwiper .swiper-button-next {
        right: 20px;
    }

    .heroSwiper .swiper-button-prev {
        left: 20px;
    }

    .heroSwiper .swiper-pagination {
        --swiper-pagination-color: #ffffff;
        --swiper-pagination-bullet-inactive-color: rgba(255, 255, 255, 0.4);
        --swiper-pagination-bullet-size: 12px;
        --swiper-pagination-bullet-horizontal-gap: 8px;
        bottom: 30px !important;
        z-index: 20;
    }

    .heroSwiper .swiper-pagination-bullet {
        background: rgba(255, 255, 255, 0.4);
        transition: all 0.3s ease;
    }

    .heroSwiper .swiper-pagination-bullet-active {
        background: #ffffff !important;
        transform: scale(1.2);
        box-shadow: 0 4px 15px rgba(255, 255, 255, 0.4);
    }

    .heroSwiper .swiper-pagination-bullet:hover {
        background: rgba(255, 255, 255, 0.8);
        transform: scale(1.1);
    }

    /* Mobile Responsive for Hero Swiper */
    @media (max-width: 768px) {
        .heroSwiper .swiper-button-next,
        .heroSwiper .swiper-button-prev {
            width: 44px !important;
            height: 44px !important;
            margin-top: -22px !important;
        }

        .heroSwiper .swiper-button-next {
            right: 12px;
        }

        .heroSwiper .swiper-button-prev {
            left: 12px;
        }

        .heroSwiper .swiper-pagination {
            --swiper-pagination-bullet-size: 10px;
            --swiper-pagination-bullet-horizontal-gap: 6px;
            bottom: 20px !important;
        }
    }

    /* Responsive adjustments for full width elan slider */
    @media (max-width: 768px) {
        .elanSwiper .swiper-button-next,
        .elanSwiper .swiper-button-prev {
            width: 44px !important;
            height: 44px !important;
            margin-top: -22px !important;
        }
        
        .elanSwiper .swiper-pagination {
            --swiper-pagination-bullet-size: 12px;
            bottom: 16px !important;
        }
        
        .elanSwiper .swiper-slide h3 {
            font-size: 1.5rem !important;
        }
        
        .elanSwiper .swiper-slide p {
            font-size: 0.875rem !important;
        }
    }

    @media (max-width: 480px) {
        .elanSwiper .swiper-button-next,
        .elanSwiper .swiper-button-prev {
            width: 40px !important;
            height: 40px !important;
            margin-top: -20px !important;
        }
        
        .elanSwiper .swiper-slide h3 {
            font-size: 1.25rem !important;
        }
    }

    /* Advanced Search Styles */
    .search-tab {
        background: transparent;
        color: #6b7280;
        transition: all 0.3s ease;
    }

    .search-tab.active {
        background: linear-gradient(135deg, #2563eb, #1d4ed8);
        color: white;
        box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
        transform: translateY(-2px);
    }

    .search-tab:hover:not(.active) {
        background: rgba(37, 99, 235, 0.1);
        color: #2563eb;
    }

    /* Custom Select Styling */
    select {
        appearance: none;
        -webkit-appearance: none;
        -moz-appearance: none;
    }

    /* Focus states for form elements */
    input:focus, select:focus {
        outline: none;
        border-color: #2563eb;
        box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
    }

    /* Checkbox styling */
    input[type="checkbox"]:checked {
        background-color: #2563eb;
        border-color: #2563eb;
    }

    /* Animated gradient background for search button */
    .search-button {
        background: linear-gradient(135deg, #2563eb, #1d4ed8, #1e40af);
        background-size: 200% 200%;
        animation: gradientShift 3s ease infinite;
    }

    @keyframes gradientShift {
        0% { background-position: 0% 50%; }
        50% { background-position: 100% 50%; }
        100% { background-position: 0% 50%; }
    }

    /* Smooth transitions for all interactive elements */
    .transition-all {
        transition: all 0.3s ease;
    }

    /* Hover effects for form containers */
    .form-container:hover {
        box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
        transform: translateY(-2px);
    }

    /* Map Modal Styles */
    #mapSearchModal.show {
        opacity: 1;
    }

    #mapSearchModal.show > div {
        transform: scale(1);
    }

    /* Map search input focus */
    #mapSearchInput:focus {
        outline: none;
        border-color: #2563eb;
        box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
    }

    /* Price range slider styling */
    input[type="range"] {
        -webkit-appearance: none;
        appearance: none;
        background: transparent;
        cursor: pointer;
    }

    input[type="range"]::-webkit-slider-track {
        background: #e5e7eb;
        height: 6px;
        border-radius: 3px;
    }

    input[type="range"]::-webkit-slider-thumb {
        -webkit-appearance: none;
        appearance: none;
        background: #2563eb;
        height: 20px;
        width: 20px;
        border-radius: 50%;
        cursor: pointer;
    }

    input[type="range"]::-moz-range-track {
        background: #e5e7eb;
        height: 6px;
        border-radius: 3px;
    }

    input[type="range"]::-moz-range-thumb {
        background: #2563eb;
        height: 20px;
        width: 20px;
        border-radius: 50%;
        cursor: pointer;
        border: none;
    }

    /* NaviGPT Chat Styles */
    .navig-chat-toggle {
        position: fixed;
        bottom: 85px;
        left: 20px;
        width: 56px;
        height: 56px;
        background: white;
        border: 2px solid #4F94FF;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        box-shadow: 0 4px 20px rgba(0,0,0,0.15);
        transition: all 0.3s ease;
        z-index: 45;
        overflow: hidden;
    }

    .navig-chat-toggle img {
        width: 28px;
        height: 28px;
        object-fit: contain;
        transition: all 0.3s ease;
    }

    .navig-chat-toggle:hover {
        transform: scale(1.05);
        box-shadow: 0 6px 25px rgba(0,0,0,0.2);
        border-color: #2563eb;
    }

    .navig-chat-toggle.active {
        background: #4F94FF;
        border-color: #4F94FF;
    }

    .navig-chat-toggle img {
        width: 32px;
        height: 32px;
        object-fit: contain;
        transition: all 0.3s ease;
    }

    .navig-chat-toggle.active img {
        filter: brightness(0) invert(1);
    }

    .navig-chat-sidebar {
        position: fixed;
        top: 0;
        left: 0;
        width: min(450px, 90vw);
        height: 100vh;
        background: white;
        border-right: 1px solid #e5e7eb;
        z-index: 1000;
        display: flex;
        flex-direction: column;
        transform: translateX(-100%);
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 2px 0 20px rgba(0,0,0,0.1);
        min-width: 280px;
        max-width: 90vw;
    }

    .navig-chat-sidebar.show {
        transform: translateX(0);
    }

    .chat-sidebar-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.3);
        z-index: 999;
        display: none;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .chat-sidebar-overlay.show {
        display: block;
        opacity: 1;
    }

    .navig-sidebar-header {
        background: linear-gradient(135deg, #4F94FF 0%, #2563eb 100%);
        color: white;
        padding: 20px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        position: relative;
    }

    .navig-resize-handle {
        position: absolute;
        top: 0;
        right: -5px;
        bottom: 0;
        width: 10px;
        background: transparent;
        cursor: col-resize;
        z-index: 1001;
        display: block;
    }

    .navig-resize-handle:hover {
        background: rgba(79, 148, 255, 0.1);
    }

    .navig-resize-handle::after {
        content: '';
        position: absolute;
        right: 4px;
        top: 50%;
        transform: translateY(-50%);
        width: 2px;
        height: 60px;
        background: rgba(79, 148, 255, 0.4);
        border-radius: 1px;
        transition: all 0.2s ease;
    }

    .navig-resize-handle:hover::after {
        background: rgba(79, 148, 255, 0.8);
        height: 80px;
    }

    .navig-sidebar-logo-section {
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .navig-sidebar-logo {
        width: 36px;
        height: 36px;
        background: white;
        border-radius: 6px;
        padding: 4px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .navig-sidebar-logo img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        filter: brightness(0) invert(1);
    }

    .navig-sidebar-title {
        font-size: 16px;
        font-weight: 600;
        margin: 0;
    }

    .sidebar-close-btn {
        background: none;
        border: none;
        color: white;
        font-size: 20px;
        cursor: pointer;
        padding: 8px;
        border-radius: 4px;
        transition: background 0.2s ease;
    }

    .sidebar-close-btn:hover {
        background: rgba(255,255,255,0.1);
    }

    .navig-sidebar-messages {
        flex: 1;
        padding: 20px;
        overflow-y: auto;
        background: #f8fafc;
    }

    .navig-sidebar-input-area {
        padding: 20px;
        background: white;
        border-top: 1px solid #e5e7eb;
    }

    .navig-sidebar-input-container {
        display: flex;
        gap: 10px;
        align-items: center;
    }

    .navig-sidebar-input {
        flex: 1;
        padding: 12px 16px;
        border: 1px solid #e5e7eb;
        border-radius: 8px;
        outline: none;
        font-size: 14px;
        font-family: 'Cairo', sans-serif;
        direction: rtl;
        transition: border-color 0.2s ease;
    }

    .navig-sidebar-input:focus {
        border-color: #4F94FF;
    }

    .navig-sidebar-send-btn {
        background: #4F94FF;
        border: none;
        color: white;
        width: 40px;
        height: 40px;
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: background 0.2s ease;
    }

    .navig-sidebar-send-btn:hover {
        background: #2563eb;
    }

    .navig-sidebar-send-btn:disabled {
        background: #d1d5db;
        cursor: not-allowed;
    }

    .navig-sidebar-message {
        margin-bottom: 16px;
        padding: 12px 16px;
        border-radius: 8px;
        max-width: 85%;
        word-wrap: break-word;
        font-size: 14px;
        line-height: 1.4;
    }

    .navig-sidebar-message-ai {
        background: white;
        color: #374151;
        border: 1px solid #e5e7eb;
        margin-right: auto;
    }

    .navig-sidebar-message-user {
        background: #4F94FF;
        color: white;
        margin-left: auto;
        margin-right: 0;
        text-align: right;
    }

    .navig-sidebar-welcome {
        text-align: center;
        padding: 40px 20px;
        color: #6b7280;
    }

    .navig-sidebar-welcome .navig-sidebar-logo {
        width: 60px;
        height: 60px;
        margin: 0 auto 16px;
        background: #4F94FF;
    }

    .navig-sidebar-welcome .navig-sidebar-logo {
        background: white;
    }

    .navig-sidebar-welcome .navig-sidebar-logo img {
        filter: none;
    }

    .navig-sidebar-welcome h6 {
        margin-bottom: 12px;
        color: #374151;
    }

    .navig-sidebar-welcome ul {
        list-style: none;
        padding: 0;
        margin: 16px 0 0 0;
    }

    .navig-sidebar-welcome li {
        padding: 4px 0;
        font-size: 13px;
    }

    .sidebar-typing-indicator {
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 12px 16px;
        background: white;
        border: 1px solid #e5e7eb;
        border-radius: 8px;
        margin-bottom: 16px;
        max-width: 85%;
    }

    .sidebar-typing-dots {
        display: flex;
        gap: 3px;
    }

    .sidebar-typing-dot {
        width: 6px;
        height: 6px;
        background: #6b7280;
        border-radius: 50%;
        animation: typing 1.4s infinite ease-in-out;
    }

    .sidebar-typing-dot:nth-child(1) { animation-delay: -0.32s; }
    .sidebar-typing-dot:nth-child(2) { animation-delay: -0.16s; }

    @keyframes typing {
        0%, 80%, 100% {
            transform: scale(0);
        } 40% {
            transform: scale(1);
        }
    }

    /* Responsive Breakpoints */
    @media (max-width: 1200px) {
        .navig-chat-sidebar {
            width: min(420px, 85vw);
            max-width: 85vw;
        }
    }

    @media (max-width: 992px) {
        .navig-chat-sidebar {
            width: min(380px, 80vw);
            max-width: 80vw;
        }
    }

    @media (max-width: 768px) {
        .navig-chat-toggle {
            bottom: 85px;
            left: 16px;
            width: 56px;
            height: 56px;
        }

        .navig-chat-toggle img {
            width: 28px;
            height: 28px;
        }

        .whatsapp-btn {
            bottom: 16px !important;
            left: 16px !important;
            width: 56px !important;
            height: 56px !important;
        }

        .navig-chat-sidebar {
            width: 100%;
            height: 100vh;
            height: 100dvh;
            max-width: 100%;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
        }

        .navig-resize-handle {
            display: none;
        }

        .navig-sidebar-header {
            padding: 16px 20px;
            flex-shrink: 0;
        }

        .navig-sidebar-messages {
            flex: 1;
            padding: 16px;
            overflow-y: auto;
            height: 0;
            min-height: 0;
        }

        .navig-sidebar-input-area {
            padding: 16px 20px;
            flex-shrink: 0;
            background: white;
            border-top: 1px solid #e5e7eb;
        }
    }

    @media (max-width: 576px) {
        .navig-chat-toggle {
            bottom: 85px;
            left: 12px;
            width: 56px;
            height: 56px;
        }

        .navig-chat-toggle img {
            width: 28px;
            height: 28px;
        }

        .whatsapp-btn {
            bottom: 16px !important;
            left: 12px !important;
            width: 56px !important;
            height: 56px !important;
        }
    }

    @media (max-width: 480px) {
        .navig-chat-toggle {
            bottom: 85px;
            left: 10px;
            width: 56px;
            height: 56px;
        }

        .navig-chat-toggle img {
            width: 28px;
            height: 28px;
        }

        .whatsapp-btn {
            bottom: 16px !important;
            left: 10px !important;
            width: 56px !important;
            height: 56px !important;
        }

        .navig-chat-sidebar {
            width: 100vw;
            height: 100vh;
            height: 100dvh;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
        }

        .navig-sidebar-header {
            padding: 12px 16px;
            min-height: 56px;
        }

        .navig-sidebar-logo {
            width: 28px;
            height: 28px;
        }

        .navig-sidebar-logo img {
            width: 20px;
            height: 20px;
        }

        .navig-sidebar-title {
            font-size: 14px;
        }

        .navig-sidebar-messages {
            padding: 12px 16px;
            flex: 1;
            overflow-y: auto;
            height: calc(100vh - 56px - 72px);
            height: calc(100dvh - 56px - 72px);
            max-height: calc(100vh - 56px - 72px);
            max-height: calc(100dvh - 56px - 72px);
        }

        .navig-sidebar-input-area {
            padding: 12px 16px;
            min-height: 72px;
            flex-shrink: 0;
        }

        .navig-sidebar-input {
            padding: 10px 14px;
            font-size: 16px;
        }

        .navig-sidebar-send-btn {
            width: 36px;
            height: 36px;
        }

        .navig-sidebar-message {
            margin-bottom: 12px;
            padding: 10px 14px;
            font-size: 13px;
            max-width: 92%;
        }

        .navig-sidebar-welcome {
            padding: 16px 12px;
        }

        .navig-sidebar-welcome .navig-sidebar-logo {
            width: 44px;
            height: 44px;
            margin-bottom: 10px;
        }

        .navig-sidebar-welcome .navig-sidebar-logo img {
            width: 28px;
            height: 28px;
        }
    }

    @media (max-height: 500px) and (max-width: 768px) {
        .navig-sidebar-messages {
            height: calc(100vh - 50px - 70px);
            height: calc(100dvh - 50px - 70px);
            max-height: calc(100vh - 50px - 70px);
            max-height: calc(100dvh - 50px - 70px);
        }

        .navig-sidebar-header {
            padding: 10px 16px;
            min-height: 50px;
        }

        .navig-sidebar-input-area {
            padding: 10px 16px;
            min-height: 70px;
        }

        .navig-sidebar-welcome {
            padding: 16px;
        }

        .navig-sidebar-welcome .navig-sidebar-logo {
            width: 40px;
            height: 40px;
            margin-bottom: 8px;
        }
    }

.city-cards-section {
        background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    }
    
    .city-card {
        position: relative;
        display: block;
        height: 320px;
        border-radius: 1rem;
        overflow: hidden;
    }
    
    .city-card-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }
    
    .city-card:hover .city-card-image {
        transform: scale(1.1);
    }
    
    .city-card-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0.4), transparent);
    }
    
    .city-card-name {
        font-size: 1.5rem;
        font-weight: 700;
        color: white;
        text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    }
    