* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  html {
    scroll-behavior: smooth;
  }
    
  body {
    font-family: 'Segoe UI', sans-serif;
    line-height: 1.6;
    scroll-behavior: smooth;
  }
  
  header {
    position: sticky;
    top: 0;
    background: white;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  }
  
 /* Default navbar style (transparent over hero) */
 .navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, #1a1a1a 0%, #3a3a3a 100%);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  position: relative;
  border-bottom: 3px solid #d4af37;
}

.logo {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 50px;
  filter: drop-shadow(0 0 5px rgba(212, 175, 55, 0.7));
  transition: transform 0.3s ease;
}

.logo-img:hover {
  transform: scale(1.05);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-links li a {
  color: #d4af37;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  transition: all 0.3s ease;
  position: relative;
}

.nav-links li a:before {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #d4af37;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
}

.nav-links li a:hover:before {
  visibility: visible;
  width: 100%;
}

.nav-links li a:hover {
  color: #f5f1e6;
  text-shadow: 0 0 5px rgba(212, 175, 55, 0.7);
}

.hamburger {
  display: none;
  color: #d4af37;
  font-size: 1.8rem;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.hamburger:hover {
  transform: scale(1.1);
}

/* Egyptian Hieroglyphic Menu */
.hieroglyph-menu {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  width: 100%;
  background-color: rgba(26, 26, 26, 0.95);
  border-top: 2px solid #d4af37;
  border-bottom: 2px solid #d4af37;
  z-index: 1000;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.5s ease-out;
}

.hieroglyph-menu.active {
  display: block;
  max-height: 500px;
}

.hieroglyph-menu ul {
  list-style: none;
  padding: 1rem;
}

.hieroglyph-menu li {
  margin: 1rem 0;
  text-align: center;
}

.hieroglyph-menu a {
  color: #d4af37;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: bold;
  display: block;
  padding: 0.5rem;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.hieroglyph-menu a:hover {
  background-color: rgba(212, 175, 55, 0.2);
  transform: translateX(5px);
}

/* Hieroglyphic Decoration */
.hieroglyphic-decoration {
  display: flex;
  justify-content: center;
  padding: 0.5rem;
  background-color: rgba(58, 58, 58, 0.8);
  border-top: 1px solid #d4af37;
}

.hieroglyph {
  font-size: 1.5rem;
  margin: 0 0.5rem;
  color: #d4af37;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .nav-links {
      display: none;
  }
  
  .hamburger {
      display: block;
  }
  
  .navbar {
      padding: 1rem;
  }
}
  .logo-img {
    height: 95px;
    width: auto;
    object-fit: contain;
  }
  
  .hero {
    position: relative;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    overflow: hidden;
  }
  
  .hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
  }
  
  .hero-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem; /* Adds spacing between h1, p, and .btn */
    padding: 0 1rem; /* For better mobile spacing */
  }
  
  
  .hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4);
  }
  
/* Fonts */
.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    line-height: 1.2;
    margin: 0;
    animation: fadeInUp 1s ease-out forwards;
  }

  .hero-content p {
    font-family: 'Palatino Linotype', 'Book Antiqua', serif;
    font-size: 1.5rem;
    margin-top: 1rem;
    opacity: 0;
    animation: fadeInUp 1s ease-out forwards;
    animation-delay: 0.5s;
    color: #f5f1e6;
    font-style: italic;
    max-width: 600px;
}

  .btn {
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    margin-top: 1.5rem;
    background: #ff6347;
    padding: 0.75rem 1.5rem;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    transition: background 0.3s, transform 0.3s;
    opacity: 0;
    animation: fadeInUp 1s ease-out forwards;
    animation-delay: 1s;
  }
  .btn:hover {
    background: #e5533d;
    transform: translateY(-3px);
  }

  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); /* dim video */
    z-index: 0;
  }
  
  .section {
    padding: 4rem 2rem;
    text-align: center;
  }
  
  .section.light {
    background: #f9f9f9;
  }
  
  .section-title {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
  
  .destinations-container {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .card {
    width: 300px;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    background: white;
    transition: transform 0.3s ease;
  }
  
  .card:hover {
    transform: translateY(-10px);
  }
  
  .card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
  }
  
  .features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
  }
  
  .feature {
    width: 200px;
    padding: 1rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: transform 0.3s;
  }
  
  .feature:hover {
    transform: scale(1.05);
  }
  
  .feature i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    display: block;
  }
  
  .carousel {
    max-width: 600px;
    margin: auto;
    overflow: hidden;
    position: relative;
  }
  
  .testimonial {
    display: none;
    animation: fadeIn 1s ease forwards;
  }
  
  .testimonial.active {
    display: block;
  }
  
        /* WhatsApp Button with Hieroglyph Animation */
        .whatsapp-scroll-btn {
          position: fixed;
          bottom: 30px;
          right: 30px;
          background: linear-gradient(to bottom, #25D366, #128C7E);
          color: white;
          width: 60px;
          height: 60px;
          border-radius: 50%;
          display: none;
          align-items: center;
          justify-content: center;
          box-shadow: 0 5px 20px rgba(0,0,0,0.2);
          z-index: 100;
          transition: all 0.3s ease;
          text-decoration: none;
          overflow: hidden;
      }

      .whatsapp-scroll-btn.show {
          display: flex;
          animation: bounceIn 0.5s ease-out;
      }

      .whatsapp-scroll-btn::before {
          content: "𓃭";
          font-family: 'EgyptianHieroglyphs', 'Times New Roman', serif;
          position: absolute;
          top: -20px;
          left: 50%;
          transform: translateX(-50%);
          font-size: 1.5rem;
          opacity: 0;
          transition: all 0.3s ease;
      }

      .whatsapp-scroll-btn:hover {
          transform: scale(1.1);
          box-shadow: 0 8px 25px rgba(0,0,0,0.3);
      }

      .whatsapp-scroll-btn:hover::before {
          top: -30px;
          opacity: 0.8;
      }

      .whatsapp-scroll-btn img {
          width: 30px;
          height: 30px;
          filter: brightness(0) invert(1);
          transition: transform 0.3s ease;
      }

      .whatsapp-scroll-btn:hover img {
          transform: rotate(10deg);
      }

      @keyframes bounceIn {
          0% { transform: scale(0.5); opacity: 0; }
          70% { transform: scale(1.1); }
          100% { transform: scale(1); opacity: 1; }
      }

      /* Footer with Egyptian Motifs */
      .footer {
          background: linear-gradient(to bottom, var(--dark-brown), #1a1a1a);
          color: white;
          padding: 4rem 2rem 2rem;
          position: relative;
          overflow: hidden;
      }

      .footer::before {
          content: "";
          position: absolute;
          top: 0;
          left: 0;
          right: 0;
          height: 10px;
          background: linear-gradient(to right, var(--gold), var(--dark-gold), var(--gold));
      }

      .footer::after {
          content: "𓊹𓊹𓊹𓊹𓊹𓊹𓊹𓊹𓊹𓊹𓊹𓊹𓊹𓊹𓊹𓊹";
          font-family: 'EgyptianHieroglyphs', 'Times New Roman', serif;
          position: absolute;
          bottom: 20px;
          left: 0;
          right: 0;
          text-align: center;
          color: rgba(212, 175, 55, 0.1);
          font-size: 2rem;
          line-height: 1;
      }

      .footer-container {
          max-width: 1200px;
          margin: 0 auto;
          display: flex;
          flex-wrap: wrap;
          gap: 3rem;
          position: relative;
          z-index: 1;
      }

      .footer-column {
          flex: 1;
          min-width: 200px;
      }

      .logo-column {
          flex: 1.5;
      }

      .footer-logo {
          max-width: 180px;
          margin-bottom: 1rem;
          filter: drop-shadow(0 2px 5px rgba(0,0,0,0.3));
      }

      .footer-tagline {
          font-style: italic;
          margin-bottom: 1rem;
          position: relative;
          padding-left: 1.5rem;
      }

      .footer-tagline::before {
          content: "𓂀";
          font-family: 'EgyptianHieroglyphs', 'Times New Roman', serif;
          position: absolute;
          left: 0;
          top: 0;
          color: var(--gold);
      }

      .footer hr {
          border: none;
          height: 1px;
          background-color: rgba(212, 175, 55, 0.3);
          margin: 1rem 0;
      }

      .footer-contact {
          display: flex;
          flex-direction: column;
          gap: 0.5rem;
      }

      .email-icon, .phone-icon {
          color: var(--gold);
          margin-right: 0.5rem;
      }

      .footer-column h4 {
          font-family: 'Playfair Display', serif;
          color: var(--gold);
          margin-top: 0;
          margin-bottom: 1.5rem;
          position: relative;
          padding-bottom: 0.5rem;
      }

      .footer-column h4::after {
          content: "";
          position: absolute;
          bottom: 0;
          left: 0;
          width: 40px;
          height: 2px;
          background-color: var(--gold);
      }

      .footer-column ul {
          list-style: none;
          padding: 0;
          margin: 0;
      }

      .footer-column li {
          margin-bottom: 0.8rem;
      }

      .footer-column a {
          color: white;
          text-decoration: none;
          transition: color 0.3s ease;
          position: relative;
          padding-left: 1.2rem;
      }

      .footer-column a::before {
          content: "𓃭";
          font-family: 'EgyptianHieroglyphs', 'Times New Roman', serif;
          position: absolute;
          left: 0;
          color: var(--gold);
          font-size: 0.8rem;
          transition: transform 0.3s ease;
      }

      .footer-column a:hover {
          color: var(--gold);
      }

      .footer-column a:hover::before {
          transform: rotate(20deg);
      }

      .newsletter-column input {
          width: 100%;
          padding: 0.8rem;
          margin-bottom: 1rem;
          border: 1px solid rgba(212, 175, 55, 0.3);
          background-color: rgba(255,255,255,0.1);
          color: white;
          border-radius: 4px;
      }

      .newsletter-column input::placeholder {
          color: rgba(255,255,255,0.7);
      }

      .subscribe-btn {
          width: 100%;
          padding: 0.8rem;
          background: linear-gradient(to right, var(--gold), var(--dark-gold));
          color: white;
          border: none;
          border-radius: 4px;
          cursor: pointer;
          font-weight: 500;
          transition: all 0.3s ease;
      }

      .subscribe-btn:hover {
          background: linear-gradient(to right, var(--dark-gold), var(--gold));
          box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
      }

      .footer-agreement {
          display: flex;
          align-items: center;
          gap: 0.5rem;
          margin-top: 1rem;
          font-size: 0.8rem;
          color: rgba(255,255,255,0.7);
      }

      .footer-bottom {
          max-width: 1200px;
          margin: 3rem auto 0;
          padding-top: 2rem;
          border-top: 1px solid rgba(212, 175, 55, 0.2);
          display: flex;
          flex-wrap: wrap;
          justify-content: space-between;
          align-items: center;
          gap: 1rem;
      }

      .footer-social {
          display: flex;
          gap: 1rem;
      }

      .footer-social a {
          color: white;
          width: 40px;
          height: 40px;
          border-radius: 50%;
          background-color: rgba(255,255,255,0.1);
          display: flex;
          align-items: center;
          justify-content: center;
          transition: all 0.3s ease;
      }

      .footer-social a:hover {
          background-color: var(--gold);
          transform: translateY(-3px);
      }

      .copyright {
          margin: 0;
          color: rgba(255,255,255,0.7);
          font-size: 0.9rem;
      }

      .book-trip {
          display: flex;
          align-items: center;
          gap: 1rem;
      }

      .book-trip img {
          width: 40px;
          height: 40px;
          filter: drop-shadow(0 2px 5px rgba(0,0,0,0.3));
      }

      .book-trip button {
          background: linear-gradient(to right, var(--gold), var(--dark-gold));
          color: white;
          border: none;
          padding: 0.8rem 1.5rem;
          border-radius: 30px;
          cursor: pointer;
          font-weight: 500;
          transition: all 0.3s ease;
      }

      .book-trip button:hover {
          background: linear-gradient(to right, var(--dark-gold), var(--gold));
          box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
      }

      /* Scroll Up Button with Anubis Icon */
      #scrollUpBtn {
          position: fixed;
          bottom: 30px;
          left: 30px;
          width: 50px;
          height: 50px;
          border-radius: 50%;
          background: linear-gradient(to bottom, var(--gold), var(--dark-gold));
          color: white;
          border: none;
          cursor: pointer;
          display: none;
          align-items: center;
          justify-content: center;
          box-shadow: 0 5px 20px rgba(0,0,0,0.2);
          z-index: 100;
          transition: all 0.3s ease;
          font-size: 1.2rem;
      }

      #scrollUpBtn::before {
          content: "𓃭";
          font-family: 'EgyptianHieroglyphs', 'Times New Roman', serif;
          position: absolute;
          top: -20px;
          left: 50%;
          transform: translateX(-50%);
          font-size: 1.2rem;
          opacity: 0;
          transition: all 0.3s ease;
      }

      #scrollUpBtn:hover {
          transform: scale(1.1);
          box-shadow: 0 8px 25px rgba(0,0,0,0.3);
      }

      #scrollUpBtn:hover::before {
          top: -25px;
          opacity: 0.8;
      }
  
  /* Animations */
  .fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 1s ease forwards;
  }
  
  .delay {
    animation-delay: 0.3s;
  }
  
  .delay-more {
    animation-delay: 0.6s;
  }
  
  .slide-up {
    opacity: 0;
    transform: translateY(40px);
    animation: fadeInUp 1s ease forwards;
  }
  
  @keyframes fadeIn {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @keyframes fadeInUp {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @media screen and (max-width: 768px) {
    .nav-links {
      display: none;
      flex-direction: column;
      background: white;
      position: absolute;
      right: 0;
      top: 60px;
      width: 200px;
      border-left: 1px solid #eee;
    }
  
    .nav-links.active {
      display: flex;
    }
  
    .hamburger {
      display: block;
    }
  
    .destinations-container, .features {
      flex-direction: column;
      align-items: center;
    }
  
    .card, .feature {
      width: 90%;
    }
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: flex-start;
      gap: 2rem;
    }
  
    .footer-column {
      width: 100%;
    }
  
    .newsletter-column input[type="email"],
    .subscribe-btn {
      width: 100%;
    }
  
    .footer-bottom {
      flex-direction: column;
      align-items: flex-start;
      gap: 1.5rem;
      text-align: left;
    }
  
    .footer-social {
      justify-content: flex-start;
      flex-wrap: wrap;
      gap: 0.7rem;
    }
  

  
    .book-trip {
      flex-direction: row;
      justify-content: flex-start;
    }
  
    .book-trip button {
      font-size: 0.9rem;
      padding: 0.5rem 1rem;
    }
  
    .book-trip img {
      height: 32px;
    }
  
    .footer-logo {
      width: 100px;
    }
  
    .footer-tagline,
    .footer-contact {
      font-size: 0.85rem;
    }
  
    .footer-column h4 {
      font-size: 1rem;
    }
  
    .footer-column ul li a {
      font-size: 0.9rem;
    }
  
    .footer-agreement {
      font-size: 0.8rem;
    }
  }
/* Egyptian-Themed Packages Section */
/* Shared Egyptian Package Styles */
.packages-section, .dpackages-section {
  background: linear-gradient(rgba(26, 26, 26, 0.9), rgba(26, 26, 26, 0.9)), 
              url('https://images.unsplash.com/photo-1516026672322-bc52d61a55d5?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
  background-size: cover;
  background-position: center;
  text-align: center;
  padding: 4rem 1rem;
  border-top: 3px solid #d4af37;
  border-bottom: 3px solid #d4af37;
}

/* Deluxe Packages Specific Background */
.dpackages-section {
  background-image: linear-gradient(rgba(26, 26, 26, 0.9), rgba(26, 26, 26, 0.9)),url('images/15.jpg');
}

/* Shared Title Styles */
.papyrus-subtitle {
  color: #d4af37;
  font-family: 'Palatino Linotype', serif;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  font-style: italic;
}

.pharaoh-title {
  font-size: 2.5rem;
  color: #f5f1e6;
  font-family: 'Times New Roman', serif;
  margin-bottom: 2rem;
  position: relative;
}

.pharaoh-title::before,
.pharaoh-title::after {
  content: "𓃭";
  font-family: 'EgyptianHieroglyphs';
  margin: 0 1rem;
  color: #d4af37;
}



.packages-container {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem;
  perspective: 1000px;
}



.dpackages-section h2 {
  color: #d4af37;
}

.dpackages-container {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem;
  perspective: 1000px;
}

/* Shared Card Styles */
.package-card {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 16px;
  overflow: hidden;
  width: 300px;
  transition: all 0.5s ease;
  position: relative;
  border: 2px solid #d4af37;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transform: translateY(50px);
  margin-bottom: 2rem;
}

.package-card.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Standard Packages Animation */
.packages-container .package-card {
  transition-delay: calc(var(--order) * 0.1s);
}

.packages-container .package-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

/* Deluxe Card Enhancement */
.dpackages-container .package-card {
  background: rgba(26, 26, 26, 0.9);
  border: 3px solid #d4af37;
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
  color: white;
}

.dpackages-container .package-card.visible {
  animation: deluxeAppear 0.8s ease forwards;
}

@keyframes deluxeAppear {
  0% {
      opacity: 0;
      transform: translateY(50px) rotateY(90deg);
  }
  100% {
      opacity: 1;
      transform: translateY(0) rotateY(0);
  }
}

.dpackages-container .package-card:hover {
  transform: translateY(-10px) scale(1.03) rotateY(5deg);
  box-shadow: 0 15px 35px rgba(212, 175, 55, 0.3);
}

/* Shared Card Content Styles */
.card-image {
  position: relative;
  border-bottom: 2px solid #d4af37;
  height: 200px;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.package-card:hover .card-image img {
  transform: scale(1.1);
}

.badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #1a1a1a;
  color: #d4af37;
  padding: 5px 15px;
  font-size: 0.8rem;
  border-radius: 20px;
  font-family: 'Palatino Linotype', serif;
  z-index: 2;
}

/* Deluxe Badge Enhancement */
.dpackages-container .badge {
  background: #d4af37;
  color: #1a1a1a;
  font-weight: bold;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.card-content {
  padding: 1.5rem;
}

.card-content h3 {
  margin-top: 0;
  color: #1a1a1a;
  font-size: 1.5rem;
}

.dpackages-container .card-content h3 {
  color: #d4af37;
}

.card-content p {
  color: #666;
  line-height: 1.6;
}

.dpackages-container .card-content p {
  color: #ccc;
}

.price {
  font-size: 1.8rem;
  font-weight: bold;
  color: #1a1a1a;
  margin: 1rem 0;
}

.dpackages-container .price {
  color: #d4af37;
}



.dpackages-container .btn {
  background: #d4af37;
  color: #1a1a1a;
}



/* Slideshow effect for Deluxe Packages */
@media (min-width: 992px) {
  .dpackages-container {
      flex-wrap: nowrap;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      scroll-behavior: smooth;
      -webkit-overflow-scrolling: touch;
      padding-bottom: 2rem;
      justify-content: flex-start;
  }

  .dpackages-container .package-card {
      scroll-snap-align: center;
      flex: 0 0 auto;
      width: 350px;
      margin-right: 2rem;
  }

  .dpackages-container::-webkit-scrollbar {
      height: 8px;
  }

  .dpackages-container::-webkit-scrollbar-track {
      background: rgba(212, 175, 55, 0.1);
      border-radius: 10px;
  }

  .dpackages-container::-webkit-scrollbar-thumb {
      background: rgba(212, 175, 55, 0.5);
      border-radius: 10px;
  }

  .dpackages-container::-webkit-scrollbar-thumb:hover {
      background: rgba(212, 175, 55, 0.8);
  }
}

/* Responsive Styles */
@media (max-width: 768px) {
  section {
      padding: 3rem 1rem;
  }

  .packages-container, .dpackages-container {
      flex-direction: column;
      align-items: center;
  }

  .package-card {
      width: 100%;
      max-width: 350px;
  }
}

/* WhatsApp Button - Egyptian Theme */
.whatsapp-scroll-btn {
  position: fixed;

  background-color: #1a1a1a;

  z-index: 999;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  border: 2px solid #d4af37;
  transition: right 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55), 
              background-color 0.3s ease,
              transform 0.3s ease;
}

.whatsapp-scroll-btn img {
  width: 24px;
  height: 24px;
  filter: sepia(1) hue-rotate(5deg) saturate(5) brightness(0.9);
  transition: all 0.3s ease;
}

.whatsapp-scroll-btn:hover {
  background-color: #d4af37;
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(212, 175, 55, 0.4);
}

.whatsapp-scroll-btn:hover img {
  filter: brightness(0) saturate(100%);
}


  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
  }
      /* Egyptian Typography */
    @font-face {
        font-family: 'EgyptianHieroglyphs';
        src: url('https://fonts.googleapis.com/css2?family=Noto+Sans+Egyptian+Hieroglyphs&display=swap');
    }
    
    /* Base Styles */
    .hieroglyph-heading, .pharaoh-title, .hieroglyph-subheading {
        font-family: 'EgyptianHieroglyphs', 'Arial', sans-serif;
        color: #d4af37;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        letter-spacing: 2px;
    }
    
    .papyrus-text, .papyrus-subtitle, .ancient-papyrus {
        font-family: 'Palatino Linotype', 'Book Antiqua', serif;
        color: #e7d9b0;
        font-style: italic;
    }
    
    .cartouche-text {
        background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.3), transparent);
        padding: 0.2rem 1rem;
        display: inline-block;
        font-family: 'Arial', sans-serif;
        color: #f5f1e6;
        letter-spacing: 1px;
    }
    
    .obelisk-heading {
        font-family: 'Times New Roman', serif;
        color: #d4af37;
        text-transform: uppercase;
        letter-spacing: 3px;
        position: relative;
        padding-bottom: 10px;
    }
    
    .obelisk-heading:after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 25%;
        width: 50%;
        height: 2px;
        background: linear-gradient(90deg, transparent, #d4af37, transparent);
    }
    
    /* Buttons */
    .anubis-btn, .scarab-btn, .pharaoh-btn {
        font-family: 'Arial', sans-serif;
        font-weight: bold;
        border: none;
        padding: 0.8rem 1.5rem;
        margin: 0.5rem;
        cursor: pointer;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }
    
    .anubis-btn {
        background-color: #1a1a1a;
        color: #d4af37;
        border: 2px solid #d4af37;
    }
    
    .anubis-btn:hover {
        background-color: #d4af37;
        color: #1a1a1a;
        text-shadow: 0 0 5px rgba(26, 26, 26, 0.7);
    }
    
    .scarab-btn {
        background-color: #3a3a3a;
        color: #e7d9b0;
        border: 2px solid #e7d9b0;
    }
    
    .scarab-btn:hover {
        background-color: #e7d9b0;
        color: #3a3a3a;
    }
    
    .pharaoh-btn {
        background: linear-gradient(135deg, #d4af37 0%, #f5f1e6 100%);
        color: #1a1a1a;
        border: 2px solid #1a1a1a;
    }
    
    .pharaoh-btn:hover {
        background: linear-gradient(135deg, #1a1a1a 0%, #3a3a3a 100%);
        color: #d4af37;
    }
    
    /* Borders and Decorations */
    .hieroglyph-border-top, .hieroglyph-border-bottom {
        text-align: center;
        font-family: 'EgyptianHieroglyphs';
        color: #d4af37;
        font-size: 1.5rem;
        padding: 0.5rem 0;
        background-color: rgba(26, 26, 26, 0.7);
    }
    
    .temple-border {
        border: 8px solid transparent;
        border-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="none" stroke="%23d4af37" stroke-width="5" stroke-dasharray="10,5"/></svg>') 10;
        box-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
    }
    
    /* List Styles */
    .benefits-list {
        list-style-type: none;
        padding-left: 0;
    }
    
    .benefits-list li {
        padding: 0.5rem 0;
        position: relative;
        padding-left: 2rem;
        font-family: 'Palatino Linotype', 'Book Antiqua', serif;
        color: #e7d9b0;
    }
    
    .benefits-list li:before {
        content: "𓃭";
        position: absolute;
        left: 0;
        color: #d4af37;
    }
    
    /* Icon Styling */
    .hieroglyph-icon {
        fill: #d4af37;
        width: 20px;
        height: 20px;
        margin-right: 10px;
        vertical-align: middle;
    }
    
    /* Section Specific Styling */
    .hero-content {
        text-align: center;
        z-index: 2;
    }

    
    .travel-section {
        background: linear-gradient(rgba(58, 58, 58, 0.9), rgba(26, 26, 26, 0.9)), url('https://images.unsplash.com/photo-1503177119275-0aa32b3a9368?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
        background-size: cover;
        background-position: center;
        padding: 3rem 0;
        color: #f5f1e6;
    }
    
    .defender-section {
        background-color: #1a1a1a;
        padding: 3rem 0;
        text-align: center;
    }
    
    .plan-trip-section {
        background-color: rgba(26, 26, 26, 0.9);
        padding: 2rem 0;
    }