/* ===========================================
   HERO V5 — Trust-First Split Layout
   Photo on right, copy + social proof on left
   =========================================== */

/* ========== SECTION ========== */

.hero-v5 {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #FFFFFF;
}

/* ========== BACKGROUND ========== */

.hero-v5__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hero-v5__bg-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 0% 50%, rgba(47, 128, 237, 0.04) 0%, transparent 100%),
    radial-gradient(ellipse 40% 60% at 100% 0%, rgba(47, 128, 237, 0.03) 0%, transparent 100%);
}

/* ========== ANIMATED FLOATING ORBS ========== */

@keyframes heroOrbFloat1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  20% { transform: translate(80px, -50px) scale(1.15); }
  40% { transform: translate(-40px, -100px) scale(0.9); }
  60% { transform: translate(-90px, 30px) scale(1.1); }
  80% { transform: translate(50px, 60px) scale(0.95); }
}
@keyframes heroOrbFloat2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(-70px, 80px) scale(1.12); }
  50% { transform: translate(60px, 40px) scale(0.88); }
  75% { transform: translate(90px, -70px) scale(1.18); }
}
@keyframes heroOrbFloat3 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  30% { transform: translate(100px, 50px) scale(1.2); }
  60% { transform: translate(-60px, -80px) scale(0.85); }
}
@keyframes heroOrbFloat4 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  35% { transform: translate(-80px, -60px) scale(1.1); }
  70% { transform: translate(70px, 90px) scale(0.9); }
}
@keyframes heroOrbFloat5 {
  0%, 100% { transform: translate(0, 0) scale(1) rotate(0deg); }
  50% { transform: translate(60px, -40px) scale(1.15) rotate(180deg); }
}
@keyframes heroOrbFloat6 {
  0%, 100% { transform: translate(0, 0) scale(0.9); }
  25% { transform: translate(40px, 70px) scale(1.1); }
  50% { transform: translate(-50px, 30px) scale(1.2); }
  75% { transform: translate(-30px, -50px) scale(0.85); }
}
@keyframes heroOrbPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}
@keyframes heroShimmer {
  0% { transform: translateX(-100%) rotate(-15deg); }
  100% { transform: translateX(200%) rotate(-15deg); }
}

.hero-v5__orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  filter: blur(40px);
  will-change: transform, opacity;
}

/* Large top-left — bright blue */
.hero-v5__orb--1 {
  width: 650px;
  height: 650px;
  top: -18%;
  left: -10%;
  background: rgba(70, 140, 240, 0.40);
  animation: heroOrbFloat1 14s ease-in-out infinite, heroOrbPulse 6s ease-in-out infinite;
}

/* Large bottom-right — medium blue */
.hero-v5__orb--2 {
  width: 550px;
  height: 550px;
  bottom: -12%;
  right: -5%;
  background: rgba(80, 155, 245, 0.36);
  animation: heroOrbFloat2 18s ease-in-out infinite, heroOrbPulse 8s ease-in-out infinite 2s;
}

/* Mid center-right — light blue */
.hero-v5__orb--3 {
  width: 400px;
  height: 400px;
  top: 20%;
  right: 20%;
  background: rgba(110, 185, 255, 0.32);
  animation: heroOrbFloat3 12s ease-in-out infinite, heroOrbPulse 5s ease-in-out infinite 1s;
}

/* Small top-right — accent blue */
.hero-v5__orb--4 {
  width: 280px;
  height: 280px;
  top: 5%;
  right: 35%;
  background: rgba(100, 170, 255, 0.30);
  animation: heroOrbFloat4 16s ease-in-out infinite, heroOrbPulse 7s ease-in-out infinite 3s;
}

/* Small bottom-left — deep blue */
.hero-v5__orb--5 {
  width: 320px;
  height: 320px;
  bottom: 10%;
  left: 15%;
  background: rgba(60, 120, 230, 0.34);
  animation: heroOrbFloat5 20s ease-in-out infinite;
}

/* Tiny floating accent — bright */
.hero-v5__orb--6 {
  width: 200px;
  height: 200px;
  top: 50%;
  left: 45%;
  background: rgba(130, 200, 255, 0.30);
  filter: blur(35px);
  animation: heroOrbFloat6 10s ease-in-out infinite, heroOrbPulse 4s ease-in-out infinite;
}

/* Shimmer sweep */
.hero-v5__shimmer {
  position: absolute;
  top: -50%;
  left: 0;
  width: 60%;
  height: 200%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.08) 45%,
    rgba(255, 255, 255, 0.15) 50%,
    rgba(255, 255, 255, 0.08) 55%,
    transparent 100%
  );
  pointer-events: none;
  z-index: 0;
  animation: heroShimmer 8s ease-in-out infinite;
}

/* ========== CONTAINER — TWO COLUMNS ========== */

.hero-v5__container {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 140px 48px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

/* ========== STAGGERED ENTRANCE ========== */

.hero-v5__anim {
  opacity: 0;
  transform: translateY(22px);
  animation: hero-v5-enter 0.65s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero-v5__anim[data-d="1"] { animation-delay: 0.15s; }
.hero-v5__anim[data-d="2"] { animation-delay: 0.3s; }
.hero-v5__anim[data-d="3"] { animation-delay: 0.45s; }
.hero-v5__anim[data-d="4"] { animation-delay: 0.6s; }
.hero-v5__anim[data-d="5"] { animation-delay: 0.75s; }
.hero-v5__anim[data-d="6"] { animation-delay: 0.9s; }

@keyframes hero-v5-enter {
  to { opacity: 1; transform: translateY(0); }
}

/* ==========================================
   LEFT COLUMN — Copy & Trust
   ========================================== */

.hero-v5__left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* ========== LIVE BADGE ========== */

.hero-v5__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #F0FDF4;
  border: 1px solid #BBF7D0;
  border-radius: 999px;
  padding: 7px 16px;
  margin-bottom: 24px;
  font-size: 13px;
  font-weight: 600;
  color: #166534;
}

.hero-v5__badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22C55E;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.2);
  animation: hero-v5-pulse 2s ease-in-out infinite;
}

@keyframes hero-v5-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}

/* ========== HEADLINE ========== */

.hero-v5__title {
  font-size: clamp(38px, 4.6vw, 56px);
  font-weight: 800;
  color: #0F172A;
  line-height: 1.1;
  letter-spacing: -0.035em;
  margin: 0 0 20px;
}

.hero-v5__title-accent {
  color: #2F80ED;
  position: relative;
  white-space: nowrap;
}

/* ========== SUBTITLE ========== */

.hero-v5__sub {
  font-size: 18px;
  color: #475569;
  line-height: 1.65;
  margin: 0 0 32px;
  max-width: 500px;
}

/* ========== CTA BUTTONS ========== */

.hero-v5__ctas {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.hero-v5__btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #2F80ED;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  padding: 0 28px;
  height: 50px;
  border-radius: 12px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 1px 2px rgba(47, 128, 237, 0.2), 0 4px 12px rgba(47, 128, 237, 0.2);
}

.hero-v5__btn-primary:hover {
  background: #1D6FD6;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(47, 128, 237, 0.25), 0 12px 28px rgba(47, 128, 237, 0.2);
}

.hero-v5__btn-primary:active {
  transform: translateY(0);
}

.hero-v5__btn-primary svg {
  width: 16px;
  height: 16px;
  transition: transform 0.25s ease;
}

.hero-v5__btn-primary:hover svg {
  transform: translateX(3px);
}

.hero-v5__btn-secondary {
  display: inline-flex;
  align-items: center;
  font-size: 15px;
  font-weight: 600;
  color: #374151;
  padding: 0 24px;
  height: 50px;
  border-radius: 12px;
  text-decoration: none;
  border: 1.5px solid #E5E7EB;
  background: #fff;
  transition: all 0.25s ease;
  cursor: pointer;
}

.hero-v5__btn-secondary:hover {
  border-color: #2F80ED;
  color: #2F80ED;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

/* ========== SOCIAL PROOF BAR ========== */

.hero-v5__proof {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid #F1F5F9;
}

.hero-v5__proof-avatars {
  display: flex;
  flex-shrink: 0;
}

.hero-v5__avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  border: 2.5px solid #fff;
  margin-right: -10px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.1);
}

.hero-v5__avatar:last-child {
  margin-right: 0;
}

.hero-v5__proof-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero-v5__proof-stars {
  display: flex;
  align-items: center;
  gap: 2px;
}

.hero-v5__proof-rating {
  font-size: 14px;
  font-weight: 700;
  color: #111827;
  margin-left: 6px;
}

.hero-v5__proof-count {
  font-size: 13px;
  color: #64748B;
  font-weight: 500;
}

/* ========== TRUST PILLS ========== */

.hero-v5__trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-v5__trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: #F8FAFC;
  border: 1px solid #F1F5F9;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 500;
  color: #334155;
  transition: all 0.25s ease;
}

.hero-v5__trust-pill:hover {
  background: #F0FDF4;
  border-color: #BBF7D0;
}

.hero-v5__trust-pill svg {
  flex-shrink: 0;
}

/* ==========================================
   RIGHT COLUMN — Photo + Floating Cards
   ========================================== */

.hero-v5__right {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-v5__photo-wrapper {
  position: relative;
  width: 100%;
  max-width: 560px;
}

.hero-v5__photo-img {
  width: 100%;
  height: auto;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 24px;
  box-shadow:
    0 4px 6px rgba(0, 0, 0, 0.04),
    0 20px 60px rgba(0, 0, 0, 0.08);
}

/* ========== FLOATING CARDS ========== */

.hero-v5__float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border-radius: 14px;
  padding: 12px 16px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.04), 0 12px 30px rgba(0,0,0,0.08);
  border: 1px solid rgba(0,0,0,0.04);
  white-space: nowrap;
  z-index: 2;
}

.hero-v5__float-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero-v5__float-icon--green { background: #22C55E; }
.hero-v5__float-icon--gold { background: #F59E0B; }
.hero-v5__float-icon--blue { background: #2F80ED; }

.hero-v5__float-body {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.hero-v5__float-title {
  font-size: 13px;
  font-weight: 700;
  color: #111827;
}

.hero-v5__float-sub {
  font-size: 12px;
  font-weight: 500;
  color: #6B7280;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

/* Card Positions + Animations */
.hero-v5__float-card--live {
  top: 24px;
  left: -30px;
  animation: hero-v5-float-a 4s ease-in-out infinite;
  animation-delay: 0.8s;
  opacity: 0;
  animation-fill-mode: backwards;
}

.hero-v5__float-card--rating {
  bottom: 100px;
  right: -20px;
  animation: hero-v5-float-b 4.5s ease-in-out infinite;
  animation-delay: 1.2s;
  opacity: 0;
  animation-fill-mode: backwards;
}

.hero-v5__float-card--booking {
  bottom: 20px;
  left: -20px;
  animation: hero-v5-float-c 5s ease-in-out infinite;
  animation-delay: 1.6s;
  opacity: 0;
  animation-fill-mode: backwards;
}

@keyframes hero-v5-float-a {
  0% { opacity: 0; transform: translateY(12px); }
  8% { opacity: 1; transform: translateY(0); }
  50% { transform: translateY(-6px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes hero-v5-float-b {
  0% { opacity: 0; transform: translateY(12px); }
  8% { opacity: 1; transform: translateY(0); }
  50% { transform: translateY(-8px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes hero-v5-float-c {
  0% { opacity: 0; transform: translateY(12px); }
  6% { opacity: 1; transform: translateY(0); }
  50% { transform: translateY(-5px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* ===========================================
   RESPONSIVE — LARGE TABLET / SMALL DESKTOP
   =========================================== */

@media (max-width: 1100px) {
  .hero-v5__container {
    gap: 40px;
    padding: 130px 32px 64px;
  }

  .hero-v5__title {
    font-size: clamp(34px, 4.2vw, 46px);
  }

  .hero-v5__float-card--live {
    left: -10px;
  }

  .hero-v5__float-card--rating {
    right: -10px;
  }

  .hero-v5__float-card--booking {
    left: -10px;
  }
}

/* ===========================================
   RESPONSIVE — TABLET (STACK)
   =========================================== */

@media (max-width: 900px) {
  .hero-v5__orb--1 { width: 400px; height: 400px; }
  .hero-v5__orb--2 { width: 350px; height: 350px; }
  .hero-v5__orb--3 { width: 250px; height: 250px; }
  .hero-v5__orb--4 { width: 180px; height: 180px; }
  .hero-v5__orb--5 { width: 200px; height: 200px; }
  .hero-v5__orb--6 { display: none; }

  .hero-v5__container {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 120px 24px 56px;
    text-align: center;
  }

  .hero-v5__left {
    align-items: center;
    order: 1;
  }

  .hero-v5__right {
    order: 2;
  }

  .hero-v5__sub {
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-v5__ctas {
    justify-content: center;
  }

  .hero-v5__proof {
    justify-content: center;
  }

  .hero-v5__trust-strip {
    justify-content: center;
  }

  .hero-v5__photo-wrapper {
    max-width: 480px;
  }

  .hero-v5__float-card--live {
    left: -8px;
    top: 16px;
  }

  .hero-v5__float-card--rating {
    right: -8px;
    bottom: 80px;
  }

  .hero-v5__float-card--booking {
    left: -8px;
    bottom: 10px;
  }
}

/* ===========================================
   RESPONSIVE — MOBILE
   =========================================== */

@media (max-width: 640px) {
  .hero-v5__orb--1 { width: 300px; height: 300px; }
  .hero-v5__orb--2 { width: 250px; height: 250px; }
  .hero-v5__orb--3 { display: none; }
  .hero-v5__orb--4 { display: none; }
  .hero-v5__orb--5 { width: 180px; height: 180px; }
  .hero-v5__orb--6 { display: none; }
  .hero-v5__shimmer { display: none; }

  .hero-v5__container {
    padding: 110px 16px 44px;
    gap: 36px;
  }

  .hero-v5__badge {
    font-size: 12px;
    padding: 6px 12px;
  }

  .hero-v5__title {
    font-size: clamp(30px, 8vw, 40px);
    margin-bottom: 16px;
  }

  .hero-v5__title-accent {
    white-space: normal;
  }

  .hero-v5__sub {
    font-size: 16px;
    margin-bottom: 24px;
  }

  .hero-v5__ctas {
    flex-direction: column;
    width: 100%;
    gap: 10px;
    margin-bottom: 32px;
  }

  .hero-v5__btn-primary,
  .hero-v5__btn-secondary {
    width: 100%;
    justify-content: center;
    height: 48px;
    border-radius: 12px;
  }

  .hero-v5__proof {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .hero-v5__proof-text {
    align-items: center;
  }

  .hero-v5__proof-stars {
    justify-content: center;
  }

  .hero-v5__trust-strip {
    gap: 8px;
  }

  .hero-v5__trust-pill {
    font-size: 12px;
    padding: 7px 12px;
  }

  .hero-v5__photo-wrapper {
    max-width: 100%;
  }

  .hero-v5__photo-img {
    border-radius: 20px;
    aspect-ratio: 3/4;
  }

  .hero-v5__float-card {
    padding: 10px 12px;
    border-radius: 12px;
    gap: 8px;
  }

  .hero-v5__float-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
  }

  .hero-v5__float-icon svg {
    width: 15px;
    height: 15px;
  }

  .hero-v5__float-title {
    font-size: 12px;
  }

  .hero-v5__float-sub {
    font-size: 11px;
  }

  .hero-v5__float-card--live {
    left: 4px;
    top: 12px;
  }

  .hero-v5__float-card--rating {
    right: 4px;
    bottom: 60px;
  }

  .hero-v5__float-card--booking {
    left: 4px;
    bottom: 8px;
  }
}

/* ===========================================
   RESPONSIVE — SMALL MOBILE
   =========================================== */

@media (max-width: 400px) {
  .hero-v5__container {
    padding: 100px 12px 36px;
  }

  .hero-v5__title {
    font-size: 28px;
  }

  .hero-v5__avatar {
    width: 30px;
    height: 30px;
    font-size: 11px;
  }

  .hero-v5__float-card--rating,
  .hero-v5__float-card--live {
    display: none;
  }
}

/* ===========================================
   REDUCED MOTION — Accessibility
   =========================================== */

@media (prefers-reduced-motion: reduce) {
  .hero-v5__anim {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

  .hero-v5__float-card {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

  .hero-v5__badge-dot {
    animation: none !important;
  }

  .hero-v5__orb {
    animation: none !important;
    opacity: 0.5;
  }

  .hero-v5__shimmer {
    display: none;
  }
}
