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

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

body { background-color: var(--bg-white); color: var(--text-black); }

header {
    position: absolute; top: 0; width: 100%; padding: 40px 6%;
    display: flex; justify-content: space-between; align-items: center; z-index: 1000;
}

.logo { font-size: 35px; font-weight: 800; letter-spacing: -1px; color: #0047FF; }

.nav-links { display: flex; gap: 40px; }
.nav-links a { text-decoration: none; color: var(--text-black); font-size: 13px; font-weight: 700; }

.menu-toggle { display: none; cursor: pointer; font-size: 24px; z-index: 1001; }

.hero { height: 100vh; display: grid; grid-template-columns: 1fr 1fr; align-items: center; padding: 0 6%; }

.hero-left h1 { font-size: clamp(45px, 8vw, 100px); line-height: 0.9; font-weight: 800; margin-bottom: 40px; }
.hero-left h1 span { display: block; color: transparent; -webkit-text-stroke: 1px #ccc; }

.cta-group { display: flex; gap: 15px; }
.btn-primary { background: #000; color: #fff; padding: 18px 35px; text-decoration: none; font-weight: 700; }
.btn-secondary { background: #f4f4f4; color: #000; padding: 18px 35px; text-decoration: none; font-weight: 700; display: flex; align-items: center; gap: 10px; }

.hero-right { display: flex; justify-content: flex-end; align-items: center; height: 100%; }
.image-wrapper { width: 90%; height: 70vh; overflow: hidden; }
.image-wrapper img { width: 100%; height: 100%; object-fit: cover; }
/* --- تعديلات الموبايل الجوهرية --- */
@media (max-width: 991px) {
    .menu-toggle { display: block; }
    
    .nav-links {
        position: fixed; top: 0; right: -100%; width: 100%; height: 100vh;
        background: #fff; flex-direction: column; align-items: center; justify-content: center;
        transition: 0.5s ease; z-index: 1000;
    }

    .nav-links.active { right: 0; }

    .hero {
        grid-template-columns: 1fr; height: auto; padding-top: 120px; padding-bottom: 50px;
        text-align: center;
    }

    .hero-left h1 { font-size: 55px; margin-bottom: 30px; }
    .cta-group { justify-content: center; margin-bottom: 40px; }

    .hero-right { display: block; width: 100%; height: 400px; }
    .image-wrapper { width: 100%; height: 100%; }
    
}













.hero-new {
    position: relative;
    height: 70vh; /* طول الشاشة بالكامل */
    width: 100%;
    display: flex;
    align-items: center; /* توسيط عمودي */
    justify-content: center; /* توسيط أفقي */
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* عشان الصورة تملا المكان من غير ما تتمط */
}

/* طبقة تعتيم عشان الكلام يبان */
.hero-new::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4); /* تعتيم بنسبة 40% */
    z-index: 2;
}

.hero-overlay {
    position: relative;
    z-index: 3; /* فوق الصورة والتعتيم */
    text-align: center;
    color: #fff;
    width: 100%;
}

.hero-content h1 {
    font-size: clamp(50px, 10vw, 120px);
    font-weight: 800;
    line-height: 0.9;
    margin-bottom: 40px;
    letter-spacing: -2px;
    margin-top: 130px;
}

.hero-content h1 span {
    display: block;
    color: transparent;
    -webkit-text-stroke: 1px #000000;
}

.cta-group {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* تعديل الزراير عشان تليق على الخلفية الملونة */
.btn-primary {
    background: #fff;
    color: #000;
    padding: 20px 45px;
    text-decoration: none;
    font-weight: 700;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: #fff;
    padding: 20px 45px;
    text-decoration: none;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* الموبايل - دلوقتى هيظهر وحش بجد */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 60px;
    }
    .cta-group {
        flex-direction: column;
        align-items: center;
    }
}



















.about-preview {
    padding: 80px 10%;
    background-color: #fff;
    text-align: left; /* متوافق مع اتجاه اللغة التركية */
}

.about-content h1 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #000;
}

.about-content p {
    font-size: 18px;
    color: #555;
    line-height: 1.6;
    max-width: 800px;
    margin-bottom: 40px;
}

/* تنسيق الكروت */
.features-grid {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.feature-card {
    background: #fff;
    padding: 30px 20px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    flex: 1;
    text-align: center;
    border: 1px solid #f0f0f0;
    transition: 0.3s;
}

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

.feature-card i {
    font-size: 35px;
    margin-bottom: 15px;
    color: #000;
}

.feature-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #000;
}

/* تنسيق الزرار */
.read-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    background-color: #1a1a1a;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: 0.3s;
}

.read-more-btn:hover { background-color: #000; transform: translateX(5px); }

/* للموبايل (iPhone 11 Pro Max) */
@media (max-width: 768px) {
    .features-grid { flex-direction: column; }
    .about-content h1 { font-size: 32px; }
}

























.destinations {
    padding: 120px 6%;
    background-color: #fff;
}

.section-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 80px;
}

.section-intro .tag {
    color: var(--accent-blue);
    font-weight: 800;
    letter-spacing: 4px;
    font-size: 12px;
    display: block;
    margin-bottom: 15px;
}

.section-intro h2 {
    font-size: 48px;
    font-weight: 800;
    letter-spacing: -2px;
    line-height: 1.1;
    margin-bottom: 20px;
}

.section-intro p {
    color: #666;
    font-size: 18px;
}

/* شبكة الكروت المتطورة */
.destinations-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 كروت جنب بعض في اللاب توب */
    gap: 15px;
}

.dest-card {
    position: relative;
    height: 600px; /* كروت طويلة وشيك */
    overflow: hidden;
    cursor: pointer;
}

.dest-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s cubic-bezier(0.19, 1, 0.22, 1);
}

.dest-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 40px;
    transition: 0.5s;
}

.dest-info {
    transform: translateY(20px);
    transition: 0.5s;
}

.dest-info h3 {
    color: #fff;
    font-size: 30px;
    font-weight: 800;
    margin-bottom: 5px;
}

.dest-info p {
    color: rgba(255,255,255,0.7);
    font-size: 16px;
    margin-bottom: 20px;
}

.btn-explore {
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    border: 1px solid rgba(255,255,255,0.3);
    padding: 10px 25px;
    transition: 0.3s;
}

/* حركات الـ Hover */
.dest-card:hover img {
    transform: scale(1.1);
}

.dest-card:hover .dest-info {
    transform: translateY(0);
}

.btn-explore:hover {
    background: #0047FF;
    color: #000;
}

/* للموبايل */
@media (max-width: 1100px) {
    .destinations-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .destinations-grid { grid-template-columns: 1fr; }
    .dest-card { height: 450px; }
    .section-intro h2 { font-size: 36px; }
}



















.experience-highlights {
    padding: 150px 6%;
    background: #fff;
}

.highlight-container {
    display: flex;
    flex-direction: column;
    gap: 150px; /* مسافة كبيرة بين العناصر للفخامة */
}

.h-item {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
    gap: 80px;
}

.h-item.rev {
    grid-template-columns: 0.8fr 1.2fr;
}

.h-img {
    height: 500px;
    overflow: hidden;
    position: relative;
}

.h-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 1s cubic-bezier(0.19, 1, 0.22, 1);
}

.h-item:hover .h-img img {
    transform: scale(1.05);
}

.h-text h3 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 25px;
    letter-spacing: -1px;
}

.h-text p {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    max-width: 400px;
}

/* للموبايل */
@media (max-width: 991px) {
    .h-item, .h-item.rev {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    .h-text p {
        max-width: 100%;
    }
    .h-img {
        height: 350px;
    }
}






















.testimonials-section {
    padding: 80px 10%;
    background-color: #f9f9f9;
    text-align: center;
}

.section-title h2 {
    font-size: 32px;
    font-weight: 900;
    margin-bottom: 10px;
}

.testimonials-wrapper {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 50px;
}

.testimonial-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    max-width: 350px;
    transition: 0.3s;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-10px);
}

.user-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin: -80px auto 20px; /* حركة تداخل الصورة مع الكارت */
    border: 5px solid #f9f9f9;
}

.user-img img { width: 100%; height: 100%; object-fit: cover; }

.rating { color: #ffc107; margin-bottom: 15px; font-size: 14px; }

.testimonial-card p {
    font-style: italic;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

.testimonial-card h4 { font-weight: 800; margin-bottom: 5px; }
.testimonial-card span { color: #888; font-size: 13px; }



















.how-it-works {
    padding: 80px 10%;
    background: #fff;
    text-align: center;
}

.steps-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-top: 60px;
}

.step-item {
    flex: 1;
    position: relative;
    padding: 20px;
}

.step-number {
    font-size: 80px;
    font-weight: 900;
    color: rgba(0, 0, 0, 0.05); /* رقم باهت جداً في الخلفية */
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.step-item h3 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.step-item p {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

/* سهم أو خط واصل بين الخطوات في الشاشات الكبيرة */
@media (min-width: 769px) {
    .step-item:not(:last-child)::after {
        content: '→';
        position: absolute;
        top: 20%;
        right: -30px;
        font-size: 30px;
        color: #f1c40f;
    }
}

/* للموبايل */
@media (max-width: 768px) {
    .steps-wrapper { flex-direction: column; }
    .step-item { margin-bottom: 50px; }
}
























.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; }
}


/* 1. الهيدر لازم يفضل شفاف وفوق الصورة */
header {
    background-color: transparent !important; /* شفاف تماماً */
    position: absolute; /* عشان ينام فوق صورة الهيرو */
    width: 100%;
    top: 0;
    left: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 5%;
    z-index: 1000;
    margin-top: -30px !important; /* الرقم ده كل ما تزوده بالسالب يرفع اللوجو لفوق */
}

/* 2. اللوجو ومقاسه */
.logo img {
    height: 250px; /* المقاس اللي يريحك */
    width: auto;
    display: block;
}

/* 3. المنيو تروح أقصى اليمين */
.nav-links {
    margin-left: auto;
}

@media (max-width: 768px) {
    .logo img {
        height: 200px; /* الحجم اللي إنت استقريت عليه للموبايل */
        margin-top: 5px !important; /* الرقم ده كل ما تزوده بالسالب يرفع اللوجو لفوق */
        position: relative;
    }

    /* لو الهيدر نفسه لسه واخد مساحة من فوق، هنصغره */
    header {
        padding-top: 0px !important;
        padding-bottom: 0px !important;
    }
}















/* تنسيق الزرار العايم */
.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; } /* نخفي النص في الموبايل */
}












header nav a, 
.navbar a, 
.nav-links a {
    color: #ffffff !important;
}


@media (max-width: 768px) {
    /* استهداف القائمة المنسدلة فقط في الموبايل */
    .nav-links, 
    .navbar ul, 
    .nav-menu {
        background-color: #ffffff !important; /* خلفية سوداء */
        display: flex;
        flex-direction: column;
        /* تأكد من وجود مساحة كافية */
        padding: 20px; 
    }

    /* تأكد إن الروابط جواها لونها أبيض */
    .nav-links a, 
    .navbar ul li a {
        color: #000000 !important;
        padding: 15px 0;
        width: 100%;
        text-align: center;
    }
}



/* استهداف أي أيقونة أو حرف X جوه الهيدر والمنيو */
header i, 
.navbar i, 
.menu-toggle i,
.close-menu i,
#menu-close i {
    color: #000000 !important;
}

/* لو هي عبارة عن زرار نصي مكتوب فيه X */
.close-btn, 
.nav-close {
    color: #ffffff !important;
}















/* تنسيق قائمة الأعلام */
.lang-switcher {
    display: flex;
    gap: 10px; /* مسافة بين الأعلام */
    align-items: center;
    margin-left: 20px; /* مسافة عن باقي المنيو */
}

.lang-switcher img {
    width: 35px;      /* حجم العلم (صغير وشيك) */
    height: 25px;

    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, 0.3); /* إطار خفيف أبيض */
    transition: 0.3s ease;
}

.lang-switcher img:hover {
    transform: scale(1.2); /* تكبير بسيط لما الماوس ييجي عليه */
    border-color: #ffffff;
}

/* في الموبايل: نخليهم جنب بعض مش تحت بعض */
@media (max-width: 768px) {
    .lang-switcher {
        justify-content: center;
        margin-top: 20px;
        margin-left: 0;
    }
}








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 ما يزودش العرض */
}









@media (max-width: 768px) {
    
    /* 1. تظبيط مساحة الهيدر من فوق */
    header {
        padding-top: 15px !important;
        position: relative !important;
    }

    /* 2. الأعلام: مقاس موحد وصغير في مكانها الصح */
    .lang-switcher-fixed {
        display: flex !important;
        align-items: center !important;
        gap: 8px !important;
        position: absolute !important;
        right: 70px !important; 
        top: 50% !important;
        transform: translateY(-50%) !important;
        z-index: 9999 !important;
    }
    .lang-switcher-fixed a img {
        width: 25px !important;
        height: auto !important;
        display: inline-block !important;
    }

    /* 3. زرار الـ 3 شرط: نرجعه مكانه الطبيعي عشان ميبقاش نقطة في نص الموقع */
    .menu-toggle {
        position: absolute !important;
        right: 20px !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        z-index: 9999 !important;
    }
    .menu-toggle i {
        font-size: 24px !important; /* حجم زرار الـ 3 شرط الطبيعي */
    }

    /* 4. اللوجو فقط: استهداف صريح جداً عشان ميبوظش باقي صور الصفحة */
    header a.logo img, 
    header .logo img,
    header img[alt*="Hurghada"] { 
        width: 150px !important;      /* المقاس اللي أنت عايزه للوجو */
        height: auto !important;
        display: block !important;
        margin-top: 15px !important;   /* ينزل تحت شوية عن السقف */
        margin-left: 15px !important;
    }
}




.lang-switcher {
    position: absolute !important;
    left: 60% !important;
    transform: translateX(-50%) !important;
    display: flex !important;
    gap: 10px !important;
    z-index: 9999 !important;
    top: 70px !important; /* التحكم في النزول والطلوع عمودياً عشان توازي اللوجو */
}