/* ========================================
   HOME PAGE — Colorful Modern Revamp
   ======================================== */

/* ---------- KEYFRAMES ---------- */
@keyframes float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-30px) scale(1.05); }
}

@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ---------- UTILITY ---------- */
.hp-center { text-align: center; }

.hp-gradient-text {
  background: linear-gradient(135deg, #ff7a18, #ff2d87, #6c5ce7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hp-chip {
  display: inline-block;
  padding: 6px 18px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  margin-bottom: 18px;
}

.hp-chip--dark {
  background: rgba(11, 31, 58, 0.08);
  border-color: rgba(11, 31, 58, 0.12);
  color: #0b1f3a;
}

.hp-chip--accent {
  background: linear-gradient(135deg, #ff7a18, #ff2d87);
  border: none;
  color: #fff;
}

.hp-section-head {
  text-align: center;
  margin-bottom: 52px;
}

.hp-section-head h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  color: #0b1f3a;
  margin-bottom: 10px;
  letter-spacing: -0.5px;
}

.hp-section-head p {
  font-size: 1rem;
  color: #5b6475;
  max-width: 520px;
  margin: 0 auto;
}

/* ---------- BUTTONS ---------- */
.hp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 34px;
  border-radius: 60px;
  font-weight: 700;
  font-size: 0.92rem;
  text-decoration: none;
  transition: all 0.35s ease;
  cursor: pointer;
  border: none;
}

.hp-btn--glow {
  background: linear-gradient(135deg, #ff7a18, #ff2d87);
  color: #fff;
  box-shadow: 0 12px 40px rgba(255, 45, 135, 0.35);
}

.hp-btn--glow:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 50px rgba(255, 45, 135, 0.5);
}

.hp-btn--glass {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
}

.hp-btn--glass:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-3px);
}

/* ==============================
   HERO
   ============================== */
.hp-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: #fff;
}

.hp-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hp-hero__img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.35) saturate(1.3);
}

.hp-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(11, 31, 58, 0.85) 0%,
    rgba(47, 91, 234, 0.5) 40%,
    rgba(255, 45, 135, 0.35) 70%,
    rgba(255, 122, 24, 0.4) 100%
  );
}

.hp-hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
}

.hp-hero__orb--1 {
  width: 500px;
  height: 500px;
  background: #6c5ce7;
  top: -180px;
  right: -100px;
  animation: float 8s ease-in-out infinite;
}

.hp-hero__orb--2 {
  width: 400px;
  height: 400px;
  background: #ff2d87;
  bottom: -150px;
  left: -80px;
  animation: float 10s ease-in-out infinite 2s;
}

.hp-hero__orb--3 {
  width: 300px;
  height: 300px;
  background: #ff7a18;
  top: 40%;
  left: 55%;
  animation: float 12s ease-in-out infinite 4s;
}

.hp-hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 60px 20px 80px;
  max-width: 800px;
  animation: fadeUp 1s ease-out;
}

.hp-hero__content h1 {
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  font-weight: 800;
  line-height: 1.08;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.hp-hero__content h1 span {
  font-size: 0.75em;
}

.hp-hero__content > p {
  font-size: 1.1rem;
  opacity: 0.88;
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.hp-hero__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hp-hero__stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.hp-stat {
  text-align: center;
}

.hp-stat strong {
  display: block;
  font-size: 1.9rem;
  font-weight: 800;
  background: linear-gradient(135deg, #ff7a18, #ff2d87);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hp-stat span {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  opacity: 0.7;
}

/* ==============================
   TRUST BAR
   ============================== */
.hp-trust {
  position: relative;
  z-index: 5;
  margin-top: -48px;
  padding-bottom: 20px;
}

.hp-trust__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 24px 64px rgba(11, 31, 58, 0.14);
  overflow: hidden;
}

.hp-trust__item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 28px 24px;
  border-right: 1px solid #f0f2f8;
  transition: background 0.3s;
}

.hp-trust__item:last-child { border-right: none; }
.hp-trust__item:hover { background: #f8f5ff; }

.hp-trust__icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  background: linear-gradient(135deg, rgba(108, 92, 231, 0.15), rgba(255, 45, 135, 0.1));
  color: #6c5ce7;
}

.hp-trust__item strong {
  display: block;
  font-size: 0.92rem;
  color: #0b1f3a;
  margin-bottom: 2px;
}

.hp-trust__item p {
  font-size: 0.8rem;
  color: #5b6475;
  margin: 0;
}

/* ==============================
   DESTINATIONS — mosaic grid
   ============================== */
.hp-destinations {
  padding: 80px 0;
  background: linear-gradient(180deg, #f6f8ff 0%, #fff 100%);
}

.hp-dest__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 260px;
  gap: 16px;
}

.hp-dest__card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
}

.hp-dest__card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.hp-dest__card:hover img {
  transform: scale(1.08);
}

.hp-dest__card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(11, 31, 58, 0.7) 0%, transparent 55%);
}

.hp-dest__info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  z-index: 2;
  color: #fff;
}

.hp-dest__tag {
  display: inline-block;
  padding: 3px 12px;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(6px);
  margin-bottom: 6px;
}

.hp-dest__info h3 {
  font-size: 1.25rem;
  font-weight: 700;
}

.hp-dest__card--lg {
  grid-row: span 2;
}

/* ==============================
   PACKAGES — tile grid
   ============================== */
.hp-packages {
  padding: 80px 0;
  background: radial-gradient(ellipse at 20% 80%, rgba(108, 92, 231, 0.12), transparent 55%),
    radial-gradient(ellipse at 80% 20%, rgba(255, 122, 24, 0.1), transparent 55%),
    #fff;
}

.hp-pkg__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.hp-pkg__tile {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(11, 31, 58, 0.12);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.hp-pkg__tile:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 24px 64px rgba(11, 31, 58, 0.22);
}

.hp-pkg__tile img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.hp-pkg__tile:hover img {
  transform: scale(1.04);
}

/* ==============================
   HOW IT WORKS
   ============================== */
.hp-how {
  padding: 80px 0;
  background: linear-gradient(135deg, #0b1f3a, #1a3a6e);
  color: #fff;
}

.hp-how .hp-section-head h2 { color: #fff; }
.hp-how .hp-section-head p { color: rgba(255, 255, 255, 0.65); }
.hp-how .hp-chip--dark {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.hp-how__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.hp-how__step {
  position: relative;
  padding: 36px 28px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  transition: transform 0.3s ease, border-color 0.3s;
}

.hp-how__step:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 122, 24, 0.5);
}

.hp-how__num {
  font-size: 2.8rem;
  font-weight: 900;
  background: linear-gradient(135deg, #ff7a18, #ff2d87);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 16px;
}

.hp-how__step h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.hp-how__step p {
  font-size: 0.9rem;
  opacity: 0.75;
  line-height: 1.6;
}

/* ==============================
   CTA
   ============================== */
.hp-cta {
  padding: 80px 0 100px;
  background: linear-gradient(180deg, #f6f8ff, #fff);
}

.hp-cta__box {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 80px 40px;
  border-radius: 32px;
  background: linear-gradient(135deg, #6c5ce7, #2f5bea, #1fb9ff);
  color: #fff;
  box-shadow: 0 40px 80px rgba(47, 91, 234, 0.35);
}

.hp-cta__orb {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255, 122, 24, 0.35);
  filter: blur(100px);
  top: -150px;
  right: -100px;
  pointer-events: none;
}

.hp-cta__box h2 {
  position: relative;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800;
  margin-bottom: 14px;
}

.hp-cta__box p {
  position: relative;
  font-size: 1rem;
  opacity: 0.88;
  max-width: 540px;
  margin: 0 auto 28px;
}

.hp-cta__box .hp-btn {
  position: relative;
}

/* ==============================
   RESPONSIVE
   ============================== */
@media (max-width: 960px) {
  .hp-trust__grid { grid-template-columns: repeat(2, 1fr); }
  .hp-trust__item:nth-child(2) { border-right: none; }
  .hp-dest__grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 240px; }
  .hp-dest__card--lg { grid-row: span 1; }
  .hp-pkg__grid { grid-template-columns: repeat(2, 1fr); }
  .hp-how__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .hp-hero__content h1 { font-size: 2.2rem; }
  .hp-hero__stats { gap: 28px; }
  .hp-stat strong { font-size: 1.5rem; }

  .hp-trust { margin-top: -30px; }
  .hp-trust__grid { grid-template-columns: 1fr; }
  .hp-trust__item { border-right: none; border-bottom: 1px solid #f0f2f8; }
  .hp-trust__item:last-child { border-bottom: none; }

  .hp-dest__grid { grid-template-columns: 1fr; grid-auto-rows: 200px; }
  .hp-pkg__grid { grid-template-columns: 1fr; }
  .hp-how__grid { grid-template-columns: 1fr; }

  .hp-cta__box { padding: 48px 24px; }
}
