﻿/* DESTINATIONS PAGE SPECIFIC STYLES */

.destinations-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-image: url('../images/destinations.webp');
  background-size: cover;
  background-position: center;
  overflow: visible;
}

.destinations-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(var(--brand-black-rgb), 0.85) 0%, rgba(var(--brand-black-rgb), 0.4) 50%, rgba(var(--brand-black-rgb), 0.85) 100%);
  pointer-events: none;
}

.destinations-hero .container-xl {
  position: relative;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 2;
}

.destinations-hero .btn-brand {
  display: inline-block;
  background: var(--brand-primary);
  color: var(--brand-white);
  padding: 14px 36px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: all 0.3s ease;
}

.destinations-hero .btn-brand:hover {
  background: var(--brand-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(var(--bs-primary-rgb), 0.35);
}

.destinations-hero .btn-brand-ghost {
  display: inline-block;
  background: rgba(var(--brand-white-rgb), 0.18);
  border: 1px solid rgba(var(--brand-white-rgb), 0.45);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--brand-white);
  padding: 14px 36px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: all 0.3s ease;
}

.destinations-hero .btn-brand-ghost:hover {
  background: rgba(var(--brand-white-rgb), 0.28);
  color: var(--brand-white);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(var(--brand-black-rgb), 0.1);
}

.scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: rgba(var(--brand-white-rgb), 0.6);
  z-index: 5;
}

.scroll-hint span {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
}

.mouse {
  width: 260px; /* actually we just need a small mouse shape */
  width: 24px;
  height: 38px;
  border: 2px solid rgba(var(--brand-white-rgb), 0.6);
  border-radius: 50px;
  position: relative;
}

.mouse::after {
  content: "";
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  background: var(--brand-primary-light);
  border-radius: 50%;
  animation: scrollMouse 1.5s infinite;
}

@keyframes scrollMouse {
  0% { opacity: 0; transform: translate(-50%, 0); }
  30% { opacity: 1; }
  100% { opacity: 0; transform: translate(-50%, 15px); }
}

.dest-filter-section {
  background: var(--brand-white);
  padding-top: 3rem;
}

.dest-tabs {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  gap: 12px;
  padding-bottom: 20px;
  scrollbar-width: none;
}

.dest-tabs::-webkit-scrollbar {
  display: none;
}

.d-tab {
  padding: 7px 18px;
  border-radius: 50px;
  border: 1px solid var(--brand-border);
  background: var(--brand-white);
  font-family: var(--font-body);
  font-size: 0.79rem;
  font-weight: 500;
  color: var(--brand-muted);
  transition: all 0.2s;
  cursor: pointer;
  white-space: nowrap;
}

.d-tab:hover, .d-tab.active {
  background: var(--brand-primary);
  color: var(--brand-white);
  border-color: var(--brand-primary);
}

/* DESTINATION CARD GRID */
.destinations-grid {
  padding-bottom: 6rem;
  background: var(--brand-white);
}

.destination-card {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  height: 440px;
  background-size: cover;
  background-position: center;
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 20px 50px rgba(var(--brand-black-rgb), 0.08);
}

.destination-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(var(--brand-dark-rgb), 0.95) 100%);
  transition: all 0.4s ease;
}

.destination-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 40px 80px rgba(var(--brand-black-rgb), 0.15);
}

.destination-card:hover::before {
  background: linear-gradient(180deg, transparent 30%, rgba(var(--brand-dark-rgb), 0.98) 100%);
}

.dest-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  z-index: 2;
  color: var(--brand-white);
}

.dest-card-tag {
  background: var(--brand-primary);
  color: var(--brand-white);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
  display: inline-block;
}

.dest-card-title {
  font-family: var(--font-display);
  font-size: 2rem;
  margin-bottom: 0.75rem;
  line-height: 1.1;
}

.dest-card-info {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  opacity: 0.85;
  font-size: 0.9rem;
}

.dest-card-info span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.dest-card-price {
  margin-top: 1.25rem;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--brand-primary-light);
}

.glass-badge {
  position: absolute;
  top: 24px;
  right: 24px;
  background: var(--brand-dark);
  padding: 6px 14px;
  border-radius: 50px;
  color: var(--brand-white);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  z-index: 2;
  box-shadow: 0 8px 20px rgba(var(--brand-black-rgb), 0.15);
}

@media (max-width: 991px) {
  .destination-card {
    height: 380px;
  }
  .dest-card-title {
    font-size: 1.75rem;
  }
}

/* INTEREST CARDS */
.interest-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  height: 280px;
  background-size: cover;
  background-position: center;
  transition: all 0.4s ease;
  cursor: pointer;
  border: 1px solid rgba(var(--brand-black-rgb), 0.05);
}

.interest-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(var(--brand-dark-rgb), 0) 40%, rgba(var(--brand-dark-rgb), 0.8) 100%);
  z-index: 1;
}

.interest-card:hover {
  transform: scale(1.02);
  box-shadow: 0 20px 40px rgba(var(--brand-black-rgb), 0.12);
}

.interest-content {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 1.5rem;
  z-index: 2;
  color: var(--brand-white);
}

.interest-icon {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--brand-primary-light);
}

.interest-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin: 0;
}

/* SERVICE BOXES */
.service-feat-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  padding: 4rem 0;
}

.service-feat-box {
  flex: 1;
  min-width: 250px;
  background: var(--brand-surface-alt);
  padding: 2.5rem;
  border-radius: 24px;
  transition: all 0.3s ease;
  border: 1px solid rgba(var(--brand-dark-rgb), 0.04);
  text-align: center;
}

.service-feat-box:hover {
  background: var(--brand-white);
  box-shadow: 0 15px 40px rgba(var(--brand-black-rgb), 0.06);
  transform: translateY(-5px);
}

.s-feat-icon {
  width: 64px;
  height: 64px;
  background: var(--brand-white);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.6rem;
  color: var(--brand-primary);
  box-shadow: 0 10px 20px rgba(var(--bs-primary-rgb), 0.1);
}

.service-feat-box h5 {
  font-family: var(--font-body);
  font-weight: 700;
  margin-bottom: 1rem;
}

.service-feat-box p {
  color: var(--brand-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* CTA BANNER DARK */
.cta-banner-dark {
  background: var(--brand-dark);
  border-radius: 40px;
  padding: 6rem 4rem;
  position: relative;
  overflow: hidden;
  margin: 4rem 0;
}

.cta-banner-dark::after {
  content: "";
  position: absolute;
  top: -10%;
  right: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(var(--bs-primary-rgb), 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.cta-content-wrap {
  position: relative;
  z-index: 2;
}

.cta-banner-dark .hero-title {
  font-size: 3.5rem;
  color: var(--brand-white);
  margin-bottom: 1.5rem;
}

.cta-banner-dark p {
  color: rgba(var(--brand-white-rgb), 0.6);
  font-size: 1.1rem;
  max-width: 500px;
  margin-bottom: 2.5rem;
}

@media (max-width: 767px) {
  .cta-banner-dark {
    padding: 4rem 2rem;
    border-radius: 24px;
  }
  .cta-banner-dark .hero-title {
    font-size: 2.5rem;
  }
}

