/* === لوحة الألوان (ذهبي رملي) === */
:root{
  --gold:#d4af37;
  --sand:#c8b38a;
  --sand-light:#e1d5bc;
  --dark:#0b0b0d;
  --dark-soft:#17171a;
  --gray:#bfbfbf;
  --white:#ffffff;
  --overlay:rgba(0,0,0,0.55);
  --shadow:0 0 30px rgba(0,0,0,0.4);
  --radius-lg:18px;
  --transition:all .4s ease;
}

*{box-sizing:border-box;margin:0;padding:0}
html,body{height:100%}
body{
  font-family:"Tajawal",sans-serif;
  background:var(--dark);
  color:var(--white);
  scroll-behavior:smooth;
}

/* ===== الهيدر ===== */
.main-header{
  position:fixed;top:0;left:0;right:0;z-index:1000;
  display:flex;align-items:center;justify-content:space-between;
  padding:10px 60px;
  background:rgba(11,11,13,0.6);
  backdrop-filter:blur(16px);
  border-bottom:1px solid rgba(255,255,255,0.08);
}
.logo{display:flex;align-items:center;gap:10px}
.logo img{width:52px;height:52px;object-fit:contain}
.logo span{font-weight:700;font-size:1.1rem;color:var(--gold)}

.main-nav ul{list-style:none;display:flex;gap:22px}
.main-nav a{
  text-decoration:none;color:var(--gray);font-weight:500;
  position:relative;transition:color .3s ease;
}
.main-nav a::after{
  content:"";position:absolute;right:0;bottom:-6px;height:2px;width:0;
  background:var(--gold);transition:width .3s ease;
}
.main-nav a:hover,.main-nav a.active{
  color:var(--gold);
}
.main-nav a:hover::after,.main-nav a.active::after{
  width:100%;
}

.lang-btn{
  border:none;outline:none;cursor:pointer;
  padding:6px 14px;border-radius:999px;
  background:var(--gold);color:#000;font-weight:700;
  box-shadow:0 0 18px rgba(212,175,55,0.7);
  transition:var(--transition);
}
.lang-btn:hover{
  background:var(--sand);
  transform:translateY(-1px);
}

/* ===== هيرو بالفيديو ===== */
.hero{
  position:relative;
  height:100vh;
  overflow:hidden;
}
.hero-video{
  position:absolute;top:0;left:0;width:100%;height:100%;
  object-fit:cover;
}
.hero-overlay{
  position:absolute;inset:0;
  background:linear-gradient(180deg,rgba(0,0,0,0.75),rgba(0,0,0,0.85));
}
.hero-content{
  position:relative;
  z-index:2;
  height:100%;
  display:flex;flex-direction:column;justify-content:center;align-items:center;
  text-align:center;
  padding:0 20px;
}
.hero-title{
  font-size:2.4rem;
  margin-bottom:14px;
  color:var(--sand-light);
  text-shadow:0 0 20px rgba(0,0,0,0.8);
}
.hero-subtitle{
  max-width:720px;
  color:var(--gray);
  margin-bottom:26px;
}
.hero-cta .btn-gold{
  font-size:1rem;
}

/* ===== أزرار عامة ===== */
.btn{
  display:inline-block;
  border-radius:999px;
  padding:10px 26px;
  border:none;
  cursor:pointer;
  font-weight:600;
  text-decoration:none;
  transition:var(--transition);
}
.btn-gold{
  background:var(--gold);
  color:#000;
  box-shadow:0 0 18px rgba(212,175,55,0.6);
}
.btn-gold:hover{
  background:var(--sand);
  transform:translateY(-2px);
}

/* ===== الأقسام العامة ===== */
.section{
  padding:100px 60px 80px;
}
.section-alt{
  background:radial-gradient(circle at top,var(--dark-soft) 0,var(--dark) 55%);
}
.section-inner{
  max-width:1200px;
  margin:0 auto;
}
.section-header{
  text-align:center;
  margin-bottom:32px;
}
.section-title{
  font-size:1.8rem;
  color:var(--sand-light);
  margin-bottom:8px;
}
.section-sub{
  color:var(--gray);
}

/* ===== من نحن ===== */
.about-grid{
  display:grid;
  grid-template-columns: minmax(0,1.2fr) minmax(0,1fr);
  gap:30px;
  align-items:center;
}
.about-text p{
  line-height:1.8;
  color:var(--gray);
}
.about-media{display:flex;justify-content:center}
.about-image-frame{
  position:relative;
  border-radius:var(--radius-lg);
  overflow:hidden;
  box-shadow:var(--shadow);
}
.about-image-frame img{
  display:block;width:100%;height:100%;object-fit:cover;
}
.about-badge{
  position:absolute;
  bottom:12px;
  left:12px;
  background:rgba(0,0,0,0.7);
  color:var(--sand-light);
  padding:6px 12px;
  border-radius:999px;
  font-size:0.8rem;
}

/* ===== الإحصائيات ===== */
.stats-section{
  padding:60px 60px 70px;
  background:linear-gradient(90deg,rgba(27,24,19,0.95),rgba(11,11,13,0.98));
}
.stats-grid{
  max-width:1100px;margin:0 auto;
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:20px;
}
.stat-box{
  text-align:center;
  padding:18px 12px;
  border-radius:var(--radius-lg);
  border:1px solid rgba(255,255,255,0.08);
  background:rgba(0,0,0,0.45);
  box-shadow:0 0 20px rgba(0,0,0,0.55);
}
.stat-number{
  font-size:1.7rem;
  font-weight:800;
  color:var(--gold);
  margin-bottom:6px;
}
.stat-label{
  font-size:0.9rem;
  color:var(--sand-light);
}

/* ===== الخدمات ===== */
.cards-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:24px;
}
.card{
  background:rgba(23,23,26,0.95);
  border-radius:var(--radius-lg);
  padding:20px 18px;
  border:1px solid rgba(255,255,255,0.06);
  box-shadow:0 0 22px rgba(0,0,0,0.7);
  transition:var(--transition);
}
.card:hover{
  transform:translateY(-4px) translateZ(0);
  box-shadow:0 0 30px rgba(0,0,0,0.9);
  border-color:rgba(212,175,55,0.7);
}
.card-icon{
  font-size:2rem;
  color:var(--gold);
  margin-bottom:8px;
}
.card h3{
  margin-bottom:6px;
  color:var(--sand-light);
}
.card p{
  color:var(--gray);
  font-size:0.95rem;
  line-height:1.7;
}

/* ===== الفنادق ===== */
.hotels-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:24px;
}
.hotel-card{
  background:rgba(10,10,12,0.9);
  border-radius:var(--radius-lg);
  border:1px solid rgba(255,255,255,0.06);
  overflow:hidden;
  display:flex;
  flex-direction:column;
  box-shadow:0 0 24px rgba(0,0,0,0.8);
  transition:var(--transition);
}
.hotel-card:hover{
  transform:translateY(-4px);
  box-shadow:0 0 32px rgba(0,0,0,0.95);
  border-color:rgba(212,175,55,0.6);
}
.hotel-image img{
  display:block;width:100%;height:200px;object-fit:cover;
}
.hotel-body{
  padding:12px 14px 16px;
}
.hotel-body h3{
  margin-bottom:6px;
  color:var(--sand-light);
}
.hotel-body p{
  color:var(--gray);
  font-size:0.92rem;
  line-height:1.7;
}

/* ===== تواصل معنا ===== */
.contact-section{
  padding-bottom:100px;
}
.contact-grid{
  display:grid;
  grid-template-columns:minmax(0,1.1fr) minmax(0,1fr);
  gap:28px;
  align-items:flex-start;
}
.contact-info p{
  margin-bottom:10px;
  display:flex;
  align-items:center;
  gap:8px;
  color:var(--gray);
}
.contact-info i{
  color:var(--gold);
}
.contact-actions{
  margin-top:12px;
}
.whatsapp-icon{
  display:inline-flex;align-items:center;justify-content:center;
  width:46px;height:46px;border-radius:50%;
  background:#25d366;color:#fff;
  font-size:1.6rem;
  box-shadow:0 0 18px rgba(37,211,102,0.7);
  transition:var(--transition);
}
.whatsapp-icon:hover{
  transform:translateY(-2px) scale(1.04);
  box-shadow:0 0 26px rgba(37,211,102,0.9);
}

.contact-form{
  background:rgba(23,23,26,0.96);
  border-radius:var(--radius-lg);
  border:1px solid rgba(255,255,255,0.08);
  padding:18px 16px;
  box-shadow:0 0 24px rgba(0,0,0,0.85);
  display:flex;
  flex-direction:column;
  gap:10px;
}
.contact-form input,
.contact-form textarea{
  width:100%;
  border-radius:10px;
  border:1px solid rgba(255,255,255,0.12);
  background:rgba(10,10,12,0.9);
  color:var(--white);
  padding:8px 10px;
  font-family:"Tajawal",sans-serif;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder{
  color:#7c7c7c;
}
/* ===== الفوتر ===== */
.main-footer{
  border-top:1px solid rgba(255,255,255,0.08);
  padding:16px 20px 18px;
  text-align:center;
  background:#050506;
  color:#C9B27C;
  font-size:0.9rem;
}

.main-footer p {
  color:#C9B27C;
}

.footer-social{
  margin-top:8px;
}

.footer-social a{
  color:#C9B27C;
  margin:0 6px;
  transition:var(--transition);
}

.footer-social a:hover{
  transform:translateY(-1px);
  color:#d4af37;
}

/* الهايلايت */
.main-footer ::selection {
  background-color: #C9B27C;
  color: #000;
}

.main-footer ::-moz-selection {
  background-color: #C9B27C;
  color: #000;
}


/* ===== حركات – عناصر لها data-animate ===== */
[data-animate]{
  opacity:0;
  transform:translateY(24px);
  transition:opacity .6s ease, transform .6s ease;
}
[data-animate].visible{
  opacity:1;
  transform:translateY(0);
}

/* ===== استجابة للجوال ===== */
@media(max-width:992px){
  .main-header{padding:10px 18px}
  .main-nav ul{gap:14px}
  .section{padding:90px 20px 70px}
  .stats-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
  .cards-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
  .hotels-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
  .about-grid{grid-template-columns:1fr}
  .contact-grid{grid-template-columns:1fr}
}
@media(max-width:640px){
  .hero-title{font-size:1.8rem}
  .stats-grid{grid-template-columns:1fr}
  .cards-grid{grid-template-columns:1fr}
  .hotels-grid{grid-template-columns:1fr}
  .main-nav{display:none;} /* ممكن لاحقًا نضيف قائمة موبايل */
}

.video-wrapper {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 2.4s ease;
}

.hero-video.active {
  opacity: 1;
}
/* قسم من نحن */
.about-section {
  padding: 140px 10%;
  background: linear-gradient(to bottom, #0f0f0f, #111);
  position: relative;
  overflow: hidden;
}

.about-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

/* الصورة */
.img-box {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.05);
  transform: translateY(30px);
  opacity: 0;
}

.img-box img {
  width: 420px;
  border-radius: 22px;
  display: block;
  transition: transform 1.2s ease;
}

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

/* شارة الخبرة */
.exp-badge {
  position: absolute;
  bottom: 15px;
  right: 15px;
  background: #d4af37;
  color: #000;
  padding: 8px 20px;
  font-weight: 700;
  border-radius: 20px;
  font-size: 14px;
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
}

/* النص */
.section-title {
  font-size: 44px;
  margin-bottom: 10px;
  opacity: 0;
}

.gold {
  color: #d4af37;
  text-shadow: 0 0 20px rgba(212,175,55,0.35);
}

.section-subtitle {
  font-size: 20px;
  color: #ddd;
  margin-bottom: 20px;
  opacity: 0;
}

.about-desc {
  color: #ccc;
  line-height: 1.9;
  font-size: 18px;
  max-width: 600px;
  opacity: 0;
}

/* --- حركات الدخول --- */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: 1.4s ease;
}

.fade-left {
  opacity: 0;
  transform: translateX(60px);
  transition: 1.4s ease;
}

.animate {
  opacity: 1 !important;
  transform: translate(0) !important;
}

/* مؤثر خلفي حركي */
.about-section::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(212,175,55,0.25), transparent 70%);
  filter: blur(80px);
  animation: glowMove 12s infinite linear;
}

@keyframes glowMove {
  0% { transform: translate(0px, 0px); }
  50% { transform: translate(-120px, 80px); }
  100% { transform: translate(0px, 0px); }
}
.img-box {
  opacity: 1 !important;
  transform: none !important;
}
/* الحركة السينمائية قبل ظهور الصورة */
.img-wrapper {
  position: relative;
  width: 420px;
  border-radius: 20px;
  overflow: hidden;
  opacity: 0;
  transform: translateY(60px) scale(1.15) rotate(-6deg);
  filter: blur(20px);
  transition:
    opacity 1.2s ease-out,
    transform 1.4s cubic-bezier(0.22, 1, 0.36, 1),
    filter 1.4s ease-out;
}

/* القناع */
.img-mask {
  height: 0%;
  overflow: hidden;
  transition: height 1.2s cubic-bezier(0.85, 0, 0.15, 1);
}

/* الصورة داخل القناع */
.img-wrapper img {
  width: 100%;
  display: block;
  transform: scale(1.05);
  transition: transform 1.2s ease-out;
}

/* بعد التفعيل – السينمائي */
.img-wrapper.cinematic {
  opacity: 1;
  transform: translateY(0) scale(1) rotate(0deg);
  filter: blur(0);
}

.img-wrapper.cinematic .img-mask {
  height: 100%;
}

.img-wrapper.cinematic img {
  transform: scale(1);
}

/* ===== Countries Section ===== */

.countries-section {
  padding: 80px 0;
  text-align: center;
}

.countries-section .section-title {
  font-size: 2.4rem;
  color: var(--gold);
  margin-bottom: 10px;
}

.countries-section .section-subtitle {
  opacity: 0.8;
  margin-bottom: 40px;
}

.countries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 28px;
  max-width: 1000px;
  margin: auto;
}

.country {
  background: rgba(255,255,255,0.05);
  padding: 20px 10px;
  border-radius: 18px;
  transition: .35s ease;
  cursor: pointer;
  opacity: 0;
  transform: translateY(25px);
  filter: blur(5px);
}

.country img {
  width: 55px;
  height: 35px;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 0 0 10px rgba(0,0,0,0.4);
}

.country span {
  display: block;
  margin-top: 10px;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
}

/* Hover effect */
.country:hover {
  transform: translateY(-10px) scale(1.05);
  filter: blur(0);
  background: rgba(212,175,55,0.15);
  box-shadow: 0 0 25px rgba(212,175,55,0.5);
}

/* Reveal on scroll */
.country.show {
  opacity: 1 !important;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

/* ===== Countries Slider Section ===== */
.countries-slider-section {
  padding: 80px 0;
  text-align: center;
}

.countries-slider-section .section-title {
  font-size: 2.4rem;
  color: var(--gold);
  margin-bottom: 10px;
}

.countries-slider-section .section-subtitle {
  opacity: 0.8;
  color: #ddd;
  margin-bottom: 40px;
}

/* ===== Slider Container ===== */
.flags-slider {
  overflow: hidden;
  width: 100%;
  position: relative;
  padding: 10px 0;
}

.flags-track {
  display: flex;
  gap: 40px;
  align-items: center;
  animation: slideFlagsRTL 30s linear infinite;
  will-change: transform;
}

/* عناصر الدولة */
.flag-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 110px;
  cursor: pointer;
  opacity: 0.85;
  transition: 0.35s ease;
  position: relative;
  transform-style: preserve-3d;
}

.flag-item img {
  width: 60px;
  height: 40px;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 0 0 12px rgba(0,0,0,0.4);
  transition: 0.35s ease;
}

.flag-item span {
  margin-top: 8px;
  font-size: 14px;
  color: #fff;
}

/* Hover effect */
.flag-item:hover {
  transform: perspective(600px) rotateX(8deg) rotateY(-8deg) scale(1.18);
  opacity: 1;
}

.flag-item:hover img {
  box-shadow: 0 0 18px rgba(212,175,55,0.9), 0 0 25px rgba(212,175,55,0.5);
}

/* Shine Effect */
.flag-item::after {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 80%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.35), transparent);
  transform: skewX(-25deg);
  transition: 0.7s;
}

.flag-item:hover::after {
  left: 120%;
}

/* Pause animation on hover */
.flags-slider:hover .flags-track {
  animation-play-state: paused !important;
}

/* ===== Animations ===== */

/* RTL animation (الموقع عربي) */
@keyframes slideFlagsRTL {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* LTR animation (لو سوينا الإنجليزية) */
@keyframes slideFlagsLTR {
  from { transform: translateX(0); }
  to   { transform: translateX(50%); }
}

/* ===== Country Info Box ===== */
.country-info-box {
  width: 320px;
  margin: 25px auto 0;
  padding: 18px 20px;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(14px);
  border-radius: 14px;
  text-align: center;
  color: #fff;
  opacity: 0;
  transform: translateY(15px);
  transition: 0.45s ease;
  box-shadow: 0 0 20px rgba(0,0,0,0.25);
  border: 1px solid rgba(255,255,255,0.1);
}

.country-info-box.show {
  opacity: 1;
  transform: translateY(0);
}

/* ========= قسم الإحصائيات ========= */
.stats-section {
  padding: 90px 0;
  background: linear-gradient(180deg, #0d0d0e, #111);
  text-align: center;
}

.stats-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.stat-box {
  padding: 25px 15px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: 0 0 25px rgba(0,0,0,0.3);
  transition: 0.4s ease;
  cursor: pointer;
  transform: translateY(30px);
  opacity: 0;
}

.stat-box.show {
  opacity: 1;
  transform: translateY(0);
}

.stat-number {
  font-size: 2.4rem;
  font-weight: 900;
  color: #d4af37;
  margin-bottom: 8px;
}

.stat-title {
  color: #eee;
  font-size: 1.2rem;
  font-weight: 700;
}

.stat-desc {
  margin-top: 6px;
  color: #bbb;
  font-size: 0.95rem;
  line-height: 1.6;
}

.stat-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 35px rgba(212,175,55,0.35);
  border-color: rgba(212,175,55,0.5);
}

html[dir="rtl"] .flags-track {
  animation: slideFlagsRTL 25s linear infinite;
}

@keyframes slideFlagsRTL {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}


.hotels-section {
  padding: 100px 60px;
  text-align: center;
}

.hotels-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.hotel-card {
  background: rgba(255,255,255,0.03);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 0 30px rgba(0,0,0,0.3);
  transition: 0.4s ease;
  position: relative;
}

.hotel-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 0 30px rgba(212,175,55,0.4);
}

.hotel-image img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: 0.5s ease;
}

.hotel-card:hover img {
  transform: scale(1.08);
  filter: brightness(0.8);
}

.hotel-info {
  padding: 22px;
  text-align: center;
}

.hotel-title {
  color: var(--sand-light);
  font-size: 22px;
  margin-bottom: 10px;
}

.hotel-details {
  list-style: none;
  padding: 0;
  margin: 15px 0;
}

.hotel-details li {
  margin: 4px 0;
  font-size: 14px;
  color: #ddd;
  opacity: 0.8;
}

.hotel-book-btn {
  margin-top: 12px;
  width: 100%;
}

.hotel-details li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #ddd;
  font-size: 14px;
}

.hotel-details .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
}

/* =============================== */
/*   🔥 تحسين العرض على الجوال     */
/* =============================== */

@media (max-width: 768px) {

  /* الهيدر */
  .main-header {
    padding: 10px 18px;
  }

  .main-nav {
    display: none; /* سنضيف له قائمة لاحقاً */
  }

  /* الهيرو */
  .hero-title {
    font-size: 1.6rem !important;
  }

  .hero-subtitle {
    font-size: 0.95rem !important;
    max-width: 90%;
  }

  /* ===== قسم من نحن ===== */
  .about-section {
    padding: 80px 25px !important;
  }

  .about-wrapper {
    flex-direction: column !important;
    gap: 30px !important;
  }

  .img-wrapper,
  .img-box img {
    width: 100% !important;
    max-width: 330px !important;
  }

  .section-title {
    font-size: 28px !important;
    text-align: center;
  }

  .section-subtitle {
    font-size: 16px !important;
    text-align: center;
  }

  .about-desc {
    font-size: 15px !important;
    text-align: center;
  }

  /* ===== الفنادق ===== */
  .hotels-grid {
    grid-template-columns: 1fr !important;
    gap: 20px;
    padding: 0 10px;
  }

  .hotel-image img {
    height: 220px !important;
  }

  .hotel-card {
    border-radius: 16px !important;
  }

  .hotel-title {
    font-size: 18px !important;
  }

  /* ===== الإحصائيات ===== */
  .stats-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 16px !important;
  }

  .stat-box {
    padding: 14px !important;
  }

  .stat-number {
    font-size: 1.4rem !important;
  }

  /* ===== قسم الدول ===== */
  .flags-track {
    gap: 24px !important;
  }

  .flag-item img {
    width: 50px !important;
    height: 32px !important;
  }

  /* ===== فورم الحجز ===== */
  .booking-section {
    padding: 60px 20px !important;
  }

  .booking-form {
    padding: 0 5px;
  }

  .booking-form input,
  .booking-form select,
  .booking-form textarea {
    font-size: 14px !important;
    padding: 12px !important;
  }

  .btn-gold {
    font-size: 15px !important;
    padding: 10px 22px !important;
  }

  /* ===== الفوتر ===== */
  .main-footer {
    font-size: 14px !important;
  }
}

/* =============================== */
/*  🔥  تحسين مهم جداً للأجهزة 360px */
/* =============================== */

@media (max-width: 400px) {

  .hero-title {
    font-size: 1.4rem !important;
  }

  .hero-subtitle {
    font-size: 0.85rem !important;
  }

  .section-title {
    font-size: 24px !important;
  }

  .hotel-image img {
    height: 190px !important;
  }

  .flag-item img {
    width: 45px !important;
  }
}

.about-section {
  position: relative;
  overflow: hidden;
}

.about-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.about-wrapper {
  position: relative;
  z-index: 2;
}

/* طبقة تغميق خفيفة لوضوح النص */
.about-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

/* طبقة تغميق + تدرج */
.about-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.75),
    rgba(0, 0, 0, 0.45)
  );
  z-index: 1;
}

/* الفيديو */
.about-video {
  filter: blur(2px) brightness(0.7);
}

/* النص */
.about-text,
.section-title,
.section-subtitle,
.about-desc {
  color: #ffffff;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.8);
}
/* ===== لماذا أبراج الحسام ===== */
.why-section {
  padding: 100px 0;
  background: #0c1a24;
  color: #fff;
}

.why-wrapper {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.why-section .section-title {
  font-size: 2.8rem;
  margin-bottom: 15px;
}

.why-section .section-subtitle {
  color: #c9a14a;
  margin-bottom: 60px;
  font-size: 1.1rem;
}

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

.why-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 35px 25px;
  border-radius: 16px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.why-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.why-card h3 {
  margin-bottom: 15px;
  font-size: 1.2rem;
  color: #c9a14a;
}

.why-card p {
  line-height: 1.8;
  font-size: 0.95rem;
}

/* ======================================
   خدماتنا – نفس هوية لماذا أبراج الحسام
   ====================================== */

.services-section {
  padding: 100px 0;
  background: linear-gradient(
    180deg,
    #0c1a24 0%,
    #07131b 50%,
    #050b10 100%
  );
  position: relative;
}

.services-wrapper {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

/* ===== العنوان الرئيسي ===== */
.services-section .section-title {
  color: #ffffff;
  font-size: 2.6rem;
  font-weight: 700;
  margin-bottom: 15px;
}

/* ===== الوصف أسفل العنوان ===== */
.services-section .section-subtitle {
  color: #d4af37; /* ذهبي رسمي */
  font-size: 1rem;
  margin-bottom: 70px;
  line-height: 1.8;
}

/* ===== شبكة الخدمات ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

/* ===== بطاقة الخدمة ===== */
.service-card {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 18px;
  padding: 38px 30px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(6px);
  text-align: right;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

/* ===== عنوان الخدمة ===== */
.service-card h3 {
  color: #d4af37;
  font-size: 1.1rem;
  margin-bottom: 15px;
  font-weight: 600;
}

/* ===== نص الخدمة ===== */
.service-card p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  line-height: 1.85;
}

/* ===== Hover رسمي وهادئ ===== */
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}

/* ===== تحسين للجوال ===== */
@media (max-width: 768px) {
  .services-section {
    padding: 80px 0;
  }

  .services-section .section-title {
    font-size: 2.1rem;
  }

  .services-section .section-subtitle {
    margin-bottom: 50px;
    font-size: 0.95rem;
  }

  .service-card {
    padding: 30px 24px;
  }
}

/* ===== Scroll Reveal Effect (Official) ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* ===== Countries Prestige Section ===== */
.countries-prestige {
  background: radial-gradient(circle at top, #0e1a24, #02070c);
  padding: 120px 0;
  text-align: center;
}

/* Container (لو ما عندك) */
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* Title */
.countries-prestige .section-title {
  color: #ffffff;
  font-size: 44px;
  font-weight: 700;
  margin-bottom: 12px;
}

/* Subtitle */
.countries-prestige .section-subtitle {
  color: #d4af37;
  font-size: 17px;
  margin-bottom: 70px;
}

/* Grid */
.countries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 35px;
  max-width: 1100px;
  margin: 0 auto;
}

/* Country Card */
.country-card {
  background: linear-gradient(145deg, #0f202d, #09131b);
  border-radius: 50px;
  padding: 22px 15px 18px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.55);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.country-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 55px rgba(212, 175, 55, 0.35);
}

/* Flag */
.country-card img {
  width: 60px;
  border-radius: 8px;
  margin-bottom: 12px;
}

/* Country Name */
.country-card span {
  display: block;
  color: #e0e0e0;
  font-size: 14px;
  letter-spacing: 0.3px;
}

/* Responsive */
@media (max-width: 768px) {
  .countries-prestige .section-title {
    font-size: 30px;
  }

  .countries-prestige .section-subtitle {
    font-size: 15px;
  }

  .country-card img {
    width: 52px;
  }
}

/* Section */
.countries-prestige {
  background: radial-gradient(circle at top, #0e1a24, #02070c);
  padding: 120px 0;
  text-align: center;
}

.section-title {
  color: #fff;
  font-size: 42px;
}

.section-subtitle {
  color: #d4af37;
  margin-bottom: 40px;
}

/* Years */
.years-bar {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.year-btn {
  background: transparent;
  border: 1px solid #d4af37;
  color: #d4af37;
  padding: 8px 18px;
  border-radius: 20px;
  cursor: pointer;
}

.year-btn.active,
.year-btn:hover {
  background: #d4af37;
  color: #000;
}

/* Grid */
.countries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 35px;
  max-width: 1100px;
  margin: auto;
}

/* Card */
.country-card {
  background: linear-gradient(145deg, #0f202d, #09131b);
  border-radius: 40px;
  padding: 20px 15px 25px;
  position: relative;
  transition: transform 0.3s;
}

.country-card:hover {
  transform: translateY(-8px);
}

.country-card img {
  width: 60px;
  margin-bottom: 10px;
}

.country-card span {
  color: #fff;
}

/* Tooltip */
.tooltip {
  position: absolute;
  bottom: 110%;
  left: 50%;
  transform: translateX(-50%);
  background: #000;
  color: #d4af37;
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 13px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: 0.3s;
  box-shadow: 0 10px 30px rgba(0,0,0,0.6);
}

.country-card:hover .tooltip {
  opacity: 1;
}

/* ===== WHY US SECTION ===== */
.why-section {
  background: linear-gradient(180deg, #02070c 0%, #0b1620 100%);
  padding: 120px 0;
}

.why-wrapper {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

/* Titles */
.why-section .section-title {
  color: #ffffff;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 12px;
}

.why-section .section-subtitle {
  color: #d4af37;
  font-size: 16px;
  margin-bottom: 70px;
}

/* Cards Container */
.why-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
}

/* Card */
.why-card {
  background: linear-gradient(145deg, #0f202d, #09131b);
  border-radius: 20px;
  padding: 35px 30px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  color: #cfd8dc;
}

.why-card h3 {
  color: #ffffff;
  font-size: 20px;
  margin-bottom: 15px;
}

.why-card p {
  font-size: 15px;
  line-height: 1.8;
}

/* Hover */
.why-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(212, 175, 55, 0.35);
}

/* ===== Reveal Fix ===== */
.reveal {
  opacity: 1 !important;
  transform: none !important;
}

/* Responsive */
@media (max-width: 768px) {
  .why-section {
    padding: 80px 0;
  }

  .why-section .section-title {
    font-size: 30px;
  }

  .why-card {
    padding: 30px 22px;
  }
}
/* ===== Booking Banner ===== */
.booking-banner {
  background: linear-gradient(135deg, #0b1620, #02070c);
  padding: 80px 0;
  margin-top: 120px;
}

.booking-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  max-width: 1200px;
}

/* Text */
.booking-text h2 {
  color: #ffffff;
  font-size: 36px;
  margin-bottom: 15px;
}

.booking-text p {
  color: #cfd8dc;
  font-size: 16px;
  line-height: 1.8;
  max-width: 520px;
}

/* Button */
.booking-btn {
  display: inline-block;
  background: linear-gradient(135deg, #d4af37, #b8962e);
  color: #000;
  padding: 16px 36px;
  border-radius: 40px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
  transition: all 0.35s ease;
}

.booking-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 45px rgba(212, 175, 55, 0.6);
}

/* Responsive */
@media (max-width: 768px) {
  .booking-content {
    flex-direction: column;
    text-align: center;
  }

  .booking-text h2 {
    font-size: 28px;
  }

  .booking-banner {
    padding: 60px 0;
  }
}

.booking-banner {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0b1620, #02070c);
}

/* خطوط متحركة رسمية */
.booking-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      120deg,
      transparent 30%,
      rgba(212,175,55,0.08) 45%,
      transparent 60%
    );
  animation: scanMove 4.5s ease-in-out infinite;
  z-index: 0;
}

/* نقاط نظام (System Dots) */
.booking-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    rgba(255,255,255,0.04) 1px,
    transparent 1px
  );
  background-size: 24px 24px;
  opacity: 0.35;
  z-index: 0;
}

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

.booking-content {
  position: relative;
  z-index: 2;
}


/* ════════════════════════════════════════════════════════════
   ✅ HOTEL MODAL - ADAPTIVE THEME (Dark + Light Mode)
   ════════════════════════════════════════════════════════════ */

/* Modal Overlay */
.hotel-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  backdrop-filter: blur(6px);
}

.hotel-modal.active {
  display: flex !important;
}

/* Modal Content Box */
.hotel-modal-content {
  width: min(95%, 900px);
  max-height: 90vh;
  overflow-y: auto;
  border-radius: 24px;
  padding: 32px;
  background: #12161d;
  color: #f5f5f5;
  position: relative;
  animation: modalFade .4s ease;
}

/* Close Button */
.modal-close {
  position: absolute;
  top: 18px;
  left: 22px;
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: #C9B27C;
  transition: 0.3s ease;
}

.modal-close:hover {
  transform: scale(1.1);
  color: #d4af37;
}

/* Gallery Grid */
.modal-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
  margin: 20px 0;
}

.modal-gallery img {
  width: 100%;
  height: 220px;
  border-radius: 14px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: 0.3s ease;
}

.modal-gallery img:hover {
  transform: scale(1.02);
  border-color: #C9B27C;
}

/* Features Grid */
.modal-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
  margin: 22px 0;
}

.modal-features div {
  padding: 12px 14px;
  border-radius: 14px;
  font-size: 14px;
  background: #1a1f26;
  color: #eee;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

/* Room Prices */
.room-prices {
  margin: 26px 0;
}

.room-prices h3 {
  margin-bottom: 12px;
  color: #C9B27C;
  font-size: 18px;
}

.price-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: #f5f5f5;
}

/* Booking Alert */
.booking-alert {
  margin: 22px 0;
  padding: 14px 16px;
  border-radius: 14px;
  font-size: 14px;
  background: #3a1015;
  color: #ffb3b3;
  border: 1px solid rgba(255, 100, 100, 0.3);
}

/* Map */
.modal-map iframe {
  width: 100%;
  height: 320px;
  border-radius: 16px;
  border: none;
  margin: 20px 0;
}

/* Modal Actions */
.modal-actions {
  display: flex;
  gap: 14px;
  margin-top: 26px;
  flex-wrap: wrap;
}

.btn-outline {
  border: 1px solid var(--burgundy);
  color: var(--burgundy);
  background: transparent;
}

.modal-book-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* ═══════════════════════════════════════════════════════════
   ✅ MODAL FORM STYLING (Dark + Light Mode)
   ═══════════════════════════════════════════════════════════ */

/* Dark Mode Form (Default) */
.hotel-booking-form label {
  font-size: 13px;
  color: #cfd8dc;
  display: block;
  margin-bottom: 6px;
  font-weight: 500;
}

.hotel-booking-form input,
.hotel-booking-form select,
.hotel-booking-form textarea {
  width: 100%;
  padding: 12px;
  margin: 6px 0 14px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: #1a1f26;
  color: #fff;
  font-family: 'Tajawal', sans-serif;
  font-size: 14px;
  transition: 0.3s ease;
}

.hotel-booking-form input:focus,
.hotel-booking-form select:focus,
.hotel-booking-form textarea:focus {
  outline: none;
  border-color: #C9B27C;
  background: #1f2530;
}

.hotel-booking-form textarea {
  resize: vertical;
  min-height: 80px;
}

/* Submit Button */
.hotel-booking-form button[type="submit"],
.hotel-booking-form .btn-gold {
  width: 100%;
  padding: 14px;
  margin-top: 10px;
  border-radius: 8px;
  border: none;
  background: linear-gradient(135deg, #d4af37, #b8962e);
  color: #000;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: 0.3s ease;
}

.hotel-booking-form button[type="submit"]:hover,
.hotel-booking-form .btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
}

/* Map Link */
.hotel-map-link {
  display: block;
  margin: 15px 0;
  color: #d4af37;
  text-align: center;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s ease;
}

.hotel-map-link:hover {
  color: #C9B27C;
}

/* Animation */
@keyframes modalFade {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* ═══════════════════════════════════════════════════════════
   ✅ LIGHT MODE OVERRIDES
   ═══════════════════════════════════════════════════════════ */

body.light-mode .hotel-modal {
  background: rgba(255, 255, 255, 0.9) !important;
}

body.light-mode .hotel-modal-content {
  background: #ffffff !important;
  color: #2b2b2b !important;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15) !important;
  border: 1px solid #e5e5e5 !important;
}

body.light-mode .modal-close {
  color: #8b0033 !important;
}

body.light-mode .modal-close:hover {
  color: #6f6b3e !important;
}

body.light-mode .modal-gallery img {
  border: 1px solid #e5e5e5 !important;
}

body.light-mode .modal-gallery img:hover {
  border-color: #8b0033 !important;
}

body.light-mode .modal-features div {
  background: #f7f6f2 !important;
  color: #2b2b2b !important;
  border: 1px solid #e5e5e5 !important;
}

body.light-mode .room-prices h3 {
  color: #8b0033 !important;
}

body.light-mode .price-row {
  border-bottom: 1px solid #e5e5e5 !important;
  color: #2b2b2b !important;
}

body.light-mode .booking-alert {
  background: #ffe6ea !important;
  color: #8b0033 !important;
  border: 1px solid rgba(139, 0, 51, 0.3) !important;
}

body.light-mode .hotel-modal-content h2,
body.light-mode .hotel-modal-content h3,
body.light-mode .hotel-modal-content p,
body.light-mode .hotel-modal-content li {
  color: #2b2b2b !important;
}

/* Light Mode Form Overrides */
body.light-mode .hotel-booking-form label {
  color: #6f6b3e !important;
  font-weight: 500 !important;
}

body.light-mode .hotel-booking-form input,
body.light-mode .hotel-booking-form select,
body.light-mode .hotel-booking-form textarea {
  background: #f9f9f7 !important;
  color: #2b2b2b !important;
  border: 1px solid #ddd !important;
}

body.light-mode .hotel-booking-form input:focus,
body.light-mode .hotel-booking-form select:focus,
body.light-mode .hotel-booking-form textarea:focus {
  outline: none !important;
  border-color: #8b0033 !important;
  background: #ffffff !important;
  box-shadow: 0 0 0 3px rgba(139, 0, 51, 0.1) !important;
}

body.light-mode .hotel-booking-form input::placeholder,
body.light-mode .hotel-booking-form select::placeholder,
body.light-mode .hotel-booking-form textarea::placeholder {
  color: #999 !important;
}

body.light-mode .hotel-booking-form button[type="submit"],
body.light-mode .hotel-booking-form .btn-gold {
  background: #8b0033 !important;
  color: #ffffff !important;
}

body.light-mode .hotel-booking-form button[type="submit"]:hover,
body.light-mode .hotel-booking-form .btn-gold:hover {
  background: #6f6b3e !important;
  box-shadow: 0 8px 20px rgba(139, 0, 51, 0.3) !important;
}

body.light-mode .hotel-map-link {
  color: #8b0033 !important;
}

body.light-mode .hotel-map-link:hover {
  color: #6f6b3e !important;
}

/* Responsive */
@media (max-width: 768px) {
  .hotel-modal-content {
    padding: 20px;
    width: 98%;
  }

  .modal-gallery {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  }

  .modal-gallery img {
    height: 160px;
  }

  .modal-features {
    grid-template-columns: 1fr;
  }
}

/* ===== Hotels Section styled like "Why Us" ===== */

.hotels-section {
  padding: 100px 20px;
  background: radial-gradient(circle at top, #0e1a24, #02070c);
}

.hotels-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 35px;
  margin-top: 60px;
}

/* Card base (same spirit as why-card) */
.hotel-card {
  background: linear-gradient(145deg, #0f202d, #09131b);
  border-radius: 22px;
  padding: 30px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.45);
  transition: all .4s ease;
  display: flex;
  flex-direction: column;
}

.hotel-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 70px rgba(0,0,0,0.6);
}

/* Image styling (calmer, smaller like why section) */
.hotel-image {
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 20px;
}

.hotel-image img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  transition: transform .6s ease;
}

.hotel-card:hover .hotel-image img {
  transform: scale(1.05);
}

/* Info */
.hotel-info {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.hotel-title {
  font-size: 20px;
  margin-bottom: 10px;
  color: #d4af37;
}

.hotel-desc {
  font-size: 14px;
  color: #cfd8dc;
  line-height: 1.7;
  margin-bottom: 18px;
}

/* Details list (clean like why-us text) */
.hotel-details {
  list-style: none;
  padding: 0;
  margin: 0 0 25px;
}

.hotel-details li {
  font-size: 14px;
  margin-bottom: 6px;
  color: #bfc9d1;
}

/* Button aligned like why cards */
.hotel-book-btn {
  margin-top: auto;
  align-self: flex-start;
  padding: 12px 28px;
  border-radius: 40px;
  font-size: 14px;
}

/* ===== تكبير بطاقات فنادقنا ===== */

.hotels-grid {
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr)); /* كانت 280 */
  gap: 45px; /* مسافة أكبر بين البطاقات */
}

/* البطاقة نفسها */
.hotel-card {
  padding: 40px;           /* تكبير المساحة الداخلية */
  border-radius: 26px;     /* نعومة أكثر */
}

/* الصورة */
.hotel-image img {
  height: 230px;           /* كانت 180 */
}

/* العنوان */
.hotel-title {
  font-size: 24px;         /* كان 20 */
}

/* الوصف */
.hotel-desc {
  font-size: 15.5px;       /* أوضح للقراءة */
  line-height: 1.9;
}

/* التفاصيل */
.hotel-details li {
  font-size: 15px;
}

/* زر الحجز */
.hotel-book-btn {
  padding: 14px 34px;      /* زر أوضح */
  font-size: 15px;
}

/* ===== تكبير صور الفنادق ===== */

/* الصورة داخل البطاقة */
.hotel-image img {
  height: 300px;        /* كانت 230 – الآن أوضح وأفخم */
  width: 100%;
  object-fit: cover;
  border-radius: 18px;
  transition: transform 0.6s ease, filter 0.6s ease;
}

/* تأثير عند المرور */
.hotel-card:hover .hotel-image img {
  transform: scale(1.08);
  filter: brightness(1.05);
}

/* تكبير مساحة الصورة نفسها */
.hotel-image {
  margin-bottom: 1px;
}

/* ===== Contact Section ===== */

.contact-section {
  padding: 100px 20px;
  background: radial-gradient(circle at top, #0e1a24, #02070c);
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 60px;
}

.contact-info .info-item {
  margin-bottom: 30px;
}

.contact-info h4 {
  color: #d4af37;
  margin-bottom: 8px;
}

.contact-info p {
  color: #cfd8dc;
  font-size: 15px;
}

/* Form */
.contact-form label {
  font-size: 14px;
  color: #cfd8dc;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px;
  margin: 8px 0 20px;
  border-radius: 10px;
  border: none;
  background: #02070c;
  color: #fff;
}

.contact-form textarea {
  resize: none;
}

@media (max-width: 768px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
  }
}

/* ===== Navigation ===== */

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 28px;
  color: #d4af37;
  cursor: pointer;
}

/* Desktop */
.main-nav ul {
  display: flex;
  gap: 25px;
  list-style: none;
}

/* ===== Mobile ===== */
@media (max-width: 768px) {

  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    right: 0;
    width: 100%;
    background: #02070c;
    display: none;
  }

  .main-nav ul {
    flex-direction: column;
    padding: 20px;
    gap: 15px;
  }

  .main-nav.active {
    display: block;
  }

  .main-nav a {
    padding: 12px 0;
    border-bottom: 1px solid rgba(212,175,55,0.15);
  }
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.modal-overlay.active {
  display: flex;
}

.modal-content {
  background: #0b141c;
  padding: 30px;
  border-radius: 14px;
  max-width: 420px;
  width: 100%;
  color: #fff;
  position: relative;
}

.modal-close {
  position: absolute;
  top: 10px;
  left: 14px;
  font-size: 28px;
  background: none;
  border: none;
  color: #d4af37;
  cursor: pointer;
}

/* ===== Company PDF Download ===== */

.company-pdf {
  margin-top: 20px;
}

.pdf-download-btn {
  display: inline-block;
  margin-top: 8px;
  padding: 12px 18px;
  background: linear-gradient(135deg, #d4af37, #b8962e);
  color: #000;
  font-weight: 600;
  border-radius: 10px;
  text-decoration: none;
  transition: 0.3s ease;
}

.pdf-download-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.35);
}

:root {
  --white: #f9f9f7;        /* أبيض ناعم */
  --beige: #f3efe6;        /* بيج بطاقات */
  --olive: #6f6b3e;        /* زيتوني */
  --burgundy: #8b0033;     /* خمري */
  --text-dark: #2b2b2b;    /* نص داكن */
}

body.light-mode {
  background: var(--white);
  color: var(--text-dark);
}

body.light-mode section {
  background: var(--white);
}


body.light-mode header,
body.light-mode nav {
  background: var(--white);
  border-bottom: 1px solid #eaeaea;
}

body.light-mode .nav-link {
  color: var(--olive);
}

body.light-mode .nav-link.active {
  color: var(--burgundy);
}

body.light-mode .section-title {
  color: var(--burgundy);
}

body.light-mode .section-sub,
body.light-mode .section-subtitle {
  color: var(--olive);
}

body.light-mode p,
body.light-mode li {
  color: var(--text-dark);
}


body.light-mode .why-card,
body.light-mode .hotel-card,
body.light-mode .service-card,
body.light-mode .country-card {
  background: var(--beige);
  color: var(--text-dark);
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

body.light-mode .country-card span {
  color: var(--text-dark);
  font-weight: 500;
}

body.light-mode .country-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

body.light-mode .country-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

body.light-mode .btn,
body.light-mode .btn-gold,
body.light-mode .booking-btn {
  background: var(--burgundy);
  color: #ffffff;
  border: none;
}

body.light-mode .btn:hover,
body.light-mode .booking-btn:hover {
  background: var(--olive);
}

body.light-mode #booking-banner {
  background: linear-gradient(
    135deg,
    #ffffff 0%,
    #f6f3ec 100%
  );
}

body.light-mode #booking-banner .booking-title {
  color: var(--burgundy);
}

body.light-mode #booking-banner p {
  color: var(--text-dark);
}


body.light-mode .why-card i,
body.light-mode .hotel-details li::marker {
  color: var(--olive);
}

body.light-mode .hero .section-sub,
body.light-mode .hero .section-subtitle {
  color: #ffffff;
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}


/* ===== About Section – Light Mode (White Text Fix) ===== */

body.light-mode #about .section-title {
  color: #ffffff;
  font-weight: 700;
}

body.light-mode #about .section-subtitle {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
}

body.light-mode #about .about-desc {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.9;
  font-weight: 400;
}

/* أي فقرات إضافية داخل القسم */
body.light-mode #about p {
  color: rgba(255, 255, 255, 0.9);
}

/* ===== Countries Section – Light Mode ===== */

body.light-mode #countries {
  background: #f7f6f2; /* نفس خلفية الموقع */
}

/* شبكة الدول */
body.light-mode .countries-grid {
  gap: 24px;
}

/* بطاقة الدولة */
body.light-mode .country-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 18px 14px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  cursor: pointer;
}

/* Hover */
body.light-mode .country-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 35px rgba(0,0,0,0.12);
}

/* علم الدولة */
body.light-mode .country-card img {
  width: 56px;
  height: auto;
  margin-bottom: 10px;
  border-radius: 6px;
}

/* اسم الدولة */
body.light-mode .country-card span {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--olive);
}

/* Tooltip */
body.light-mode .country-card .tooltip {
  background: var(--burgundy);
  color: #ffffff;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 13px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.2);
}

/* ===== Why Us Section – Light Mode Typography ===== */

/* العنوان الرئيسي */
body.light-mode #why-us .section-title {
  color: var(--burgundy);
}

/* العنوان الفرعي */
body.light-mode #why-us .section-subtitle {
  color: var(--olive);
}

/* عناوين البطاقات */
body.light-mode #why-us .why-card h3 {
  color: var(--burgundy);
}

/* نصوص البطاقات */
body.light-mode #why-us .why-card p {
  color: var(--text-dark);
}

body.light-mode #why-us .why-card h3 {
  font-weight: 600;
}


/* ===== Services Section – Light Mode Typography ===== */

/* العنوان الرئيسي */
body.light-mode #services .section-title {
  color: var(--burgundy);
}

/* العنوان الفرعي */
body.light-mode #services .section-subtitle {
  color: var(--olive);
}

/* عناوين الخدمات */
body.light-mode #services .service-card h3 {
  color: var(--burgundy);
  font-weight: 600;
}

/* نصوص الخدمات */
body.light-mode #services .service-card p {
  color: var(--text-dark);
  line-height: 1.8;
}

/* ===== Footer – Dark Mode ===== */

.main-footer {
  background: #0f1218; /* داكن أنيق */
  color: #eaeaea;
  padding: 30px 20px;
  text-align: center;
}

/* النص */
.main-footer p {
  margin: 0;
  font-size: 14px;
  color: #cfcfcf;
}

/* أيقونات السوشيال */
.footer-social {
  margin-top: 15px;
}

.footer-social a {
  color: #d6d3a3; /* بيج من الهوية */
  margin: 0 10px;
  font-size: 18px;
  transition: color 0.3s ease, transform 0.3s ease;
}

/* Hover */
.footer-social a:hover {
  color: #8b0033; /* خمري */
  transform: translateY(-3px);
}
/* =========================================================
   LIGHT MODE - Footer Fix (Stronger)
   ========================================================= */

body.light-mode .main-footer,
body.light-mode footer {
  background: #f3efe6 !important;
  border-top: 1px solid rgba(139, 0, 51, 0.2) !important;
  color: #2b2b2b !important;
}

body.light-mode .main-footer *,
body.light-mode footer * {
  color: #2b2b2b !important;
}

body.light-mode .main-footer p,
body.light-mode footer p {
  color: #6f6b3e !important;
}

body.light-mode .main-footer a,
body.light-mode footer a,
body.light-mode .footer-social a {
  color: #8b0033 !important;
}

body.light-mode .main-footer a:hover,
body.light-mode .footer-social a:hover {
  color: #6f6b3e !important;
}

body.light-mode .mega-footer {
  background: #f3efe6 !important;
  border-top: 3px solid #8b0033 !important;
}

body.light-mode .mega-footer h3,
body.light-mode .mega-footer h4 {
  color: #8b0033 !important;
}

body.light-mode .footer-links a,
body.light-mode .contact-row span {
  color: #6f6b3e !important;
}

body.light-mode .footer-links a:hover {
  color: #8b0033 !important;
}

body.light-mode .contact-row i {
  color: #8b0033 !important;
}

body.light-mode .newsletter-form input {
  background: #fff !important;
  border: 1px solid rgba(0, 0, 0, 0.15) !important;
  color: #2b2b2b !important;
}

body.light-mode .newsletter-form button {
  background: #8b0033 !important;
  color: #fff !important;
}

body.light-mode .footer-bottom,
body.light-mode .footer-bottom p {
  background: transparent !important;
  color: #6f6b3e !important;
}


/* ===== Contact Form – Light Mode ===== */

body.light-mode .contact-form {
  background: #ffffff;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

/* العناوين (Labels) */
body.light-mode .contact-form label {
  color: var(--olive);
  font-weight: 500;
  margin-bottom: 6px;
  display: block;
}

/* الحقول */
body.light-mode .contact-form input,
body.light-mode .contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #ddd;
  background: #f9f9f7;
  color: var(--text-dark);
  font-size: 14px;
  transition: border 0.3s ease, box-shadow 0.3s ease;
}

/* عند التركيز */
body.light-mode .contact-form input:focus,
body.light-mode .contact-form textarea:focus {
  outline: none;
  border-color: var(--burgundy);
  box-shadow: 0 0 0 3px rgba(139, 0, 51, 0.12);
  background: #ffffff;
}

/* زر الإرسال */
body.light-mode .contact-form .btn,
body.light-mode .contact-form .btn-gold {
  background: var(--burgundy);
  color: #ffffff;
  border: none;
  margin-top: 20px;
  padding: 12px 24px;
  border-radius: 30px;
  font-size: 15px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

/* Hover */
body.light-mode .contact-form .btn:hover {
  background: var(--olive);
  transform: translateY(-2px);
}

body.light-mode .hero-subtitle {
  color: #ffffff;
}

/* ===== Header ===== */
.main-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(10,15,20,0.85);
  backdrop-filter: blur(10px);
}

body.light-mode .main-header {
  background: rgba(255,255,255,0.9);
}

/* Wrapper */
.header-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
}

/* Logo */
.logo img {
  height: 42px;
}

/* Nav */
.main-nav ul {
  display: flex;
  gap: 24px;
  list-style: none;
}

.main-nav a {
  color: #d4af37;
  font-weight: 500;
  text-decoration: none;
  transition: 0.3s;
}

.main-nav a:hover {
  color: #fff;
}

body.light-mode .main-nav a {
  color: #6b6b6b;
}

body.light-mode .main-nav a:hover {
  color: #8b0033;
}

/* Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* ===== Language Button ===== */
.lang-btn {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.3);
  color: #d4af37;
  padding: 6px 12px;
  border-radius: 20px;
  cursor: pointer;
}

body.light-mode .lang-btn {
  border-color: rgba(0,0,0,0.2);
  color: #8b0033;
}

/* ===== Theme Toggle ===== */
.theme-toggle {
  position: relative;
  width: 46px;
  height: 26px;
  border-radius: 20px;
  background: linear-gradient(135deg, #2c2c2c, #1a1a1a);
  border: 1px solid rgba(255,255,255,0.15);
  cursor: pointer;
}

.theme-toggle::before {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  background: #d4af37;
  border-radius: 50%;
  transition: 0.3s;
}

.theme-toggle .icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 12px;
  opacity: 0;
}

.theme-toggle .sun {
  right: 7px;
  opacity: 1;
}

body.light-mode .theme-toggle {
  background: #eee;
}

body.light-mode .theme-toggle::before {
  left: 23px;
  background: #8b0033;
}

body.light-mode .theme-toggle .sun {
  opacity: 0;
}

body.light-mode .theme-toggle .moon {
  opacity: 1;
  left: 7px;
}

/* ===== Mobile ===== */
.menu-toggle {
  display: none;
  font-size: 24px;
  background: none;
  border: none;
  color: #d4af37;
  cursor: pointer;
}

/* جعل عناصر الهيدر بجانب بعض */
.main-nav ul {
  display: flex;
  align-items: center;
  gap: 12px; /* المسافة بين EN والزر */
}

/* تأكيد أن الأزرار لا تنزل سطر */
.main-nav button,
.main-nav a {
  display: inline-flex;
  align-items: center;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}


/* الحاوية */
.font-control {
  display: flex;
  align-items: center;
  position: relative;
}

/* الشريط مخفي افتراضيًا */
#fontSlider {
  width: 0;
  opacity: 0;
  margin-right: 6px;
  transition: all 0.25s ease;
  pointer-events: none;
}

/* عند الفتح */
.font-control.active #fontSlider {
  width: 90px;
  opacity: 1;
  pointer-events: auto;
}

/* نفس ستايل EN */
#fontSlider {
  accent-color: currentColor;
}

/* لايت مود */
body.light-mode #fontSlider {
  accent-color: #8b0033;
}

/* دارك مود */
body:not(.light-mode) #fontSlider {
  accent-color: #d4af37;
}

/* جوال */
@media (max-width: 768px) {
  .font-control.active #fontSlider {
    width: 70px;
  }
}

:root {
  --base-font-size: 16px;
}

html,
body {
  font-size: var(--base-font-size);
}


/* ===== Modal Overlay ===== */
.hotel-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.75);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.hotel-modal.active {
  display: flex;
}

/* ===== Modal Box ===== */
.hotel-modal-content {
  width: 94%;
  max-width: 1100px;
  max-height: 94vh;
  overflow-y: auto;
  border-radius: 24px;
  padding: 30px;
  position: relative;
  transition: all .3s ease;
}

/* Dark Mode */
body.dark-mode .hotel-modal-content {
  background: #0f1419;
  color: #f5f5f5;
}

/* Light Mode */
body.light-mode .hotel-modal-content {
  background: #ffffff;
  color: #111;
}

/* Close Button */
.modal-close {
  position: absolute;
  top: 16px;
  left: 16px;
  font-size: 30px;
  background: none;
  border: none;
  cursor: pointer;
  color: inherit;
}

/* Gallery */
.modal-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
  gap: 16px;
  margin: 24px 0;
}

.modal-gallery img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 16px;
}

/* Features */
.modal-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
  gap: 12px;
  margin: 22px 0;
}

.modal-features div {
  padding: 12px 14px;
  border-radius: 14px;
  font-size: 14px;
}

body.dark-mode .modal-features div {
  background: #1a1f26;
}

body.light-mode .modal-features div {
  background: #f2f2f2;
}

/* Prices */
.room-prices {
  margin: 26px 0;
}

.room-prices h3 {
  margin-bottom: 12px;
  color: var(--burgundy);
}

.price-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid #ddd;
}

/* Alert */
.booking-alert {
  margin: 22px 0;
  padding: 14px 16px;
  border-radius: 14px;
  font-size: 14px;
}

body.dark-mode .booking-alert {
  background: #3a1015;
  color: #ffb3b3;
}

body.light-mode .booking-alert {
  background: #ffe6ea;
  color: #8b0033;
}

/* Map */
.modal-map iframe {
  width: 100%;
  height: 320px;
  border-radius: 16px;
  border: none;
}

/* Actions */
.modal-actions {
  display: flex;
  gap: 14px;
  margin-top: 26px;
  flex-wrap: wrap;
}

.btn-outline {
  border: 1px solid var(--burgundy);
  color: var(--burgundy);
  background: transparent;
}

.modal-book-btn[disabled] {
  opacity: .6;
  cursor: not-allowed;
}

/* ===== أزرار الفندق ===== */
.hotel-actions {
  display: flex;
  gap: 12px;
  margin-top: 18px;
  flex-wrap: wrap;
}

/* زر عرض التفاصيل */
.btn-details {
  padding: 12px 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all .3s ease;
  border: 1px solid transparent;
}

/* ===== Light Mode ===== */
body.light-mode .btn-details {
  background: #f7f7f7;
  color: #8b0033; /* نفس لون العناوين */
  border-color: #e2e2e2;
}

body.light-mode .btn-details:hover {
  background: #8b0033;
  color: #fff;
  transform: translateY(-2px);
}

/* ===== Dark Mode ===== */
body.dark-mode .btn-details {
  background: #1a1f26;
  color: #f5f5f5;
  border-color: #2a2f36;
}

body.dark-mode .btn-details:hover {
  background: #8b0033;
  color: #fff;
  transform: translateY(-2px);
}

/* تأثير ضغط */
.btn-details:active {
  transform: scale(0.97);
}

/* ===== أزرار الفندق ===== */
.hotel-actions {
  display: flex;
  gap: 12px;
  margin-top: 18px;
  flex-wrap: wrap;
}

/* زر عرض التفاصيل */
.btn-details {
  padding: 12px 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all .3s ease;
  border: 1px solid transparent;
}

/* ===== Light Mode ===== */
body.light-mode .btn-details {
  background: #f7f7f7;
  color: #8b0033; /* نفس لون العناوين */
  border-color: #e2e2e2;
}

body.light-mode .btn-details:hover {
  background: #8b0033;
  color: #fff;
  transform: translateY(-2px);
}

/* ===== Dark Mode ===== */
body.dark-mode .btn-details {
  background: #1a1f26;
  color: #f5f5f5;
  border-color: #2a2f36;
}

body.dark-mode .btn-details:hover {
  background: #8b0033;
  color: #fff;
  transform: translateY(-2px);
}

/* تأثير ضغط */
.btn-details:active {
  transform: scale(0.97);
}

/* ════════════════════════════════════════════════════════════
   ✅ Hotel Modal - Final Fix - يتكيف مع اللايت والدارك
   ════════════════════════════════════════════════════════════ */

/* الخلفية الافتراضية (Dark Mode) */
.hotel-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  backdrop-filter: blur(6px);
}

.hotel-modal.active {
  display: flex;
}

.hotel-modal-content {
  width: min(95%, 900px);
  max-height: 90vh;
  overflow-y: auto;
  border-radius: 24px;
  padding: 32px;
  background: #12161d;
  color: #f5f5f5;
  animation: modalFade .4s ease;
}

/* Dark Mode Styles (افتراضي) */
.hotel-modal-content h2,
.hotel-modal-content h3 {
  color: #C9B27C;
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 22px;
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: #C9B27C;
}

.modal-features div {
  background: #1a1f26;
  color: #eee;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.booking-alert {
  background: #3a1015;
  color: #ffb3b3;
}

/* ═══ Light Mode Override ═══ */
body.light-mode .hotel-modal {
  background: rgba(255, 255, 255, 0.9) !important;
}

body.light-mode .hotel-modal-content {
  background: #ffffff !important;
  color: #2b2b2b !important;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15) !important;
}

body.light-mode .hotel-modal-content h2,
body.light-mode .hotel-modal-content h3 {
  color: #8b0033 !important;
}

body.light-mode .modal-close {
  color: #8b0033 !important;
}

body.light-mode .modal-features div {
  background: #f7f6f2 !important;
  color: #2b2b2b !important;
  border: 1px solid #e5e5e5 !important;
}

body.light-mode .booking-alert {
  background: #ffe6ea !important;
  color: #8b0033 !important;
}

body.light-mode .hotel-modal-content p,
body.light-mode .hotel-modal-content li {
  color: #2b2b2b !important;
}

@keyframes modalFade {
  from {
    opacity: 0;
    transform: scale(.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}


/* ===== Close Button ===== */
.modal-close {
  position: absolute;
  top: 18px;
  right: 22px;
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: inherit;
}

/* ===== Gallery ===== */
.modal-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px,1fr));
  gap: 12px;
  margin: 20px 0;
}

.modal-gallery img {
  width: 100%;
  border-radius: 14px;
  object-fit: cover;
}

/* ===== Pricing ===== */
.modal-pricing ul {
  margin: 12px 0;
  padding: 0;
  list-style: none;
}

.modal-pricing li {
  padding: 6px 0;
  font-weight: 500;
}

.booking-alert {
  margin-top: 12px;
  padding: 12px;
  border-radius: 12px;
  background: rgba(139,0,51,0.1);
  color: #8b0033;
  font-weight: 600;
}

/* ===== Map ===== */
.modal-map iframe {
  width: 100%;
  height: 280px;
  border-radius: 16px;
  border: none;
  margin-top: 20px;
}

/* ===== Actions ===== */
.modal-actions {
  margin-top: 24px;
  text-align: center;
}

/* ===== Animation ===== */
@keyframes modalFade {
  from {opacity:0; transform:scale(.95);}
  to {opacity:1; transform:scale(1);}
}

/* ===== FORCE GOLD COLOR (DARK MODE) ===== */

/* الأزرار */
.btn-gold,
.hotel-book-btn,
.booking-btn {
  background-color: #C9B27C !important;
  color: #1a1a1a !important;
}

/* العناوين */
.section-title.gold,
.booking-title,
.hotel-title {
  color: #C9B27C !important;
}

/* الأيقونات */
.hotel-details li,
.why-card h3,
.service-card h3 {
  color: #C9B27C !important;
}

/* حدود الكروت */
.hotel-card,
.why-card,
.service-card {
  border-color: rgba(201, 178, 124, 0.25) !important;
}


/* ===============================
   HEADER - DARK MODE GOLD COLOR
   =============================== */

body:not(.light-mode) .main-header {
  border-bottom: 1px solid rgba(201, 178, 124, 0.3);
}

/* اسم الشركة */
body:not(.light-mode) .logo span {
  color: #C9B27C;
}

/* روابط القائمة */
body:not(.light-mode) .nav-link {
  color: #eaeaea;
}

body:not(.light-mode) .nav-link:hover,
body:not(.light-mode) .nav-link.active {
  color: #C9B27C;
}

/* زر اللغة */
body:not(.light-mode) .lang-btn {
  color: #C9B27C;
  border: 1px solid rgba(201, 178, 124, 0.4);
}

body:not(.light-mode) .lang-btn:hover {
  background: rgba(201, 178, 124, 0.15);
}

/* زر المود */
body:not(.light-mode) .theme-toggle {
  color: #C9B27C;
  border: 1px solid rgba(201, 178, 124, 0.4);
}

body:not(.light-mode) .theme-toggle:hover {
  background: rgba(201, 178, 124, 0.15);
}



/* ===============================
   BOOKING BANNER BUTTON (DARK)
   =============================== */

body:not(.light-mode) .booking-btn {
  background-color: #C9B27C;
  color: #1a1a1a;
  font-weight: 600;
  border-radius: 999px;
  box-shadow: 0 10px 30px rgba(201, 178, 124, 0.35);
}

body:not(.light-mode) .booking-btn:hover {
  background-color: #d8c58f;
  transform: translateY(-2px);
}

  
.hotel-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  display: none;
  z-index: 9999;
}

.hotel-modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hotel-modal-content {
  background: #111;
  color: #fff;
  padding: 30px;
  border-radius: 16px;
  max-width: 900px;
  width: 90%;
}

body.light-mode .hotel-modal-content {
  background: #fff;
  color: #222;
}

/* =========================================================
   LIGHT MODE - Video Clarity Fix (Hero + About)
   ========================================================= */

/* Hero Video (الصفحة الرئيسية) */
body.light-mode .hero-overlay {
  background: linear-gradient(
    180deg,
    rgba(249, 249, 247, 0.3) 0%,
    rgba(249, 249, 247, 0.4) 100%
  ) !important;
}

body.light-mode .hero-video {
  opacity: 1 !important;
  filter: brightness(1.05) !important;
}

body.light-mode .hero-title {
  color: #8b0033 !important;
  text-shadow: 
    0 2px 6px rgba(255, 255, 255, 0.95),
    0 0 20px rgba(255, 255, 255, 0.8) !important;
  font-weight: 800;
}

body.light-mode .hero-subtitle {
  color: #2b2b2b !important;
  text-shadow: 
    0 1px 4px rgba(255, 255, 255, 0.9),
    0 0 15px rgba(255, 255, 255, 0.7) !important;
}

/* About Video (من نحن) */
body.light-mode .about-section::before {
  background: linear-gradient(
    to right,
    rgba(249, 249, 247, 0.35),
    rgba(249, 249, 247, 0.25)
  ) !important;
}

body.light-mode .about-section .hero-video,
body.light-mode .about-video {
  opacity: 0.7 !important;
  filter: brightness(1.08) !important;
}

body.light-mode .about-text h2,
body.light-mode .about-section .section-title {
  color: #8b0033 !important;
  text-shadow: 
    0 2px 6px rgba(255, 255, 255, 0.95),
    0 0 18px rgba(255, 255, 255, 0.75) !important;
}

body.light-mode .about-text p,
body.light-mode .about-section .section-subtitle,
body.light-mode .about-section .about-desc {
  color: #2b2b2b !important;
  text-shadow: 
    0 1px 4px rgba(255, 255, 255, 0.9),
    0 0 12px rgba(255, 255, 255, 0.7) !important;
}
/* =========================================================
   LIGHT MODE - Footer Fix
   ========================================================= */

body.light-mode .main-footer {
  background: #f3efe6 !important;
  border-top: 1px solid rgba(139, 0, 51, 0.2) !important;
  color: #2b2b2b !important;
}

body.light-mode .main-footer p {
  color: #6f6b3e !important;
}

body.light-mode .footer-social a {
  color: #8b0033 !important;
}

body.light-mode .footer-social a:hover {
  color: #6f6b3e !important;
}
/* Mega Footer - Light Mode */
body.light-mode .mega-footer {
  background: #f3efe6 !important;
  border-top: 3px solid #8b0033 !important;
  color: #2b2b2b !important;
}

body.light-mode .mega-footer h3 {
  color: #8b0033 !important;
  border-bottom-color: #8b0033 !important;
}

body.light-mode .footer-links a,
body.light-mode .contact-row span {
  color: #6f6b3e !important;
}

body.light-mode .footer-links a:hover {
  color: #8b0033 !important;
}

body.light-mode .contact-row i {
  color: #8b0033 !important;
}

body.light-mode .newsletter-form input {
  background: #fff !important;
  border: 1px solid rgba(0, 0, 0, 0.15) !important;
  color: #2b2b2b !important;
}

body.light-mode .newsletter-form button {
  background: #8b0033 !important;
  color: #fff !important;
}
/* =========================================================
   Mega Footer Layout Fix (All Pages)
   ========================================================= */

.mega-footer {
  background: #02070c;
  padding: 60px 0 20px;
  border-top: 3px solid #d4af37;
}

.mega-footer .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.mega-footer {
  background: #02070c;
  padding: 60px 0 20px;
  border-top: 3px solid #d4af37;
}

.mega-footer .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ═══ تغيير كل النصوص للذهبي ═══ */
.mega-footer,
.mega-footer p,
.mega-footer span,
.mega-footer li,
.mega-footer a,
.mega-footer h3 {
  color: #C9B27C !important;
}

.footer-social a {
  color: #C9B27C !important;
}

.footer-social a:hover {
  color: #d4af37 !important;
}

/* الهايلايت */
.mega-footer ::selection {
  background-color: #C9B27C !important;
  color: #000 !important;
}
/* ═══ الأيقونات والخط تحت العناوين ═══ */

/* الأيقونات في الفوتر */
.mega-footer i,
.contact-row i,
.footer-social i {
  color: #C9B27C !important;
}

/* الخط تحت العناوين (h3) */
.mega-footer h3::after,
.footer-col h3::after {
  background-color: #C9B27C !important;
  border-bottom: 2px solid #C9B27C !important;
}

/* لو الخط عبارة عن border */
.mega-footer h3 {
  border-bottom: 2px solid #C9B27C !important;
  color: #C9B27C !important;
}

/* الروابط */
.footer-links a {
  color: #C9B27C !important;
}

.footer-links a:hover {
  color: #d4af37 !important;
}



.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col {
  text-align: right;
}

.footer-col h3 {
  color: #d4af37;
  font-size: 18px;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #d4af37;
  display: inline-block;
}

.footer-col p {
  color: #aaa;
  line-height: 1.7;
  font-size: 14px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #aaa;
  text-decoration: none;
  font-size: 15px;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #d4af37;
}

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

.contact-row i {
  color: #d4af37;
  width: 20px;
  text-align: center;
}

.newsletter-form {
  position: relative;
  margin-top: 15px;
}

.newsletter-form input {
  width: 100%;
  padding: 12px 15px;
  padding-left: 50px;
  background: #1a1d24;
  border: 1px solid #333;
  color: #fff;
  border-radius: 5px;
  outline: none;
}

.newsletter-form input::placeholder {
  color: #7c7c7c;
}

.newsletter-form button {
  position: absolute;
  left: 5px;
  top: 5px;
  bottom: 5px;
  background: #d4af37;
  border: none;
  color: #000;
  padding: 0 15px;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
  transition: 0.3s;
}

.newsletter-form button:hover {
  background: #b8962e;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  text-align: center;
}

.footer-bottom p {
  color: #888;
  font-size: 14px;
  margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .footer-col {
    text-align: center;
  }
  
  .footer-col h3 {
    display: block;
  }
  
  .contact-row {
    justify-content: center;
  }
}
/* =========================================================
   LIGHT MODE - UNIFIED COLORS (All Pages)
   ========================================================= */

/* الخلفية الموحدة */
body.light-mode {
  background: #f9f9f7 !important;
  color: #2b2b2b !important;
}

/* جميع الأقسام */
body.light-mode section,
body.light-mode .section,
body.light-mode .hero,
body.light-mode .about-section,
body.light-mode .services-section,
body.light-mode .why-section,
body.light-mode .hotels-section,
body.light-mode .countries-section,
body.light-mode .countries-prestige,
body.light-mode .stats-section,
body.light-mode .booking-banner,
body.light-mode .contact-section {
  background: #f9f9f7 !important;
  color: #2b2b2b !important;
}

/* العناوين الرئيسية - خمري */
body.light-mode .section-title,
body.light-mode h1,
body.light-mode h2,
body.light-mode h3.section-title {
  color: #8b0033 !important;
}

/* العناوين الفرعية - زيتوني */
body.light-mode .section-subtitle,
body.light-mode .section-sub {
  color: #6f6b3e !important;
}

/* النصوص العادية */
body.light-mode p,
body.light-mode li,
body.light-mode span {
  color: #2b2b2b !important;
}

/* البطاقات (Cards) - بيج فاتح */
body.light-mode .card,
body.light-mode .why-card,
body.light-mode .service-card,
body.light-mode .hotel-card,
body.light-mode .country-card,
body.light-mode .stat-box {
  background: #f3efe6 !important;
  color: #2b2b2b !important;
  border: 1px solid rgba(0, 0, 0, 0.08) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08) !important;
}

/* عناوين البطاقات - خمري */
body.light-mode .card h3,
body.light-mode .why-card h3,
body.light-mode .service-card h3,
body.light-mode .hotel-title {
  color: #8b0033 !important;
}

/* نصوص البطاقات */
body.light-mode .card p,
body.light-mode .why-card p,
body.light-mode .service-card p,
body.light-mode .hotel-desc {
  color: #2b2b2b !important;
}

/* أزرار السنوات (في صفحة خدماتنا) */
body.light-mode .year-btn {
  background: transparent !important;
  border: 2px solid #8b0033 !important;
  color: #8b0033 !important;
}

body.light-mode .year-btn.active,
body.light-mode .year-btn:hover {
  background: #8b0033 !important;
  color: #fff !important;
}

/* بطاقات الدول */
body.light-mode .country-card {
  background: #f3efe6 !important;
  border: 1px solid rgba(0, 0, 0, 0.08) !important;
}

body.light-mode .country-card span {
  color: #2b2b2b !important;
  font-weight: 600;
}

body.light-mode .country-card:hover {
  box-shadow: 0 15px 40px rgba(139, 0, 51, 0.15) !important;
  border-color: #8b0033 !important;
}

/* الإحصائيات */
body.light-mode .stat-number {
  color: #8b0033 !important;
}

body.light-mode .stat-title {
  color: #2b2b2b !important;
}

body.light-mode .stat-desc {
  color: #6f6b3e !important;
}

/* الأزرار الذهبية تصبح خمرية */
body.light-mode .btn-gold,
body.light-mode .hotel-book-btn,
body.light-mode .booking-btn {
  background: linear-gradient(135deg, #8b0033, #6d0028) !important;
  color: #fff !important;
  box-shadow: 0 10px 30px rgba(139, 0, 51, 0.35) !important;
}

body.light-mode .btn-gold:hover,
body.light-mode .booking-btn:hover {
  background: linear-gradient(135deg, #6d0028, #8b0033) !important;
  transform: translateY(-2px);
}

/* الأيقونات */
body.light-mode .card-icon,
body.light-mode .why-card i,
body.light-mode .service-card i {
  color: #8b0033 !important;
}

/* لماذا أبراج الحسام - Section */
body.light-mode .why-section {
  background: #f9f9f7 !important;
}

body.light-mode .why-section .section-title {
  color: #8b0033 !important;
}

body.light-mode .why-section .section-subtitle {
  color: #6f6b3e !important;
}

/* Booking Banner */
body.light-mode .booking-banner {
  background: linear-gradient(135deg, #f9f9f7, #f3efe6) !important;
}

body.light-mode .booking-text h2 {
  color: #8b0033 !important;
}

body.light-mode .booking-text p {
  color: #2b2b2b !important;
}

/* Hero في الصفحة الرئيسية */
body.light-mode .hero-content {
  color: #2b2b2b !important;
}

/* إزالة أي ألوان رمادية قديمة */
body.light-mode * {
  border-color: rgba(139, 0, 51, 0.15) !important;
}
/* ===== Hotel Modal (عرض تفاصيل الفندق) ===== */
.hotel-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  padding: 20px;
}

.hotel-modal-box {
  background: linear-gradient(145deg, #0f202d, #09131b);
  padding: 30px 25px;
  width: 95%;
  max-width: 650px;
  max-height: 90vh;
  overflow-y: auto;
  border-radius: 20px;
  color: #fff;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
}

.close-modal {
  position: absolute;
  top: 15px;
  left: 15px;
  font-size: 32px;
  font-weight: bold;
  cursor: pointer;
  color: #d4af37;
  transition: 0.3s;
  z-index: 10;
}

.close-modal:hover {
  color: #fff;
  transform: rotate(90deg);
}

/* Scrollbar للـ Modal */
.hotel-modal-box::-webkit-scrollbar {
  width: 8px;
}

.hotel-modal-box::-webkit-scrollbar-track {
  background: rgba(0,0,0,0.3);
  border-radius: 10px;
}

.hotel-modal-box::-webkit-scrollbar-thumb {
  background: #d4af37;
  border-radius: 10px;
}


.close-modal {
  position: absolute;
  top: 15px;
  left: 20px;
  font-size: 32px;
  font-weight: bold;
  cursor: pointer;
  color: #d4af37;
  transition: 0.3s;
}

.close-modal:hover {
  color: #fff;
  transform: rotate(90deg);
}

.hotel-booking-form label {
  display: block;
  font-size: 13px;
  color: #cfd8dc;
  margin-bottom: 6px;
  margin-top: 15px;
}

.hotel-booking-form input,
.hotel-booking-form select {
  width: 100%;
  padding: 12px 14px;
  border-radius: 8px;
  border: none;
  background: #02070c;
  color: #fff;
  outline: none;
}

.hotel-booking-form input:focus,
.hotel-booking-form select:focus {
  border: 1px solid #d4af37;
}
/* ===== Hotel Details Modal ===== */
.hotel-details-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  padding: 20px;
}

.hotel-details-modal-box {
  background: linear-gradient(145deg, #0f202d, #09131b);
  padding: 30px 25px;
  width: 95%;
  max-width: 650px;
  max-height: 90vh;
  overflow-y: auto;
  border-radius: 20px;
  color: #fff;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
}

.close-details-modal {
  position: absolute;
  top: 15px;
  left: 15px;
  font-size: 32px;
  font-weight: bold;
  cursor: pointer;
  color: #d4af37;
  transition: 0.3s;
  z-index: 10;
}

.close-details-modal:hover {
  color: #fff;
  transform: rotate(90deg);
}

.hotel-details-modal-box::-webkit-scrollbar {
  width: 8px;
}

.hotel-details-modal-box::-webkit-scrollbar-track {
  background: rgba(0,0,0,0.3);
  border-radius: 10px;
}

.hotel-details-modal-box::-webkit-scrollbar-thumb {
  background: #d4af37;
  border-radius: 10px;
}
/* ===== Booking Modal (نافذة الحجز المنبثقة) ===== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  padding: 20px;
}

.modal-overlay.active {
  display: flex;
}

.modal-content {
  background: linear-gradient(145deg, #0f202d, #09131b);
  padding: 35px 30px;
  width: 95%;
  max-width: 550px;
  max-height: 90vh;
  overflow-y: auto;
  border-radius: 20px;
  position: relative;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.8);
}

.modal-close {
  position: absolute;
  top: 15px;
  left: 15px;
  font-size: 32px;
  font-weight: bold;
  cursor: pointer;
  color: #d4af37;
  background: none;
  border: none;
  transition: 0.3s;
}

.modal-close:hover {
  color: #fff;
  transform: rotate(90deg);
}

.modal-title {
  color: #d4af37;
  font-size: 24px;
  margin-bottom: 20px;
  text-align: center;
}

.hotel-booking-form label {
  display: block;
  font-size: 14px;
  color: #cfd8dc;
  margin-bottom: 6px;
  margin-top: 15px;
}

.hotel-booking-form input,
.hotel-booking-form select {
  width: 100%;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid rgba(212, 175, 55, 0.3);
  background: #02070c;
  color: #fff;
  outline: none;
  font-size: 14px;
}

.hotel-booking-form input:focus,
.hotel-booking-form select:focus {
  border-color: #d4af37;
}

.hotel-booking-form input[readonly] {
  background: rgba(212, 175, 55, 0.1);
  cursor: not-allowed;
}

.modal-content::-webkit-scrollbar {
  width: 8px;
}

.modal-content::-webkit-scrollbar-track {
  background: rgba(0,0,0,0.3);
  border-radius: 10px;
}

.modal-content::-webkit-scrollbar-thumb {
  background: #d4af37;
  border-radius: 10px;
}
/* ═══════════════════════════════════════════════
   FIX: About Section Video - Light Mode
   ═══════════════════════════════════════════════ */

/* إزالة الخلفية البيضاء من قسم About في اللايت مود */
body.light-mode .about-section {
  background: transparent !important;
}

/* التأكد من ظهور الفيديو بنفس الوضوح في اللايت مود */
body.light-mode .about-video {
  filter: blur(2px) brightness(0.7);
  opacity: 1;
}

/* إبقاء الـ overlay للنصوص واضحة في اللايت مود */
body.light-mode .about-section::before {
  background: linear-gradient(to right, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.45));
  z-index: 1;
}

/* Hero Section - نفس الحل */
body.light-mode .hero {
  background: transparent !important;
}

body.light-mode .hero-video {
  opacity: 1;
}

body.light-mode .hero-overlay {
  background: linear-gradient(180deg, rgba(0,0,0,0.75), rgba(0,0,0,0.85));
}
/* ═══════════════════════════════════════════════
   الحل النهائي: قسم من نحن - اللايت مود + الدارك مود
   ═══════════════════════════════════════════════ */

/* إلغاء الخلفية البيضاء من About و Hero */
body.light-mode .about-section,
body.light-mode .hero {
  background: transparent !important;
}

/* الفيديو يظهر بوضوح في كل الأوضاع */
body.light-mode .about-video,
body.light-mode .hero-video {
  opacity: 1 !important;
  filter: blur(2px) brightness(0.65);
}

/* Overlay داكن للنصوص تكون واضحة */
body.light-mode .about-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.4));
  z-index: 1;
}

body.light-mode .hero-overlay {
  background: linear-gradient(180deg, rgba(0,0,0,0.7), rgba(0,0,0,0.8)) !important;
}

/* النصوص: لون أبيض + ظل خفيف */
body.light-mode .about-section .section-title,
body.light-mode .about-section .section-subtitle,
body.light-mode .about-section .about-desc,
body.light-mode .about-section p {
  color: #ffffff !important;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5) !important;
  position: relative;
  z-index: 2;
}

/* Hero Section - نفس الشيء */
body.light-mode .hero .hero-title,
body.light-mode .hero .hero-subtitle {
  color: #ffffff !important;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5) !important;
}

/* About Wrapper يكون فوق الفيديو */
body.light-mode .about-wrapper {
  position: relative;
  z-index: 2;
}
/* ════════════════════════════════════════════════════════════
   ✅ الحل النهائي المحسّن: اللايت مود + الفيديو واضح 100%
   ════════════════════════════════════════════════════════════ */

/* 1️⃣ إلغاء الخلفية البيضاء تماماً */
body.light-mode .about-section,
body.light-mode .hero {
  background: transparent !important;
}

/* 2️⃣ الفيديو واضح تماماً بدون تغبيش */
body.light-mode .about-video {
  opacity: 1 !important;
  filter: blur(1px) brightness(0.75) !important; /* تخفيف blur من 2px إلى 1px */
}

body.light-mode .hero-video {
  opacity: 1 !important;
  filter: blur(0px) brightness(0.8) !important; /* إزالة blur تماماً من Hero */
}

/* 3️⃣ Overlay خفيف للنصوص فقط */
body.light-mode .about-section::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.35)) !important;
  z-index: 1 !important;
}

body.light-mode .hero-overlay {
  background: linear-gradient(180deg, rgba(0,0,0,0.65), rgba(0,0,0,0.75)) !important;
}

/* 4️⃣ النصوص بيضاء + ظل متوسط */
body.light-mode .about-section .section-title,
body.light-mode .about-section .section-subtitle,
body.light-mode .about-section .about-desc,
body.light-mode .about-section .about-text p {
  color: #ffffff !important;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6) !important;
  position: relative !important;
  z-index: 2 !important;
}

body.light-mode .hero .hero-title,
body.light-mode .hero .hero-subtitle {
  color: #ffffff !important;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6) !important;
}

/* 5️⃣ المحتوى فوق الفيديو */
body.light-mode .about-wrapper,
body.light-mode .hero-content {
  position: relative !important;
  z-index: 2 !important;
}

body.light-mode .img-wrapper,
body.light-mode .about-text {
  position: relative !important;
  z-index: 2 !important;
}
/* ════════════════════════════════════════════════════════════
   ✅ Hotel Modal - يتكيف تلقائياً مع الدارك واللايت مود
   ════════════════════════════════════════════════════════════ */

/* ═══════════════ DARK MODE ═══════════════ */
body:not(.light-mode) .hotel-modal {
  background: rgba(0, 0, 0, 0.8) !important;
  backdrop-filter: blur(6px) !important;
}

body:not(.light-mode) .hotel-modal-content {
  background: #12161d !important;
  color: #f5f5f5 !important;
}

body:not(.light-mode) .hotel-modal-content h2,
body:not(.light-mode) .hotel-modal-content h3 {
  color: #C9B27C !important;
}

body:not(.light-mode) .modal-close {
  color: #C9B27C !important;
}

body:not(.light-mode) .modal-features div {
  background: #1a1f26 !important;
  color: #eee !important;
}

body:not(.light-mode) .booking-alert {
  background: #3a1015 !important;
  color: #ffb3b3 !important;
}

/* ═══════════════ LIGHT MODE ═══════════════ */
body.light-mode .hotel-modal {
  background: rgba(255, 255, 255, 0.9) !important;
  backdrop-filter: blur(8px) !important;
}

body.light-mode .hotel-modal-content {
  background: #ffffff !important;
  color: #2b2b2b !important;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15) !important;
}

body.light-mode .hotel-modal-content h2,
body.light-mode .hotel-modal-content h3 {
  color: #8b0033 !important;
}

body.light-mode .modal-close {
  color: #8b0033 !important;
}

body.light-mode .modal-close:hover {
  color: #6f6b3e !important;
}

body.light-mode .modal-features div {
  background: #f7f6f2 !important;
  color: #2b2b2b !important;
  border: 1px solid #e5e5e5 !important;
}

body.light-mode .modal-gallery img {
  border: 1px solid #e5e5e5 !important;
}

body.light-mode .price-row {
  border-bottom: 1px solid #e5e5e5 !important;
  color: #2b2b2b !important;
}

body.light-mode .room-prices h3 {
  color: #8b0033 !important;
}

body.light-mode .booking-alert {
  background: #ffe6ea !important;
  color: #8b0033 !important;
  border: 1px solid #ffccd5 !important;
}

/* الأزرار في اللايت مود */
body.light-mode .modal-actions .btn-gold,
body.light-mode .modal-book-btn {
  background: #8b0033 !important;
  color: #ffffff !important;
}

body.light-mode .modal-actions .btn-gold:hover,
body.light-mode .modal-book-btn:hover {
  background: #6f6b3e !important;
}

body.light-mode .btn-outline {
  border: 1px solid #8b0033 !important;
  color: #8b0033 !important;
}

body.light-mode .btn-outline:hover {
  background: #8b0033 !important;
  color: #ffffff !important;
}

/* النصوص في اللايت مود */
body.light-mode .hotel-modal-content p,
body.light-mode .hotel-modal-content li {
  color: #2b2b2b !important;
}

/* ════════════════════════════════════════════════════════════
   ✅ Hotel Modal - يتكيف 100% مع الدارك واللايت مود
   ════════════════════════════════════════════════════════════ */

/* ═══════════════ DARK MODE (الافتراضي) ═══════════════ */
.hotel-modal {
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(6px);
}

.hotel-modal-content {
  background: #12161d;
  color: #f5f5f5;
}

.hotel-modal-content h2,
.hotel-modal-content h3,
.room-prices h3 {
  color: #C9B27C;
}

.modal-close {
  color: #C9B27C;
}

.modal-close:hover {
  color: #ffffff;
}

.modal-features div {
  background: #1a1f26;
  color: #eee;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.modal-gallery img {
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.price-row {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: #f5f5f5;
}

.booking-alert {
  background: #3a1015;
  color: #ffb3b3;
  border: 1px solid rgba(255, 179, 179, 0.2);
}

.modal-actions .btn-gold,
.modal-book-btn {
  background: #C9B27C;
  color: #1a1a1a;
}

.modal-actions .btn-gold:hover,
.modal-book-btn:hover {
  background: #d4af37;
}

.btn-outline {
  border: 1px solid #C9B27C;
  color: #C9B27C;
  background: transparent;
}

.btn-outline:hover {
  background: #C9B27C;
  color: #1a1a1a;
}

/* ═══════════════ LIGHT MODE (تجاوز الافتراضي) ═══════════════ */
body.light-mode .hotel-modal {
  background: rgba(255, 255, 255, 0.9) !important;
  backdrop-filter: blur(8px) !important;
}

body.light-mode .hotel-modal-content {
  background: #ffffff !important;
  color: #2b2b2b !important;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15) !important;
  border: 1px solid #e5e5e5 !important;
}

body.light-mode .hotel-modal-content h2,
body.light-mode .hotel-modal-content h3 {
  color: #8b0033 !important;
}

body.light-mode .modal-close {
  color: #8b0033 !important;
}

body.light-mode .modal-close:hover {
  color: #6f6b3e !important;
}

body.light-mode .modal-features div {
  background: #f7f6f2 !important;
  color: #2b2b2b !important;
  border: 1px solid #e5e5e5 !important;
}

body.light-mode .modal-gallery img {
  border: 1px solid #e5e5e5 !important;
}

body.light-mode .price-row {
  border-bottom: 1px solid #e5e5e5 !important;
  color: #2b2b2b !important;
}

body.light-mode .room-prices h3 {
  color: #8b0033 !important;
}

body.light-mode .booking-alert {
  background: #ffe6ea !important;
  color: #8b0033 !important;
  border: 1px solid #ffccd5 !important;
}

body.light-mode .modal-actions .btn-gold,
body.light-mode .modal-book-btn {
  background: #8b0033 !important;
  color: #ffffff !important;
}

body.light-mode .modal-actions .btn-gold:hover,
body.light-mode .modal-book-btn:hover {
  background: #6f6b3e !important;
}

body.light-mode .btn-outline {
  border: 1px solid #8b0033 !important;
  color: #8b0033 !important;
}

body.light-mode .btn-outline:hover {
  background: #8b0033 !important;
  color: #ffffff !important;
}

/* النصوص والقوائم */
body.light-mode .hotel-modal-content p,
body.light-mode .hotel-modal-content li,
body.light-mode .hotel-modal-content span {
  color: #2b2b2b !important;
}

body.light-mode .modal-pricing li {
  color: #2b2b2b !important;
}
/* ═══ تغيير لون الفوتر للذهبي في الدارك مود ═══ */

/* النصوص في الفوتر */
.main-footer,
.main-footer p,
.main-footer a,
.footer-social a {
  color: #C9B27C !important;
}

/* الروابط في الفوتر */
.main-footer .footer-links a,
.main-footer nav a {
  color: #C9B27C !important;
}

/* عناوين الأقسام في الفوتر */
.main-footer h3,
.main-footer h4 {
  color: #C9B27C !important;
}

/* الهايلايت (التحديد) */
.main-footer ::selection {
  background-color: #C9B27C !important;
  color: #000 !important;
}

.main-footer ::-moz-selection {
  background-color: #C9B27C !important;
  color: #000 !important;
}
/* ═══ تغيير لون خط الفوتر في الدارك مود فقط ═══ */
.main-footer p {
  color: #C9B27C !important;
}

.footer-social a {
  color: #C9B27C !important;
}

/* لون الهايلايت (التحديد) في الفوتر */
.main-footer ::selection {
  background: #C9B27C !important;
  color: #000 !important;
}
/* ═══ تعديلات اللايت مود للهيدر ═══ */

/* 1. خلفية الهيدر بيضاء (مش شفافة) */
body.light-mode .main-header,
body.light-mode .header {
  background: #ffffff !important;
  backdrop-filter: none !important;
}

/* 2. لون "أبراج الحسام" في اللوجو خمري */
body.light-mode .logo span,
body.light-mode .logo-text {
  color: #8b0033 !important;
}

/* 3. إزالة الهايلايت الأبيض من وراء الروابط فقط */
body.light-mode .main-nav a,
body.light-mode .nav-links a {
  background: transparent !important;
}

body.light-mode .main-nav a.active,
body.light-mode .main-nav a:hover {
  background: transparent !important;
}

/* ═══ إخفاء النص "شهر/رقمين/يوم" من date inputs ═══ */
input[type="date"]::-webkit-datetime-edit-text,
input[type="date"]::-webkit-datetime-edit-month-field,
input[type="date"]::-webkit-datetime-edit-day-field,
input[type="date"]::-webkit-datetime-edit-year-field {
  color: transparent !important;
}

/* يظهر فقط عند التعبئة */
input[type="date"]:valid::-webkit-datetime-edit-text,
input[type="date"]:valid::-webkit-datetime-edit-month-field,
input[type="date"]:valid::-webkit-datetime-edit-day-field,
input[type="date"]:valid::-webkit-datetime-edit-year-field {
  color: inherit !important;
}

/* الأيقونة تبقى ظاهرة */
input[type="date"]::-webkit-calendar-picker-indicator {
  opacity: 1 !important;
  cursor: pointer;
}

/* ═══════════════════════════════════════════════════════════
   ✅ HOTEL DETAILS MODAL - Dark & Light Mode Support
   ═══════════════════════════════════════════════════════════ */

/* Dark Mode (Default) */
.hotel-details-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hotel-details-modal-box {
  background: #0f202d;
  color: #fff;
  width: 90%;
  max-width: 700px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 30px;
  border-radius: 20px;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.close-details-modal {
  position: absolute;
  top: 15px;
  left: 20px;
  font-size: 32px;
  cursor: pointer;
  color: #d4af37;
  transition: 0.3s;
}

.close-details-modal:hover {
  color: #fff;
  transform: scale(1.1);
}

/* ═══════════════════════════════════════════════════════════
   ✅ LIGHT MODE OVERRIDES
   ═══════════════════════════════════════════════════════════ */

body.light-mode .hotel-details-modal {
  background: rgba(255, 255, 255, 0.9) !important;
}

body.light-mode .hotel-details-modal-box {
  background: #ffffff !important;
  color: #2b2b2b !important;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15) !important;
}

body.light-mode .close-details-modal {
  color: #8b0033 !important;
}

body.light-mode .close-details-modal:hover {
  color: #6f6b3e !important;
}

/* العناوين */
body.light-mode .hotel-details-modal h2,
body.light-mode .hotel-details-modal h3 {
  color: #8b0033 !important;
}

/* النصوص */
body.light-mode .hotel-details-modal p,
body.light-mode .hotel-details-modal span,
body.light-mode .hotel-details-modal small,
body.light-mode .hotel-details-modal strong {
  color: #2b2b2b !important;
}

/* الأسعار */
body.light-mode .hotel-details-modal strong {
  color: #8b0033 !important;
}

/* خلفية الأسعار */
body.light-mode .hotel-details-modal > div > div {
  background: rgba(139, 0, 51, 0.05) !important;
}

/* الحدود */
body.light-mode .hotel-details-modal div[style*="border-bottom"] {
  border-bottom: 1px solid rgba(139, 0, 51, 0.2) !important;
}

/* تحذير الحجز */
body.light-mode .hotel-details-modal div[style*="rgba(220,53,69"] {
  background: rgba(220, 53, 69, 0.1) !important;
  border: 1px solid rgba(220, 53, 69, 0.3) !important;
  color: #dc3545 !important;
}

/* زر فتح الموقع */
body.light-mode .hotel-details-modal .btn-gold {
  background: #8b0033 !important;
  color: #ffffff !important;
}

body.light-mode .hotel-details-modal .btn-gold:hover {
  background: #6f6b3e !important;
}




/* ═══════════════════════════════════════════════════════════
   ✅ BOOKING MODAL - Dark & Light Mode Support
   ═══════════════════════════════════════════════════════════ */

/* Dark Mode (Default) */
#bookingModal.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
}

#bookingModal.modal-overlay.active {
  display: flex !important;
}

#bookingModal .modal-content {
  background: #0f202d;
  color: #fff;
  width: 90%;
  max-width: 500px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 30px;
  border-radius: 20px;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

#bookingModal .modal-close {
  position: absolute;
  top: 15px;
  left: 20px;
  font-size: 32px;
  background: none;
  border: none;
  cursor: pointer;
  color: #d4af37;
  transition: 0.3s;
}

#bookingModal .modal-close:hover {
  color: #fff;
  transform: scale(1.1);
}

#bookingModal .modal-title {
  color: #d4af37;
  text-align: center;
  margin-bottom: 25px;
  font-size: 24px;
}

/* ═══════════════════════════════════════════════════════════
   ✅ LIGHT MODE OVERRIDES
   ═══════════════════════════════════════════════════════════ */

body.light-mode #bookingModal.modal-overlay {
  background: rgba(255, 255, 255, 0.9) !important;
}

body.light-mode #bookingModal .modal-content {
  background: #ffffff !important;
  color: #2b2b2b !important;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15) !important;
}

body.light-mode #bookingModal .modal-close {
  color: #8b0033 !important;
}

body.light-mode #bookingModal .modal-close:hover {
  color: #6f6b3e !important;
}

body.light-mode #bookingModal .modal-title {
  color: #8b0033 !important;
}

/* Form Labels */
body.light-mode #bookingModal .hotel-booking-form label {
  color: #6f6b3e !important;
}

/* Form Inputs */
body.light-mode #bookingModal .hotel-booking-form input,
body.light-mode #bookingModal .hotel-booking-form select {
  background: #f9f9f7 !important;
  color: #2b2b2b !important;
  border: 1px solid #ddd !important;
}

body.light-mode #bookingModal .hotel-booking-form input:focus,
body.light-mode #bookingModal .hotel-booking-form select:focus {
  border-color: #8b0033 !important;
  background: #ffffff !important;
  box-shadow: 0 0 0 3px rgba(139, 0, 51, 0.1) !important;
}

/* Submit Button */
body.light-mode #bookingModal .hotel-booking-form .btn-gold {
  background: #8b0033 !important;
  color: #ffffff !important;
}

body.light-mode #bookingModal .hotel-booking-form .btn-gold:hover {
  background: #6f6b3e !important;
}
.hotel-gallery {
  display: none;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 20px;
}

.hotel-gallery img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 10px;
}

/* ===== Intro Screen ===== */
.intro-screen {
  position: fixed;
  inset: 0;
  background: linear-gradient(135deg, #0e0e0e, #1a1a1a);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.intro-screen.hide {
  opacity: 0;
  visibility: hidden;
}

.intro-content {
  text-align: center;
  animation: introFade 1.5s ease forwards;
}

.intro-logo {
  width: 140px;
  margin-bottom: 20px;
  animation: logoZoom 1.5s ease;
}

.intro-title {
  color: #C9B27C;
  font-size: 32px;
  margin-bottom: 10px;
  letter-spacing: 2px;
}

.intro-subtitle {
  color: #aaa;
  font-size: 16px;
}

/* Animations */
@keyframes logoZoom {
  from { transform: scale(0.6); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}

@keyframes introFade {
  from { opacity: 0; transform: translateY(15px); }
  to   { opacity: 1; transform: translateY(0); }
}
