/* ===================================
   Global Variables & Reset
   =================================== */
:root {
  --primary-color: #FF8C42;
  --primary-dark:  #FF6B35;
  --glass-bg: rgba(255, 255, 255, 0.1);
  --glass-bg-strong: rgba(255, 255, 255, 0.15);
  --glass-blur: 12px;
  --glass-border: rgba(255, 255, 255, 0.2);
  --font-ar: 'Cairo', sans-serif;
  --font-en: 'Poppins', sans-serif;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-ar); line-height: 1.6; color: #ffffff; overflow-x: hidden; background: #0a0a0a; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
html[lang="ar"] { direction: rtl; }
html[lang="en"] { direction: ltr; font-family: var(--font-en); }

/* ===================================
   Header & Navbar
   =================================== */
.header { position: fixed; top: 0; width: 100%; z-index: 1000; background: rgba(0, 0, 0, 0.3); backdrop-filter: blur(10px); border-bottom: 1px solid var(--glass-border); }
.navbar { display: flex; justify-content: space-between; align-items: center; padding: 15px 20px; }
.logo img { height: 50px; }
.nav-links { display: flex; list-style: none; gap: 25px; }
.nav-links a { color: #fff; text-decoration: none; font-weight: 600; font-size: 15px; transition: var(--transition); }
.nav-links a:hover { color: var(--primary-color); }
.lang-btn { background: var(--glass-bg); border: 1px solid var(--glass-border); color: #fff; padding: 5px 15px; border-radius: 20px; text-decoration: none; font-weight: bold; transition: var(--transition); }
.lang-btn:hover { background: var(--primary-color); border-color: var(--primary-color); }
:root{
  --header-h: 80px;
  --hero-max: 1280px;
  --hero-radius: 24px;
  --hero-gap: clamp(18px, 3vw, 50px);
  --hero-pad: clamp(16px, 3vw, 32px);
}

.hero {
  width: 100%;
  overflow: hidden;

}

.hero-swiper {
  width: 100%;
  min-height: calc(100svh - var(--header-h));
  margin-top: var(--header-h);
  position: relative;
  overflow: hidden;
}

.hero-slide {
  width: 100%;
  min-height: calc(100svh - var(--header-h));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--hero-pad);
  box-sizing: border-box;
}

.hero-content {
  width: 100%;
  max-width: var(--hero-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  align-items: center;
  gap: var(--hero-gap);
}

.glass {

  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--hero-radius);
  padding: clamp(18px, 3vw, 34px);
}

.hero-text {
  max-width: 620px;
  color: #fff;
}

.hero-text h1 {
  font-size: clamp(2rem, 5vw, 4.6rem);
  line-height: 1.08;
  margin: 0 0 16px;
}

.hero-text p {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  line-height: 1.8;
  margin: 0 0 26px;
  opacity: 0.92;
}

.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 28px;
  background: linear-gradient(45deg, #007bff, #00c6ff);
  color: #fff;
  border-radius: 999px;
  text-decoration: none;
  transition: transform .25s ease, box-shadow .25s ease;
  box-shadow: 0 10px 30px rgba(0, 198, 255, 0.25);
}

.hero-btn:hover {
  transform: translateY(-2px) scale(1.02);
}

.hero-media {
  width: 100%;
  min-height: clamp(320px, 48vw, 640px);
  aspect-ratio: 16 / 10;
  border-radius: var(--hero-radius);
  overflow: hidden;
  position: relative;
  box-shadow: 0 18px 55px rgba(0,0,0,0.28);

}

.hero-media video,
.hero-image {
  /* بدلاً من تغطية المساحة، نجعل الصورة تظهر كاملة */
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  /* قد تحتاج إلى إضافة لون خلفية مطابق للتصميم */

}
/* أو إذا كنت تستخدم وسم img */
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.swiper-slide {
  opacity: 0;
  transition: opacity .6s ease;
}

.swiper-slide-active {
  opacity: 1;
}

/* animations */
.animate-title,
.animate-subtitle,
.animate-btn {
  opacity: 0;
  transform: translateY(26px);
}

.swiper-slide-active .animate-title {
  animation: fadeUp .8s forwards;
}

.swiper-slide-active .animate-subtitle {
  animation: fadeUp 1s forwards;
}

.swiper-slide-active .animate-btn {
  animation: fadeUp 1.15s forwards;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.swiper-slide-active .hero-image {
  animation: zoomSlow 7s ease forwards;
}

@keyframes zoomSlow {
  from { transform: scale(1.12); }
  to   { transform: scale(1); }
}

.swiper-button-next,
.swiper-button-prev {
  color: #fff;
}

.swiper-pagination-bullet {

  opacity: 1;
}



/* tablet */
@media (max-width: 992px) {
  .hero-slide {
    min-height: auto;
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .hero-content {
    grid-template-columns: 1fr;
  }

  .hero-text {
    order: 2;
    max-width: 100%;
    text-align: center;
  }

  .hero-btns {
    justify-content: center;
  }

  .hero-media {
    order: 1;
    min-height: 360px;
    aspect-ratio: 16 / 9;
  }
}

/* mobile */
@media (max-width: 576px) {
  .hero-swiper {
    min-height: auto;
    margin-top: 72px;
  }

  .hero-slide {
    padding: 14px;
  }

  .glass {
    padding: 18px;
  }

  .hero-text h1 {
    font-size: clamp(1.7rem, 8vw, 2.5rem);
  }

  .hero-text p {
    font-size: 0.98rem;
    line-height: 1.7;
  }

  .hero-media {
    min-height: 240px;
    aspect-ratio: 4 / 3;
    border-radius: 18px;
  }

  .swiper-button-next,
  .swiper-button-prev {
    transform: scale(0.75);
  }
}
/* ===================================
   Section Headers
   =================================== */
.section-header { text-align: center; margin-bottom: 60px; }
.section-header h2 { font-size: 2.5rem; margin-bottom: 15px; position: relative; display: inline-block; }
.section-header p { font-size: 1.1rem; color: #ccc; max-width: 600px; margin: 10px auto 0; }
.section-header .line { width: 70px; height: 4px; background: var(--primary-color); margin: 0 auto; border-radius: 2px; }

/* ===================================
   Glass Cards (Used in About & Services)
   =================================== */
.glass-card { background: var(--glass-bg); backdrop-filter: blur(var(--glass-blur)); border: 1px solid var(--glass-border); border-radius: 20px; padding: 30px; transition: var(--transition); }
.glass-card:hover { transform: translateY(-10px); border-color: var(--primary-color); box-shadow: 0 15px 30px rgba(0,0,0,0.3); }

/* ===================================
   About & Why Us Sections
   =================================== */
.about-section, .why-us-section, .services-section, .gallery-section, .contact-section { padding: 100px 0; }
.about-grid { max-width: 900px; margin: 0 auto; text-align: center; }
.about-text p { font-size: 1.1rem; margin-bottom: 40px; line-height: 1.8; }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; }
.feature-item { background: var(--glass-bg-strong); padding: 30px; border-radius: 20px; border: 1px solid var(--glass-border); }
.feature-item i { font-size: 2.5rem; color: var(--primary-color); margin-bottom: 20px; }
.why-us-card { background: var(--glass-bg-strong); padding: 50px; border-radius: 30px; text-align: center; border: 1px solid var(--glass-border); }

/* ===================================
   Services Section
   =================================== */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.service-card { text-align: center; cursor: pointer; }
.service-icon { width: 70px; height: 70px; background: var(--primary-color); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; font-size: 1.8rem; }
.more-btn { display: inline-block; margin-top: 15px; color: var(--primary-color); font-weight: bold; }

/* ===================================
   Offers Section with Coverflow Effect
   =================================== */
/* =================================================================
   1. إعدادات القسم والسلايدر الرئيسية
================================================================= */
.offers-section {
    padding: 100px 0;
    position: relative; /* ضروري للتأثيرات المتقدمة */
}

.offers-swiper {
    width: 100%;
    padding: 50px 0; /* مساحة رأسية للتأثيرات */
    /* نجعل الشرائح الزائدة ظاهرة جزئياً لإعطاء إيحاء بوجود المزيد */
    overflow: visible;
}

.offers-swiper .swiper-slide {
    display: flex;
    height: auto; /* لضمان أن البطاقات تأخذ ارتفاعها الطبيعي */
    transition: transform 0.5s ease, opacity 0.5s ease; /* حركة أكثر نعومة */
    opacity: 0.5; /* الشرائح غير النشطة تكون باهتة قليلاً */
    transform: scale(0.9); /* الشرائح غير النشطة تكون أصغر قليلاً */
}

.offers-swiper .swiper-slide-active {
    opacity: 1; /* الشريحة النشطة تكون واضحة تماماً */
    transform: scale(1); /* الشريحة النشطة بحجمها الكامل */
}


/* =================================================================
   2. تصميم بطاقة العرض (Offer Card)
================================================================= */
.offer-card {
    background: rgba(30, 30, 30, 0.5); /* خلفية أغمق وأكثر شفافية */
    backdrop-filter: blur(10px); /* تأثير زجاجي ناعم */
    border: 1px solid rgba(255, 255, 255, 0.1); /* حدود شبه شفافة */
    border-radius: 24px; /* زوايا أكثر دائرية */
    overflow: hidden;
    display: flex;
    flex-direction: column;
    width: 100%;
    margin: 0;
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1),
                box-shadow 0.4s cubic-bezier(0.25, 0.8, 0.25, 1),
                border-color 0.4s ease;
}

.offer-card:hover {
    transform: translateY(-12px); /* رفع البطاقة للأعلى بشكل أكبر قليلاً */
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5); /* ظل أكثر عمقاً ونعومة */
    border-color: var(--primary-color);
}


/* =================================================================
   3. تصميم صورة العرض وتأثيراتها
================================================================= */
.offer-img-container {
    height: 220px;
    overflow: hidden;
    position: relative;
}

/* إضافة تدرج لوني فوق الصورة لجعل النص أكثر وضوحاً */
.offer-img-container::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    transition: opacity 0.4s ease;
}

.offer-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1); /* حركة زووم أبطأ وأكثر سلاسة */
}

.offer-card:hover .offer-img {
    transform: scale(1.15); /* زووم أكبر عند التمرير */
}


/* =================================================================
   4. محتوى البطاقة (النصوص والأزرار)
================================================================= */
.offer-body {
    padding: 25px;
    text-align: right;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    position: relative; /* لجعل المحتوى فوق التدرج اللوني */
    z-index: 2;
}

html[lang="en"] .offer-body {
    text-align: left;
}

.offer-duration {
    position: absolute; /* وضع مدة العرض فوق الصورة */
    top: -20px; /* لتبدو كأنها تخرج من الصورة */
    left: 20px;
    background: var(--primary-color);
    color: #fff;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    border: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}
html[lang="ar"] .offer-duration {
    left: auto;
    right: 20px;
}

.offer-title {
    font-size: 1.6rem; /* خط أكبر قليلاً للعنوان */
    font-weight: 700;
    color: #fff;
    margin-top: 20px; /* مسافة لتعويض مكان مدة العرض */
    margin-bottom: 10px;
}

.offer-desc {
    font-size: 1rem;
    color: #c5c5c5; /* لون أفتح قليلاً للوصف */
    line-height: 1.7;
    margin-bottom: 30px;
    flex-grow: 1;
}

.btn-book {
    background: #25D366;
    color: #fff;
    padding: 14px 30px; /* زر أكبر وأكثر وضوحاً */
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    align-self: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.2);
}

.btn-book:hover {
    background: #fff;
    color: #1DAE56; /* تغيير لون النص عند المرور */
    transform: scale(1.05) translateY(-3px); /* تأثير حركة إضافي */
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
}

.btn-book i {
    font-size: 1.3rem;
    transition: transform 0.3s ease;
}
.btn-book:hover i {
    transform: rotate(-15deg); /* حركة بسيطة للأيقونة */
}


/* =================================================================
   5. تصميم أزرار ونقاط التنقل
================================================================= */
.offers-pagination.swiper-pagination-bullets {
    bottom: 10px; /* رفع النقاط قليلاً */
}

.offers-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.4);
    opacity: 1;
    transition: all 0.4s ease;
}

.offers-pagination .swiper-pagination-bullet-active {
    width: 35px;
    border-radius: 6px;
    background-color: var(--primary-color);
}

.offers-nav-next, .offers-nav-prev {
    color: #fff !important;
    background: rgba(0,0,0,0.3); /* خلفية للأسهم لتكون أوضح */
    width: 50px;
    height: 50px;
    border-radius: 50%;
    transition: all 0.3s ease;
    top: 50%;
    transform: translateY(-50%); /* توسيط عمودي دقيق */
}
.offers-nav-next:hover, .offers-nav-prev:hover {
    background: var(--primary-color);
    color: #fff !important;
}
.offers-nav-next::after, .offers-nav-prev::after {
    font-size: 1.2rem !important; /* تصغير حجم أيقونة السهم الداخلية */
    font-weight: bold;
}

/* ===================================
   Gallery Section
   =================================== */
.gallery-section { padding: 100px 0; }
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; }
.gallery-item { position: relative; border-radius: 15px; overflow: hidden; height: 250px; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.gallery-item:hover img { transform: scale(1.1); }
.gallery-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.7); display: flex; flex-direction: column; align-items: center; justify-content: center; opacity: 0; transition: var(--transition); }
.gallery-item:hover .gallery-overlay { opacity: 1; }

/* ===================================
   Contact Section
   =================================== */
.contact-section { padding: 100px 0; }
.contact-wrapper { display: grid; grid-template-columns: 1.5fr 1fr; gap: 40px; align-items: start; }
.contact-form-side { background: var(--glass-bg-strong); padding: 40px; border-radius: 25px; border: 1px solid var(--glass-border); }
.form-group-vertical { margin-bottom: 20px; }
.form-group-vertical label { display: block; margin-bottom: 8px; font-weight: bold; }
.form-group-vertical input, .form-group-vertical textarea { width: 100%; padding: 12px 15px; background: rgba(255,255,255,0.05); border: 1px solid var(--glass-border); border-radius: 10px; color: #fff; font-family: inherit; }
.btn-send-full { width: 100%; padding: 15px; background: var(--primary-color); border: none; border-radius: 10px; color: #fff; font-weight: bold; cursor: pointer; transition: var(--transition); }
.btn-send-full:hover { background: var(--primary-dark); }
.contact-info-side { display: flex; flex-direction: column; gap: 20px; }
.info-card-mini { background: var(--glass-bg-strong); padding: 20px; border-radius: 15px; display: flex; align-items: center; gap: 15px; border: 1px solid var(--glass-border); }
.info-icon-circle { width: 50px; height: 50px; background: var(--primary-color); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; }
.social-links-mini { display: flex; gap: 15px; justify-content: center; margin-top: 10px; }
.social-links-mini a { width: 45px; height: 45px; background: var(--glass-bg-strong); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; text-decoration: none; transition: var(--transition); border: 1px solid var(--glass-border); }
.social-links-mini a:hover { background: var(--primary-color); transform: translateY(-3px); }

/* ===================================
   Footer
   =================================== */
.footer-new { background: #050505; padding: 60px 0 20px; border-top: 1px solid var(--glass-border); }
.footer-grid-new { display: grid; grid-template-columns: 1fr 1.5fr 1fr; gap: 40px; text-align: center; align-items: center; margin-bottom: 40px; }
.footer-logo { height: 60px; margin-bottom: 10px; }
.footer-slogan { color: var(--primary-color); font-weight: bold; }
.footer-links { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: #ccc; text-decoration: none; transition: var(--transition); }
.footer-links a:hover { color: var(--primary-color); }
.footer-bottom { text-align: center; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.05); color: #777; font-size: 0.9rem; }

/* ===================================
   WhatsApp & Modals
   =================================== */
.whatsapp-float { position: fixed; bottom: 30px; right: 30px; background: #25D366; color: #fff; width: 60px; height: 60px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 30px; z-index: 1000; box-shadow: 0 5px 15px rgba(0,0,0,0.3); }
html[lang="ar"] .whatsapp-float { right: auto; left: 30px; }
.modal { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.8); z-index: 2000; backdrop-filter: blur(5px); padding: 20px; overflow-y: auto; }
.modal-content { background: #fff; color: #333; max-width: 700px; margin: 50px auto; border-radius: 25px; overflow: hidden; position: relative; }
.close-modal { position: absolute; top: 15px; right: 20px; font-size: 30px; cursor: pointer; color: #fff; z-index: 10; }
html[lang="ar"] .close-modal { right: auto; left: 20px; }
.modal-header-custom { background: var(--primary-color); padding: 40px 20px; text-align: center; color: #fff; }
.modal-icon-circle { width: 80px; height: 80px; background: rgba(255,255,255,0.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 15px; font-size: 2.5rem; }
.modal-body-custom { padding: 30px; }
.modal-section { margin-bottom: 25px; }
.modal-section h3 { color: var(--primary-color); margin-bottom: 10px; display: flex; align-items: center; gap: 10px; }
.modal-list { list-style: none; padding: 0; }
.modal-list li { margin-bottom: 8px; display: flex; align-items: center; gap: 10px; }
.modal-list i { color: #25D366; }
.modal-features { display: flex; gap: 15px; flex-wrap: wrap; margin-top: 15px; }
.m-feat { background: #f5f5f5; padding: 10px 15px; border-radius: 10px; display: flex; align-items: center; gap: 8px; font-size: 0.9rem; }
.m-feat i { color: var(--primary-color); }
.btn-quote { display: block; width: 100%; background: var(--primary-color); color: #fff; text-align: center; padding: 15px; border-radius: 15px; text-decoration: none; font-weight: bold; margin-top: 20px; }

/* ===================================
   Responsive Design
   =================================== */
@media (max-width: 1024px) {
  .hero-swiper { height: 80vh; min-height: 450px; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hero-swiper { height: 100svh; min-height: 400px; }
  .hero-content { padding: 15px; }
  .hero-btns { flex-direction: column; align-items: center; gap: 10px; }
  .hero-btn { width: 80%; text-align: center; }
  .hero-swiper .swiper-button-next,
  .hero-swiper .swiper-button-prev { display: none; }
  .contact-wrapper { grid-template-columns: 1fr; }
  .footer-grid-new { grid-template-columns: 1fr; gap: 30px; }
  .footer-col.footer-center { order: -1; }
  .offers-swiper .swiper-slide { width: 280px; }
  .offers-nav-next, .offers-nav-prev { display: none; }
}
@media (max-width: 480px) {
  .hero-swiper { height: 100svh; min-height: 350px; }
  .hero-content h1 { font-size: 1.6rem; }
  .hero-content p { font-size: 0.85rem; margin-bottom: 25px; }
  .hero-btn { width: 90%; padding: 10px 20px; }
}
/* ===================================
   Fixed Background Video
   =================================== */
.fixed-bg-video {
  position: fixed; /* يجعله ثابتًا في مكانه أثناء التمرير */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2; /* يجعله خلف كل العناصر الأخرى */
  overflow: hidden;
}

.fixed-bg-video video {
  width: 100%;
  height: 100%;
  object-fit: cover; /* يضمن ملء الفيديو للشاشة دون تشويه */
}

/* طبقة تعتيم فوق الفيديو لتحسين قراءة النص */
.fixed-bg-video::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7); /* يمكنك تعديل درجة التعتيم من هنا */
    z-index: -1; /* يضعها بين الفيديو والمحتوى */
}
/* ===================================
   Service Modal Styles (NEW)
   =================================== */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    cursor: pointer;
}

.modal-content {
    position: relative;
    background: #1a1a1a; /* Darker background for contrast */
    color: #f0f0f0;
    max-width: 750px;
    width: 100%;
    max-height: 90vh;
    border-radius: 25px;
    border: 1px solid var(--glass-border);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    transform: scale(0.95);
    transition: transform 0.3s ease;
}

.modal.active .modal-content {
    transform: scale(1);
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 35px;
    line-height: 1;
    font-weight: 300;
    cursor: pointer;
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: background 0.3s ease, transform 0.3s ease;
}

html[lang="ar"] .close-modal {
    right: auto;
    left: 20px;
}

.close-modal:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.modal-header-custom {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    padding: 40px 30px;
    text-align: center;
    color: #fff;
    border-top-left-radius: 25px;
    border-top-right-radius: 25px;
    position: relative;
}

.modal-icon-circle {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2.8rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.modal-header-custom h2 {
    font-size: 2.2rem;
    font-weight: 900;
    margin: 0;
}

.modal-body-custom {
    padding: 35px;
    overflow-y: auto;
}

.modal-section {
    margin-bottom: 30px;
    border-bottom: 1px solid var(--glass-border);
    padding-bottom: 25px;
}
.modal-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.modal-section h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.4rem;
}

.modal-section p {
    line-height: 1.8;
    color: #ccc;
}

.modal-list {
    list-style: none;
    padding: 0;
}

.modal-list li {
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 1rem;
}

.modal-list i.fa-check {
    color: #25D366;
    margin-top: 5px;
}

.modal-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.m-feat {
    background: var(--glass-bg);
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid var(--glass-border);
    transition: var(--transition);
}
.m-feat:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.m-feat i {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 10px;
    display: block;
}
.m-feat span {
    font-weight: bold;
    color: #fff;
}

.modal-footer-custom {
    padding: 25px 35px;
    background: rgba(0,0,0,0.2);
    border-top: 1px solid var(--glass-border);
    border-bottom-left-radius: 25px;
    border-bottom-right-radius: 25px;
}

.btn-quote {
    display: block;
    width: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: #fff;
    text-align: center;
    padding: 15px;
    border-radius: 15px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: var(--transition);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.25);
}

.btn-quote:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(255, 107, 53, 0.35);
}

.btn-quote i {
    transition: transform 0.3s ease;
}
html[lang="ar"] .btn-quote:hover i {
    transform: translateX(-5px);
}
html[lang="en"] .btn-quote:hover i {
    transform: translateX(5px);
}


/* ===================================
   Form Message (Contact Form Status)
   =================================== */
.form-message {
    padding: 14px 18px;
    border-radius: 10px;
    margin-bottom: 15px;
    font-weight: bold;
    font-size: 0.95rem;
    text-align: center;
    display: none;
    animation: fadeInMsg 0.3s ease;
}
.form-message.success {
    background: rgba(37, 211, 102, 0.15);
    border: 1px solid rgba(37, 211, 102, 0.4);
    color: #25D366;
}
.form-message.error {
    background: rgba(255, 69, 58, 0.15);
    border: 1px solid rgba(255, 69, 58, 0.4);
    color: #ff6b6b;
}
@keyframes fadeInMsg {
    from { opacity: 0; transform: translateY(-8px); }
    to   { opacity: 1; transform: translateY(0); }
}
