.destination-hero {
  position: relative;
  min-height: 95vh;
  background:
    linear-gradient(rgba(0,0,0,0.75), rgba(0,0,0,0.9)),
    url('../../assets/images/about-us.png') center/cover no-repeat;
  background-attachment: fixed; /* PARALLAX */
  display: flex;
  align-items: center;
  padding: 0 8%;
  color: #fff;
  overflow: hidden;
}

/* GOLD MOVING OVERLAY */
.gold-overlay {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(255,204,0,0.08),
    rgba(255,215,0,0.02),
    rgba(255,204,0,0.08)
  );
  animation: goldFlow 18s linear infinite;
  z-index: 1;
}

@keyframes goldFlow {
  0% { transform: translateX(-50%) rotate(0deg); }
  100% { transform: translateX(50%) rotate(360deg); }
}

/* DARK OVERLAY */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 2;
}

/* CONTENT */
.hero-content {
  position: relative;
  z-index: 3;
  max-width: 650px;
  animation: fadeUp 1.2s ease forwards;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

.destinations-section-dark {
  padding: 80px 6%;
  background: #0b0b0b; /* deep dark luxury background */
  text-align: center;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #fff;
}

.destinations-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 40px;
}

.destinations-header h2 {
  font-size: 42px;
  font-weight: 700;
  background: linear-gradient(90deg, #ffcc00, #ffd700, #fff3a0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: goldShine 4s linear infinite;
}

.destinations-header .line {
  width: 80px;
  height: 2px;
  background: #ffcc00;
}

.destinations-header p {
  font-size: 18px;
  color: #ffd700; /* soft gold color for luxury */
  max-width: 680px;
  line-height: 1.8;
  margin-top: 10px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1.5s forwards 0.3s;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes goldShine {
  0% { background-position: 0%; }
  100% { background-position: 200%; }
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .destinations-header h2 {
    font-size: 32px;
  }

  .destinations-header p {
    font-size: 16px;
    max-width: 90%;
  }
}

/* TAG */
.hero-tag {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 30px;
  background: rgba(255,204,0,0.15);
  color: #ffcc00;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

/* TITLE */
.hero-content h1 {
  font-size: 54px;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-content h1 span {
  background: linear-gradient(90deg, #ffcc00, #ffd700, #fff3a0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: goldShine 4s linear infinite;
}

@keyframes goldShine {
  0% { background-position: 0%; }
  100% { background-position: 200%; }
}

/* TEXT */
.hero-content p {
  font-size: 18px;
  color: #ddd;
  line-height: 1.7;
  margin-bottom: 35px;
}

/* SEARCH BAR */
.destination-search {
  display: flex;
  max-width: 520px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,204,0,0.3);
  border-radius: 50px;
  overflow: hidden;
  margin-bottom: 35px;
  backdrop-filter: blur(10px);
}

.destination-search input {
  flex: 1;
  padding: 15px 22px;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 15px;
}

.destination-search input::placeholder {
  color: #ccc;
}

.destination-search button {
  padding: 0 32px;
  background: linear-gradient(90deg, #ffcc00, #ffd700);
  border: none;
  color: #000;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.destination-search button:hover {
  background: #ffcc00;
}

/* SCROLL INDICATOR */
.scroll-indicator {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 50px;
  border: 2px solid rgba(255,204,0,0.7);
  border-radius: 25px;
  display: flex;
  justify-content: center;
}

.scroll-indicator span {
  width: 6px;
  height: 6px;
  background: #ffcc00;
  border-radius: 50%;
  margin-top: 10px;
  animation: scrollDown 2s infinite;
}

@keyframes scrollDown {
  0% { opacity: 0; transform: translateY(0); }
  30% { opacity: 1; }
  100% { opacity: 0; transform: translateY(18px); }
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 38px;
  }

  .destination-search {
    max-width: 100%;
  }
}

.destination-facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  padding: 80px 6%;
  background: #0b0b0b; /* deep luxury dark */
  text-align: center;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.fact-card {
  background: linear-gradient(145deg, #111111, #1a1a1a);
  padding: 35px 25px;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.6);
  transition: all 0.5s ease;
  opacity: 0;
  transform: translateY(30px);
}

/* SHOW ANIMATION */
.fact-card.show {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.8s ease;
}

/* HEADINGS */
.fact-card h4 {
  font-size: 18px;
  font-weight: 700;
  color: #ffcc00; /* gold accent */
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

/* PARAGRAPH */
.fact-card p {
  font-size: 16px;
  color: #ddd;
  line-height: 1.6;
}

/* HOVER EFFECT */
.fact-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 55px rgba(255,204,0,0.35);
  background: linear-gradient(145deg, #1a1a1a, #111111);
}

/* RESPONSIVE */
@media (max-width: 1200px) {
  .destination-facts {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .destination-facts {
    grid-template-columns: 1fr;
  }
}
 .destination-about {
  background: #0b0b0b; /* ensure it's visible */
  padding: 80px 6%;
  color: #fff;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  text-align: center;
  position: relative; /* make sure z-index works if needed */
  z-index: 10;
}

.about-header h2 {
  font-size: 42px;
  font-weight: 700;
  background: linear-gradient(90deg, #ffcc00, #ffd700, #fff3a0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
  animation: goldShine 4s linear infinite;
}

.about-header p {
  font-size: 18px;
  color: #ffd700;
  max-width: 720px;
  margin: 0 auto 50px auto;
  line-height: 1.7;
  opacity: 1; /* ensure it's visible */
  transform: translateY(0);
}

.about-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  z-index: 10; /* ensure it's above overlays */
}

.about-card {
  background: linear-gradient(145deg, #111111, #1a1a1a);
  padding: 35px 25px;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.6);
  transition: all 0.5s ease;
}

.about-card h4 {
  font-size: 20px;
  font-weight: 700;
  color: #ffcc00;
  margin-bottom: 12px;
}

.about-card p {
  font-size: 16px;
  color: #ddd;
  line-height: 1.6;
}

.about-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 55px rgba(255,204,0,0.35);
  background: linear-gradient(145deg, #1a1a1a, #111111);
}

/* responsive */
@media (max-width: 1200px) {
  .about-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .about-cards {
    grid-template-columns: 1fr;
  }

  .about-header h2 {
    font-size: 32px;
  }

  .about-header p {
    font-size: 16px;
  }
}

.destination-cities {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding: 80px 6%;
  background: #0b0b0b; /* dark luxury background */
  text-align: center;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.city-card {
  background: linear-gradient(145deg, #111111, #1a1a1a);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,0.6);
  transition: all 0.5s ease;
  opacity: 0;
  transform: translateY(30px);
}

.city-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.city-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: #ffcc00; /* gold text */
  padding: 15px 0;
}

/* Hover Effect */
.city-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 55px rgba(255,204,0,0.35);
  background: linear-gradient(145deg, #1a1a1a, #111111);
}

/* Fade-up Animation */
.city-card.show {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.8s ease;
}

/* Responsive */
@media (max-width: 1200px) {
  .destination-cities {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .destination-cities {
    grid-template-columns: 1fr;
  }
}

.city-img-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  border: 2px solid rgba(255,204,0,0.1); /* subtle gold border */
  transition: border 0.4s ease;
}

.city-img-wrapper img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

/* Globe / Map Icon Overlay */
.city-icon {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 24px;
  color: rgba(255,204,0,0.7);
  background: rgba(0,0,0,0.4);
  padding: 6px 8px;
  border-radius: 50%;
  pointer-events: none;
  transition: all 0.4s ease;
}

/* Hover Effects */
.city-card:hover .city-img-wrapper {
  border-color: rgba(255,204,0,0.5); /* brighter gold on hover */
}

.city-card:hover img {
  transform: scale(1.05); /* slight zoom on hover */
}

.city-card:hover .city-icon {
  color: #ffcc00;
  transform: scale(1.1);
}

/* Keep city name gold and hover-lift */
.city-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: #ffcc00;
  padding: 15px 0;
}
.destination-services {
  background: #0b0b0b; /* deep luxury dark */
  padding: 80px 6%;
  text-align: center;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #fff;
}

.destination-services h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 40px;
  background: linear-gradient(90deg, #ffcc00, #ffd700, #fff3a0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: goldShine 4s linear infinite;
}

.destination-services ul {
  list-style: none;
  padding: 0;
  max-width: 720px;
  margin: 0 auto;
}

.destination-services li {
  font-size: 18px;
  color: #ffd700;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s forwards;
}

/* Service icons */
.service-icon {
  font-size: 20px;
  color: #fff3a0;
  transition: transform 0.3s ease, color 0.3s ease;
}

/* Hover effect */
.destination-services li:hover .service-icon {
  transform: scale(1.2);
  color: #ffcc00;
}

/* Animations */
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes goldShine {
  0% { background-position: 0%; }
  100% { background-position: 200%; }
}

/* Responsive */
@media (max-width: 768px) {
  .destination-services h2 {
    font-size: 32px;
  }

  .destination-services li {
    font-size: 16px;
  }
}
.destination-services {
  background: #0b0b0b;
  padding: 80px 6%;
  text-align: center;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #fff;
}

.destination-services h2 {
  font-size: 42px;
  font-weight: 700;
  background: linear-gradient(90deg, #ffcc00, #ffd700, #fff3a0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 50px;
  animation: goldShine 4s linear infinite;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Service Card */
.service-card {
  background: linear-gradient(145deg, #111111, #1a1a1a);
  padding: 30px 20px;
  border-radius: 20px;
  font-size: 18px;
  font-weight: 600;
  color: #ffd700;
  box-shadow: 0 15px 40px rgba(0,0,0,0.6);
  transition: all 0.5s ease;
  cursor: default;
  opacity: 0;
  transform: translateY(30px);
}

/* Hover Effect */
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 55px rgba(255,204,0,0.35);
  background: linear-gradient(145deg, #1a1a1a, #111111);
}

/* Fade-Up Animation */
.service-card.show {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.8s ease;
}

/* Responsive */
@media (max-width: 1200px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
  .destination-services h2 {
    font-size: 32px;
  }
}
.destination-services {
  background: #0b0b0b;
  padding: 80px 6%;
  text-align: center;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #fff;
}

.destination-services h2 {
  font-size: 42px;
  font-weight: 700;
  background: linear-gradient(90deg, #ffcc00, #ffd700, #fff3a0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 50px;
  animation: goldShine 4s linear infinite;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Service Card */
.service-card {
  background: linear-gradient(145deg, #111111, #1a1a1a);
  padding: 30px 20px;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.6);
  transition: all 0.5s ease;
  cursor: default;
  opacity: 0;
  transform: translateY(30px);
}

/* Icon */
.service-icon {
  font-size: 36px;
  color: #ffcc00;
  margin-bottom: 15px;
}

/* Heading */
.service-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: #ffcc00;
  margin-bottom: 12px;
}

/* Description */
.service-card p {
  font-size: 16px;
  color: #ddd;
  line-height: 1.6;
}

/* Hover effect */
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 55px rgba(255,204,0,0.35);
  background: linear-gradient(145deg, #1a1a1a, #111111);
}

.service-card:hover .service-icon {
  transform: scale(1.2);
  color: #ffd700;
}

/* Fade-up Animation */
.service-card.show {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.8s ease;
}

/* Animations */
@keyframes goldShine {
  0% { background-position: 0%; }
  100% { background-position: 200%; }
}

/* Responsive */
@media (max-width: 1200px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
  .destination-services h2 {
    font-size: 32px;
  }
}
.destination-cta {
  background: #0b0b0b;
  padding: 100px 6%;
  text-align: center;
  position: relative;
  overflow: hidden;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #fff;
}

.destination-cta h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 30px;
  background: linear-gradient(90deg, #ffcc00, #ffd700, #fff3a0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: goldShine 4s linear infinite;
}

/* CTA Button */
.cta-btn {
  display: inline-block;
  padding: 18px 50px;
  font-size: 18px;
  font-weight: 600;
  border-radius: 50px;
  background: linear-gradient(90deg, #ffcc00, #ffd700);
  color: #0b0b0b;
  text-decoration: none;
  transition: all 0.4s ease;
  box-shadow: 0 10px 30px rgba(255,204,0,0.3);
  position: relative;
  overflow: hidden;
}

/* Gold Shine Animation on Hover */
.cta-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, rgba(255,255,255,0.2), rgba(255,255,255,0.6), rgba(255,255,255,0.2));
  transform: skewX(-25deg);
  transition: all 0.7s ease;
}

.cta-btn:hover::before {
  left: 125%;
}

.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 50px rgba(255,204,0,0.5);
}

/* Gold Shine Keyframes for text (if needed) */
@keyframes goldShine {
  0% { background-position: 0%; }
  100% { background-position: 200%; }
}

/* Responsive */
@media (max-width: 768px) {
  .destination-cta h2 {
    font-size: 32px;
  }

  .cta-btn {
    padding: 16px 40px;
    font-size: 16px;
  }
}