:root {
    --bg-white: #ffffff;
    --text-black: #1a1a1a;
    --accent-blue: #0047FF;
    --gray-light: #e0e0e0;
}
* {

    margin: 0;

    padding: 0;

    box-sizing: border-box;

    font-family: 'Arial', sans-serif; /* أو الخط المستخدم في موقعك */

}

.main-header {

    background-color: #000000;

    padding: 1px 5%; /* زيادة المسافة شوية عشان يبقى فخم */

    position: fixed;

    width: 100%;

    top: 0;

    left: 0;

    z-index: 1000;

}



.navbar {

    display: flex;

    justify-content: space-between;

    align-items: center;

    max-width: 1400px;

    margin: 0 auto;

}



.logo img {

    height: 150px; /* نفس حجم اللوجو في الصورة */

}



.nav-links {

    display: flex;

    list-style: none;



}



.nav-links li a {

    color: #ffffff; /* أبيض سادة زي الصورة */

    text-decoration: none;

    margin-left: 30px;

    font-size: 14px; /* خط رفيع وصغير زي الصورة */

    font-weight: 650;

    text-transform: uppercase; /* حروف كبيرة إجباري */

    transition: opacity 0.3s;

}





.menu-toggle {

    display: none;

    color: #ffffff;

    font-size: 23px;

}




.white-page {

    height: 100vh;

}



/* --- تنسيق الموبايل --- */

@media screen and (max-width: 768px) {

    .menu-toggle {

        display: block;

    }
    



    .nav-links {

        position: absolute;

        top: 140px;

        right: -100%;

        background-color: #000000;

        width: 100%;

        height: 100vh;

        flex-direction: column;

        align-items: center;

        padding-top: 60px;

        transition: 0.4s;

    }



    .nav-links.open {

        right: 0;

    }



    .nav-links li {

        margin: 25px 0;

    }

}























/* --- سكشن العنوان --- */
.page-title-area {
    padding: 300px 10% 20px;
    background: #fff;
    text-align: center;
     background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('hurp.jpg');
    
    background-size: cover; /* عشان الصورة تملى السكشن كله */
    background-position: center; /* سنتر الصورة */
    background-attachment: scroll; /* حركة الـ Parallax الشيك وأنت بتعمل Scroll */
    
    color: #ffffff; /* حولنا لون الكلام للأبيض عشان يظهر فوق الصورة */
}

.title-wrapper h1 {
    font-size: 40px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 10px;
}

.title-wrapper p {
    font-size: 16px;
    color: #ffffff;
}

.title-line {
    width: 60px;
    height: 4px;
    background: #ffffff;
    margin: 20px auto 0;
    border-radius: 2px;
}


















/* --- سكشن الكروت --- */
.trips-grid-area {
    padding: 20px 10% 80px;
    background: #fff;
}

.trips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.trip-card {
    background: #fff;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
    border: 1px solid #f0f0f0;
}

.trip-image { position: relative; height: 250px; }
.trip-image img { width: 100%; height: 100%; object-fit: cover; }

.trip-tag {
    position: absolute; top: 20px; right: 20px;
    background: rgba(255, 255, 255, 0.95);
    padding: 6px 18px; border-radius: 50px;
    font-weight: 600; font-size: 13px;
}

.trip-body { padding: 30px; }
.trip-body h3 { font-size: 24px; font-weight: 700; margin-bottom: 12px; }
.trip-body p { color: #666; font-size: 15px; line-height: 1.6; margin-bottom: 25px; }

.trip-meta {
    display: flex; justify-content: space-between;
    padding-bottom: 20px; border-bottom: 1px solid #f0f0f0; margin-bottom: 20px;
}

.status-badge { 
    background: #e8f7ee; color: #27ae60; 
    padding: 5px 15px; border-radius: 50px; 
    font-size: 13px; font-weight: 600; 
}

.trip-price .price-label { font-size: 15px; color: #333; }
.trip-price .price-value { font-size: 28px; font-weight: 800; margin-top: 5px; }
.trip-price .price-value span { font-size: 14px; color: #888; font-weight: 400; }

.trip-buttons { display: flex; gap: 15px; margin-top: 30px; }

.btn-view, .btn-book {
    flex: 1; text-align: center; padding: 13px;
    border-radius: 12px; font-weight: 500; text-decoration: none; transition: 0.3s;
}

.btn-view { border: 1px solid #e0e0e0; color: #333; }
.btn-book { background: #1a1a1a; color: #fff; }

.btn-book:hover { background: #000; transform: translateY(-2px); }

/* --- Responsive للموبايل --- */
@media (max-width: 768px) {
    .page-title-area { padding: 250px 5% 10px; }
    .trips-grid-area { padding: 10px 5% 60px; }
}












/* الحل الإجباري لرص السكاشن المنفصلة جنب بعض */

/* 1. السكشن الكبير نخليه يفرش بالعرض */
.trips-grid-area {
    display: inline-block !important; /* بيخلي السكاشن تيجي جنب بعض */
    width: 24% !important; /* كل سكشن ياخد ربع مساحة اللاب توب */
    padding: 10px !important; 
    vertical-align: top !important;
    
}

/* 2. نلغي الـ Padding الزيادة اللي بيضيق المساحة */
.trips-grid-area .container {
    max-width: 100% !important;
    width: 100% !important;
    padding: 0 !important;
}

/* 3. نلغي أي عرض 100% قديم للكروت */
.trips-grid, .trip-card {
    width: 100% !important;
    margin: 0 !important;
}

/* 4. عشان الموبايل يرجع كارت واحد زي ما هو */
@media (max-width: 991px) {
    .trips-grid-area {
        display: block !important;
        width: 100% !important;
    }
}

/* السطر ده هيسنتر كل السكاشن في نص الصفحة بالظبط */
body {
    text-align: center !important; /* بيوسطن العناصر اللي نوعها inline-block */
}

.trips-grid-area {
    /* بنخلي السكشن ملوش مارجن من الجناب ونسيبه يحدد مكانه في النص */
    margin-left: auto !important;
    margin-right: auto !important;
    display: inline-block !important; /* التأكيد على إنهم جنب بعض */
    float: none !important; /* نلغي أي محاذاة لليسار قديمة */
}

/* لضمان إن محتوى الكارت نفسه يفضل محاذي لليسار أو لليمين (تركي/عربي) مش متسنتر */
.trip-card {
    text-align: left !important; 
}



















.stats-separator {
    background-color: #f9f9f9; /* لون هادي يفصل بين الأبيض والفوتر */
    padding: 60px 0;
    margin-top: 40px;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.stats-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    padding: 20px;
    flex: 1;
    min-width: 200px;
}

.stat-item i {
    font-size: 40px;
    color: #007bff; /* نفس لون براند الموقع */
    margin-bottom: 15px;
}

.stat-number {
    font-size: 30px;
    font-weight: 800;
    color: #333;
    margin-bottom: 5px;
}

.stat-text {
    font-size: 16px;
    color: #777;
    font-weight: 500;
}

/* للموبايل (iPhone 11 Pro Max) */
@media (max-width: 768px) {
    .stat-item {
        flex: 0 0 50%;
    }
}



























.main-footer {
    background-color: #111; /* أسود فخم */
    color: #fff;
    padding: 80px 6% 30px;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-logo {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.footer-about p {
    color: #888;
    line-height: 1.6;
    font-size: 14px;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    color: #fff;
    background: rgba(255,255,255,0.1);
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    font-size: 14px;
}

.social-links a:hover {
    background: var(--accent-blue);
    transform: translateY(-3px);
}

.footer-links h4, .footer-contact h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 25px;
}

.footer-links ul { list-style: none; }
.footer-links ul li { margin-bottom: 12px; }
.footer-links ul li a {
    color: #888;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.footer-links ul li a:hover { color: #fff; padding-left: 5px; }

.footer-contact p {
    color: #888;
    font-size: 14px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-bottom {
    border-top: 1px solid #222;
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    color: #555;
    font-size: 12px;
    letter-spacing: 1px;
}

/* الموبايل */
@media (max-width: 991px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    .social-links { justify-content: center; }
    .footer-contact p { justify-content: center; }
}
footer img {
    width: 200px !important; 
    height: auto !important;
    max-height: 200px !important;
    object-fit: contain !important;
}












/* منع السكرول بالعرض وإخفاء المساحة البيضاء */
html, body {
    overflow-x: hidden;
    width: 100%;
    margin: 0;
    padding: 0;
}

/* التأكد إن كل السكاشن لا تتعدى عرض الشاشة */
section, div {
    max-width: 100%;
    box-sizing: border-box; /* عشان الـ Padding ما يزودش العرض */
}




















/* تنسيق الزرار العايم */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #FFF;
    width: 60px;
    height: 60px;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
    z-index: 9999; /* عشان يفضل فوق كل السكاشن */
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* حركة النبض (Pulse) عشان تلفت الانتباه */
.pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #25d366;
    border-radius: 50%;
    z-index: -1;
    animation: whatsapp-pulse 2s infinite;
}

@keyframes whatsapp-pulse {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }
    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

/* النص اللي بيظهر لما الماوس ييجي عليه (اختياري) */
.float-text {
    position: absolute;
    right: 75px;
    background: #fff;
    color: #333;
    padding: 8px 15px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.whatsapp-float:hover .float-text {
    opacity: 1;
    visibility: visible;
    right: 80px;
}

.whatsapp-float:hover {
    transform: translateY(-5px);
    background-color: #128c7e;
}

/* للموبايل: نصغر الحجم شوية عشان مياخدش مساحة */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
        font-size: 25px;
    }
    .float-text { display: none; } /* نخفي النص في الموبايل */
}

















