   :root {
  --brand-blue: #003a8f;
  --brand-red: #e60023;
  --brand-yellow: #ffcc00;
  --lux-dark: #0d0d0d;
}

/* HERO SECTION */
.destination-hero {
  position: relative;
  min-height: 90vh;
  background: 
    linear-gradient(to bottom, rgba(0,0,0,0.7), rgba(0,0,0,0.9)),
    url('../../assets/images/about-us.png') center/cover no-repeat;
  display: flex;
  align-items: center;
  padding: 0 8%;
  color: #fff;
  overflow: hidden;
}

/* GOLD MOVING OVERLAY */
.destination-hero::before {
  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);
  }
}

/* TAG */
.hero-tag {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 30px;
  background: rgba(255,204,0,0.15);
  color: var(--brand-yellow);
  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;
}

/* BUTTONS */
.hero-actions {
  display: flex;
  gap: 20px;
}

.btn-primary {
  padding: 14px 34px;
  border-radius: 40px;
  background: linear-gradient(90deg, #ffcc00, #ffd700);
  color: #000;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.4s ease;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(255,204,0,0.4);
}

.btn-outline {
  padding: 14px 34px;
  border-radius: 40px;
  border: 1px solid var(--brand-yellow);
  color: var(--brand-yellow);
  text-decoration: none;
  transition: all 0.4s ease;
}

.btn-outline:hover {
  background: var(--brand-yellow);
  color: #000;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 38px;
  }

  .hero-actions {
    flex-direction: column;
  }
}
/* DESTINATION HERO */
.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/destination-hero.jpg') center/cover no-repeat;
  background-attachment: fixed; /* PARALLAX */
  display: flex;
  align-items: center;
  padding: 0 8%;
  overflow: hidden;
}

/* 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: var(--brand-yellow);
  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); }
}
.destinations-section-dark {
  padding: 80px 20px;
  background: linear-gradient(180deg, #0d0d0d, #141414);
  text-align: center;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* HEADER */
.destinations-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
  margin-bottom: 50px;
}

.destinations-header h2 {
  font-size: 36px;
  font-weight: 700;
  background: linear-gradient(90deg, #ffcc00, #ffd700, #fff1a8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 1px;
}

.destinations-header .line {
  width: 90px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #ffcc00, transparent);
}

/* BUTTONS */
.destinations-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  max-width: 1100px;
  margin: auto;
}

/* DESTINATION BUTTON */
.destinations-buttons a {
  position: relative;
  background: rgba(255, 204, 0, 0.08);
  color: #fff;
  text-decoration: none;
  padding: 14px 26px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  border: 1px solid rgba(255, 204, 0, 0.3);
  transition: all 0.4s ease;
  overflow: hidden;
}

/* SHINE EFFECT */
.destinations-buttons a::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.35),
    transparent
  );
  transition: 0.6s;
}

.destinations-buttons a:hover::before {
  left: 120%;
}

/* HOVER */
.destinations-buttons a:hover {
  background: linear-gradient(90deg, #ffcc00, #ffd700);
  color: #000;
  box-shadow: 0 12px 30px rgba(255,204,0,0.35);
  transform: translateY(-3px);
}
.destination-cards-section {
  background: #0d0d0d;
  padding: 90px 6%;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* GRID */
.destination-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* CARD */
.destination-card {
  background: #151515;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0,0,0,0.6);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* IMAGE */
.card-image {
  height: 220px;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

/* CONTENT */
.card-content {
  padding: 25px;
}

/* TITLE */
.card-content h3 {
  font-size: 20px;
  line-height: 1.4;
  color: #fff;
  margin-bottom: 12px;
  transition: color 0.3s ease;
}

/* META */
.card-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: 1px;
  color: #ffcc00;
  margin-bottom: 15px;
}

.card-meta .dot {
  color: #777;
}

/* DESCRIPTION */
.card-content p {
  font-size: 14px;
  line-height: 1.6;
  color: #ccc;
}

/* HOVER */
.destination-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 28px 60px rgba(0,0,0,0.8);
}

.destination-card:hover img {
  transform: scale(1.1);
}

.destination-card:hover h3 {
  color: #ffcc00;
}

/* RESPONSIVE */
@media (max-width: 1200px) {
  .destination-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .destination-cards {
    grid-template-columns: 1fr;
  }
}
.why-vintage-section {
  background: linear-gradient(180deg, #0b0b0b, #141414);
  padding: 100px 6%;
  text-align: center;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  position: relative;
  overflow: hidden;
}

/* SUBTLE GOLD AMBIENCE */
.why-vintage-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top,
    rgba(255,204,0,0.08),
    transparent 70%);
  pointer-events: none;
}

/* HEADER */
.why-header h2 {
  font-size: 38px;
  margin-bottom: 15px;
  background: linear-gradient(90deg, #ffcc00, #ffd700, #fff1a8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.why-header p {
  max-width: 680px;
  margin: 0 auto 60px;
  font-size: 18px;
  color: #ccc;
  line-height: 1.7;
}

/* CARDS GRID */
.why-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;
  z-index: 1;
}

/* CARD */
.why-card {
  background: #161616;
  padding: 40px 25px;
  border-radius: 22px;
  box-shadow: 0 18px 45px rgba(0,0,0,0.6);
  transition: all 0.4s ease;
  opacity: 0;
  transform: translateY(40px);
}

/* ICON */
.why-icon {
  font-size: 42px;
  margin-bottom: 20px;
  background: linear-gradient(90deg, #ffcc00, #ffd700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* TITLE */
.why-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
  color: #fff;
}

/* TEXT */
.why-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #bbb;
}

/* HOVER */
.why-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 28px 65px rgba(0,0,0,0.85);
}

/* REVEAL */
.why-card.show {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.9s ease;
}

/* RESPONSIVE */
@media (max-width: 1200px) {
  .why-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .why-cards {
    grid-template-columns: 1fr;
  }
}
.final-cta-section {
  position: relative;
  padding: 110px 6%;
  background:
    linear-gradient(rgba(0,0,0,0.85), rgba(0,0,0,0.95)),
    url('assets/images/cta-bg.jpg') center/cover no-repeat;
  text-align: center;
  overflow: hidden;
}

/* GOLD GLOW AMBIENCE */
.final-cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center,
    rgba(255,204,0,0.15),
    transparent 70%);
  animation: pulseGold 6s infinite ease-in-out;
}

@keyframes pulseGold {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

/* CONTENT */
.cta-content {
  position: relative;
  max-width: 760px;
  margin: auto;
  z-index: 1;
  animation: fadeUp 1.2s ease forwards;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* TITLE */
.cta-content h2 {
  font-size: 42px;
  margin-bottom: 20px;
  background: linear-gradient(90deg, #ffcc00, #ffd700, #fff3b0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* TEXT */
.cta-content p {
  font-size: 18px;
  line-height: 1.7;
  color: #ddd;
  margin-bottom: 45px;
}

/* BUTTONS */
.cta-actions {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-bottom: 30px;
}

.cta-btn {
  padding: 16px 38px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: all 0.4s ease;
}

/* PRIMARY */
.cta-btn.primary {
  background: linear-gradient(90deg, #ffcc00, #ffd700);
  color: #000;
  box-shadow: 0 15px 40px rgba(255,204,0,0.45);
}

.cta-btn.primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 25px 55px rgba(255,204,0,0.6);
}

/* OUTLINE */
.cta-btn.outline {
  border: 1px solid #ffcc00;
  color: #ffcc00;
}

.cta-btn.outline:hover {
  background: #ffcc00;
  color: #000;
}

/* NOTE */
.cta-note {
  display: block;
  margin-top: 10px;
  font-size: 13px;
  letter-spacing: 1px;
  color: #aaa;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .cta-content h2 {
    font-size: 32px;
  }

  .cta-actions {
    flex-direction: column;
  }
}
