
        /* ========================================
   TRAVELTOUR - CLEAN & ORGANIZED CSS
   Mobile Styles Consolidated at Bottom
   ======================================== */

/* ========================================
   1. CSS VARIABLES & RESET
   ======================================== */
:root {
    --primary: #e6dbc1;
    --primary-dark: #d4c9a8;
    --black: #1a1a1a;
    --dark: #2c2c2c;
    --gray: #6c757d;
    --light-gray: #f8f9fa;
    --white: #ffffff;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--black);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'El Messiri', sans-serif;
    font-weight: 600;
}

.section {
    padding: 60px 0;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========================================
   2. TOP BAR STYLES
   ======================================== */
.top-bar {
    background: #1a1a2e;
    color: #fff;
    padding: 10px 0;
    font-size: 13px;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left {
    display: flex;
    gap: 25px;
    align-items: center;
}

.top-bar a {
    color: #fff;
    text-decoration: none;
    transition: var(--transition);
}

.top-bar a:hover {
    color: var(--primary-dark);
}

.top-bar-left i {
    margin-right: 5px;
    color: var(--primary-dark);
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    color: #fff;
    font-size: 14px;
    transition: var(--transition);
}

.social-icons a:hover {
    color: var(--primary-dark);
}
 .top-bar-left a span {
        display: inline !important; /* ✅ إظهار النص */
    }
.btn-tailor-top {
    background: var(--primary-dark);
    color: var(--black) !important;
    padding: 8px 25px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 13px;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
}

.btn-tailor-top:hover {
    background: var(--primary);
    transform: translateY(-2px);
}

/* ========================================
   3. NAVBAR STYLES
   ======================================== */
.navbar {
    height: 90px;
    padding: 15px 0;
    background: var(--white) !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: var(--transition);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar.scrolled {
    padding: 12px 0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.navbar-brand {
    padding: 0;
    margin-right: 50px;
    flex-shrink: 0;
}

.logo-img {
    height: 83px;
    width: auto;
    object-fit: contain;
}

.nav-link {
    font-weight: 600;
    font-size: 15px;
    margin: 0 12px;
    color: var(--black) !important;
    transition: var(--transition);
    padding: 10px 0 !important;
    white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-dark) !important;
}

.dropdown-menu {
    border: none;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-top: 10px;
    padding: 10px 0;
    min-width: 220px;
}

.dropdown-item {
    font-size: 14px;
    padding: 10px 20px;
    color: var(--black);
    transition: 0.2s;
}

.dropdown-item:hover {
    background: var(--primary);
    color: var(--black);
    padding-left: 25px;
}

.dropdown-toggle::after {
    display: none;
}

.navbar-right-content select {
    border: 1px solid #ddd;
    border-radius: 20px;
    padding: 8px 16px;
    background: var(--white);
    cursor: pointer;
    font-size: 13px;
    transition: var(--transition);
    outline: none;
    min-width: 95px;
    margin-left: 12px;
    font-weight: 500;
}

.navbar-right-content select:hover {
    border-color: var(--primary-dark);
}

.navbar-center-content {
    display: flex;
    align-items: center;
    margin-left: 40px;
}

.dropdown-icon {
    font-size: 11px;
    margin-left: 4px;
    transition: var(--transition);
}

.navbar-toggler {
    border: none;
    padding: 5px;
    background: transparent;
    cursor: pointer;
}

.navbar-toggler:focus {
    box-shadow: none;
    outline: none;
}

/* ========================================
   4. MOBILE SIDEBAR STYLES
   ======================================== */
.mobile-sidebar {
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    height: 100vh;
    background: var(--white);
    z-index: 1050;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    padding: 20px;
    box-shadow: -5px 0 25px rgba(0,0,0,0.1);
    display: block !important;
}

.mobile-sidebar.active {
    right: 0;
}

.sidebar-header {
    display: flex;
    justify-content: flex-end;
    padding-bottom: 15px;
    margin-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.sidebar-close {
    background: none;
    border: none;
    font-size: 32px;
    cursor: pointer;
    color: var(--black);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.sidebar-close:hover {
    background: var(--primary);
}

.sidebar-lang-currency {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.sidebar-lang-currency select {
    flex: 1;
    border: 1px solid #ddd;
    border-radius: 20px;
    padding: 10px 12px;
    background: var(--white);
    font-size: 13px;
    outline: none;
}

.sidebar-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-item {
    border-bottom: 1px solid #f5f5f5;
}

.sidebar-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 10px;
    color: var(--black);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: var(--transition);
}

.sidebar-link:hover,
.sidebar-link.active {
    color: var(--primary-dark);
    padding-left: 15px;
}

.sidebar-link .dropdown-icon {
    font-size: 12px;
    transition: var(--transition);
}

.sidebar-link.dropdown-toggle.active .dropdown-icon {
    transform: rotate(180deg);
}

.sidebar-submenu {
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: var(--light-gray);
    border-radius: 8px;
}

.sidebar-submenu.show {
    max-height: 300px;
}

.sidebar-submenu .dropdown-item {
    padding: 12px 15px 12px 30px;
    font-size: 14px;
    color: var(--gray);
    display: block;
    text-decoration: none;
    transition: 0.2s;
}

.sidebar-submenu .dropdown-item:hover {
    color: var(--primary-dark);
    padding-left: 35px;
}

.sidebar-whatsapp {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.btn-whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #25d366;
    color: white !important;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background: #128c7e;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp i {
    font-size: 20px;
}

.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    z-index: 1040;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ========================================
   5. HERO SECTION
   ======================================== */
.hero-page {
     background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)); /* أزلنا الـ url */
    overflow: hidden;
    min-height: 400px;
    display: flex;
    align-items: center;
    position: relative;
    color: var(--white);
}


.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5));
    z-index: 1; /* فوق الصورة وتحت المحتوى */
    pointer-events: none; /* عشان ميعطلش الـ clicks */
}

/* تأكد إن الصورة تحت الـ overlay */
.hero-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0; /* تحت كل حاجة */
}

/* تأكد إن المحتوى فوق الـ overlay */
.hero-page .container {
    position: relative;
    z-index: 2; /* فوق الـ overlay */
}

.hero-content {
    text-align: center;
    padding: 60px 0;
}

.hero-page h1 {
    font-size: 3.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.hero-page p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    font-weight: 300;
}

.search-box {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    max-width: 1000px;
    margin: 0 auto;
}

.search-box .form-control,
.search-box .form-select {
    padding: 14px 18px;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    font-size: 14px;
    transition: var(--transition);
}

.search-box .form-control:focus,
.search-box .form-select:focus {
    border-color: var(--primary-dark);
    box-shadow: 0 0 0 0.2rem rgba(230, 219, 193, 0.25);
}

.btn-search {
    background: var(--primary-dark);
    color: var(--black);
    border: none;
    padding: 14px 40px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: var(--transition);
    width: 100%;
    height: 100%;
    min-height: 52px;
}

.btn-search:hover {
    background: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(230, 219, 193, 0.4);
}


/* ========================================
   7. SECTION TITLE
   ======================================== */
.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--black);
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary-dark);
}

.section-title p {
    color: var(--gray);
    margin-top: 15px;
    text-align: left;
}

.section-title .faq  {
    color: var(--gray);
    margin-top: 15px;
    text-align: center;
}

.section-title a {
    color: var(--primary-dark);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.section-title a:hover {
    color: var(--black);
}

/* ========================================
   INTRO TEXT MORE/LESS TOGGLE
   ======================================== */
.intro-text-wrapper {
    margin: 0 0 60px 0;
    text-align: left;
}

.nile-intro-text {
    margin-bottom: 15px;
    line-height: 1.8;
    color: var(--gray);
    font-size: 1.05rem;
    
    /* تقطيع النص لـ 3 أسطر فقط في البداية */
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    transition: all 0.4s ease;
    max-height: 4.5em;
}

/* عند الضغط على More يتم إزالة التقطيع */
.nile-intro-text.expanded {
    -webkit-line-clamp: unset;
    max-height: 1000px;
}

/* زر More/Less بنفس ستايل الموقع */
.read-more-btn {
    display: flex;          /* بدل inline-flex */
    margin: 0 auto;         /* ✅ ده اللي هيبطنه في النص أفقيًا */
    justify-content: center; /* يخلي النص والأيقونة في نص الزرار */
    align-items: center;
    gap: 8px;   
    background: transparent;
    border: 2px solid var(--primary-dark);
    color: var(--primary-dark);
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    padding: 10px 28px;
    border-radius: 50px;
    transition: var(--transition);
    letter-spacing: 0.5px;
}

.read-more-btn:hover {
    background: var(--primary-dark);
    color: var(--black);
    transform: translateY(-2px);
}

.read-more-btn i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

/* تدوير السهم عند الفتح */
.read-more-btn.active i {
    transform: rotate(180deg);
}

/* ========================================
   8. POPULAR DESTINATIONS
   ======================================== */
.dest-grid {
    display: grid;
       grid-template-columns: 1fr 1fr !important; /* عمودين متساويين */
    grid-template-rows: auto auto !important; /* صفين */
    gap: 20px;
}

.dest-main {
    grid-row: span 1 !important;
    height: auto !important;
}

.dest-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    height: 100%;

}

.dest-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.6s;
}

.dest-item:hover img {
    transform: scale(1.1);
}

.dest-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    color: white;
}

.dest-overlay h4,
.dest-overlay h5 {
    margin-bottom: 5px;
}

.dest-overlay p {
    margin-bottom: 0;
    font-size: 14px;
    opacity: 0.9;
}

.dest-arrow {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    border: 1px solid white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    transform: rotate(-45deg);
}

.dest-arrow i {
    font-size: 20px;
    transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55), color 0.4s ease;
}

.dest-item:hover .dest-arrow {
    background: white;
    transform: rotate(-45deg) scale(1.1);
}

.dest-item:hover .dest-arrow i {
    color: var(--black);
    transform: rotate(45deg);
}

.tour-count {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(255,255,255,0.9);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    color: var(--black);
}

/* 2. تنسيق قسم الأسئلة الشائعة (FAQ) */
./* ========================================
   MODERN FAQ SECTION - 2026 DESIGN
   ======================================== */

.faq-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.faq-modern-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto 60px; /* ✅ أضفنا margin-bottom: 60px */
        align-items:flex-start;

}

/* Card Style */
.faq-modern-item {
    background: #ffffff;
    border-radius: 16px;
    padding: 0;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0,0,0,0.04);
}

.faq-modern-item:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transform: translateY(-2px);
    border-color: var(--primary-dark);
}

/* Question Summary */
.faq-modern-item summary {
    list-style: none;
    cursor: pointer;
    padding: 24px 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
}

.faq-modern-item summary::-webkit-details-marker {
    display: none;
}

.faq-q {
    font-family: 'El Messiri', sans-serif;
    font-size: 17px;
    font-weight: 600;
    color: var(--black);
    line-height: 1.4;
    flex: 1;
    transition: color 0.3s ease;
}

.faq-icon {
    font-size: 24px;
    font-weight: 300;
    color: var(--primary-dark);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(212, 201, 168, 0.15);
}

/* When Opened */
.faq-modern-item[open] {
    box-shadow: 0 4px 20px rgba(212, 201, 168, 0.2);
    border-color: var(--primary-dark);
}

.faq-modern-item[open] summary {
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.faq-modern-item[open] .faq-q {
    color: var(--primary-dark);
}

.faq-modern-item[open] .faq-a {
    display: block !important;
    height: auto !important;
    max-height: none !important;
    opacity: 1 !important;
    overflow: visible !important;
}

/* إخفاء المحتوى عند الغلق */
.faq-modern-item .faq-a {
    display: none; 
}

/* حل تداخل الشاشات الكبيرة */
.faq-modern-item {
    display: block !important;
    width: 100% !important;
}

/* Answer Content */
.faq-a {
    padding: 20px 28px 24px;
    animation: fadeIn 0.3s ease;
}

.faq-a p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--gray);
    margin: 0;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Active/Clicked State */
.faq-modern-item:active {
    transform: scale(0.99);
}

/* ========================================
   RESPONSIVE - MOBILE
   ======================================== */
@media (max-width: 768px) {
    .faq-modern-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .faq-section {
        padding: 60px 0;
    }
    
    .faq-modern-item summary {
        padding: 20px 22px;
    }
    
    .faq-a {
        padding: 16px 22px 20px;
    }
    
    .faq-q {
        font-size: 15px;
    }
    
    .faq-icon {
        width: 28px;
        height: 28px;
        font-size: 20px;
    }
}

/* ========================================
   DARK MODE SUPPORT (Optional)
   ======================================== */
@media (prefers-color-scheme: dark) {
    .faq-section {
        background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
    }
    
    .faq-modern-item {
        background: #2c2c2c;
        border-color: rgba(255,255,255,0.08);
    }
    
    .faq-q {
        color: var(--white);
    }
    
    .faq-a p {
        color: #aaa;
    }
    
    .faq-modern-item[open] {
        border-color: var(--primary-dark);
    }
}


/* ========================================
   13. CATEGORIES & NEWSLETTER
   ======================================== */
.categories {
    background: var(--primary);
    padding: 80px 0;
    margin-top: 50px;
}

.category-list {
    display: grid;
    grid-template-columns: repeat(1, 2fr);
    gap: 15px;
}

.category-item {
    color: var(--gray);
    padding: 10px 0;
    transition: var(--transition);
    cursor: pointer;
}

.category-item:hover {
    color: var(--primary-dark);
    padding-left: 10px;
}

.category-item i {
    margin-right: 10px;
    color: var(--primary-dark);
}

.newsletter {
    background: var(--light-gray);
    padding: 60px 0;
}

.newsletter-form {
    display: flex;
    gap: 0;
}

.newsletter-form input {
    flex: 1;
    padding: 15px 20px;
    border: 1px solid #ddd;
    border-radius: 5px 0 0 5px;
    font-size: 14px;
}

.newsletter-form button {
    background: var(--primary-dark);
    color: var(--black);
    border: none;
    padding: 15px 30px;
    border-radius: 0 5px 5px 0;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background: var(--primary);
}

.social-footer a {
    color: var(--gray);
    margin-right: 15px;
    font-size: 16px;
    transition: var(--transition);
}

.social-footer a:hover {
    color: var(--primary-dark);
}


footer {
    background: var(--black);
    color: var(--white);
    padding: 80px 0 30px;
}

footer h5 {
    color: var(--primary);
    margin-bottom: 25px;
    font-size: 18px;
}

footer p {
    color: #aaa;
    font-size: 14px;
    line-height: 1.8;
}

footer ul {
    list-style: none;
    padding: 0;
}

footer ul li {
    margin-bottom: 12px;
}

footer ul li a {
    color: #aaa;
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
}

footer ul li a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 15px;
}

.footer-contact i {
    color: var(--primary);
    margin-top: 3px;
}

.payment-methods {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.payment-methods i {
    font-size: 30px;
    opacity: 0.7;
}

.footer-bottom {
    border-top: 1px solid #333;
    margin-top: 50px;
    padding-top: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    margin: 0;
    font-size: 13px;
}

.footer-social a {
    color: var(--white);
    margin-left: 15px;
    transition: var(--transition);
}

.footer-social a:hover {
    color: var(--primary);
}

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    transition: var(--transition);
    z-index: 1000;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: var(--white);
}

/* ========================================
   15. MOBILE RESPONSIVE - ALL IN ONE PLACE
   ======================================== */

/* Tablet & Mobile - Max Width 991px */
@media (max-width: 991px) {
    /* Navbar Mobile */
    .navbar-center-content {
        margin-left: 0;
    }
    
    .navbar-brand {
        margin-right: 20px;
    }
    
    .logo-img {
        height: 50px;
    }
    
    .navbar-collapse {
        display: none !important;
    }
    
    .navbar-toggler {
        display: block !important;
    }
    
    /* Hide desktop elements */
    .navbar-right-content {
        display: none !important;
    }
    
    /* Top Bar Mobile */
    .top-bar-left {
        gap: 15px;
    }
    
    .btn-tailor-top {
        padding: 6px 18px;
        font-size: 12px;
    }
    
    /* Hero Mobile */

    .hero-page{
        height: 50px;
    }
    .hero-page h1 {
        font-size: 2.5rem;
    }
    
    .hero-page p {
        font-size: 1rem;
    }
    
    .search-box {
        padding: 20px;
    }
    
    /* Features Mobile */
    .feature-item {
        flex-direction: column;
        text-align: center;
    }
    
    .feature-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    /* Destinations Grid Mobile */
    .dest-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
    
    .dest-main {
        grid-row: span 1;
        height: 400px;
    }
    
    .dest-item {
        height: 250px;
    }
    
    /* Promo Banner Mobile */
    .promo-banner-new {
        border-radius: 15px;
    }
    
    .promo-text-side {
        padding: 50px 30px;
        min-height: auto;
        text-align: center;
    }
    
    .promo-text-side h6 {
        font-size: 13px;
        letter-spacing: 2px;
    }
    
    .promo-text-side h2 {
        font-size: 36px;
    }
    
    .promo-text-side p {
        font-size: 15px;
    }
    
    .promo-img-side {
        min-height: 300px;
        order: -1;
    }
    
    .btn-promo-white {
        padding: 12px 35px;
        font-size: 13px;
    }
    
    /* Testimonials Mobile */
    .testimonial-card {
        width: 320px;
        max-width: 320px;
    }
    
    .testimonials-carousel-wrapper {
        gap: 10px;
        padding: 0;
    }
    
    /* Categories Mobile */
    .category-list {
        grid-template-columns: 1fr;
    }
    
    /* Footer Mobile */
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .footer-social a {
        margin: 0 8px;
    }
    
    /* Disable pseudo-elements in mobile */
    .nav-link::before,
    .nav-link::after,
    .sidebar-link::before,
    .sidebar-link::after,
    .sidebar-item::before,
    .sidebar-item::after,
    .dropdown-toggle::before {
        display: none !important;
        content: none !important;
    }
}

/* Mobile - Max Width 768px */
@media (max-width: 768px) {
    /* Top Bar Mobile */
    .top-bar-left a span {
        display: none;
    }
    
    .top-bar-left i {
        margin-right: 0;
        font-size: 16px;
    }
    
    .social-icons {
        display: none;
    }
    
    .btn-tailor-top {
        display: none;
    }
    
    /* ========================================
       NAVBAR MOBILE - LARGER LOGO
       ======================================== */
    .navbar {
        padding: 10px 0; /* تقليل البادينج عشان اللوجو الكبير */
    }
    
    .navbar-brand {
        margin-right: 15px; /* تقليل المسافة على اليمين */
    }
    
    .logo-img {
        height: 70px; /* حجم اللوجو - عدل الرقم حسب اللي انت عايزه */
        width: auto;
        object-fit: contain;
    }
    
    .navbar-toggler {
        padding: 8px;
        margin-left: auto; /* يدفع الزرار لليمين */
    }
    
    /* ========================================
       HERO MOBILE
       ======================================== */
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .search-box {
        padding: 15px;
    }
     .feature-item {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .feature-icon {
            width: 100px;
    height: 100px;
        margin-right: 0;
        margin-bottom: 15px;
        margin-left: auto;
        margin-right: auto;
    }
    .feature-icon i {
    font-size: 37px;
    color: var(--primary);
}
    .feature-text {
        font-size: 50px;
        text-align: center;
    }
    /* ========================================
       SECTION TITLE MOBILE
       ======================================== */
    .section-title h2 {
        font-size: 2rem;
    }
    
    
    
    /* ========================================
       PROMO BANNER MOBILE
       ======================================== */
    .promo-text-side {
        padding: 40px 25px;
    }
       .tours {
        padding: 80px 0; /* زيادة padding القسم */
    }
    .promo-text-side h2 {
        font-size: 32px;
    }
    
    .promo-img-side {
        min-height: 250px;
    }
    
    /* ========================================
       TESTIMONIALS MOBILE
       ======================================== */
    .testimonial-card {
        width: 300px;
        max-width: 300px;
        padding: 25px 20px;
    }
    
    .testimonial-card p {
        min-height: 90px;
        font-size: 13px;
    }
    
    .carousel-nav {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .author-initial {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    
    
/* ========================================
   SMALL MOBILE - ADJUST LOGO SIZE
   ======================================== */
@media (max-width: 576px) {
    .logo-img {
        height: 81px; /* تصغير اللوجو شوية في الشاشات الصغيرة جداً */
    }
    
       .navbar {
        height: 98px;
        padding: 8px 0;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
}

/* ========================================
   EXTRA SMALL MOBILE
   ======================================== */
@media (max-width: 400px) {
    .logo-img {
        height: 81px; /* أصغر حجم للوجو */
    }
    
    .navbar {
        padding: 6px 0;
    }
}
/* Small Mobile - Max Width 576px */
@media (max-width: 576px) {
    /* Mobile Sidebar Full Width */
    .mobile-sidebar {
        width: 100%;
        right: -100%;
    }
    
    /* Hero Mobile */
    .hero {
        min-height: 600px;
    }
    
    .hero h1 {
        font-size:2.5rem;
    }
    
    /* Section Mobile */
    .section {
        padding: 40px 0;
    }
    
    /* Tours Mobile */
   .tour-card {
        margin-bottom: 35px !important;
    }
    
    /* لو فيه row أو container حوالين الكروت */
    .row > [class*="col-"] {
        margin-bottom: 25px !important;
    }

    
    .tour-image {
        height: 200px;
    }
    
    .tour-price .current {
        font-size: 20px;
    }
    
    .btn-view-more {
        padding: 8px 20px;
        font-size: 13px;
    }
    
    /* Promo Banner Mobile */
    .promo-text-side {
        padding: 35px 20px;
    }
    
    .promo-text-side h2 {
        font-size: 28px;
    }
    
    .promo-text-side p {
        font-size: 14px;
    }
    
    .promo-img-side {
        min-height: 220px;
    }
    
    .btn-promo-white {
        padding: 11px 30px;
        font-size: 12px;
    }
    
    /* Testimonials Mobile */
    .testimonial-card {
        width: 280px;
        max-width: 280px;
    }
    
    .testimonial-card p {
        min-height: auto;
    }
    
    .carousel-nav {
        display: none;
    }
    
    /* Footer Mobile */
    footer {
        padding: 60px 0 20px;
    }
    
    footer h5 {
        font-size: 16px;
    }
    
    /* WhatsApp Float Mobile */
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 24px;
        bottom: 20px;
        right: 20px;
    }
}

/* Extra Small Mobile - Max Width 400px */
@media (max-width: 400px) {
    .hero-page h1 {
        font-size: 2.5rem;
    }
    
    .section-title h2 {
        font-size: 1.8rem;
    }
    
    .btn-view-all {
        padding: 12px 30px;
        font-size: 14px;
    }
    
    .dest-item {
        height: 200px;
    }
    
    .dest-main {
        height: 300px;
    }
}
  