/* ===== Reset ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #000;
  color: #fff;
}

/* ===== Header ===== */
header {
  background: linear-gradient(90deg, #000000, #111, #1a1a1a, #222, #000);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 10px rgba(0,0,0,0.5);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

/* Logo */
.logo img {
  height: 65px;
  width: auto;
  transition: filter 0.3s;
}

.logo img:hover {
  filter: drop-shadow(0 0 5px #c8a45d);
}

/* Navigation */
.nav-menu {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-menu li a {
  color: #c8a45d; /* ذهبي هادي */
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  transition: color 0.3s;
}

.nav-menu li a:hover {
  color: #e6c200; /* ذهبي أفتح عند hover */
}

/* ===== Slider ===== */
.slider {
  position: relative;
  width: 100%;
  height: 90vh;
  overflow: hidden;
}

.slides .slide {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slides .slide.active {
  opacity: 1;
}

/* ===== Site Name Overlay ===== */
.site-name-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 10;
}

.site-name-overlay h1 {
  font-size: 50px;
  color: #c8a45d; /* ذهبي هادي */
  font-weight: 700;
  text-shadow: 2px 2px 10px rgba(0,0,0,0.7);
}

.site-name-overlay p {
  font-size: 24px;
  color: #c8a45d;
  font-weight: 500;
  text-shadow: 1px 1px 5px rgba(0,0,0,0.7);
  margin-top: 10px;
}

/* ===== Trust Section ===== */
.trust-section {
  background-color: #111; /* داكن فخم */
  padding: 80px 20px;
  text-align: center;
}

.trust-section h2 {
  font-size: 36px;
  color: #c8a45d; /* ذهبي هادي */
  margin-bottom: 15px;
}

.trust-section p {
  font-size: 16px;
  color: #fff;
  margin-bottom: 50px;
}

.trust-cards {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.trust-card {
  background: #222;
  border-radius: 20px;
  padding: 30px 25px;
  width: 220px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.trust-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 40px rgba(200, 164, 93, 0.35);
}

.trust-icon {
  font-size: 32px;
  display: block;
  margin-bottom: 15px;
  color: #c8a45d; /* ذهبي هادي */
}

.trust-card p {
  font-size: 14px;
  color: #fff;
  font-weight: 500;
}

.tripadvisor-badge a {
  display: inline-block;
  background-color: #c8a45d;
  color: #000;
  padding: 14px 36px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(200, 164, 93, 0.35);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.tripadvisor-badge a:hover {
  transform: scale(1.05);
  background-color: #b99350; /* ذهبي أغمق */
}

/* ===== Contact Section ===== */
.contact-section {
  background: #111;
  padding: 80px 20px;
  text-align: center;
}

.contact-section h2 {
  font-size: 32px;
  color: #c8a45d;
  margin-bottom: 15px;
}

.contact-section p {
  font-size: 16px;
  color: #fff;
  margin-bottom: 35px;
}

.contact-whatsapp {
  display: inline-block;
  background-color: #c8a45d;
  color: #000;
  padding: 16px 40px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(200, 164, 93, 0.35);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.contact-whatsapp:hover {
  transform: translateY(-3px);
  background-color: #b99350;
}

.contact-info {
  margin-top: 30px;
  font-size: 14px;
  color: #aaa;
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

/* ===== Floating WhatsApp ===== */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  border-radius: 50%;
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.whatsapp-float::before {
  content: "";
  width: 28px;
  height: 28px;
  background-color: #fff;
  mask: url("https://upload.wikimedia.org/wikipedia/commons/6/6b/WhatsApp.svg") no-repeat center;
  -webkit-mask: url("https://upload.wikimedia.org/wikipedia/commons/6/6b/WhatsApp.svg") no-repeat center;
  mask-size: contain;
  -webkit-mask-size: contain;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

/* ===== Mobile ===== */
@media (max-width: 768px) {
  .site-name-overlay h1 {
    font-size: 28px;
  }
  .site-name-overlay p {
    font-size: 16px;
  }
  .trust-cards {
    flex-direction: column;
    gap: 25px;
    align-items: center;
  }
  .trust-card {
    width: 80%;
  }
  .tripadvisor-badge a {
    width: 80%;
    padding: 12px 0;
    font-size: 15px;
  }
  .contact-whatsapp {
    width: 80%;
    padding: 15px 0;
  }
}
footer {
  background-color: #111; /* داكن */
  color: #fff;
  padding: 60px 20px 20px 20px;
  font-family: 'Poppins', sans-serif;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
  gap: 30px;
  align-items: flex-start;
}

/* Logo */
.footer-logo img {
  width: 130px;
  height: auto;
  margin-bottom: 20px;
  transition: transform 0.3s, filter 0.3s;
}

.footer-logo img:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 0 8px #c8a45d);
}

/* Titles */
.footer-container h3 {
  color: #c8a45d; /* ذهبي */
  margin-bottom: 15px;
  font-size: 18px;
}

/* Paragraphs & Links */
.footer-container p, .footer-container a {
  color: #fff;
  font-size: 14px;
  text-decoration: none;
  margin-bottom: 8px;
  display: block;
  transition: color 0.3s;
}

.footer-container a:hover {
  color: #c8a45d;
  text-decoration: underline;
}

/* Footer Bottom */
.footer-bottom {
  text-align: center;
  margin-top: 40px;
  font-size: 12px;
  color: #777;
  border-top: 1px solid #333;
  padding-top: 15px;
}

/* Mobile */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    gap: 25px;
    text-align: center;
  }
  .footer-logo {
    margin-bottom: 20px;
  }
}
/* ===== About Us Section ===== */
.about-us {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
  font-family: 'Poppins', sans-serif;
  color: #333;
  text-align: center;
}

.about-us h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  background: linear-gradient(45deg, #FFD700, #FFA500);
  -webkit-background-clip: text;
  color: transparent;
  font-weight: 700;
}

.about-us p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 40px;
}

/* ===== Grid for Images ===== */
.about-images {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-bottom: 40px;
}

/* ===== Individual Card ===== */
.about-card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.25);
}

.about-card img {
  width: 100%;
  height: auto;
}

.about-card h3 {
  margin: 15px 0 10px 0;
  font-size: 1.3rem;
  background: linear-gradient(45deg, #FFD700, #FFA500);
  -webkit-background-clip: text;
  color: transparent;
  font-weight: 700;
}

.about-card p {
  font-size: 1rem;
  padding: 0 15px 20px 15px;
  color: #555;
}

/* ===== Key Highlights ===== */
.about-us h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  background: linear-gradient(45deg, #FFD700, #FFA500);
  -webkit-background-clip: text;
  color: transparent;
  font-weight: 700;
}

.highlights {
  list-style: none;
  padding: 0;
  margin-bottom: 40px;
}

.highlights li {
  font-size: 1.1rem;
  margin: 10px 0;
  position: relative;
  padding-left: 30px;
}

.highlights li::before {
  content: "✔";
  color: #FFD700;
  position: absolute;
  left: 0;
}

/* ===== Call to Action Button ===== */
.cta .btn {
  display: inline-block;
  padding: 15px 35px;
  background: linear-gradient(45deg, #FFD700, #FFA500);
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 50px;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

/* ===== Responsive ===== */
@media screen and (max-width: 768px) {
  .about-us h1 {
    font-size: 2rem;
  }
  .about-us h2 {
    font-size: 1.7rem;
  }
}
/* Navbar responsive */
header {
  flex-wrap: wrap;
}

nav ul {
  flex-wrap: wrap;
  justify-content: center;
}

@media (max-width: 768px) {
  header {
    padding: 15px;
  }

  nav ul {
    width: 100%;
    justify-content: space-around;
  }

  nav a {
    font-size: 16px;
  }

  .logo img {
    height: 50px;
  }
}
/* ===== Reset ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #000;
  color: #fff;
}

/* ===== Header ===== */
header {
  background: linear-gradient(90deg, #000000, #111, #1a1a1a, #222, #000);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 10px rgba(0,0,0,0.5);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

/* Logo */
.logo img {
  height: 65px;
  width: auto;
  transition: filter 0.3s;
}

.logo img:hover {
  filter: drop-shadow(0 0 5px #c8a45d);
}

/* Navigation */
.nav-menu {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-menu li a {
  color: #c8a45d;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  transition: color 0.3s;
}

.nav-menu li a:hover,
.nav-menu li a.active {
  color: #e6c200;
}

/* ===== About Us Section ===== */
.about-us {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.about-us h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  background: linear-gradient(45deg, #FFD700, #FFA500);
  -webkit-background-clip: text;
  color: transparent;
  font-weight: 700;
}

.about-us p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 40px;
  color: #ddd;
}

.about-us h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  background: linear-gradient(45deg, #FFD700, #FFA500);
  -webkit-background-clip: text;
  color: transparent;
  font-weight: 700;
}

.highlights {
  list-style: none;
  padding: 0;
  margin-bottom: 40px;
}

.highlights li {
  font-size: 1.1rem;
  margin: 10px 0;
  position: relative;
  padding-left: 30px;
  color: #ddd;
}

.highlights li::before {
  content: "✔";
  color: #FFD700;
  position: absolute;
  left: 0;
}

/* ===== Call to Action Button ===== */
.cta .btn {
  display: inline-block;
  padding: 15px 35px;
  background: linear-gradient(45deg, #FFD700, #FFA500);
  color: #000;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 50px;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

/* ===== Grid for Images ===== */
.about-images {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto 60px auto;
  padding: 0 20px;
}

/* ===== Individual Card ===== */
.about-card {
  background: #111;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.35);
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(200,164,93,0.25);
}

.about-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.about-card h3 {
  margin: 15px 0 10px 0;
  font-size: 1.3rem;
  background: linear-gradient(45deg, #FFD700, #FFA500);
  -webkit-background-clip: text;
  color: transparent;
  font-weight: 700;
}

.about-card p {
  font-size: 1rem;
  padding: 0 15px 20px 15px;
  color: #ddd;
}

/* ===== Footer ===== */
footer {
  background-color: #111;
  color: #fff;
  padding: 60px 20px 20px 20px;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
  gap: 30px;
  align-items: flex-start;
}

.footer-container h3 {
  color: #c8a45d;
  margin-bottom: 15px;
  font-size: 18px;
}

.footer-container p,
.footer-container a {
  color: #fff;
  font-size: 14px;
  text-decoration: none;
  margin-bottom: 8px;
  display: block;
}

.footer-container a:hover {
  color: #c8a45d;
  text-decoration: underline;
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  font-size: 12px;
  color: #777;
  border-top: 1px solid #333;
  padding-top: 15px;
}

/* ===== Floating WhatsApp ===== */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  border-radius: 50%;
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.whatsapp-float::before {
  content: "";
  width: 28px;
  height: 28px;
  background-color: #fff;
  mask: url("https://upload.wikimedia.org/wikipedia/commons/6/6b/WhatsApp.svg") no-repeat center;
  -webkit-mask: url("https://upload.wikimedia.org/wikipedia/commons/6/6b/WhatsApp.svg") no-repeat center;
  mask-size: contain;
  -webkit-mask-size: contain;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .nav-menu {
    gap: 15px;
  }

  .logo img {
    height: 50px;
  }

  .about-us h1 {
    font-size: 2rem;
  }

  .about-us h2 {
    font-size: 1.7rem;
  }

  .about-card img {
    height: 200px;
  }

  .footer-container {
    text-align: center;
    align-items: center;
  }
}
/* ===== Reviews Banner Under Slider ===== */
.reviews-banner {
  background: #111;
  padding: 30px 0;
}

.reviews-banner-content {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
  border: 1px solid #333;
  padding: 25px;
  border-radius: 18px;
  background: rgba(0,0,0,0.5);
}

.reviews-banner-content h2 {
  color: gold;
  font-size: 28px;
  margin-bottom: 8px;
}

.reviews-banner-content p {
  color: #fff;
  opacity: 0.8;
  margin-bottom: 15px;
}

.reviews-btn {
  display: inline-block;
  padding: 12px 22px;
  border-radius: 12px;
  border: 1px solid gold;
  color: gold;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.reviews-btn:hover {
  background: gold;
  color: #000;
}

/* Responsive */
@media (max-width: 768px) {
  .reviews-banner-content h2 {
    font-size: 22px;
  }
}
/* ===== Quick Facts ===== */
.quick-facts {
  background: #111;
  padding: 60px 20px;
}

.quick-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.quick-container h2 {
  color: #c8a45d;
  font-size: 32px;
  margin-bottom: 10px;
}

.quick-container p {
  color: #fff;
  font-size: 16px;
  margin-bottom: 35px;
}

.facts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.fact-card {
  background: #222;
  border-radius: 15px;
  padding: 25px 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.5);
  transition: transform 0.3s ease;
}

.fact-card:hover {
  transform: translateY(-5px);
}

.fact-icon {
  font-size: 28px;
  display: block;
  margin-bottom: 12px;
}

.fact-card h3 {
  color: #c8a45d;
  font-size: 18px;
  margin-bottom: 10px;
}

.fact-card p {
  color: #fff;
  font-size: 14px;
  line-height: 1.5;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .facts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
/* ===== Map Section ===== */
.map-section {
  background: #111;
  padding: 60px 20px;
  text-align: center;
}

.map-section h2 {
  color: #c8a45d;
  font-size: 32px;
  margin-bottom: 10px;
}

.map-section p {
  color: #ddd;
  margin-bottom: 20px;
  font-size: 16px;
}

.map-container {
  max-width: 1200px;
  margin: auto;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,0.6);
}

.map-btn {
  display: inline-block;
  margin-top: 15px;
  padding: 12px 30px;
  background: linear-gradient(45deg, #FFD700, #FFA500);
  color: #000;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.map-btn:hover {
  transform: translateY(-3px);
}
.btn-book {
  width: 100%;
  max-width: 420px;
  margin: 20px auto;
  padding: 18px 24px;
  border-radius: 60px;
  border: 2px solid #d4af37;
  cursor: pointer;
  background: #000;
  color: #d4af37;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 4px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-book:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.45);
}

.btn-text {
  font-size: 20px;
  font-weight: 900;
}

.btn-subtext {
  font-size: 13px;
  font-weight: 600;
  opacity: 0.9;
}
.btn-book-fixed {
  position: fixed;
  bottom: 18px;
  left: 18px; /* بدل right */
  z-index: 9999;
  padding: 14px 18px;
  border-radius: 999px;
  border: 2px solid #d4af37;
  background: #000;
  color: #d4af37;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 16px 40px rgba(0,0,0,0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-book-fixed:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.45);
}

@media (max-width: 768px) {
  .btn-book-fixed {
    left: 12px;
    bottom: 12px;
    padding: 12px 14px;
  }
}
.booking-form {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.8);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.form-content {
  background: #111;
  padding: 20px;
  width: 90%;
  max-width: 420px;
  height: 90%;
  border-radius: 15px;
  color: #fff;
  border: 2px solid #d4af37;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.form-content::-webkit-scrollbar {
  width: 6px;
}

.form-content::-webkit-scrollbar-thumb {
  background: #d4af37;
  border-radius: 10px;
}

.form-content input {
  width: 100%;
  padding: 12px;
  margin: 10px 0;
  border-radius: 10px;
  border: 1px solid #d4af37;
  background: #000;
  color: #fff;
}

.input-icon {
  position: relative;
  width: 100%;
}

.input-icon input {
  padding-right: 40px;
}

.input-icon .icon {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
  cursor: pointer;
}

#tourList {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-height: 200px;
  overflow-y: auto;
  padding: 10px;
  border: 1px solid #d4af37;
  border-radius: 10px;
  background: #000;
}

.tour-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.tour-item input {
  width: 18px;
  height: 18px;
}

.tour-item label {
  color: #fff;
  font-size: 14px;
}

.form-content button {
  width: 100%;
  padding: 14px;
  background: #d4af37;
  border: none;
  border-radius: 12px;
  font-weight: 800;
  cursor: pointer;
  color: #000;
}


