/* ========== HOME PAGE v2 STYLES ========== */

:root {
  --brand-primary: #ff6b6b;
  --brand-secondary: #4c6fff;
  --brand-accent: #f97316;
  --brand-bg: #020617;
  --glass-bg: rgba(15, 23, 42, 0.88);
  --glass-border: rgba(148, 163, 184, 0.4);
  --text-soft: #9ca3af;
}

body {
  font-family: "Plus Jakarta Sans", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
}

.main-bg {
  background: radial-gradient(circle at top left, #1f2937 0, #020617 45%, #000 100%);
  color: #f9fafb;
}

/* Hero section */
.hero-v2 {
  color: #e5e7eb;
}

.hero-heading {
  font-size: clamp(2.5rem, 4vw, 3.3rem);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.hero-highlight {
  display: inline-block;
  background: linear-gradient(120deg, #ff6b6b, #f97316, #4c6fff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-text {
  color: #cbd5f5;
  max-width: 32rem;
}

/* Live chip */
.hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  font-size: 0.8rem;
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid rgba(248, 250, 252, 0.08);
  color: #e5e7eb;
}

.dot-live {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 10px rgba(34, 197, 94, 0.8);
}

/* Hero buttons */
.btn-hero-primary {
  background: linear-gradient(135deg, #ff6b6b, #f97316);
  border: none;
  color: #fff;
  border-radius: 999px;
  box-shadow: 0 0 25px rgba(248, 113, 113, 0.6);
}

.btn-hero-primary:hover {
  opacity: 0.92;
}

.btn-hero-ghost {
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  color: #e5e7eb;
  background: rgba(15, 23, 42, 0.8);
}

.btn-hero-ghost:hover {
  background: rgba(15, 23, 42, 0.95);
}

/* Mini stats */
.hero-badges {
  margin-top: 0.75rem;
}

.mini-stat {
  padding: 0.7rem 1rem;
  border-radius: 16px;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid var(--glass-border);
}

.mini-label {
  display: block;
  font-size: 0.75rem;
  color: var(--text-soft);
}

.mini-value {
  font-size: 0.95rem;
  font-weight: 600;
}

/* Floating hero cards */
.hero-stack {
  position: relative;
  min-height: 320px;
}

.floating-card {
  position: absolute;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  background: radial-gradient(circle at top left, rgba(30, 64, 175, 0.35), var(--glass-bg));
  border-radius: 22px;
  border: 1px solid var(--glass-border);
  color: #e5e7eb;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.85);
}

.card-main {
  inset: auto 4% 0 10%;
  padding-bottom: 0.75rem;
  animation: floatUpDown 4.5s ease-in-out infinite;
}

.card-main .card-img-wrapper img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  border-radius: 22px 22px 0 0;
}

.card-main .floating-body {
  padding: 0.9rem 1rem 1rem;
}

.text-muted-small {
  font-size: 0.8rem;
  color: var(--text-soft);
}

.price-lg {
  font-weight: 600;
  color: var(--brand-accent);
}

.card-tag-1,
.card-tag-2,
.card-tag-3 {
  padding: 0.55rem 0.9rem;
  font-size: 0.8rem;
  display: inline-flex;
  align-items: center;
}

.card-tag-1 {
  top: 12%;
  right: 3%;
}

.card-tag-2 {
  top: 36%;
  right: -2%;
}

.card-tag-3 {
  top: 60%;
  right: 3%;
}

.card-mini-profile {
  left: -4%;
  bottom: 18%;
  padding: 0.6rem 0.9rem;
  gap: 0.6rem;
  display: inline-flex;
  align-items: center;
}

.avatar-circle {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: linear-gradient(135deg, #f97316, #facc15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  color: #111827;
}

/* Animation */
@keyframes floatUpDown {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}

/* Stats strip */
.stats-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 0.85rem 1.1rem;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(37, 99, 235, 0.35),
    rgba(14, 165, 233, 0.4),
    rgba(236, 72, 153, 0.35)
  );
  border: 1px solid rgba(148, 163, 184, 0.5);
}

.stats-item {
  display: flex;
  flex-direction: column;
  min-width: 140px;
}

.stats-item .label {
  font-size: 0.75rem;
  color: #e5e7eb;
}

.stats-item .value {
  font-size: 0.9rem;
  font-weight: 600;
}

/* Scrollable destinations */
.dest-scroll-wrapper {
  overflow-x: auto;
  padding-bottom: 0.3rem;
}

.dest-scroll {
  display: flex;
  flex-wrap: nowrap;
  gap: 1rem;
  padding: 0.25rem 0;
}

.dest-card {
  flex: 0 0 220px;
  border-radius: 22px;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid var(--glass-border);
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.dest-img img {
  width: 100%;
  height: 130px;
  object-fit: cover;
}

.dest-body {
  padding: 0.8rem 0.9rem 0.9rem;
}

.dest-body h5 {
  font-size: 1rem;
  margin-bottom: 0.2rem;
}

.dest-body p {
  font-size: 0.85rem;
  color: var(--text-soft);
}

.dest-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.9);
  border-color: var(--brand-secondary);
}

/* Sections */
.section-title {
  font-size: 1.35rem;
  font-weight: 600;
}

.section-link {
  font-size: 0.9rem;
  color: #e5e7eb;
  text-decoration: none;
}

.section-link:hover {
  color: #bfdbfe;
}

/* Steps / timeline */
.steps-timeline {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.step-item {
  display: flex;
  gap: 0.9rem;
  padding: 0.9rem 1rem;
  border-radius: 16px;
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid rgba(148, 163, 184, 0.45);
}

.step-icon {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at top left, #4c6fff, #0f172a);
  color: #e5e7eb;
}

.step-item h5 {
  font-size: 1rem;
  margin-bottom: 0.2rem;
}

.step-item p {
  font-size: 0.85rem;
  color: var(--text-soft);
}

/* Helpers */
.text-muted-small {
  font-size: 0.86rem;
  color: var(--text-soft);
}

/* Wider container on desktop */
@media (min-width: 1200px) {
  .container {
    max-width: 1120px;
  }
}

/* Responsive tweaks */
@media (max-width: 991.98px) {
  .hero-stack {
    margin-top: 1.5rem;
    min-height: 260px;
  }
  .card-main .card-img-wrapper img {
    height: 190px;
  }
  .stats-strip {
    border-radius: 18px;
  }
}

/* ========== MAP STYLES ========== */

.map-card {
  width: 100%;
  height: 320px;
  border-radius: 22px;
  overflow: hidden;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.45);
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.9);
}

/* Leaflet map background */
.leaflet-container {
  background: #020617;
}

/* Small attribution text */
.leaflet-control-attribution {
  font-size: 0.65rem;
}
