/* General Reset */


/* استيراد خط Oswald */

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@200;300;400;500;700;800;900&display=swap');
body.arabic {
    font-family: 'Tajawal', 'Arial', sans-serif;
    /* direction: rtl; */
    /* text-align: right; */
}

body.dutch {
    font-family: 'Oswald', sans-serif;
    /* direction: rtl;
    text-align: right; */
}

body.english {
    font-family: 'Oswald', sans-serif;
    /* direction: rtl; */
    /* text-align: right; */
}

body {
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
    /* text-align: center; */
    background: url('./images/back.webp') center/cover no-repeat;
    background-attachment: fixed;
    /* تأثير التمرير البطيء */
    overflow-x: hidden;
    /* منع التمرير الأفقي */
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    /* يعني على الأقل ملء ارتفاع النافذة */
}

footer {
    /* background: #000; */
    color: #fff;
    padding: 20px;
    margin-top: 30px;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    /* تأثير التمويه */
    border: 1px solid rgba(255, 255, 255, 0.1);
    justify-content: center;
    align-content: center;
    /* توسيط العناصر */
}

footer p {
    width: 100%;
    margin: 0 10px;
    text-decoration: none;
    font-size: 12px;
    text-align: center;
}


/* sdcvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv */

header {
    position: fixed !important;
    /* top: 0 !important;
    width: 100% !important;
    z-index: 10 !important;
    margin-bottom: 0 !important;
    padding-bottom: 0 !important; */
}

.hero {
    margin: 0;
    padding: 0;
    position: relative;
    top: 0;
    margin-bottom: 200px;
    /* حسب ارتفاع الهيدر */
    height: calc(100vh - 80px);
    /* تعويض ارتفاع الهيدر */
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 10px;
}

.hero .btn {
    display: inline-block;
    background: #ffcc00;
    color: #000;
    padding: 10px 20px;
    text-decoration: none;
    /* margin-top: 20px; */
    font-weight: bold;
}

.slider {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    z-index: 1;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 1;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    filter: blur(10px);
    /* تمويه مبدئي */
    transform: scale(1.1);
    /* تكبير بسيط */
    transition: transform 1.5s ease, opacity 1.5s ease, filter 1.5s ease;
}


/* عند التفعيل */

.slide.active img {
    opacity: 1;
    filter: blur(0);
    /* إزالة التمويه */
    transform: scale(1);
    /* العودة للحجم الطبيعي */
}

.dots {
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 2;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background 0.3s;
}

.dot.active {
    background: #ffcc00;
}

.caption {
    position: absolute;
    bottom: 20%;
    left: 10%;
    color: #fff;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.7);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s ease, transform 1s ease;
}

.slide.active .caption {
    opacity: 1;
    transform: translateY(0);
}


/* Services Section */


/* تصميم القسم */

#servicesTitle {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #b3c41a;
}


/* تصميم الشبكة */

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    /* شبكة تلقائية */
    gap: 20px;
    justify-items: center;
    /* محاذاة الكروت في المنتصف */
}


/* تصميم الكروت */

.service {
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    /* تأثير التمويه */
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    /* لجعل الكروت مدورة */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    color: #fff;
}

.services {
    /* background: url('images/tools.jpg') no-repeat center center/cover; */
    position: relative;
    padding: 50px 20px;
    color: #fff;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    /* تعتيم */
    backdrop-filter: blur(5px);
    /* تعتيم الخلفية */
    z-index: -1;
}

.service:hover {
    transform: scale(1.15) rotate(5deg);
    /* تكبير مع دوران */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.service i {
    font-size: 40px;
    color: #ffcc00;
    /* margin-bottom: 10px; */
    transition: color 0.3s;
}

.service:hover i {
    transform: scale(1.2);
    /* تكبير الأيقونة عند التمرير */
    color: #ff9900;
}

.service:hover h3,
.service:hover p {
    opacity: 1;
    transform: translateY(-10px);
    /* رفع النص قليلاً */
    transition: all 0.3s ease;
}

.service h3 {
    font-size: 1.2rem;
    color: #ff9900;
    margin-bottom: 10px;
}

.service p {
    font-size: 0.9rem;
    color: white;
    line-height: 1.4;
}


/* تصميم متجاوب للشاشات الصغيرة */

.wave-container {
    width: 100%;
    height: 120px;
    /* الارتفاع المناسب */
    overflow: hidden;
    /* منع المحتوى الزائد */
    background: none;
    position: relative;
    /* animation: wave-motion 5s infinite alternate; */
}

.wave-container svg {
    width: 120%;
    height: 100%;
    /* ضمان أن يملأ الـ SVG الحاوية */
    display: block;
    /* إزالة الفراغات الناتجة عن SVG كعنصر inline */
    position: absolute;
    bottom: 0;
    /* تثبيت الموجة في أسفل الحاوية */
}

@keyframes wave-motion {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(10px);
    }
}

.wave-container path {
    animation: waveMoveAlt 8s ease-in-out infinite;
}

@keyframes waveMoveAlt {
    0% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(-50px);
    }
    100% {
        transform: translateX(0);
    }
}

svg {
    width: 100%;
    display: block;
    margin-top: -5px;
}

@media (max-width: 480px) {
    .service-grid {
        grid-template-columns: 1fr 1fr;
        /* دائرتين في الصف */
        gap: 15px;
    }
    .service {
        width: 120px;
        height: 120px;
    }
    .service h3 {
        font-size: 1rem;
    }
    .service p {
        font-size: 0.8rem;
    }
}


/* قسم مواعيد العمل */


/* تخصيص الخط الفاصل */

.separator {
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, #ffcc00, #ff9900, #ffcc00);
    /* تأثير تدرجي */
    margin-top: 50px;
    /* إضافة مسافة فوق وتحت الخط */
    border: none;
    position: relative;
}


/* تأثير الظل للخط */

.separator::before {
    content: "";
    position: absolute;
    top: -2px;
    /* تحريك الظل قليلاً فوق الخط */
    left: 0;
    width: 100%;
    height: 5px;
    background-color: rgba(0, 0, 0, 0.1);
    /* تأثير الظل */
    border-radius: 3px;
}


/* تنسيق القسم بالكامل */

.contact-info {
    /* background-color: rgba(255, 255, 255, 0.5); */
    /* خلفية شفافة */
    padding: 50px 0px;
    text-align: center;
    background: none;
    /* backdrop-filter: blur(10px); */
    /* تأثير الزجاج */
    /* border-radius: 10px; */
    /* زوايا دائرية */
    /* box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15); */
    /* تأثير الظل */
}


/* حاوية القسم */

.container {
    display: flex;
    justify-content: space-evenly;
    gap: 0;
    flex-wrap: wrap;
    flex-direction: row-reverse;
    /* عكس الترتيب ليصبح من اليمين لليسار */
}


/* تنسيق العناصر داخل كل عمود */

.info-item {
    width: 33.33%;
    aspect-ratio: 1;
    background: rgba(255, 255, 255, 0.8);
    padding: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    flex: 1;
    text-align: center;
    transition: transform 0.3s ease;
}

.info-item i {
    font-size: 40px;
    color: #e01391;
    margin-bottom: 15px;
}

.info-item h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 10px;
}

.info-item p {
    font-size: 1rem;
    color: #555;
}

.info-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}


/* زر الحجز */

.info-item .btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #e01391;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 10px;
}

.info-item .btn:hover {
    background-color: #ffcc00;
}

.hour-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* توسيط العناصر عموديًا */
    margin: 5px 0;
    /* مسافة بين العناصر */
    /* إزالة المسافة بين العناصر */
    padding: 5px 0;
    /* تقليل المسافة بين السطور */
    line-height: 0;
    /* تقليل المسافة بين الأسطر */
}

.hour-item h4 h5 {
    color: #000000;
    margin: 0;
}

.info-item h3 {
    color: #ffcc00;
    text-align: center;
    font-size: 1.8rem;
}

.info-item:nth-child(1) {
    background-image: url('images/01.jpg');
    background-size: cover;
    background-position: center;
    padding: 3px 0;
    /* تقليل المسافة بين السطور */
    line-height: 0.1;
    /* box-sizing: border-box; */
}

.info-item:nth-child(1) h3 {
    color: white;
}

.info-item:nth-child(1) h4 {
    color: rgb(206, 211, 211);
}

.info-item:nth-child(1) h5 {
    color: white;
}

.info-item:nth-child(2) {
    background-color: #E8E3D7;
}

.info-item:nth-child(2) h3 {
    color: black;
    font-size: 3rem;
    font-weight: normal;
    text-shadow: 0 2px 5px rgba(63, 63, 63, 0.7);
    opacity: 1;
    transform: translateY(0px);
    transition: opacity 1s ease, transform 1s ease;
    margin-bottom: 15px;
}

.info-item:nth-child(2) p {
    word-wrap: break-word;
    /* لتمكين النص من الانكسار عند الحاجة */
    text-align: justify;
    margin: 0 20px;
    line-height: 2;
}

.info-item:nth-child(3) {
    background-image: url('images/02.jpg');
    background-size: cover;
    /* تغطي الصورة كامل المساحة */
    background-position: center;
    /* وضع الصورة في المنتصف */
    padding: 20px;
    /* border-radius: 10px; */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    /* width: 10; */
    text-align: start;
    display: flex;
    flex-direction: column;
    /* لضبط العناصر عموديًا */
    justify-content: end;
    /* توسيط العناصر عموديًا */
    align-items: start;
    /* توسيط العناصر أفقيًا */
    transition: transform 0.3s ease;
    position: relative;
}

.info-item:nth-child(3) p {
    color: #fff;
    /* width: 100%; */
    text-align: left;
    /* transform: translateX(-60px) !important; */
}

.info-item:nth-child(3) h3 {
    text-shadow: 0 2px 5px rgba(63, 63, 63, 0.7);
    opacity: 1;
    /* transform: translateY(80px) !important; */
    /* transform: translateX(-60px) !important; */
    transition: opacity 1s ease, transform 1s ease;
    margin-bottom: 15p
}


/* تخصيص العرض على الشاشات الصغيرة */

.opening-Hours {
    border: 5px solid #ffcc00;
    background: black;
    border-radius: 10px;
    margin-top: 30px;
    margin-right: 30px;
    margin-left: 30px;
    padding-left: 20px;
    padding-right: 20px;
}

@media (max-width: 768px) {
    .container {
        flex-direction: column;
        align-items: center;
    }
    .info-item {
        /* width: 90%; */
        /* margin-bottom: 20px; */
        width: 100%;
        /* جعل الكرت يشغل عرض الصفحة بالكامل */
        box-sizing: border-box;
        /* تأكد من أن المسافات padding و border لا تؤثر على العرض */
        margin: 20px 0;
        /* مسافة بين الكروت */
    }
}


/* prisingggggg */


/* تنسيق القسم بالكامل */

#pricing {
    scroll-margin-top: 180px;
    /* تعديل حسب ارتفاع الهيدر */
}

.pricing {
    /* height: calc(100vh - 200px);  */
    /* display: flex; */
    padding: 20px 20px;
    background-color: #F4F2EB;
    color: #fff;
    text-align: center;
    /* backdrop-filter: blur(10px); */
    /* border-radius: 10px; */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    margin-top: 50px;
    margin-bottom: 0;
}


/* تنسيق حاوية الأسعار */

.pricing-container {
    max-width: 1200px;
    margin: 0 auto;
}


/* تنسيق العنوان */

.pricing h2 {
    font-size: 2.5rem;
    color: #ffcc00;
    margin-bottom: 30px;
}


/* تنسيق الوصف */

.pricing-description p {
    font-size: 1.1rem;
    margin-bottom: 20px;
}


/* تنسيق التنويه */

.pricing-note {
    margin: 20px 0;
    font-size: 1rem;
}


/* تنسيق صندوق الأسعار */

.pricing-box {
    background: none;
    padding: 0 10px 10px 20px;
    /* top, right, bottom, left */
    border-radius: 10px;
    border: 3px solid #ffcc00;
    /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); */
    display: inline-block;
    width: 30%;
    text-align: left;
    line-height: 2.3;
    flex-wrap: wrap;
    /* السماح بلف العناصر ضمن الصندوق */
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    width: 100%;
    position: relative;
}

.price-item .price-name {
    text-align: left;
    width: auto !important;
    color: #000;
}

.price-item .price-value {
    text-align: right;
    color: #b8860b;
}

.price-item .price-divider {
    flex-grow: 1;
    border-bottom: 2px dotted #000;
    margin: 0 10px;
    text-align: center;
}

.pricing-box h3 {
    font-size: 2rem;
    color: black;
    margin-top: 10px;
    /* تقليل المسافة بين العنوان وأعلى الصندوق */
    margin-bottom: 20px;
    text-align: center;
}

.price-title {
    font-size: 1.2rem;
    color: black;
}


/* زر الحجز */

.pricing-booking {
    display: inline-block;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    width: 100%;
    position: relative;
}

.pricing-booking .btn {
    display: inline-block;
    padding: 12px 25px;
    background-color: #ffcc00;
    color: #000;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    margin-top: 10px;
}

.pricing-booking .btn:hover {
    background-color: #e01391;
    color: #fff;
}


/* تخصيص للشاشات الصغيرة */


/* تخصيص صندوق الأسعار على الشاشات الصغيرة */

@media (max-width: 768px) {
    #pricing {
        scroll-margin-top: 80px;
        /* تعديل حسب ارتفاع الهيدر */
    }
    .pricing-box {
        width: 100%;
        padding: 15px;
        box-sizing: border-box;
        /* التأكد من أن الحواف وال padding لا تؤثر على العرض */
        margin: 0 auto;
        /* ضمان أن الصندوق يتوسط الصفحة */
        line-height: 2;
    }
    .separator {
        display: none;
        /* إخفاء الخط المنقط بين العناصر */
    }
    .pricing h2 {
        font-size: 1.8rem;
        /* تقليل حجم الخط على الهواتف */
    }
    .pricing-description p {
        font-size: 1rem;
        /* تحسين حجم الخط */
    }
    .pricing-note {
        font-size: 1rem;
    }
    .pricing-note p {
        font-size: 0.9rem;
    }
    .pricing-booking .btn {
        padding: 10px 20px;
        font-size: 1.1rem;
        /* تحسين حجم الزر */
    }
}

.separator1 {
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, #ffcc00, #ff9900, #ffcc00);
    border: none;
    position: relative;
}


/* تأثير الظل للخط */

.separator1::before {
    content: "";
    position: absolute;
    top: -2px;
    /* تحريك الظل قليلاً فوق الخط */
    left: 0;
    width: 100%;
    height: 5px;
    background-color: rgba(0, 0, 0, 0.1);
    /* تأثير الظل */
    border-radius: 3px;
}


/* تنسيق الفوتور */

footer {
    margin-top: 0;
    background-color: #333;
    /* لون الخلفية */
    color: #fff;
    /* لون النص */
    padding: 20px 0;
    /* تباعد داخلي */
    font-family: 'Tajawal', sans-serif;
    /* خط النص */
    /* position: fixed; */
}

.footer-container {
    display: flex;
    justify-content: space-between;
    /* توزيع العناصر */
    align-items: center;
    /* توسيط العناصر عموديًا */
    max-width: 1200px;
    /* عرض الفوتور */
    margin: 0 auto;
    /* توسيط الفوتور */
    padding: 0 20px;
    /* تباعد جانبي */
}

.footer-left {
    display: flex;
    align-items: center;
    /* توسيط العناصر عموديًا */
    gap: 20px;
    /* تباعد بين العناصر */
}

.footer-left p {
    margin: 0;
    /* إزالة الهوامش */
    font-size: 0.9rem;
    /* حجم النص */
}

.footer-right {
    display: flex;
    gap: 15px;
    /* تباعد بين الأيقونات */
}

.footer-right a {
    color: #fff;
    /* لون الأيقونات */
    font-size: 1.2rem;
    /* حجم الأيقونات */
    transition: color 0.3s ease;
    /* تأثير انتقالي */
}

.footer-right a:hover {
    color: #ffcc00;
    /* تغيير لون الأيقونة عند التحويم */
}

@media (max-width: 768px) {
    .footer-left p {
        font-size: 0.7rem;
        /* حجم النص */
    }
}


/* تنسيق زر العودة إلى الأعلى */

.back-to-top {
    position: fixed;
    bottom: 75px;
    right: 20px;
    background-color: #e01391;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease, transform 0.3s ease, opacity 0.3s ease;
    z-index: 1000;
    opacity: 0;
    /* إخفاء الزر بشكل افتراضي */
    visibility: hidden;
    /* إخفاء الزر بشكل افتراضي */
}

.back-to-top.show {
    opacity: 1;
    /* إظهار الزر */
    visibility: visible;
    /* إظهار الزر */
}

.back-to-top:hover {
    background-color: #ffcc00;
    transform: scale(1.1);
    /* تأثير تكبير عند التحويم */
}


/* تأثير Scroll سلس */

html {
    scroll-behavior: smooth;
}