/* ============================================================
   SoulExperience — home.css
   ============================================================ */

/* ── HERO SLIDER ── */
.hero {
  position: relative;
  height: 92vh;
  min-height: 580px;
  overflow: hidden;
}
.slides { position: absolute; inset: 0; }
.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
  background-size: cover;
  background-position: center;
}
.slide.active { opacity: 1; }
.slide-1 { background: linear-gradient(125deg,#051626 0%,#082848 25%,#0e4a7a 55%,#1b6ca8 80%,#2d8fd4 100%); }
.slide-2 { background: linear-gradient(125deg,#071e38 0%,#0a3560 30%,#135a90 60%,#1e7fb8 85%,#3a9fd0 100%); }
.slide-3 { background: linear-gradient(125deg,#060f1e 0%,#0d2a48 35%,#1a4e7a 65%,#2272aa 85%,#38a0cc 100%); }
.slide-4 { background: linear-gradient(125deg,#040d18 0%,#092030 30%,#114060 60%,#1b5e88 80%,#2e8ab8 100%); }
.slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(8,25,46,.85) 0%, rgba(8,25,46,.4) 55%, rgba(8,25,46,.1) 100%);
}
.slide-deco { position: absolute; inset: 0; pointer-events: none; }
.slide-deco svg { position: absolute; bottom: 0; width: 100%; opacity: .15; }

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 64px;
  max-width: 800px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200,164,90,.15);
  border: 1px solid rgba(200,164,90,.4);
  padding: 8px 18px;
  margin-bottom: 24px;
  width: fit-content;
  border-radius: 2px;
  opacity: 0;
  transform: translateY(16px);
  transition: all .8s ease .2s;
}
.hero-badge.vis { opacity: 1; transform: none; }
.hero-badge span {
  font-size: 11px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
}
.hero-title {
  font-family: var(--ff);
  font-size: clamp(38px, 6vw, 72px);
  font-weight: 400;
  line-height: 1.06;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(20px);
  transition: all .8s ease .4s;
}
.hero-title.vis { opacity: 1; transform: none; }
.hero-desc {
  font-size: 18px;
  line-height: 1.75;
  color: rgba(255,255,255,.7);
  margin-bottom: 36px;
  font-weight: 300;
  max-width: 540px;
  opacity: 0;
  transform: translateY(20px);
  transition: all .8s ease .6s;
}
.hero-desc.vis { opacity: 1; transform: none; }
.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  transition: all .8s ease .8s;
}
.hero-ctas.vis { opacity: 1; transform: none; }

.slide-dots {
  position: absolute;
  bottom: 32px;
  left: 64px;
  z-index: 3;
  display: flex;
  gap: 10px;
  align-items: center;
}
.dot {
  width: 28px;
  height: 3px;
  background: rgba(255,255,255,.3);
  cursor: pointer;
  transition: all .3s;
  border: none;
}
.dot.active { background: var(--gold); width: 44px; }

.slide-caption {
  position: absolute;
  bottom: 32px;
  right: 48px;
  z-index: 3;
  text-align: right;
}
.slide-caption p { font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: rgba(255,255,255,.38); }
.slide-caption strong { font-size: 20px; font-family: var(--ff); font-weight: 400; color: rgba(255,255,255,.65); display: block; }

/* ── SEARCH BAR ── */
.search-wrap {
  background: var(--navy2);
  border-top: 3px solid var(--gold);
  padding: 0 32px;
}
.search-inner {
  display: flex;
  align-items: stretch;
  max-width: 1200px;
  margin: 0 auto;
}
.sf {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 18px 20px;
  border-right: 1px solid rgba(255,255,255,.1);
  min-width: 0;
}
.sf:last-of-type { border-right: none; }
.sf label {
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
}
.sf select, .sf input {
  background: transparent;
  border: none;
  outline: none;
  font-family: var(--fb);
  font-size: 15px;
  color: var(--white);
  width: 100%;
  cursor: pointer;
  -webkit-appearance: none;
}
.sf select option { background: var(--navy2); }
.sf input[type=date] { color-scheme: dark; }
.search-go {
  padding: 0 36px;
  background: var(--gold);
  border: none;
  color: var(--navy);
  font-family: var(--fb);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
  flex-shrink: 0;
  transition: background .2s;
}
.search-go:hover { background: var(--gold2); }

/* ── BOATS GRID ── */
.boats-sec { background: rgba(255,255,255,.025); }
.boats-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 16px;
}
.boats-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.boat-card {
  background: var(--navy2);
  overflow: hidden;
  cursor: pointer;
  transition: transform .3s, box-shadow .3s;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius);
}
.boat-card:hover { transform: translateY(-5px); box-shadow: 0 16px 48px rgba(0,0,0,.45); }
.bi {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.bi-icon { font-size: 70px; opacity: .18; transition: opacity .4s; }
.boat-card:hover .bi-icon { opacity: .28; }
.bi-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,25,46,.9) 0%, transparent 60%);
}
.b-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--gold);
  color: var(--navy);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 2px;
}
.b-info { padding: 18px; }
.b-type { font-size: 10px; letter-spacing: .18em; text-transform: uppercase; color: var(--az3); font-weight: 700; margin-bottom: 5px; }
.b-name { font-family: var(--ff); font-size: 20px; font-weight: 400; margin-bottom: 8px; }
.b-feats { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 12px; }
.b-feat { font-size: 13px; color: rgba(255,255,255,.5); display: flex; align-items: center; gap: 4px; }
.b-feat::before { content: ''; display: inline-block; width: 3px; height: 3px; background: var(--gold); border-radius: 50%; flex-shrink: 0; }
.b-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.b-price-label { font-size: 10px; color: rgba(255,255,255,.4); text-transform: uppercase; letter-spacing: .1em; }
.b-price-val { font-family: var(--ff); font-size: 24px; color: var(--gold); }
.b-price-val span { font-size: 12px; font-family: var(--fb); color: rgba(255,255,255,.38); }

/* ── DESTINATIONS ── */
.dest-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; margin-top: 40px; }
.dest-card { position: relative; overflow: hidden; cursor: pointer; border-radius: var(--radius); }
.dest-inner {
  height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  transition: transform .4s;
  background: linear-gradient(to top, rgba(8,25,46,.92) 0%, rgba(8,25,46,.15) 60%, transparent 100%), var(--dg);
}
.dest-card:hover .dest-inner { transform: scale(1.04); }
.dest-card:nth-child(1) { --dg: linear-gradient(135deg,var(--az),var(--az2)); }
.dest-card:nth-child(2) { --dg: linear-gradient(135deg,#14527a,var(--az)); }
.dest-card:nth-child(3) { --dg: linear-gradient(135deg,var(--navy3),var(--az)); }
.dest-card:nth-child(4) { --dg: linear-gradient(135deg,#0c3d60,var(--navy3)); }
.dest-card:nth-child(5) { --dg: linear-gradient(135deg,var(--az),#195080); }
.dest-card:nth-child(6) { --dg: linear-gradient(135deg,var(--navy2),var(--az)); }
.dest-card:nth-child(7) { --dg: linear-gradient(135deg,#103050,var(--az2)); }
.dest-card:nth-child(8) { --dg: linear-gradient(135deg,var(--navy3),#14527a); }
.dest-icon { font-size: 36px; margin-bottom: 8px; opacity: .75; }
.dest-name { font-family: var(--ff); font-size: 20px; font-weight: 400; margin-bottom: 3px; }
.dest-boats { font-size: 12px; color: var(--gold); font-weight: 700; letter-spacing: .06em; }

/* ── HOW IT WORKS ── */
.how-sec { background: var(--navy2); }
.how-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; margin-top: 48px; }
.how-step { background: var(--navy); padding: 40px 32px; position: relative; overflow: hidden; }
.how-step::before {
  content: attr(data-n);
  position: absolute;
  top: -10px;
  right: 16px;
  font-family: var(--ff);
  font-size: 100px;
  font-weight: 400;
  color: rgba(255,255,255,.04);
  line-height: 1;
}
.how-icon { font-size: 34px; margin-bottom: 18px; }
.how-step h3 { font-family: var(--ff); font-size: 21px; font-weight: 400; margin-bottom: 10px; }
.how-step p { font-size: 15px; line-height: 1.75; color: rgba(255,255,255,.55); font-weight: 300; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .boats-grid { grid-template-columns: repeat(2,1fr); }
  .dest-grid { grid-template-columns: repeat(2,1fr); }
  .how-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .hero-content { padding: 0 24px; }
  .hero-desc { font-size: 16px; }
  .slide-dots { left: 24px; }
  .slide-caption { display: none; }
  .search-wrap { padding: 0; }
  .search-inner { flex-direction: column; }
  .sf { border-right: none; border-bottom: 1px solid rgba(255,255,255,.1); }
  .sf:last-of-type { border-bottom: none; }
  .search-go { padding: 16px; text-align: center; }
  .boats-grid { grid-template-columns: 1fr; }
  .boats-head { flex-direction: column; align-items: flex-start; }
  .dest-grid { grid-template-columns: 1fr 1fr; }
  .dest-inner { height: 180px; }
}
@media (max-width: 480px) {
  .dest-grid { grid-template-columns: 1fr; }
  .hero-ctas { gap: 10px; }
}