
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html,
body {
  height: 100%;
}
body {
  font-family: "Poppins", sans-serif;
  color: #181e4b;
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
}
.container {
  width: 92%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Utility */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  border-radius: 10px;
  padding: 0.6rem 1rem;
  cursor: pointer;
  border: none;
  font-weight: 600;
  text-decoration: none;
}
.muted {
  color: #5e6282;
  text-decoration: none;
}
.pretext,
.eyebrow {
  color: #5e6282;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
}

.navbar {
  padding: 1.2rem 0;
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.9);
  z-index: 40;
  backdrop-filter: blur(4px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.logo {
  height: 38px;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.nav-links a {
  color: #181e4b;
  text-decoration: none;
  padding: 0.4rem 0.6rem;
  font-weight: 500;
}
.nav-links .btn-cta {
  background: #f1a501;
  color: #fff;
  border-radius: 8px;
  padding: 0.5rem 0.9rem;
}


.hamburger {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: transparent;
  border: 1px solid rgba(0, 0, 0, 0.06);
  position: relative;
}
.hamburger span {
  display: block;
  height: 2px;
  background: #181e4b;
  margin: 8px 10px;
  transition: all 0.25s;
  border-radius: 2px;
}
.hamburger.open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}


.nav-links.open {
  position: absolute;
  right: 1.2rem;
  top: 72px;
  background: #fff;
  flex-direction: column;
  padding: 1rem;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
  border-radius: 12px;
}
.nav-links.open a {
  padding: 0.7rem 1rem;
}

.hero {
  padding: 4.2rem 0 3rem;
  overflow: visible;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 460px;
  align-items: center;
  gap: 2rem;
  position: relative;
}

.hero-left {
  max-width: 640px;
}
.hero-title {
  font-family: "Volkhov", serif;
  font-size: 3.2rem;
  line-height: 1.05;
  margin: 0.4rem 0 1rem;
  color: #181e4b;
}
.hero-desc {
  color: #5e6282;
  margin-bottom: 1.4rem;
  max-width: 520px;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.2rem;
}
.btn-primary {
  background: #f1a501;
  color: #fff;
  border-radius: 12px;
  padding: 0.8rem 1.3rem;
  text-decoration: none;
}
.btn-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.06);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
}

.feature-row {
  display: flex;
  gap: 2rem;
  margin-top: 1.2rem;
  list-style: none;
}
.feature-row li {
  color: #5e6282;
  font-weight: 600;
  font-size: 0.95rem;
}

/* hero illustration */
.hero-right {
  position: relative;
  display: flex;
  justify-content: center;
}
.hero-bg-shape {
  position: absolute;
  right: -40px;
  top: -40px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffe9c4 0%, #ffb680 100%);
  filter: blur(30px);
  z-index: 0;
  opacity: 0.85;
}
.hero-illustration {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 420px;
  transform: translateY(-8px);
}


.services {
  padding: 3.6rem 0;
  background: #fff;
}
.section-title {
  font-family: "Volkhov", serif;
  font-size: 2.1rem;
  color: #181e4b;
  margin: 0.6rem 0 1.6rem;
}

.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
  margin-top: 1.6rem;
}
.card {
  background: #fff;
  border-radius: 16px;
  padding: 1.8rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
  text-align: center;
  transition: all 0.28s;
}
.card img {
  height: 60px;
  margin-bottom: 1rem;
}
.card h3 {
  margin-bottom: 0.5rem;
  color: #181e4b;
}
.card p {
  color: #5e6282;
  font-size: 0.95rem;
}


.destinations {
  padding: 3.6rem 0 1.6rem;
  background: #fbfbfd;
}
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}
.dest-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 1rem;
}

.dest {
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
}
.dest img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  display: block;
}
.dest-body {
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.dest-body h3 {
  font-size: 1.05rem;
  color: #181e4b;
}
.price {
  color: #f1a501;
  font-weight: 700;
}

.book {
  padding: 3.6rem 0;
}
.book-panel {
  display: flex;
  gap: 2rem;
  align-items: center;
  background: linear-gradient(180deg, #fff, #fff);
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}
.book-left {
  flex: 1;
}
.search-form {
  width: 480px;
  max-width: 100%;
  background: #fff;
  padding: 1rem;
  border-radius: 12px;
}
.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 1rem;
}
.form-row label {
  display: flex;
  flex-direction: column;
  font-size: 0.85rem;
  color: #5e6282;
}
.form-row input,
.form-row select {
  margin-top: 0.45rem;
  padding: 0.6rem 0.7rem;
  border-radius: 8px;
  border: 1px solid #e8e8f0;
}
.form-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.testimonials {
  padding: 3.6rem 0;
}
.test-slider {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.test {
  display: none;
  padding: 1.6rem;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.05);
}
.test.active {
  display: block;
}
.test p {
  font-size: 1.05rem;
  color: #181e4b;
  margin-bottom: 0.8rem;
}
.test cite {
  color: #5e6282;
  font-weight: 600;
}

.test-controls {
  margin-top: 1rem;
  display: flex;
  gap: 0.6rem;
  justify-content: center;
}
.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #e8e8f0;
  border: none;
  cursor: pointer;
}
.dot.active {
  background: #f1a501;
}


.partners {
  padding: 2rem 0;
}
.partners-row {
  display: flex;
  gap: 2rem;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  padding: 1rem 0;
}
.partners-row img {
  max-height: 38px;
  opacity: 0.9;
}


.footer {
  background: #f9f9fb;
  padding: 3rem 0 2.4rem;
  color: #5e6282;
  margin-top: 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 300px;
  gap: 2rem;
  align-items: start;
}
.footer-grid h4 {
  color: #181e4b;
  margin-bottom: 0.6rem;
}
.footer-grid ul {
  list-style: none;
}
.footer-grid li {
  margin-bottom: 0.5rem;
}
.socials {
  display: flex;
  gap: 0.6rem;
  margin-bottom: 1rem;
}
.app-links img {
  width: 120px;
  border-radius: 10px;
  margin-right: 0.6rem;
}

.copyright {
  text-align: center;
  margin-top: 1.2rem;
  color: #9aa0c0;
}


@media (max-width: 1100px) {
  .hero-grid {
    grid-template-columns: 1fr 360px;
  }
  .cards {
    grid-template-columns: repeat(2, 1fr);
  }
  .dest-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .nav-links {
    display: none;
  }
  .hamburger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-right {
    order: -1;
    margin-bottom: 1rem;
  }
  .hero-bg-shape {
    right: 20%;
    top: -60px;
    width: 280px;
    height: 280px;
  }
  .cards {
    grid-template-columns: 1fr;
  }
  .dest-grid {
    grid-template-columns: 1fr;
  }
  .book-panel {
    flex-direction: column;
    align-items: stretch;
  }
  .search-form {
    width: 100%;
  }
  .feature-row {
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
  }
}

@media (max-width: 420px) {
  .hero-title {
    font-size: 2.1rem;
  }
  .hero-illustration {
    max-width: 320px;
  }
  .nav-links.open {
    right: 0.6rem;
    left: 0.6rem;
    top: 72px;
  }
  .partners-row {
    gap: 0.8rem;
    flex-wrap: wrap;
    justify-content: center;
  }
}

.card,
.dest {
  transition: all 0.3s ease;
}

.card:hover,
.dest:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(241, 139, 98, 0.25); 
  background-color: #fff;
}

