:root {
  --jp-primary: #022cd6;
  --jp-primary-dark: #021d8f;
  --jp-primary-soft: #e9efff;
  --jp-bg: #f4f6fb;
  --jp-surface: #ffffff;
  --jp-surface-soft: #f8faff;
  --jp-text: #1f2937;
  --jp-muted: #556074;
  --jp-border: #dce3f0;
  --jp-shadow: 0 10px 30px rgba(2, 44, 214, 0.12);
  --jp-shadow-hover: 0 18px 36px rgba(2, 44, 214, 0.18);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Open Sans", sans-serif;
  color: var(--jp-text);
  background: radial-gradient(circle at top, #fcfdff 0%, var(--jp-bg) 60%);
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1000;
  background: linear-gradient(90deg, rgba(2, 20, 94, 0.94), rgba(3, 32, 139, 0.92));
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-header-inner {
  width: min(1200px, 92vw);
  margin: 0 auto;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.site-logo {
  font-family: Oswald, sans-serif;
  color: #fff;
  letter-spacing: 0.6px;
  font-size: 1.18rem;
  font-weight: 600;
  line-height: 1.05;
  text-transform: uppercase;
}

.site-menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 1.7rem;
  cursor: pointer;
  padding: 8px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav a {
  color: rgba(255, 255, 255, 0.92);
  font-family: Oswald, sans-serif;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.82px;
  padding: 9px 11px;
  border-radius: 7px;
  border: 1px solid transparent;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.site-nav a:hover,
.site-nav a.active {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.24);
  color: #fff;
}

.lang-selector {
  display: flex;
  align-items: center;
  gap: 6px;
}

.lang-btn {
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: transparent;
  color: rgba(255, 255, 255, 0.75);
  font-family: Oswald, sans-serif;
  letter-spacing: 0.8px;
  font-size: 0.72rem;
  text-transform: uppercase;
  border-radius: 6px;
  padding: 7px 9px;
  cursor: pointer;
}

.lang-btn:hover,
.lang-btn.active {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.15);
}

.page-main {
  padding-top: 72px;
}

.hero {
  min-height: 74vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  background-size: cover;
  background-position: center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 17, 54, 0.2), rgba(8, 17, 54, 0.62));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(980px, 92vw);
}

.hero-subtitle {
  font-family: Oswald, sans-serif;
  font-size: 1rem;
  letter-spacing: 1.25px;
  text-transform: uppercase;
  margin: 0 0 16px;
}

.hero-title {
  font-family: Oswald, sans-serif;
  font-size: clamp(2rem, 5vw, 4.4rem);
  line-height: 1.05;
  margin: 0;
  text-transform: uppercase;
}

.hero-divider {
  width: 92px;
  height: 4px;
  background: #ffd347;
  margin: 22px auto;
  border-radius: 2px;
}

.hero-description {
  margin: 0;
  font-family: Oswald, sans-serif;
  font-size: clamp(1rem, 2.6vw, 1.7rem);
  text-transform: uppercase;
  letter-spacing: 0.85px;
}

.btn {
  display: inline-block;
  margin-top: 34px;
  background: var(--jp-primary);
  color: #fff;
  font-family: Oswald, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.65px;
  font-weight: 600;
  padding: 14px 30px;
  border-radius: 8px;
  border: 1px solid transparent;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  box-shadow: 0 8px 22px rgba(2, 44, 214, 0.25);
}

.btn:hover {
  background: var(--jp-primary-dark);
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: 0 14px 28px rgba(2, 44, 214, 0.35);
  transform: translateY(-1px);
}

.hero-buttons {
  display: flex;
  gap: 16px;
  margin-top: 34px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-buttons .btn {
  margin-top: 0;
}

.btn--primary {
  background: #ffd347;
  color: #0a1547;
  box-shadow: 0 8px 22px rgba(255, 211, 71, 0.3);
}

.btn--primary:hover {
  background: #ffdc6a;
  box-shadow: 0 14px 28px rgba(255, 211, 71, 0.4);
}

.btn--outline {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.8);
  box-shadow: none;
}

.btn--outline:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #fff;
  box-shadow: none;
}

.section {
  padding: 82px 0;
  background: #fff;
}

.section--soft {
  background: linear-gradient(180deg, #f9fbff 0%, #f2f6ff 100%);
}

.section--muted {
  background: linear-gradient(180deg, #eef3ff 0%, #f8faff 100%);
}

.section--dark {
  background: linear-gradient(180deg, #0a1547 0%, #0f1f5f 100%);
  color: rgba(255, 255, 255, 0.95);
}

.section--compact {
  padding: 32px 0 0;
  background: transparent;
}

.section .container {
  width: min(1160px, 92vw);
  margin: 0 auto;
}

.section-title {
  margin: 0 0 30px;
  text-align: center;
  font-family: Oswald, sans-serif;
  font-size: clamp(1.7rem, 4vw, 2.9rem);
  text-transform: uppercase;
  letter-spacing: 0.45px;
  color: #10193d;
}

.section-subtitle {
  text-align: center;
  color: var(--jp-muted);
  margin: -10px auto 34px;
  max-width: 760px;
  line-height: 1.6;
}

.section--dark .section-title,
.section--dark .section-subtitle {
  color: rgba(255, 255, 255, 0.95);
}

.destinations-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.collage-section {
  width: 100%;
  padding: 0;
  margin: 0;
}

.collage-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 4px;
}

.collage-item {
  position: relative;
  overflow: hidden;
  margin: 0;
}

.collage-item--wide {
  grid-column: span 2;
}

.collage-item--tall {
  grid-row: span 2;
}

.collage-item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.collage-item:hover img {
  transform: scale(1.05);
}

.collage-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0;
  padding: 12px 16px;
  color: #fff;
  font-family: Oswald, sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.collage-item:hover .collage-caption {
  opacity: 1;
}

.destination-card {
  position: relative;
  display: block;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  box-shadow: var(--jp-shadow);
}

.destination-card .destination-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.destination-card:hover .destination-image {
  transform: scale(1.1);
}

.destination-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.3) 50%, transparent 100%);
  transition: background 0.3s ease;
}

.destination-card:hover .destination-overlay {
  background: linear-gradient(to top, rgba(2,44,214,0.85) 0%, rgba(2,44,214,0.4) 50%, transparent 100%);
}

.destination-card .destination-title {
  margin: 0 0 8px;
  font-family: Oswald, sans-serif;
  font-size: 1.4rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #fff;
}

.destination-card .destination-link {
  font-family: "Open Sans", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.destination-card:hover .destination-link {
  opacity: 1;
  transform: translateY(0);
}

.detail-card {
  position: relative;
  display: block;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  box-shadow: var(--jp-shadow);
}

.detail-card .detail-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.detail-card:hover .detail-image {
  transform: scale(1.08);
}

.detail-card .detail-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 40%, transparent 100%);
  transition: background 0.3s ease;
}

.detail-card:hover .detail-content {
  background: linear-gradient(to top, rgba(2,44,214,0.9) 0%, rgba(2,44,214,0.5) 40%, transparent 100%);
}

.detail-card .detail-title {
  margin: 0 0 8px;
  font-family: Oswald, sans-serif;
  font-size: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #fff;
}

.detail-card .detail-content p {
  margin: 0;
  color: rgba(255,255,255,0.9);
  font-size: 0.95rem;
  line-height: 1.5;
}

.service-card,
.contact-card {
  background: var(--jp-surface);
  border: 1px solid var(--jp-border);
  border-radius: 14px;
  box-shadow: var(--jp-shadow);
  overflow: hidden;
  transition: transform 0.26s ease, box-shadow 0.26s ease;
}

.service-card:hover,
.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--jp-shadow-hover);
}

.transfers-image {
  width: 100%;
  display: block;
  object-fit: cover;
}

.service-content,
.contact-content {
  padding: 18px;
}

.service-title,
.contact-title {
  margin: 0 0 10px;
  font-family: Oswald, sans-serif;
  text-transform: uppercase;
  font-size: 1.14rem;
  letter-spacing: 0.3px;
  color: #0f1838;
}

.about-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
}

.about-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 80px;
  background: linear-gradient(135deg, #0a1547 0%, #0f1f5f 100%);
  color: #fff;
}

.about-title {
  margin: 0 0 24px;
  font-family: Oswald, sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.about-text {
  margin-bottom: 30px;
}

.about-text p {
  margin: 0 0 16px;
  line-height: 1.8;
  color: rgba(255,255,255,0.85);
  font-size: 1.05rem;
}

.about-features {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 30px;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: Oswald, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.9rem;
}

.about-feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  min-width: 28px;
  background: #ffd347;
  color: #0a1547;
  border-radius: 50%;
}

.about-feature-icon svg {
  width: 14px;
  height: 14px;
}

.about-image {
  position: relative;
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.transfers-section {
  padding: 80px 0;
  background: linear-gradient(180deg, #f9fbff 0%, #f2f6ff 100%);
}

.transfers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.transfer-card {
  background: #fff;
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--jp-shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.transfer-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--jp-shadow-hover);
}

.transfer-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, #e9efff 0%, #f0f4ff 100%);
  border-radius: 50%;
  color: var(--jp-primary);
}

.transfer-icon svg {
  width: 40px;
  height: 40px;
}

.transfer-title {
  margin: 0 0 12px;
  font-family: Oswald, sans-serif;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  color: #0f1838;
}

.transfer-desc {
  margin: 0;
  color: var(--jp-muted);
  line-height: 1.6;
  font-size: 0.95rem;
}

.transfers-cta {
  text-align: center;
}

.detail-card p {
  margin: 0;
  line-height: 1.65;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.contact-grid--icons {
  gap: 30px;
}

.contact-card-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px 24px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

.contact-card-icon:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
}

.contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  background: linear-gradient(135deg, var(--jp-primary) 0%, var(--jp-primary-dark) 100%);
  border-radius: 50%;
  color: #fff;
}

.contact-icon svg {
  width: 32px;
  height: 32px;
}

.contact-card-title {
  margin: 0 0 8px;
  font-family: Oswald, sans-serif;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #ffd347;
}

.contact-card-number {
  margin: 0 0 12px;
  font-family: Oswald, sans-serif;
  font-size: 1.3rem;
  color: #fff;
}

.contact-card-action {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  transition: color 0.3s ease;
}

.contact-card-icon:hover .contact-card-action {
  color: #fff;
}

.contact-card {
  text-align: center;
}

.contact-label {
  margin: 0 0 8px;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--jp-primary);
  font-weight: 700;
}

.section--dark .contact-card {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.25);
  box-shadow: none;
}

.section--dark .contact-card p,
.section--dark .contact-title,
.section--dark .contact-card a {
  color: rgba(255, 255, 255, 0.94);
}

.section--dark .contact-label {
  color: #ffd347;
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.detail-image {
  aspect-ratio: 16 / 10;
}

.page-hero {
  min-height: 44vh;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.92);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  padding: 20px;
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-content {
  position: relative;
  max-width: 900px;
  width: 100%;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.lightbox.active .lightbox-content {
  transform: scale(1);
}

.lightbox-image {
  width: 100%;
  max-height: 60vh;
  object-fit: cover;
}

.lightbox-info {
  padding: 24px 30px;
  background: linear-gradient(135deg, #0a1547 0%, #0f1f5f 100%);
  color: #fff;
}

.lightbox-title {
  margin: 0 0 12px;
  font-family: Oswald, sans-serif;
  font-size: 1.6rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.lightbox-desc {
  margin: 0;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.05rem;
}

.lightbox-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.6);
  border: none;
  border-radius: 50%;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
  z-index: 10;
}

.lightbox-close:hover {
  background: rgba(0, 0, 0, 0.8);
  transform: scale(1.1);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.15);
  border: none;
  border-radius: 50%;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  transition: background 0.2s ease;
}

.lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.25);
}

.lightbox-prev {
  left: -70px;
}

.lightbox-next {
  right: -70px;
}

.page-footer {
  background: #0b1440;
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
  padding: 24px 16px;
  font-size: 0.9rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 1100;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 1rem;
  font-family: Oswald, sans-serif;
  letter-spacing: 0.6px;
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.34);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.floating-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(37, 211, 102, 0.45);
}

.u-backlink {
  display: none;
}

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

body.js .hero-content > * {
  opacity: 0;
  animation: jpHeroIn 0.8s ease forwards;
}

body.js .hero-content > *:nth-child(1) {
  animation-delay: 0.12s;
}

body.js .hero-content > *:nth-child(2) {
  animation-delay: 0.22s;
}

body.js .hero-content > *:nth-child(3) {
  animation-delay: 0.3s;
}

body.js .hero-content > *:nth-child(4) {
  animation-delay: 0.38s;
}

body.js .hero-content > *:nth-child(5) {
  animation-delay: 0.46s;
}

body.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
  transition-delay: var(--reveal-delay, 0s);
}

body.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1024px) {
  .site-menu-toggle {
    display: inline-block;
  }

  .site-nav {
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: #07124d;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding: 12px;
    display: none;
    flex-direction: column;
    align-items: stretch;
  }

  .lang-selector {
    margin-left: auto;
  }

  .site-nav.open {
    display: flex;
  }

  .destinations-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .collage-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px;
  }

  .collage-item--wide {
    grid-column: span 2;
  }

  .collage-item--tall {
    grid-row: span 1;
  }

  .about-section {
    grid-template-columns: 1fr;
  }

  .about-content {
    padding: 50px 40px;
  }

  .about-image {
    min-height: 300px;
  }

  .transfers-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-grid,
  .detail-grid {
    grid-template-columns: 1fr;
  }

  .lightbox-prev {
    left: 10px;
  }

  .lightbox-next {
    right: 10px;
  }

  .lightbox-nav {
    top: auto;
    bottom: 20px;
    transform: none;
  }
}

@media (max-width: 640px) {
  .site-logo {
    font-size: 1.01rem;
  }

  .hero {
    min-height: 68vh;
  }

  .destinations-grid {
    grid-template-columns: 1fr;
  }

  .collage-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 140px;
  }

  .collage-item--wide,
  .collage-item--tall {
    grid-column: span 1;
    grid-row: span 1;
  }

  .section {
    padding: 58px 0;
  }

  .about-content {
    padding: 40px 24px;
  }

  .about-features {
    flex-direction: column;
  }

  .transfers-section {
    padding: 50px 0;
  }

  .transfers-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .transfer-card {
    padding: 24px 20px;
  }

  .lightbox {
    padding: 10px;
  }

  .lightbox-content {
    max-height: 95vh;
  }

  .lightbox-image {
    max-height: 50vh;
  }

  .lightbox-info {
    padding: 20px;
  }

  .lightbox-title {
    font-size: 1.3rem;
  }

  .lightbox-desc {
    font-size: 0.95rem;
  }

  .lightbox-nav {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }

  body.js .reveal,
  body.js .hero-content > * {
    opacity: 1;
    transform: none;
  }
}
