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

body {
  background: #f4f4f4;
}

/* ================= NAVBAR ================= */

.navbar {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 7%;
  z-index: 1000;
  direction: rtl;
}

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

.logo img {
  width: 200px;
}

.logo h3 {
  font-size: 18px;
  font-weight: 800;
}

.logo span {
  font-size: 11px;
  letter-spacing: 2px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 35px;
}

.nav-links a {
  text-decoration: none;
  color: white;
  font-weight: 700;
}

.booking-btn {
  background: #f7a928;
  padding: 12px 30px;
  border-radius: 30px;
  text-decoration: none;
  color: #fff;
  font-weight: 700;
}

/* ================ RESPONSIVE ================= */

@media(max-width:992px) {
  .nav-links {
    display: none;
  }

  .hero h1 {
    font-size: 32px;
  }

  .script-title {
    font-size: 40px;
  }

  .contact-pill {
    padding: 14px 25px;
  }

}

/* ================= MOBILE NAV ================= */

.menu-toggle {
  display: none;
  font-size: 22px;
  cursor: pointer;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: #111;
  color: #fff;
  padding: 30px;
  transition: 0.4s ease;
  z-index: 2000;
}

.mobile-menu ul {
  list-style: none;
  margin-top: 50px;
}

.mobile-menu li {
  margin-bottom: 25px;
}

.mobile-menu a {
  color: #fff;
  text-decoration: none;
  font-size: 18px;
}

.mobile-menu.active {
  right: 0;
}

.close-btn {
  text-align: left;
  font-size: 20px;
  cursor: pointer;
}

.overlay-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  z-index: 1500;
}

.overlay-menu.active {
  display: block;
}

/* ===== Dropdown Base ===== */
.dropdown {
  position: relative;
}

.dropdown>a {
  display: flex;
  align-items: center;
  gap: 5px;
}

/* سهم */
.arrow {
  font-size: 12px;
  transition: transform 0.3s ease;
}

/* القائمة الأساسية */
.dropdown-menu {
  position: absolute;
  top: 120%;
  right: 0;
  background: #fff;
  list-style: none;
  padding: 10px 0;
  min-width: 180px;
  border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px) scale(0.95);
  transition: all 0.3s ease;
}

/* عند hover */
.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

/* لف السهم */
.dropdown:hover>a .arrow {
  transform: rotate(180deg);
}

/* العناصر */
.dropdown-menu li {
  padding: 10px 20px;
  position: relative;
}

.dropdown-menu li a {
  color: #000;
  display: flex;
  justify-content: space-between;
}

/* ===== Sub Dropdown ===== */
.dropdown-sub {
  position: relative;
}

.sub-menu {
  position: absolute;
  top: 0;
  right: 100%;
  background: #fff;
  min-width: 160px;
  border-radius: 10px;
  padding: 10px 0;
  list-style: none;

  opacity: 0;
  visibility: hidden;
  transform: translateX(10px) scale(0.95);
  transition: all 0.3s ease;
}

.dropdown-sub:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(0) scale(1);
}

/* سهم sub */
.dropdown-sub:hover>a .arrow {
  transform: rotate(90deg);
}

/* موبايل dropdown */
.mobile-dropdown>a {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* السهم */
.mobile-dropdown .arrow {
  transition: transform 0.3s ease;
}

/* لف السهم لما يفتح */
.mobile-dropdown.active .arrow {
  transform: rotate(180deg);
}

/* Animation خفيفة للقائمة */
.mobile-dropdown-menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.mobile-dropdown.active .mobile-dropdown-menu {
  max-height: 300px;
  /* كفاية للمحتوى */
}

/* Responsive */

@media(max-width:992px) {

  .nav-links {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .booking-btn {
    display: none;
  }
}



.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.slider {
  height: 100%;
  position: relative;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transform: scale(1.1);
  opacity: 0;
  transition: all 1.5s ease;
}

.slide.active {
  opacity: 1;
  transform: scale(1);
  z-index: 2;
}

/* Overlay */
.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.25);
}

/* Text */
.container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-text {
  text-align: center;
  color: #fff;
  animation: fadeUp 1.5s ease;
}

.hero-text h1 {
  font-size: 90px;
  font-weight: 2000;
  letter-spacing: 2px;
}


/* Animation */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 992px) {
  .hero-text h1 {
    font-size: 100px;
  }
}

@media (max-width: 576px) {
  .hero-text h1 {
    font-size: 50px;
  }

}

.about {
  padding: 60px 0;
  background: #f9f9f9;
}

.about .container {
  width: 90%;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

/* TEXT */
.about-text {
  flex: 1;
}

.small-title {
  color: #f7a928;
  font-size: 14px;
  margin-bottom: 15px;
  display: inline-block;
}

.about-text h2 {
  font-size: 50px;
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 25px;
  color: #222;
}

.about-text p {
  color: #777;
  line-height: 1.8;
  margin-bottom: 30px;
  max-width: 500px;
}

.learn-more {
  text-decoration: none;
  color: #999;
  border-bottom: 1px solid #ccc;
  padding-bottom: 5px;
  transition: 0.3s;
}

.learn-more:hover {
  color: #000;
  border-color: #000;
}

/* IMAGES */
.about-images {
  flex: 1;
  position: relative;
  height: 500px;
}

/* image common */
.img {
  position: absolute;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

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

/* first image */
.img1 {
  width: 300px;
  height: 420px;
  top: 0;
  left: 50px;
  z-index: 2;
}

/* second image (متداخلة) */
.img2 {
  width: 300px;
  height: 420px;
  bottom: 0;
  right: 0;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .about .container {
    flex-direction: column;
    text-align: center;
  }

  .about-text h2 {
    font-size: 35px;
  }

  .about-images {
    height: auto;
    display: flex;
    gap: 20px;
    justify-content: center;
  }

  .img {
    position: static;
    width: 45%;
    height: 300px;
  }
}

@media (max-width: 576px) {
  .about-text h2 {
    font-size: 28px;
  }

  .about-text p {
    font-size: 14px;
  }

  .img {
    width: 100%;
    height: 250px;
  }

  .about-images {
    flex-direction: column;
  }
}

.offers-section {
  padding: 10px 40px 100px;
  background: #f8f9fa;
}

/* Header */
.section-header {
  text-align: center;
  margin-bottom: 70px;
}

.sub-title {
  font-size: 14px;
  color: #f7a928;
  margin-bottom: 10px;
}

.main-title {
  font-size: 42px;
  font-weight: 400;
  color: #222;
}

/* Grid */
.offers-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

/* Card (من غير background) */
.offer-card {
  text-align: left;
  transition: 0.4s ease;
}

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

/* Image */
.img-box {
  overflow: hidden;
}

.img-box img {
  width: 100%;
  height: 270px;
  object-fit: cover;
  display: block;
  transition: 0.5s;
}

.offer-card:hover img {
  transform: scale(1.07);
}

/* Text */
.offer-card h3 {
  font-size: 18px;
  font-weight: 500;
  margin: 18px 0 15px;
  color: #222;
  line-height: 1.4;
}

.offer-card ul {
  list-style: none;
  margin-bottom: 20px;
}

.offer-card ul li {
  font-size: 14px;
  color: #666;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.offer-card ul li i {
  color: #f7a928;
  font-size: 13px;
}

/* Button */
.btn {
  display: block;
  text-align: center;
  padding: 12px;
  border: 1px solid #f7a928;
  color: #f7a928;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.btn:hover {
  background: #f7a928;
  color: #fff;
}

@media (max-width: 992px) {
  .offers-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .offers-section {
    padding: 0px 20px 50px;
  }

  .offers-grid {
    grid-template-columns: 1fr;
  }

  .main-title {
    font-size: 28px;
  }

  .img-box img {
    height: 220px;
  }
}

.video-bg {
  position: relative;
}

.video-bg video {
  width: 100%;
  height: 650px;
  object-fit: cover;
}

/* Overlay */
.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

/* Content */
.content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: center;
}

.sub {
  font-size: 14px;
  margin-bottom: 10px;
}

.content h2 {
  font-size: 50px;
  font-weight: 400;
  margin-bottom: 25px;
}

/* Play button */
.play-btn {
  width: 80px;
  height: 80px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: 0.3s;
}

.play-btn i {
  color: #f7a928;
}

.play-btn:hover {
  transform: scale(1.1);
}

/* Popup */
.video-popup {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  display: none;
  justify-content: center;
  align-items: center;
}

.video-popup.active {
  display: flex;
}

.video-box {
  width: 80%;
  max-width: 900px;
  position: relative;
}

.video-box iframe {
  width: 100%;
  height: 500px;
}

.close {
  position: absolute;
  top: -40px;
  right: 0;
  font-size: 30px;
  color: #fff;
  cursor: pointer;
}

@media (max-width: 768px) {
  .video-bg video {
    height: 400px;
  }

  .content h2 {
    font-size: 28px;
  }

  .play-btn {
    width: 60px;
    height: 60px;
  }

  .video-box iframe {
    height: 250px;
  }
}

.footer {
  background: #efefef;
  padding: 60px 20px 30px;
  direction: rtl;
}

.container {
  max-width: 1100px;
  margin: auto;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

.footer-col {
  flex: 1;
}

.footer-col h4 {
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #f4a51c;
}

.footer-col p {
  color: #777;
  margin-bottom: 15px;
  line-height: 1.6;
}

.footer-col a {
  display: block;
  color: #777;
  text-decoration: underline;
  margin-bottom: 10px;
  transition: 0.3s;
}

.footer-col a:hover {
  color: #000;
}

/* SOURCES GRID */
.links-grid {
  display: flex;
  gap: 40px;
}

/* SOCIAL */
.social {
  margin-top: 20px;
  display: flex;
  gap: 10px;
}

.social span {
  width: 45px;
  height: 45px;
  background: #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s;
}

.social span i {
  font-size: 16px;
  color: #555;
}

.social span:hover {
  background: #f4a51c;
}

.social span:hover i {
  color: #fff;
}

/* BOTTOM */
.footer-bottom {
  text-align: center;
  margin-top: 50px;
  color: #777;
  font-size: 14px;
}

.footer-bottom a {
  color: #777;
  text-decoration: underline;
}

/* 📱 RESPONSIVE */
@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    gap: 30px;
  }

  .links-grid {
    flex-direction: column;
  }

  .social {
    justify-content: flex-start;
  }

  .footer {
    padding: 40px 15px;
  }
}