:root {
  --bg: #f7fbff;
  --surface: #ffffff;
  --surface-2: #f1f7ff;
  --text: #12233f;
  --muted: #4f6282;
  --primary: #1b63c9;
  --primary-700: #134fa6;
  --accent: #ff9f3f;
  --border: #d6e5fb;
  --success: #1f8b5f;
  --shadow-soft: 0 14px 30px rgba(22, 72, 142, 0.1);
  --radius: 16px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Manrope', 'Segoe UI', sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 10% 10%, rgba(27, 99, 201, 0.1), transparent 42%),
    radial-gradient(circle at 90% 5%, rgba(255, 159, 63, 0.13), transparent 38%),
    var(--bg);
  line-height: 1.6;
}

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

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1320px, 94vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: transparent;
  transition: background-color 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.site-header.scrolled {
  background: var(--surface);
  box-shadow: 0 8px 24px rgba(18, 50, 93, 0.12);
  border-bottom: 1px solid var(--border);
}

.header-content {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: 'Plus Jakarta Sans', 'Segoe UI', sans-serif;
  font-weight: 800;
  letter-spacing: -0.01em;
  font-size: larger;
  color: #0f223f;
}

.brand-logo {
  width: 76px;
  height: 76px;
  object-fit: contain;
  flex-shrink: 0;
}


.site-nav {
  display: none;
  align-items: center;
  gap: 1rem;
}

.site-nav a {
  font-weight: 600;
  color: var(--muted);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--success);
}

.menu-toggle {
  width: 44px;
  height: 44px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: 12px;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  background: var(--text);
}

.header-cta {
  display: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1rem;
  border-radius: 12px;
  font-weight: 700;
  transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.btn:focus-visible,
input:focus-visible,
.menu-toggle:focus-visible,
.site-nav a:focus-visible {
  outline: 3px solid rgba(10, 59, 122, 0.32);
  outline-offset: 2px;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), #3f86ea);
  color: #fff;
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-700), var(--primary));
}

.btn-secondary {
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--primary);
}

.hero {
  position: relative;
  padding: 3.8rem 0 2.8rem;
  background: transparent;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
  min-height: auto;
  gap: 0;
}

.hero-copy {
  max-width: 640px;
  width: 100%;
  padding: 0;
  text-align: left;
  align-self: start;
}

.eyebrow {
  margin: 0 0 0.5rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.09em;
}

h1,
h2,
h3 {
  margin-top: 0;
  color: #0f223f;
  line-height: 1.2;
}

h1 {
  font-family: 'Plus Jakarta Sans', 'Segoe UI', sans-serif;
  font-size: clamp(1.85rem, 2.8vw, 2.9rem);
  margin-bottom: 0.9rem;
  letter-spacing: -0.02em;
}

.hero h1 {
  color: #0f223f;
  text-shadow: none;
}

h2 {
  font-family: 'Plus Jakarta Sans', 'Segoe UI', sans-serif;
  font-size: clamp(1.45rem, 2.1vw, 2.1rem);
  margin-bottom: 1.3rem;
}

main section h2 {
  text-align: center;
  margin-bottom: 2rem;
}

h3 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.service-title {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.service-icon {
  font-size: 1.05rem;
  line-height: 1;
}

.hero-dynamic-subtitle {
  margin: 0.15rem 0 0;
  min-height: 3.6rem;
}

.hero-dynamic-text {
  display: inline-block;
  font-family: 'Plus Jakarta Sans', 'Segoe UI', sans-serif;
  font-size: clamp(1.95rem, 3.15vw, 2.85rem);
  font-weight: 800;
  letter-spacing: 0.015em;
  color: #e0ad2f;
  text-shadow: none;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.hero-dynamic-text.is-hidden {
  opacity: 0;
  transform: translateY(10px);
}

.hero-actions {
  margin-top: 1.4rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: flex-start;
}

.reassurance-list {
  margin: 1.3rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  justify-content: flex-start;
  gap: 0.6rem;
}

.reassurance-list li {
  position: relative;
  padding-left: 1.5rem;
  font-weight: 600;
  color: var(--text);
}

.reassurance-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent);
}

.hero-media {
  position: relative;
  min-height: auto;
  height: auto;
  align-self: start;
}

.hero-media::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0;
  z-index: 2;
  pointer-events: none;
  background: none;
}

.hero-media img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  border-radius: 0;
  box-shadow: none;
}

.section {
  padding: 3.1rem 0;
}

.section.alt {
  background: linear-gradient(180deg, rgba(241, 247, 255, 0.92), rgba(241, 247, 255, 0.6));
  border-top: 1px solid rgba(84, 96, 118, 0.08);
  border-bottom: 1px solid rgba(84, 96, 118, 0.08);
}

.card-grid {
  display: grid;
  gap: 1rem;
}

.card {
  position: relative;
  overflow: hidden;
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 1.1rem;
  box-shadow: var(--shadow-soft);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.card::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0;
  background: linear-gradient(120deg, rgba(10, 59, 122, 0.34), rgba(239, 126, 47, 0.34));
  transition: opacity 0.28s ease;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  padding: 1px;
}

.service-grid .card:hover,
.why-grid .card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 20px 34px rgba(9, 35, 75, 0.15),
    0 0 0 1px rgba(10, 59, 122, 0.06);
  border-color: rgba(10, 59, 122, 0.28);
}

.service-grid .card:hover::after,
.why-grid .card:hover::after {
  opacity: 1;
}

.service-grid .card::before,
.why-grid .card::before {
  content: '';
  position: absolute;
  width: 190px;
  height: 190px;
  right: -90px;
  top: -95px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(10, 59, 122, 0.1), transparent 62%);
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}

.service-grid .card:hover::before,
.why-grid .card:hover::before {
  opacity: 1;
}

.card p {
  margin: 0;
  color: var(--muted);
}

.why-section {
  background: linear-gradient(180deg, rgba(241, 247, 255, 0.82), rgba(247, 251, 255, 0.9));
}

.why-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.8rem;
}

.why-list li {
  position: relative;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 0.95rem 1rem 0.95rem 2.6rem;
  box-shadow: 0 8px 18px rgba(18, 50, 93, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.why-list li:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 24px rgba(9, 35, 75, 0.14);
  border-color: rgba(10, 59, 122, 0.32);
  background: #fafdff;
}

.why-list li::before {
  content: '✓';
  position: absolute;
  left: 0.95rem;
  top: 1.02rem;
  width: 1.1rem;
  height: 1.1rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
  color: #0f4da8;
  background: rgba(27, 99, 201, 0.14);
  transition: background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.why-list li:hover::before {
  color: #fff;
  background: #1b63c9;
  box-shadow: 0 0 0 3px rgba(27, 99, 201, 0.2);
}

.why-list h3 {
  margin: 0 0 0.2rem;
}

.why-list p {
  margin: 0;
  color: var(--muted);
}

.partner-grid {
  position: relative;
  overflow: hidden;
  padding: 0.2rem 0;
  mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
}

.partner-track {
  display: flex;
  gap: 1rem;
  width: max-content;
  animation: partner-marquee 34s linear infinite;
}

.partner-grid:hover .partner-track {
  animation-play-state: paused;
}

.destination-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.partner-badge,
.destination-card {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 12px;
  border: 1px solid var(--border);
  min-height: 54px;
  padding: 0.6rem;
  font-weight: 700;
  background: #f3fbf6;
}

.partner-badge {
  color: var(--primary);
  min-width: 230px;
  min-height: 86px;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.partner-badge:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 18px rgba(9, 35, 75, 0.14);
  border-color: rgba(10, 59, 122, 0.36);
}

.partner-logo {
  padding: 0.8rem 1rem;
}

.partner-logo img {
  max-height: 52px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  filter: saturate(0.96) contrast(1.02);
}

@keyframes partner-marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-50% - 0.375rem));
  }
}

.destination-card {
  position: relative;
  gap: 0.45rem;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-transform: none;
  color: var(--text);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  min-height: 50px;
  padding: 0.75rem 0.9rem;
  box-shadow: 0 4px 12px rgba(18, 50, 93, 0.08);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
}

.destination-card::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--success);
  flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(31, 139, 95, 0.16);
}

.destination-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 18px rgba(9, 35, 75, 0.14);
  background: #eaf8f0;
  border-color: rgba(31, 139, 95, 0.34);
  color: var(--text);
}

.destination-grid .destination-card {
  color: var(--text) !important;
}

.destination-grid .destination-card:hover {
  color: var(--text) !important;
}

.tracking-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.tracking-wrapper > div {
  width: 100%;
}

.tracking-wrapper > div p {
  text-align: center;
}

.tracking-wrapper > .tracking-form {
  width: 100%;
}

.tracking-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem;
  box-shadow: var(--shadow-soft);
}

.tracking-form label {
  display: inline-block;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.tracking-inline {
  display: grid;
  gap: 0.65rem;
}

.tracking-inline input {
  width: 100%;
  min-height: 46px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: #fff;
  padding: 0.75rem 0.85rem;
  font-size: 0.98rem;
}

.muted {
  margin: 0.7rem 0 0;
  color: var(--muted);
}

.status-message {
  margin: 0.55rem 0 0;
  font-weight: 700;
  min-height: 1.3rem;
}

.status-message.ok {
  color: var(--success);
}

.status-message.warn {
  color: #b25107;
}

.cta-section {
  padding-bottom: 3.4rem;
}

.cta-box {
  text-align: center;
  padding: 2rem;
}

.cta-box h2,
.cta-box p {
  color: var(--text);
}

.cta-box .hero-actions {
  gap: 1rem;
  justify-content: center;
}

.cta-box .cta-contact-actions {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}

.cta-box .btn-secondary {
  border-color: var(--border);
  background: var(--bg);
  color: var(--text);
}

.cta-box .hero-actions .btn {
  padding: 0.72rem 1.25rem;
  text-align: center;
}

.cta-box .btn-icon-only {
  min-width: 64px;
  padding: 0.82rem;
}

.btn-icon {
  display: inline-flex;
  width: 2rem;
  height: 2rem;
  align-items: center;
  justify-content: center;
}

.btn-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.cta-box .btn-whatsapp {
  color: var(--text);
}

.cta-box .btn-whatsapp:hover {
  background: var(--surface-2);
}

.cta-box .btn-gmail {
  color: var(--text);
}

.cta-box .btn-gmail:hover {
  background: var(--surface-2);
  border-color: var(--border);
}

.cta-box .btn-accent {
  background: var(--success);
  color: #fff;
  border: 1px solid rgba(31, 139, 95, 0.5);
}

.cta-box .btn-accent:hover {
  background: #166b49;
  border-color: rgba(22, 107, 73, 0.6);
}


.btn-whatsapp:hover {
  background: linear-gradient(135deg, #20bd5a, #0f776b);
}


.btn-gmail:hover {
  background: linear-gradient(135deg, #d83a2c, #c6281f);
  border-color: rgba(255, 255, 255, 0.32);
}

.btn-accent {
  background: linear-gradient(135deg, #ffb347, #ff8f1f);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.btn-accent:hover {
  background: linear-gradient(135deg, #ff9f30, #f57c00);
  border-color: rgba(255, 255, 255, 0.32);
}

.location-section {
  padding-top: 0.2rem;
}

.location-grid {
  display: grid;
  gap: 1rem;
}

.location-copy p {
  margin: 0 0 1rem;
  color: var(--muted);
}

.location-map-card {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  background: var(--surface);
}

.location-map-card iframe {
  width: 100%;
  min-height: 420px;
  border: 0;
  display: block;
}

.site-footer {
  background: #12325d;
  color: #e3edfa;
  padding-top: 2.2rem;
}

.footer-grid {
  display: grid;
  gap: 1rem;
}

.footer-title {
  margin-bottom: 0.6rem;
  color: #fff;
  font-size: 1.12rem;
}

.site-footer h3 {
  margin-bottom: 0.45rem;
  color: #fff;
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer li,
.site-footer a,
.site-footer p {
  color: #e3edfa;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(215, 225, 239, 0.22);
  margin-top: 1.5rem;
  padding: 0.9rem 0 1.3rem;
  font-size: 0.92rem;
}

@media (min-width: 760px) {
  .menu-toggle {
    display: none;
  }

  .site-nav,
  .header-cta {
    display: inline-flex;
  }

  .site-nav {
    flex: 1;
    justify-content: center;
  }

  .hero-grid {
    grid-template-columns: 0.95fr 1.05fr;
    min-height: auto;
    column-gap: 1.2rem;
    align-items: center;
  }

  .hero-copy {
    padding: 0 1.4rem 0 0;
    align-self: center;
  }

  .hero-media {
    padding: 0;
    align-self: center;
  }

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

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

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

  .tracking-inline {
    grid-template-columns: 1fr auto;
  }

  .footer-grid {
    grid-template-columns: 1.25fr repeat(3, 1fr);
  }

  .location-grid {
    grid-template-columns: 0.85fr 1.15fr;
    align-items: center;
  }

  .location-copy h2 {
    text-align: left;
  }
}

@media (max-width: 759px) {
  .container {
    width: min(1320px, calc(100vw - 1.5rem));
  }

  .header-content {
    min-height: 68px;
    gap: 0.6rem;
  }

  .brand {
    gap: 0.45rem;
    font-size: 0.92rem;
  }

  .brand-logo {
    width: 54px;
    height: 54px;
  }

  .hero {
    padding: 3.1rem 0 1.8rem;
  }

  .hero-grid {
    min-height: auto;
  }

  .hero-copy {
    padding: 0 0 2rem;
    text-align: center;
  }

  .hero-copy .hero-actions .btn {
    width: 100%;
  }

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

  .reassurance-list {
    justify-content: center;
  }

  .hero-media {
    min-height: 220px;
  }

  .site-nav {
    position: absolute;
    left: 4vw;
    right: 4vw;
    top: calc(100% + 8px);
    flex-direction: column;
    align-items: flex-start;
    background: var(--bg);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-soft);
    border-radius: 14px;
    padding: 0.7rem;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .site-nav.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .location-copy {
    text-align: center;
  }

  .location-map-card iframe {
    min-height: 280px;
  }

  .partner-badge {
    min-width: 176px;
    min-height: 74px;
  }

  .partner-logo img {
    max-height: 42px;
    max-width: 145px;
  }

  .cta-box {
    padding: 1.4rem 1rem;
  }

  .cta-box .cta-contact-actions {
    gap: 0.55rem;
  }
}

@media (max-width: 520px) {
  .brand span {
    display: none;
  }

  .hero-dynamic-subtitle {
    min-height: 2.6rem;
  }

  .hero-dynamic-text {
    font-size: clamp(1.35rem, 8.2vw, 1.95rem);
  }

  .tracking-inline .btn {
    width: 100%;
  }

  .site-nav {
    left: 0.75rem;
    right: 0.75rem;
  }
}

@media (min-width: 1024px) {
  .hero-grid {
    min-height: auto;
    grid-template-columns: 0.9fr 1.1fr;
  }

  .hero-copy {
    padding-right: 2.2rem;
  }

  .card-grid.service-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .section {
    padding: 4rem 0;
  }
}
