:root {
  color-scheme: light;
  --ink: #102033;
  --muted: #647184;
  --line: #d8e4ef;
  --soft: #f4f9fd;
  --white: #ffffff;
  --blue: #075ec8;
  --blue-dark: #052d63;
  --cyan: #15b9df;
  --teal: #0da79d;
  --green: #13a866;
  --green-dark: #0b7a4b;
  --orange: #ff7a2f;
  --yellow: #ffd34d;
  --shadow: 0 18px 50px rgba(14, 44, 83, 0.14);
  --radius: 8px;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  overflow-x: hidden;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 82px;
  padding: 10px max(22px, 6vw);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(216, 228, 239, 0.9);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 124px;
  height: 60px;
  filter: drop-shadow(0 8px 14px rgba(5, 45, 99, 0.2));
}

.brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.nav-links {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 24px;
  color: #1b365c;
  font-size: 0.94rem;
  font-weight: 800;
}

.nav-links a {
  padding: 12px 0;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover {
  color: var(--blue);
  border-color: var(--blue);
}

.header-actions,
.hero-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.language-switch select {
  width: 112px;
  min-height: 40px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--blue-dark);
  font: inherit;
}

.primary-button,
.secondary-button,
.ghost-button,
.outline-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 18px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-size: 0.95rem;
  font-weight: 900;
  line-height: 1;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

.primary-button {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 12px 28px rgba(19, 168, 102, 0.24);
}

.primary-button:hover {
  background: var(--green-dark);
  transform: translateY(-1px);
}

.secondary-button {
  background: var(--white);
  color: var(--blue-dark);
  border-color: rgba(255, 255, 255, 0.78);
}

.secondary-button:hover,
.ghost-button:hover,
.outline-button:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

.ghost-button {
  border-color: var(--line);
  color: var(--blue-dark);
  background: var(--white);
}

.outline-button {
  border-color: #a9d9d4;
  color: #06675f;
  background: rgba(255, 255, 255, 0.78);
}

.large {
  min-height: 52px;
  padding: 15px 22px;
}

.full {
  width: 100%;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  gap: 4px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.menu-button span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: 650px;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 86px max(22px, 6vw) 116px;
  color: var(--white);
  background: var(--blue-dark);
}

.hero-media,
.hero-shade,
.route-map {
  position: absolute;
  inset: 0;
}

.hero-img {
  position: absolute;
  width: 44%;
  height: 44%;
  object-fit: cover;
  filter: saturate(1.08);
}

.hero-img-main {
  left: 0;
  top: 0;
  width: 54%;
  height: 100%;
}

.hero-img-city {
  right: 0;
  top: 0;
  width: 49%;
  height: 52%;
}

.hero-img-mountain {
  right: 25%;
  bottom: 0;
  width: 28%;
  height: 48%;
}

.hero-img-cruise {
  right: 0;
  bottom: 0;
  width: 35%;
  height: 48%;
}

.hero-shade {
  background:
    radial-gradient(circle at 74% 44%, rgba(21, 185, 223, 0.18), transparent 28%),
    linear-gradient(90deg, rgba(5, 28, 61, 0.9) 0%, rgba(5, 45, 99, 0.78) 43%, rgba(5, 45, 99, 0.2) 100%),
    linear-gradient(0deg, rgba(5, 28, 61, 0.34), rgba(5, 28, 61, 0.34));
}

.route-map {
  opacity: 0.72;
  pointer-events: none;
}

.route-map span {
  position: absolute;
  display: block;
  border-top: 2px dashed rgba(255, 255, 255, 0.48);
  border-radius: 50%;
  transform: rotate(-7deg);
}

.route-map span:nth-child(1) {
  left: 35%;
  top: 18%;
  width: 38%;
  height: 20%;
}

.route-map span:nth-child(2) {
  left: 48%;
  top: 32%;
  width: 28%;
  height: 16%;
  transform: rotate(12deg);
}

.route-map span:nth-child(3) {
  left: 53%;
  top: 12%;
  width: 18%;
  height: 12%;
  transform: rotate(20deg);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(720px, 100%);
  min-width: 0;
  max-width: 720px;
}

.hero h1 {
  margin: 0;
  max-width: 700px;
  font-size: 4.7rem;
  line-height: 0.98;
  letter-spacing: 0;
  overflow-wrap: normal;
}

.hero-text {
  max-width: 660px;
  margin: 24px 0 30px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.18rem;
  line-height: 1.65;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 640px;
  margin: 38px 0 0;
}

.hero-proof div {
  padding: 17px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
}

.hero-proof dt {
  font-size: 1.34rem;
  font-weight: 950;
}

.hero-proof dd {
  margin: 5px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
}

.quick-strip {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1180px;
  margin: -48px auto 0;
  padding: 0 22px;
}

.quick-strip a {
  display: grid;
  gap: 6px;
  min-height: 106px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 18px 50px rgba(14, 44, 83, 0.13);
}

.quick-strip a:first-child {
  border-radius: var(--radius) 0 0 var(--radius);
}

.quick-strip a:last-child {
  border-radius: 0 var(--radius) var(--radius) 0;
}

.quick-strip span {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
}

.quick-strip strong {
  color: var(--blue-dark);
  font-size: 1rem;
}

.section {
  padding: 92px max(22px, 6vw);
}

.section-heading {
  max-width: 800px;
  margin: 0 auto 44px;
  text-align: center;
}

.section-heading.align-split {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  max-width: 1180px;
  text-align: left;
}

.section-heading.align-split > div {
  max-width: 760px;
}

.section-heading h2,
.corporate h2,
.transfer-copy h2,
.contact-info h2 {
  margin: 0;
  color: var(--blue-dark);
  font-size: 2.65rem;
  line-height: 1.05;
  letter-spacing: 0;
}

.section-heading p,
.corporate p,
.transfer-copy p,
.contact-info p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.services {
  padding-top: 82px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
  max-width: 1180px;
  margin: 0 auto;
}

.service-grid article {
  min-height: 196px;
  padding: 24px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 30px rgba(14, 44, 83, 0.07);
}

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 62px;
  height: 34px;
  padding: 0 10px;
  border-radius: 999px;
  background: #e8f8fb;
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 950;
}

h3 {
  color: var(--blue-dark);
  line-height: 1.2;
}

.service-grid p,
.package-body p,
.destination-grid p,
.planning-steps p {
  color: var(--muted);
  line-height: 1.58;
}

.destination-section {
  background:
    linear-gradient(180deg, #f4fbff 0%, #ffffff 100%);
}

.destination-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  max-width: 1180px;
  margin: 0 auto;
}

.destination-grid article {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 10px 28px rgba(14, 44, 83, 0.08);
}

.destination-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.destination-grid div {
  min-height: 154px;
  padding: 18px;
}

.destination-grid h3,
.destination-grid p {
  margin: 0;
}

.destination-grid h3 {
  margin-bottom: 8px;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  max-width: 1180px;
  margin: 0 auto;
}

.package-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.package-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.package-body {
  display: grid;
  gap: 14px;
  padding: 22px;
}

.package-body h3,
.package-body p {
  margin: 0;
}

.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: var(--muted);
  font-size: 0.88rem;
}

.price-row strong {
  flex: 0 0 auto;
  padding: 8px 10px;
  border-radius: 999px;
  background: #fff2e6;
  color: #c34e0d;
  white-space: nowrap;
}

.corporate {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(380px, 1.14fr);
  gap: 38px;
  align-items: center;
  margin: 0 max(22px, 6vw);
  padding: 58px;
  border-radius: var(--radius);
  background:
    linear-gradient(120deg, rgba(5, 45, 99, 0.98), rgba(7, 94, 200, 0.88)),
    url("https://images.unsplash.com/photo-1539635278303-d4002c07eae3?auto=format&fit=crop&w=1600&q=80");
  background-size: cover;
  background-position: center;
  color: var(--white);
}

.corporate h2,
.corporate h3 {
  color: var(--white);
}

.corporate p,
.corporate li {
  color: rgba(255, 255, 255, 0.84);
}

.corporate ul,
.transfer-copy ul {
  display: grid;
  gap: 10px;
  margin: 26px 0 30px;
  padding-left: 20px;
  line-height: 1.55;
}

.corporate-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.corporate-gallery img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: var(--radius);
}

.airport-service {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(380px, 1fr);
  gap: 34px;
  align-items: center;
  margin: 92px max(22px, 6vw) 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: linear-gradient(120deg, #0a827c, #0bbed1);
  color: var(--white);
}

.transfer-copy {
  padding: 56px 0 56px 56px;
}

.transfer-copy h2 {
  color: var(--white);
}

.transfer-copy p,
.transfer-copy li {
  color: rgba(255, 255, 255, 0.88);
}

.airport-service > img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.planning {
  background: var(--white);
}

.planning-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 1040px;
  margin: 0 auto;
}

.planning-steps article {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 30px rgba(14, 44, 83, 0.07);
}

.planning-steps span {
  color: var(--orange);
  font-weight: 950;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(320px, 0.72fr);
  gap: 44px;
  padding: 92px max(22px, 6vw);
  background: #f7fbff;
}

.info-list {
  display: grid;
  gap: 10px;
  margin-top: 26px;
}

.info-list p {
  margin: 0;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--blue-dark);
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  font: inherit;
}

.contact-form textarea {
  resize: vertical;
}

.whatsapp-line {
  display: inline-flex;
  justify-content: center;
  color: var(--green-dark);
  font-weight: 950;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.2fr 0.6fr 0.8fr;
  gap: 30px;
  padding: 36px max(22px, 6vw);
  background: var(--blue-dark);
  color: rgba(255, 255, 255, 0.84);
}

.site-footer img {
  width: 118px;
  margin-bottom: 14px;
}

.site-footer p {
  margin: 8px 0 0;
  line-height: 1.55;
}

.site-footer strong {
  color: var(--white);
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--green);
  color: var(--white);
  font-weight: 950;
  box-shadow: 0 16px 36px rgba(11, 122, 75, 0.34);
}

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .nav-links {
    grid-column: 1 / -1;
    justify-self: start;
    order: 3;
  }

  .header-actions {
    justify-self: end;
  }

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

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

  .corporate,
  .airport-service,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .transfer-copy {
    padding: 42px 42px 0;
  }
}

@media (max-width: 820px) {
  .site-header {
    min-height: 72px;
    grid-template-columns: 1fr auto;
  }

  .brand {
    width: 112px;
    height: 54px;
  }

  .header-actions .ghost-button,
  .header-actions .primary-button {
    display: none;
  }

  .header-actions {
    grid-column: 1 / -1;
    justify-self: start;
    order: 3;
  }

  .menu-button {
    display: grid;
    position: absolute;
    top: 16px;
    right: auto;
    left: calc(min(100vw, 390px) - 66px);
    z-index: 2;
  }

  .nav-links {
    display: none;
    grid-column: 1 / -1;
    order: 4;
    width: 100%;
    padding-top: 10px;
  }

  .nav-links.is-open {
    display: grid;
    gap: 8px;
  }

  .nav-links a {
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
  }

  .hero {
    min-height: 620px;
    padding-top: 74px;
    padding-bottom: 94px;
  }

  .hero-img-main {
    width: 100%;
  }

  .hero-img-city,
  .hero-img-mountain,
  .hero-img-cruise,
  .route-map {
    display: none;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(5, 28, 61, 0.86), rgba(5, 45, 99, 0.56)),
      linear-gradient(0deg, rgba(5, 28, 61, 0.3), rgba(5, 28, 61, 0.3));
  }

  .hero h1 {
    max-width: 9.5ch;
    font-size: 2.92rem;
    line-height: 1.05;
    overflow-wrap: anywhere;
  }

  .hero-content,
  .hero-actions,
  .hero-proof {
    width: calc(100vw - 60px);
    max-width: calc(100vw - 60px);
  }

  .hero-actions .primary-button,
  .hero-actions .secondary-button,
  .hero-proof div {
    width: 100%;
    max-width: 100%;
  }

  .hero-text {
    max-width: 30ch;
    font-size: 1.04rem;
    overflow-wrap: anywhere;
  }

  .hero-actions,
  .hero-proof,
  .quick-strip {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    display: grid;
  }

  .quick-strip {
    margin-top: 0;
    padding: 0;
  }

  .quick-strip a,
  .quick-strip a:first-child,
  .quick-strip a:last-child {
    min-height: auto;
    border-radius: 0;
    box-shadow: none;
  }

  .section,
  .contact-section {
    padding-block: 70px;
  }

  .section-heading.align-split {
    display: grid;
    align-items: start;
  }

  .section-heading h2,
  .corporate h2,
  .transfer-copy h2,
  .contact-info h2 {
    font-size: 2.15rem;
  }

  .service-grid,
  .destination-grid,
  .package-grid,
  .planning-steps {
    grid-template-columns: 1fr;
  }

  .corporate {
    margin: 0;
    padding: 44px 22px;
    border-radius: 0;
  }

  .corporate-gallery {
    grid-template-columns: 1fr;
  }

  .airport-service {
    margin: 70px 0 0;
    border-radius: 0;
  }

  .transfer-copy {
    padding: 44px 22px 0;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 420px) {
  .hero-content,
  .hero-actions,
  .hero-proof {
    width: 100%;
    max-width: 320px;
  }

  .hero h1 {
    font-size: 2.55rem;
  }

  .language-switch select {
    width: 104px;
  }

  .floating-whatsapp {
    right: 36px;
    bottom: 14px;
    min-height: 46px;
    padding: 0 14px;
    font-size: 0.9rem;
  }
}

@media (max-width: 600px) {
  .hero-content,
  .hero-actions,
  .hero-proof {
    width: 100%;
    max-width: 320px;
  }

  .floating-whatsapp {
    display: none;
  }
}
