: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;

    }

}
























.contact-hero {
    height: 60vh;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('contact.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative; /* لازم يكون relative */
}

.hero-content {
    position: relative;
    z-index: 10; /* عشان الكلام يطلع فوق أي طبقة سوداء */
    padding-top: 100px;

}

.hero-content h1 {
    font-size: 50px;
    font-weight: 900;
    color: #ffffff !important; /* إجبار اللون الأبيض */
    margin-bottom: 15px;
    text-transform: uppercase;
}

.hero-content p {
    font-size: 18px;
    color: #ffffff !important; /* إجبار اللون الأبيض */
    max-width: 600px;
    margin: 0 auto;
}

/* للموبايل (iPhone 11 Pro Max) */
@media screen and (max-width: 768px) {
    .hero-content h1 { font-size: 34px; }
    .contact-hero { height: 80vh; }
}




















.contact-info-section {
    padding: 80px 10%;
    background-color: #ffffff;
}

.info-container {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.info-box {
    flex: 1;
    min-width: 250px;
    text-align: center;
    padding: 40px;
    background: #f9f9f9;
    border-radius: 10px;
    transition: 0.3s;
    border-bottom: 3px solid transparent;
}

.info-box:hover {
    transform: translateY(-10px);
    border-bottom: 3px solid #000; /* الخط الأسود اللي بنحبه */
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.info-box i {
    font-size: 40px;
    color: #000;
    margin-bottom: 20px;
}

.info-box h3 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.info-box p {
    color: #666;
    font-weight: 500;
}

/* للموبايل */
@media screen and (max-width: 768px) {
    .info-container { flex-direction: column; }
    .info-box { padding: 30px; }
}

























.booking-section {

    padding: 120px 6%;

    background-color: #b3b3b3;

}



.booking-container {

    max-width: 900px;

    margin: 0 auto;

    background: #fff;

    padding: 60px;

    box-shadow: 0 40px 100px rgba(0,0,0,0.05); /* ظل ناعم جداً */

    border-radius: 4px;

}



.booking-header {

    text-align: center;

    margin-bottom: 50px;

}



.booking-header .tag {

    color: var(--accent-blue);

    font-weight: 800;

    letter-spacing: 3px;

    font-size: 11px;

}



.booking-header h2 {

    font-size: 36px;

    font-weight: 800;

    margin: 15px 0;

    letter-spacing: -1px;

}



.booking-form {

    display: flex;

    flex-direction: column;

    gap: 25px;

}



.form-row {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 25px;

}



.form-group {

    display: flex;

    flex-direction: column;

    gap: 8px;

}



.form-group label {

    font-size: 12px;

    font-weight: 700;

    color: #888;

    text-transform: uppercase;

}



.form-group input, 

.form-group select, 

.form-group textarea {

    padding: 15px;

    border: 1px solid #eee;

    background: #f9f9f9;

    font-size: 15px;

    border-radius: 2px;

    outline: none;

    transition: 0.3s;

}



.form-group input:focus {

    border-color: var(--accent-blue);

    background: #fff;

}



.btn-submit {

    background: #000;

    color: #fff;

    padding: 20px;

    border: none;

    font-weight: 800;

    letter-spacing: 1px;

    cursor: pointer;

    transition: 0.4s;

    margin-top: 20px;

}



.btn-submit:hover {

    background: var(--accent-blue);

    transform: translateY(-3px);

}



/* الموبايل */

@media (max-width: 768px) {

    .booking-container { padding: 40px 20px; }

    .form-row { grid-template-columns: 1fr; }

}



















.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; } /* نخفي النص في الموبايل */
}


