*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
:root {
  --navy: #111318;
  --navy2: #16191f;
  --navy3: #1c2028;
  --blue: #3b7de8;
  --blue2: #5b9cf8;
  --accent: #f5a623;
  --accent2: #ffb84d;
  --text: #f0f4f8;
  --muted: #8a95a8;
  --border: rgba(255, 255, 255, 0.08);
  --white: #fff;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Montserrat", sans-serif;
  background: var(--navy);
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  overflow-x: hidden;
}
/* TOP BAR */
.top-bar {
  background: #060f1a;
  border-bottom: 1px solid rgba(201, 168, 76, 0.25);
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 500;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 300;
  height: 38px;
  overflow: hidden;
}
.top-bar-track {
  display: flex;
  align-items: center;
  height: 38px;
  width: max-content;
  animation: marquee 22s linear infinite;
}
.top-bar-track:hover {
  animation-play-state: paused;
}
.top-bar-left {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 0 2rem;
}
.top-bar-right {
  display: none;
}
.top-bar-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  white-space: nowrap;
  color: var(--muted);
}
.top-bar-item b {
  color: var(--accent);
  font-weight: 600;
}
.top-bar-sep {
  color: rgba(201, 168, 76, 0.3);
  font-size: 0.6rem;
  margin: 0 0.25rem;
}
.top-bar-badge {
  background: rgba(245, 166, 35, 0.12);
  border: 1px solid rgba(245, 166, 35, 0.3);
  color: var(--accent);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.2rem 0.65rem;
  border-radius: 20px;
  letter-spacing: 0.06em;
  white-space: nowrap;
}
.top-bar-phone {
  color: var(--accent);
  font-weight: 700;
  text-decoration: none;
  font-size: 0.82rem;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
/* NAV */
nav {
  position: fixed;
  top: 34px;
  left: 0;
  right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  background: rgba(11, 25, 41, 0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  height: 70px;
}
.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
}
.logo span {
  color: var(--accent);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  transition: color 0.2s;
  cursor: pointer;
}
.nav-links a:hover {
  color: var(--white);
}
.nav-phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--accent);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  white-space: nowrap;
}
.nav-phone:hover {
  color: var(--accent2);
}
@media (max-width: 768px) {
  .nav-phone-text {
    display: none;
  }
}
/* HERO */
.hero {
  min-height: 100vh;
  padding: 9.5rem 5% 4rem;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 80% 60% at 100% 50%,
      rgba(59, 125, 232, 0.25) 0%,
      transparent 60%
    ),
    linear-gradient(160deg, #111318 40%, #16191f 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 660px;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(245, 166, 35, 0.12);
  border: 1px solid rgba(245, 166, 35, 0.25);
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.35rem 0.9rem;
  border-radius: 20px;
  margin-bottom: 1.5rem;
}
.hero h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 0.5rem;
  color: var(--white);
}
.hero h1 .ac {
  color: var(--accent);
}
.hero-sub {
  font-size: 1.25rem;
  font-weight: 300;
  color: var(--muted);
  margin-bottom: 1.5rem;
}
.hero-destinations {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 2rem;
}
.dest-pill {
  background: rgba(59, 125, 232, 0.2);
  border: 1px solid rgba(59, 125, 232, 0.35);
  color: var(--text);
  font-size: 0.8rem;
  font-weight: 500;
  padding: 0.35rem 0.85rem;
  border-radius: 20px;
}
.dest-pill.more {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--border);
  color: var(--muted);
}
.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.btn {
  display: inline-block;
  padding: 0.875rem 2rem;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  cursor: pointer;
  font-family: "Montserrat", sans-serif;
  border: none;
  transition: all 0.2s;
  letter-spacing: 0.02em;
}
.btn-main {
  background: var(--accent);
  color: var(--navy);
}
.btn-main:hover {
  background: var(--accent2);
  transform: translateY(-1px);
}
.btn-out {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.btn-out:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.05);
}

.btn-wa:hover {
  background: #20b858;
  transform: translateY(-1px);
}
.btn-tg {
  background: #229ed9;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.btn-tg:hover {
  background: #1a8fc5;
  transform: translateY(-1px);
}
.hero-badges {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.hbadge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: var(--muted);
  font-weight: 500;
}
.hbadge-i {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
}
/* MODAL */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.modal-overlay.open {
  display: flex;
}
.modal {
  background: var(--navy2);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  width: 100%;
  max-width: 540px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 2.5rem;
  position: relative;
  animation: modalIn 0.25s ease;
}
@keyframes modalIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: rgba(255, 255, 255, 0.08);
  border: none;
  color: var(--muted);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  font-family: sans-serif;
}
.modal-close:hover {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
}
.modal-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.35rem;
}
.modal-sub {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 1.75rem;
}
.fgrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
  margin-bottom: 0.85rem;
}
.fgrid.single {
  grid-template-columns: 1fr;
}
.flabel {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.35rem;
}
input[type="text"],
input[type="tel"],
input[type="date"],
select,
textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text);
  padding: 0.7rem 0.9rem;
  font-size: 0.88rem;
  border-radius: 6px;
  font-family: "Montserrat", sans-serif;
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
  appearance: none;
}
input:focus,
select:focus,
textarea:focus {
  border-color: var(--blue2);
}
input::placeholder,
textarea::placeholder {
  color: rgba(143, 168, 191, 0.45);
}
select option {
  background: #16191f;
  color: var(--text);
}
textarea {
  resize: vertical;
  min-height: 75px;
}
.modal-actions {
  margin-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.modal-divider {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0.25rem 0;
}
.modal-divider span {
  color: var(--muted);
  font-size: 0.78rem;
  white-space: nowrap;
}
.modal-divider::before,
.modal-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--border);
}
.direct-btns {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}
/* SECTIONS */
section {
  padding: 5rem 5%;
}
.slabel {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.slabel::before {
  content: "";
  display: block;
  width: 28px;
  height: 2px;
  background: var(--accent);
}
h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--white);
}
.sdesc {
  color: var(--muted);
  font-size: 0.95rem;
  max-width: 560px;
  line-height: 1.75;
}
/* ADV */
.adv {
  background: var(--navy2);
  position: relative;
  overflow: hidden;
}
.adv::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 320px;
  background: radial-gradient(
    ellipse 70% 100% at 85% 0%,
    rgba(59, 125, 232, 0.14) 0%,
    transparent 70%
  );
  pointer-events: none;
  z-index: -1;
}
.lying-banner {
  background: linear-gradient(
    135deg,
    rgba(59, 125, 232, 0.28) 0%,
    rgba(245, 166, 35, 0.1) 100%
  );
  border: 1px solid rgba(59, 125, 232, 0.4);
  border-radius: 12px;
  padding: 2.5rem 3rem;
  margin-top: 3rem;
  display: flex;
  align-items: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.lying-icon {
  font-size: 3.5rem;
  flex-shrink: 0;
}
.lying-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(245, 166, 35, 0.15);
  border: 1px solid rgba(245, 166, 35, 0.35);
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 20px;
  margin-bottom: 0.75rem;
}
.lying-text h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.lying-text p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 560px;
}
.adv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 2rem;
  border-radius: 8px;
  overflow: hidden;
}
.adv-card {
  background: var(--navy2);
  padding: 2rem 1.75rem;
  transition: background 0.25s;
}
.adv-card:hover {
  background: var(--navy3);
}
.adv-icon {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  display: block;
}
.adv-card h3 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.4rem;
}
.adv-card p {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.6;
}
/* ROUTES */
.routes-wrap {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
  margin-top: 3rem;
}
.country-tabs {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  min-width: 175px;
  flex-shrink: 0;
}
.ctab {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.7rem 1.1rem;
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--muted);
  background: transparent;
  border: 1px solid transparent;
  transition: all 0.2s;
  text-align: left;
  font-family: "Montserrat", sans-serif;
}
.ctab:hover {
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
}
.ctab.active {
  background: rgba(59, 125, 232, 0.22);
  border-color: rgba(59, 125, 232, 0.45);
  color: var(--white);
}
.cities-panel {
  flex: 1;
  min-width: 0;
}
.city-panel {
  display: none;
}
.city-panel.active {
  display: block;
}
.city-panel-title {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 1.1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.cities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(145px, 1fr));
  gap: 0.65rem;
}
.city-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 0.6rem 0.85rem;
  font-size: 0.84rem;
  color: var(--muted);
  font-weight: 500;
  transition: all 0.2s;
}
.city-item:hover {
  background: rgba(59, 125, 232, 0.18);
  border-color: var(--blue);
  color: var(--white);
}
.city-item::before {
  content: "→";
  color: var(--accent);
  font-size: 0.72rem;
  flex-shrink: 0;
}
.routes-note {
  margin-top: 1.5rem;
  padding: 1rem 1.25rem;
  background: rgba(245, 166, 35, 0.07);
  border-left: 3px solid var(--accent);
  border-radius: 0 6px 6px 0;
  font-size: 0.85rem;
  color: var(--muted);
}
.routes-note strong {
  color: var(--accent);
}
/* HOW */
.how {
  background: var(--navy2);
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.step {
  text-align: center;
  padding: 2rem 1.25rem;
}
.step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(59, 125, 232, 0.18);
  border: 2px solid var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--blue2);
  margin: 0 auto 1.25rem;
}
.step h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.step p {
  font-size: 0.83rem;
  color: var(--muted);
  line-height: 1.65;
}
/* CONTACT SECTION */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  margin-top: 2.5rem;
}
.cblock {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  padding: 1.1rem 1.25rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 8px;
  text-decoration: none;
  transition: border-color 0.2s;
  cursor: pointer;
}
.cblock:hover {
  border-color: rgba(245, 166, 35, 0.4);
}
.cblock-icon {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  flex-shrink: 0;
  background: rgba(59, 125, 232, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
}
.cblock-label {
  font-size: 0.7rem;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.2rem;
}
.cblock-val {
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
}
.cta-big {
  background: var(--navy2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2.5rem;
  text-align: center;
}
.cta-big p {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}
.cta-big-btns {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
/* FOOTER */
footer {
  background: rgba(0, 0, 0, 0.3);
  border-top: 1px solid var(--border);
  padding: 2rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.foot-logo {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
}
.foot-logo span {
  color: var(--accent);
}
.foot-copy {
  font-size: 0.78rem;
  color: var(--muted);
}
footer a {
  font-size: 0.85rem;
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
}
/* RESPONSIVE */
@media (max-width: 900px) {
  nav {
    padding: 0 4%;
  }
  .nav-links {
    display: none;
  }
  section {
    padding: 3rem 4%;
  }
  #routes {
    padding-bottom: 1.5rem;
  }
  #gallery {
    padding-top: 1.5rem;
  }
  .contact-wrap {
    grid-template-columns: 1fr;
  }
  .routes-wrap {
    flex-direction: column;
    gap: 2rem;
  }
  .country-tabs {
    flex-direction: row;
    flex-wrap: wrap;
    min-width: auto;
  }
}
@media (max-width: 600px) {
  .hero {
    padding: 7rem 5% 3rem;
  }
  .fgrid {
    grid-template-columns: 1fr;
  }
  .lying-banner {
    padding: 1.75rem;
    flex-direction: column;
    gap: 1rem;
  }
  footer {
    flex-direction: column;
    text-align: center;
  }
  .direct-btns {
    grid-template-columns: 1fr;
  }
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero-content > * {
  animation: fadeUp 0.7s ease both;
}
.hero-content > *:nth-child(1) {
  animation-delay: 0.05s;
}
.hero-content > *:nth-child(2) {
  animation-delay: 0.15s;
}
.hero-content > *:nth-child(3) {
  animation-delay: 0.22s;
}
.hero-content > *:nth-child(4) {
  animation-delay: 0.3s;
}
.hero-content > *:nth-child(5) {
  animation-delay: 0.37s;
}
.hero-content > *:nth-child(6) {
  animation-delay: 0.44s;
}
/* SCROLL ANIMATIONS */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-scale {
  opacity: 0;
  transform: scale(0.92);
  transition:
    opacity 0.5s ease,
    transform 0.5s ease;
}
.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

@media (max-width: 768px) {
  .review-big {
    grid-column: span 1 !important;
  }
}
