/* ============================================
   Manny Tours RD — Styles
   ============================================ */

/* --- Tokens --- */
:root {
  --primary: hsl(195 85% 45%);
  --primary-hover: hsl(195 85% 38%);
  --primary-light: hsl(195 80% 92%);
  --accent: hsl(185 70% 48%);
  --bg: #ECF5F8;
  --bg-alt: #ECF5F8;
  --fg: hsl(210 20% 18%);
  --muted: hsl(210 10% 45%);
  --card: #ffffff;
  --border: hsl(200 25% 90%);
  --gradient: linear-gradient(135deg, hsl(195 85% 45%), hsl(185 70% 48%));
  --radius: 0.75rem;
  --radius-full: 9999px;
  --shadow: 0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  --shadow-lg: 0 8px 24px rgba(14,165,233,.12);
  --shadow-btn: 0 4px 14px rgba(14,165,233,.25);
  --transition: 200ms ease;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  background: var(--bg);
  color: var(--fg);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}
img, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }
input, textarea { font: inherit; }

/* --- Background Particles --- */
.bg-particles {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  pointer-events: none;
}

/* --- Utilities --- */
.container { max-width: 72rem; margin: 0 auto; padding: 0 1.5rem; }
.text-gradient {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); border: 0;
}

/* --- Button --- */
.btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 1rem;
  color: #fff;
  background: var(--gradient);
  box-shadow: var(--shadow-btn);
  transition: transform var(--transition), box-shadow var(--transition), filter var(--transition);
  text-align: center;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(14,165,233,.35);
  filter: brightness(1.05);
}
.btn--sm { padding: 0.625rem 1.25rem; font-size: 0.875rem; }
.btn--outline {
  background: transparent;
  border: 2px solid rgba(255,255,255,.5);
  box-shadow: none;
}
.btn--outline:hover {
  background: rgba(255,255,255,.12);
  border-color: #fff;
  box-shadow: none;
}

/* --- Card --- */
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

/* --- Icon Circle --- */
.icon-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: var(--gradient);
  flex-shrink: 0;
}
.icon-circle svg { width: 1.5rem; height: 1.5rem; color: #fff; }
.icon-circle--lg { width: 4rem; height: 4rem; }
.icon-circle--lg svg { width: 1.75rem; height: 1.75rem; }

/* ============================================
   HEADER
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 1rem 5%;
  background: transparent;
  transition: background 0.35s ease, box-shadow 0.35s ease;
}
.header--scrolled {
  background: hsla(195, 85%, 45%, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 2px 16px rgba(14,165,233,.2);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.header__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.header__logo img {
  height: 2rem;
  width: auto;
  object-fit: contain;
}

/* Right group */
.header__right {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.header__nav {
  display: flex;
  align-items: center;
  gap: 0.125rem;
}
.header__nav a {
  color: #fff;
  font-weight: 500;
  font-size: 0.85rem;
  padding: 0.4rem 0.9rem;
  border-radius: var(--radius-full);
  transition: background 0.2s ease, opacity 0.2s ease;
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.header__nav a:hover {
  background: rgba(255,255,255,.15);
}
.header__cta {
  flex-shrink: 0;
  margin-left: 0.25rem;
}

/* Mobile Menu Toggle — Animated Hamburger */
.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.1);
  color: #fff;
  transition: background var(--transition);
  margin-left: auto;
  position: relative;
  z-index: 110;
  -webkit-tap-highlight-color: transparent;
}
.menu-toggle:hover { background: rgba(255,255,255,.2); }
.menu-toggle__bar {
  display: block;
  width: 16px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 350ms cubic-bezier(.4,.01,.165,.99), opacity 250ms ease;
  transform-origin: center;
}
/* Hamburger → X animation */
.menu-toggle.is-active .menu-toggle__bar:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.menu-toggle.is-active .menu-toggle__bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.menu-toggle.is-active .menu-toggle__bar:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 100;
  background: url('../images/2633.jpg') center/cover no-repeat;
}
.mobile-menu::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, hsla(195, 85%, 35%, 0.92) 0%, hsla(195, 85%, 42%, 0.88) 100%);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.mobile-menu.is-open {
  display: flex;
  align-items: center;
  justify-content: center;
  animation: menuFadeIn 350ms ease;
}
@keyframes menuFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.mobile-menu__inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
.mobile-menu__inner nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}
.mobile-menu__inner nav a {
  color: #fff;
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: opacity var(--transition), transform var(--transition);
  opacity: 0;
  transform: translateY(15px);
}
.mobile-menu.is-open .mobile-menu__inner nav a {
  opacity: 1;
  transform: translateY(0);
}
.mobile-menu.is-open .mobile-menu__inner nav a:nth-child(1) { transition-delay: 80ms; }
.mobile-menu.is-open .mobile-menu__inner nav a:nth-child(2) { transition-delay: 160ms; }
.mobile-menu.is-open .mobile-menu__inner nav a:nth-child(3) { transition-delay: 240ms; }
.mobile-menu.is-open .mobile-menu__inner nav a:nth-child(4) { transition-delay: 320ms; }
.mobile-menu__inner nav a:hover {
  opacity: 0.7;
  transform: scale(1.05);
}
.mobile-menu__btn {
  margin-top: 1rem;
  background: #fff;
  color: var(--primary);
  box-shadow: none;
  font-size: 1.1rem;
  padding: 0.875rem 2.5rem;
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 350ms ease, transform 350ms ease;
}
.mobile-menu.is-open .mobile-menu__btn {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 400ms;
}
.mobile-menu__btn:hover {
  transform: none;
  opacity: 0.9;
  box-shadow: none;
  filter: none;
}

@media (max-width: 767px) {
  .header {
    padding: 0.625rem 1.25rem;
  }
  .header--scrolled {
    background: hsla(195, 85%, 45%, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 12px rgba(14,165,233,.18);
  }
  .header__inner {
    height: 2.75rem;
    border-radius: 0;
  }
  .header__logo img {
    height: 1.6rem;
  }
  .menu-toggle {
    display: inline-flex;
  }
  .header__nav, .header__cta { display: none; }
}
@media (min-width: 768px) {
  .header__inner { height: 3.5rem; }
  .header__logo img { height: 2.25rem; }
}

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

.hero__bg {
  position: absolute;
  inset: -20px;
  background: url('../images/2633.jpg') center/cover no-repeat;
  animation: heroZoom 25s ease-in-out infinite alternate;
}
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .35);
}

/* Floating particles */
.hero__particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}
.hero__particle {
  position: absolute;
  width: 5px;
  height: 5px;
  background: rgba(255,255,255,.2);
  border-radius: 50%;
  animation: particleFloat linear infinite;
}
.hero__particle:nth-child(1) { left: 10%; bottom: -10px; animation-duration: 12s; animation-delay: 0s; width: 4px; height: 4px; }
.hero__particle:nth-child(2) { left: 30%; bottom: -10px; animation-duration: 16s; animation-delay: 2s; width: 5px; height: 5px; }
.hero__particle:nth-child(3) { left: 55%; bottom: -10px; animation-duration: 14s; animation-delay: 4s; width: 3px; height: 3px; }
.hero__particle:nth-child(4) { left: 75%; bottom: -10px; animation-duration: 18s; animation-delay: 1s; width: 4px; height: 4px; }
.hero__particle:nth-child(5) { left: 90%; bottom: -10px; animation-duration: 13s; animation-delay: 3s; width: 3px; height: 3px; }

/* Content */
.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 1rem;
  max-width: 56rem;
  animation: heroFadeIn 1.2s ease-out;
}

.hero__badge {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  margin-bottom: 1.75rem;
  animation: heroFadeIn 1s ease-out 0.2s both;
}

.hero__title {
  font-size: clamp(2.75rem, 7vw, 5rem);
  font-weight: 800;
  line-height: 1.08;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
  animation: heroFadeIn 1s ease-out 0.4s both;
}
.hero__title span {
  display: block;
  background: linear-gradient(135deg, #67e8f9, #38bdf8, #22d3ee);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 2px 8px rgba(34,211,238,.25));
}
.hero__subtitle {
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
  opacity: .85;
  margin-bottom: 2.5rem;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
  font-weight: 400;
  animation: heroFadeIn 1s ease-out 0.6s both;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
  animation: heroFadeIn 1s ease-out 0.8s both;
}

.hero__stats-bar {
  display: inline-flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1rem 2rem;
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 1rem;
  animation: heroFadeIn 1s ease-out 1s both;
}
.hero__stat-item { text-align: center; }
.hero__stat-item strong {
  display: block;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}
.hero__stat-item span {
  font-size: 0.75rem;
  opacity: .7;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 500;
}
.hero__stat-divider {
  width: 1px;
  height: 2rem;
  background: rgba(255,255,255,.2);
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
  z-index: 2;
}
.hero__scroll-indicator {
  width: 1.5rem;
  height: 2.5rem;
  border: 2px solid rgba(255,255,255,.35);
  border-radius: var(--radius-full);
  display: flex;
  justify-content: center;
  padding-top: 0.5rem;
}
.hero__scroll-dot {
  width: 3px;
  height: 10px;
  background: #fff;
  border-radius: var(--radius-full);
  animation: pulse 2s infinite;
}

@media (max-width: 639px) {
  .hero { min-height: 100svh; min-height: 100vh; }
  .hero__content { padding: 0 1.25rem; }
  .hero__badge { font-size: 0.75rem; padding: 0.4rem 1rem; margin-bottom: 1.25rem; }
  .hero__title { margin-bottom: 1rem; }
  .hero__subtitle { margin-bottom: 1.75rem; font-size: 0.95rem; }
  .hero__actions { flex-direction: column; align-items: center; margin-bottom: 2rem; }
  .hero__actions .btn { width: 100%; max-width: 280px; }
  .hero__stats-bar { gap: 0.75rem; padding: 0.75rem 1.25rem; }
  .hero__stat-item strong { font-size: 1.1rem; }
  .hero__stat-item span { font-size: 0.65rem; }
  .hero__scroll { display: none; }
  .hero__particles { display: none; }
}

/* ============================================
   SECTIONS
   ============================================ */
.section { padding: 5rem 0; position: relative; }
.section[id] { scroll-margin-top: 5rem; }
@media (min-width: 768px) {
  .section { padding: 6rem 0; }
}
.section--alt { background: transparent; }
.section--ocean {
  background: transparent;
}

.section__header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.section__title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 1rem;
}
.section__subtitle {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 48rem;
  margin: 0 auto;
  line-height: 1.7;
}

/* ============================================
   ABOUT
   ============================================ */
.about {
  position: relative;
  padding: 6rem 0;
  background: transparent;
}
.about[id] { scroll-margin-top: 5rem; }
.about::after {
  display: none;
}
.about__bg {
  display: none;
}
.about__container {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
}

/* Image column */
.about__image-col { position: relative; }
.about__image-wrapper {
  position: relative;
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(14,165,233,.12);
}
.about__image-wrapper img {
  width: 100%;
  height: 28rem;
  object-fit: cover;
  display: block;
}
.about__image-accent {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 35%;
  background: linear-gradient(to top, hsla(195, 85%, 45%, 0.15), transparent);
  pointer-events: none;
}
.about__experience-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1rem;
  background: var(--gradient);
  color: #fff;
  padding: 1.25rem 1.75rem;
  border-radius: 1rem;
  box-shadow: 0 8px 24px rgba(14,165,233,.3);
  text-align: center;
  z-index: 2;
}
.about__experience-badge strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
}
.about__experience-badge span {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: .85;
}

/* Content column */
.about__eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
  margin-bottom: 0.75rem;
  position: relative;
  padding-left: 2.5rem;
}
.about__eyebrow::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 2rem;
  height: 2px;
  background: var(--gradient);
  transform: translateY(-50%);
}
.about__title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  color: var(--fg);
}
.about__desc {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

/* Highlights */
.about__highlights {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 2rem 0;
}
.about__highlight {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--card);
  border-radius: 0.875rem;
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
}
.about__highlight:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow);
}
.about__highlight-icon {
  width: 2.75rem;
  height: 2.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.75rem;
  background: var(--gradient);
  flex-shrink: 0;
}
.about__highlight-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  stroke: #fff;
}
.about__highlight strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--fg);
}
.about__highlight span {
  font-size: 0.8rem;
  color: var(--muted);
}
.about__cta { margin-top: 0.5rem; }

@media (max-width: 1023px) {
  .about__container { grid-template-columns: 1fr; gap: 3rem; }
  .about__image-col { max-width: 32rem; margin: 0 auto; }
  .about__image-wrapper img { height: 20rem; }
  .about__experience-badge { right: 1rem; bottom: -1.25rem; }
}
@media (max-width: 639px) {
  .about { padding: 4rem 0; }
  .about__image-wrapper img { height: 16rem; }
  .about__experience-badge {
    padding: 1rem 1.25rem;
    right: 0.5rem;
    bottom: -1rem;
  }
  .about__experience-badge strong { font-size: 1.5rem; }
  .about__highlights { gap: 0.75rem; }
  .about__highlight { padding: 0.875rem 1rem; }
}

/* ============================================
   SERVICES
   ============================================ */
.services {
  background: transparent;
}
.services::before { display: none; }
.services__orb-left { display: none; }
.services .container { position: relative; z-index: 1; }
.services::after { display: none; }

.services__header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.services__eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
  margin-bottom: 0.75rem;
  padding: 0.4rem 1rem;
  background: var(--primary-light);
  border-radius: var(--radius-full);
}
.services__title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--fg);
}
.services__subtitle {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 40rem;
  margin: 0 auto;
  line-height: 1.7;
}

/* Grid */
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: stretch;
}

/* Card */
.service-card {
  display: flex;
  flex-direction: column;
  border-radius: 1.25rem;
  background: var(--card);
  border: 1px solid var(--border);
  padding: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(14,165,233,.12);
}

.service-card__icon {
  width: 3.5rem;
  height: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 1rem;
  background: var(--gradient);
  margin-bottom: 1.5rem;
}
.service-card__icon svg {
  width: 1.5rem;
  height: 1.5rem;
  stroke: #fff;
}
.service-card__title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 0.75rem;
}
.service-card__desc {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
  flex: 1;
}
.service-card__features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.service-card__features li {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--primary);
  background: var(--primary-light);
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
}
.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary);
  margin-top: auto;
  transition: gap var(--transition);
}
.service-card__link svg {
  width: 1rem;
  height: 1rem;
  transition: transform var(--transition);
}
.service-card__link:hover { gap: 0.65rem; }
.service-card__link:hover svg { transform: translateX(3px); }

@media (max-width: 1023px) {
  .services__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 639px) {
  .services__grid { grid-template-columns: 1fr; max-width: 24rem; margin: 0 auto; }
}

/* ============================================
   GALLERY PREVIEW (home page)
   ============================================ */
.gallery-preview::before { display: none; }
.gallery-preview::after { display: none; }

.gp__header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.gp__eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
  margin-bottom: 0.75rem;
  padding: 0.4rem 1rem;
  background: var(--primary-light);
  border-radius: var(--radius-full);
}
.gp__title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--fg);
}
.gp__subtitle {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 40rem;
  margin: 0 auto;
  line-height: 1.7;
}

/* Bento grid */
.gp__bento {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  grid-template-rows: 14rem 14rem;
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.gp__card {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  cursor: pointer;
}
.gp__card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gp__card:hover img { transform: scale(1.05); }
.gp__card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.55) 0%, transparent 55%);
  transition: background 0.3s ease;
}
.gp__card:hover .gp__card-overlay {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.65) 0%, hsla(195, 85%, 45%, .1) 100%);
}
.gp__card-content {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  right: 1.25rem;
  color: #fff;
  z-index: 2;
}
.gp__card-content h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
}
.gp__card-content p {
  font-size: 0.85rem;
  opacity: .85;
}
.gp__card-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: var(--gradient);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  margin-bottom: 0.5rem;
}

.gp__card--hero { grid-row: 1 / 3; }

/* Destinations row */
.gp__destinations {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.gp__dest {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  background: var(--card);
  border-radius: 1rem;
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
}
.gp__dest:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.gp__dest-icon {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.625rem;
  background: var(--primary-light);
  flex-shrink: 0;
}
.gp__dest-icon svg {
  width: 1.1rem;
  height: 1.1rem;
  stroke: var(--primary);
}
.gp__dest strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--fg);
}
.gp__dest span {
  font-size: 0.8rem;
  color: var(--muted);
}

.gp__cta {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}
.gp__cta p {
  font-size: 1.1rem;
  color: var(--muted);
  font-weight: 500;
}

@media (max-width: 767px) {
  .gp__bento {
    grid-template-columns: 1fr;
    grid-template-rows: 14rem 10rem 10rem;
  }
  .gp__card--hero { grid-row: auto; }
  .gp__card--wide { grid-column: auto; }
  .gp__destinations { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .gp__destinations { grid-template-columns: 1fr; }
  .gp__bento { grid-template-rows: 12rem 10rem 10rem; }
}

/* ============================================
   CONTACT
   ============================================ */
.contact-section {
  background: transparent;
  color: var(--fg);
  overflow: hidden;
}
.contact-section::before { display: none; }
.contact-section::after { display: none; }
.contact-section .container { position: relative; z-index: 1; }
.contact-section .section__title {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.contact-section .section__subtitle {
  color: var(--muted);
}

/* WhatsApp CTA Banner */
.contact-whatsapp {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.75rem 2rem;
  background: var(--gradient);
  border-radius: 1.25rem;
  margin-bottom: 3rem;
  color: #fff;
}
.contact-whatsapp__content {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.contact-whatsapp__icon {
  width: 3.25rem;
  height: 3.25rem;
  background: rgba(255,255,255,.2);
  border-radius: 0.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-whatsapp__icon svg { width: 1.5rem; height: 1.5rem; }
.contact-whatsapp__content h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.15rem;
}
.contact-whatsapp__content p {
  font-size: 0.85rem;
  opacity: .85;
}
.contact-whatsapp__btn {
  background: #fff;
  color: var(--primary);
  box-shadow: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  white-space: nowrap;
  flex-shrink: 0;
}
.contact-whatsapp__btn:hover {
  background: #fff;
  box-shadow: 0 4px 16px rgba(0,0,0,.15);
  filter: none;
}
@media (max-width: 639px) {
  .contact-whatsapp {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
    gap: 1.25rem;
  }
  .contact-whatsapp__content {
    flex-direction: column;
    gap: 0.75rem;
  }
}

/* Grid */
.contact__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

/* Form */
.contact-form {
  padding: 2rem;
  border-radius: 1.25rem;
  background: var(--card);
  border: 1px solid var(--border);
}
.contact-form__header {
  margin-bottom: 1.75rem;
}
.contact-form__header h3 {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 0.25rem;
}
.contact-form__header p {
  font-size: 0.9rem;
  color: var(--muted);
}
.contact-form__fields { display: flex; flex-direction: column; gap: 1.125rem; }
.contact-form__field { display: flex; flex-direction: column; gap: 0.35rem; }
.contact-form__field label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--fg);
  letter-spacing: 0.01em;
}
.contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.contact-section .contact-form input,
.contact-section .contact-form textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: 0.625rem;
  background: var(--bg);
  color: var(--fg);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  font-size: 0.925rem;
}
.contact-section .contact-form input::placeholder,
.contact-section .contact-form textarea::placeholder {
  color: hsl(210 10% 65%);
}
.contact-section .contact-form input:focus,
.contact-section .contact-form textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px hsla(195, 85%, 45%, .1);
  background: var(--card);
}
.contact-form textarea { min-height: 110px; resize: vertical; }
.contact-form__actions { margin-top: 0.5rem; }
.btn--full { width: 100%; }
@media (max-width: 480px) {
  .contact-form__row { grid-template-columns: 1fr; }
}

/* Toast */
.toast {
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
}
.toast[hidden] { display: none; }
.toast--success {
  background: rgba(16,185,129,.1);
  color: #047857;
  border: 1px solid rgba(16,185,129,.25);
}
.toast--error {
  background: rgba(239,68,68,.1);
  color: #dc2626;
  border: 1px solid rgba(239,68,68,.25);
}

/* Contact Info */
.contact-info { display: flex; flex-direction: column; gap: 1.5rem; }

/* Contact Details */
.contact-details {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.contact-details__item {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.contact-details__icon {
  width: 2.75rem;
  height: 2.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.75rem;
  background: var(--primary-light);
  flex-shrink: 0;
}
.contact-details__icon svg {
  width: 1.25rem;
  height: 1.25rem;
  stroke: var(--primary);
}
.contact-details__item span {
  font-size: 0.75rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 500;
}
.contact-details__item strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--fg);
}
.contact-details__item a { color: inherit; }
.contact-details__item a:hover strong { color: var(--primary); }

/* Social section */
.contact-social {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  padding: 1.5rem;
}
.contact-social h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 1rem;
}
.social-links { display: flex; gap: 0.75rem; }
.social-link {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition), filter var(--transition);
  color: #fff;
}
.social-link:hover { transform: translateY(-3px); filter: brightness(1.1); }
.social-link--ocean { background: var(--gradient); }
.social-link--accent { background: var(--accent); }
.social-link--primary { background: var(--primary); }
.social-link svg { width: 1.25rem; height: 1.25rem; }

/* Map */
.contact-map {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  padding: 1.5rem;
}
.contact-map h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 1rem;
}
.map-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16/10;
  border-radius: 0.75rem;
  overflow: hidden;
}
.map-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 1023px) {
  .contact__grid { grid-template-columns: 1fr; }
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  margin-top: auto;
  background: var(--gradient);
  color: #fff;
}
.footer__container {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-top: 4rem;
  padding-bottom: 3rem;
}
.footer h4 {
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* Brand */
.footer__logo { display: inline-block; margin-bottom: 1rem; }
.footer__logo img { height: 2.5rem; width: auto; }
.footer__tagline {
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(255,255,255,.85);
  max-width: 20rem;
}

/* Links */
.footer__links nav { display: flex; flex-direction: column; gap: 0.625rem; }
.footer__links nav a {
  font-size: 0.9rem;
  color: rgba(255,255,255,.85);
  transition: color var(--transition);
}
.footer__links nav a:hover { color: #fff; }

/* Contact */
.footer__contact p,
.footer__contact a {
  font-size: 0.9rem;
  color: rgba(255,255,255,.85);
  line-height: 1.8;
}
.footer__contact a:hover { color: #fff; }

/* Social */
.footer__social-links { display: flex; gap: 0.75rem; }
.footer__social-links a {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.35);
  color: #fff;
  transition: background var(--transition), border-color var(--transition);
}
.footer__social-links a:hover {
  background: rgba(255,255,255,.2);
  border-color: #fff;
}
.footer__social-links svg { width: 1.15rem; height: 1.15rem; }

/* Bottom bar */
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.25);
  padding: 1.25rem 0;
  text-align: center;
}
.footer__bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,.75);
}

@media (max-width: 767px) {
  .footer__container { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 480px) {
  .footer__container { grid-template-columns: 1fr; text-align: center; }
  .footer__tagline { margin: 0 auto; }
  .footer__links nav { align-items: center; }
  .footer__social-links { justify-content: center; }
}

/* ============================================
   GALLERY PAGE
   ============================================ */
.gallery-page {
  padding-top: 5rem;
  min-height: 100vh;
  background: transparent;
}
.gallery-page__loader {
  text-align: center;
  color: var(--muted);
  padding: 3rem 0;
}
.gallery-page__container {
  padding-top: 2rem;
  padding-bottom: 3rem;
}
.gallery-page__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(260px, 100%), 1fr));
  gap: 1.5rem;
}
.gallery-page__item {
  position: relative;
  aspect-ratio: 1;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-alt);
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: box-shadow var(--transition), transform var(--transition);
}
.gallery-page__item:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}
.gallery-page__item img,
.gallery-page__item video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 300ms ease;
}
.gallery-page__item:hover img { transform: scale(1.05); }

/* Video overlay */
.gallery-page__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,.3);
  transition: background var(--transition);
}
.gallery-page__item:hover .gallery-page__play { background: rgba(0,0,0,.4); }
.gallery-page__play-btn {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: rgba(255,255,255,.9);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition);
}
.gallery-page__item:hover .gallery-page__play-btn { transform: scale(1.1); }
.gallery-page__play-btn svg { width: 2rem; height: 2rem; color: var(--primary); margin-left: 3px; }

/* Empty / Error states */
.gallery-page__message {
  max-width: 32rem;
  margin: 0 auto;
  padding: 2rem;
  border-radius: var(--radius);
  text-align: center;
}
.gallery-page__message--error {
  background: hsl(0 80% 97%);
  border: 1px solid hsl(0 60% 88%);
  color: hsl(0 60% 35%);
}
.gallery-page__message--empty {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  color: var(--muted);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(0,0,0,.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: none;
  align-items: center;
  justify-content: center;
}
.lightbox.is-open { display: flex; }
.lightbox__btn {
  position: absolute;
  z-index: 10;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}
.lightbox__btn:hover { background: rgba(255,255,255,.25); }
.lightbox__btn svg { width: 1.5rem; height: 1.5rem; stroke: currentColor; }
.lightbox__close { top: 1rem; right: 1rem; }
.lightbox__prev { left: 1rem; }
.lightbox__next { right: 1rem; }
.lightbox__content {
  max-width: 72rem;
  max-height: 90vh;
  width: calc(100% - 2rem);
}
.lightbox__content img,
.lightbox__content video {
  width: 100%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 0.5rem;
  box-shadow: 0 20px 60px rgba(0,0,0,.5);
}
.lightbox__counter {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-size: 0.875rem;
  background: rgba(0,0,0,.5);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
}

/* Gallery page mobile */
@media (max-width: 639px) {
  .gallery-page { padding-top: 4rem; }
  .gallery-page__container { padding-top: 1.5rem; }
  .gallery-page__grid { gap: 1rem; }
  .lightbox__prev, .lightbox__next { width: 2.5rem; height: 2.5rem; }
  .lightbox__prev { left: 0.5rem; }
  .lightbox__next { right: 0.5rem; }
  .lightbox__close { top: 0.5rem; right: 0.5rem; }
  .lightbox__content { width: calc(100% - 4rem); }
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-8px); }
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .4; }
}
@keyframes heroZoom {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}
@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes particleFloat {
  0% { transform: translateY(0) translateX(0); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(-100vh) translateX(40px); opacity: 0; }
}

.fade-in {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}
.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Prevent layout shift — show immediately if JS hasn't loaded yet */
.no-js .fade-in {
  opacity: 1;
  transform: none;
}

/* Prefers reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .fade-in { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}
