/* ===== INDEX PAGE STYLES ===== */

/* HERO */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero-parallax {
  width: 100%;
  height: 120%;
  object-fit: cover;
  object-position: center 30%;
  will-change: transform;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(10,27,42,0.75) 0%,
    rgba(10,27,42,0.45) 50%,
    rgba(10,27,42,0.2) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 5%;
  max-width: 780px;
}

/* Hero staggered entrance */
.hero-eyebrow {
  display: inline-block;
  background: rgba(0,180,216,0.2);
  border: 1px solid rgba(0,180,216,0.5);
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  animation: heroReveal 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both;
}
.hero-content h1 {
  color: var(--white);
  margin-bottom: 1.25rem;
  animation: heroReveal 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.5s both;
}
.hero-content h1 em {
  font-style: italic;
  color: var(--teal);
}
.hero-content > p {
  color: rgba(255,255,255,0.85);
  font-size: 1.2rem;
  max-width: 460px;
  margin-bottom: 2rem;
  animation: heroReveal 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.7s both;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
  animation: heroReveal 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.9s both;
}
.hero-stats {
  display: flex;
  gap: 2.5rem;
  animation: heroReveal 0.8s cubic-bezier(0.16, 1, 0.3, 1) 1.1s both;
}

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

.stat span {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.stat p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  margin-top: 0.25rem;
}
.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.45);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollPulse 2s ease infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(0.6); }
}

/* INTRO STRIP */
.intro-strip {
  background: var(--ocean);
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}
.strip-item {
  flex: 1 1 200px;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.5rem 2rem;
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
  font-weight: 500;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.strip-item:last-child { border-right: none; }

/* ABOUT */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-images {
  position: relative;
}
.about-img-main {
  border-radius: var(--radius);
  overflow: hidden;
  height: 520px;
  box-shadow: var(--shadow-lg);
}
.about-img-secondary {
  position: absolute;
  bottom: -2.5rem;
  right: 0;
  width: 55%;
  height: 260px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--white);
}
.about-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--coral);
  color: var(--white);
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  text-align: center;
  line-height: 1.2;
}
.badge-num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
}
.badge-text {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.about-list {
  list-style: none;
  margin-bottom: 2rem;
}
.about-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  font-size: 0.95rem;
  color: var(--dark);
  font-weight: 500;
}
.check {
  width: 22px;
  height: 22px;
  background: var(--ocean);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  flex-shrink: 0;
}

/* EXPERIENCE */
.experience {
  position: relative;
  height: 600px;
  display: flex;
  align-items: center;
}
.exp-bg {
  position: absolute;
  inset: 0;
}
.exp-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10,27,42,0.85) 0%, rgba(10,27,42,0.4) 100%);
}
.exp-content {
  position: relative;
  z-index: 2;
}
.exp-content .section-label { color: var(--teal); }
.exp-content h2 { color: var(--white); max-width: 640px; }
.exp-content p { color: rgba(255,255,255,0.75); max-width: 520px; margin-bottom: 2.5rem; }

/* FEATURES */
.features-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.features-header .section-subtitle { margin: 0 auto; }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.feature-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.feature-img { height: 260px; overflow: hidden; }
.feature-img img { transition: transform 0.6s ease; }
.feature-card:hover .feature-img img { transform: scale(1.05); }
.feature-body { padding: 1.75rem; }
.feature-body h3 { margin-bottom: 0.75rem; }

/* PACKAGES */
.packages-section { background: var(--light-grey); }
.packages-header { text-align: center; }
.packages-header .section-subtitle { text-align: center; margin: 0 auto 3rem; }
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: start;
}
.package-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
  transition: var(--transition);
}
.package-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.pkg-featured {
  border: 2px solid var(--teal);
  transform: translateY(-12px);
}
.pkg-featured:hover { transform: translateY(-20px); }
.pkg-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--coral);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 50px;
  z-index: 1;
}
.pkg-featured .pkg-tag { background: var(--teal); }
.pkg-tag--subtle {
  background: rgba(10, 27, 42, 0.7);
  backdrop-filter: blur(4px);
}
.pkg-img { height: 220px; overflow: hidden; }
.pkg-img img { transition: transform 0.6s ease; }
.package-card:hover .pkg-img img { transform: scale(1.05); }
.pkg-body { padding: 1.75rem; }
.pkg-body h3 { margin-bottom: 0.6rem; }
.pkg-body p { margin-bottom: 1.25rem; font-size: 0.9rem; }
.pkg-price {
  font-size: 0.9rem;
  color: var(--grey);
  margin-bottom: 1.25rem;
}
.pkg-price span {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--ocean);
}
.pkg-btn { width: 100%; justify-content: center; }

/* TESTIMONIALS */
.testimonials-header { text-align: center; margin-bottom: 3rem; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.testimonial-card {
  background: var(--light-grey);
  border-radius: var(--radius);
  padding: 2rem;
  border-left: 4px solid var(--teal);
  transition: var(--transition);
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 180, 216, 0.1);
  border-left-color: var(--coral);
}
.stars { color: #f59e0b; font-size: 1rem; margin-bottom: 1rem; letter-spacing: 0.1em; }
.testimonial-quote {
  font-size: 0.95rem;
  font-style: italic;
  margin-bottom: 1.5rem;
  color: var(--dark);
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.author-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--ocean);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  flex-shrink: 0;
}
.testimonial-author strong { font-size: 0.9rem; }
.testimonial-author span { font-size: 0.8rem; color: var(--grey); }

/* GALLERY STRIP */
.gallery-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  height: 340px;
  overflow: hidden;
}
.gallery-item {
  overflow: hidden;
  cursor: zoom-in;
  position: relative;
}
.gallery-item img {
  transition: transform 0.5s ease;
}
.gallery-item:hover img {
  transform: scale(1.08);
}
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.3);
  opacity: 0;
  transition: var(--transition);
}
.gallery-item:hover::after { opacity: 1; }

/* CTA BANNER */
.cta-banner {
  position: relative;
  height: 420px;
  display: flex;
  align-items: center;
  text-align: center;
}
.cta-bg {
  position: absolute;
  inset: 0;
}
.cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,27,42,0.7);
}
.cta-content {
  position: relative;
  z-index: 2;
  width: 100%;
}
.cta-content h2 {
  color: var(--white);
  margin-bottom: 1rem;
}
.cta-content p {
  color: rgba(255,255,255,0.75);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}
.cta-content .btn {
  font-size: 1.1rem;
  padding: 1rem 2.5rem;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .features-grid, .packages-grid, .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .pkg-featured { transform: none; }
  .gallery-strip { grid-template-columns: repeat(3, 1fr); height: 260px; }
  .gallery-item:nth-child(n+4) { display: none; }
}
@media (max-width: 768px) {
  .hero-content h1 { font-size: 2.8rem; }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-img-secondary { display: none; }
  .features-grid, .packages-grid, .testimonials-grid { grid-template-columns: 1fr; }
  .gallery-strip { grid-template-columns: repeat(2, 1fr); height: 200px; }
  .gallery-item:nth-child(n+3) { display: none; }
  .hero-stats { gap: 1.5rem; }
  .intro-strip { flex-direction: column; }
  .strip-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .strip-item:last-child { border-bottom: none; }
}
