* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  color: #5e6282;
  background: #fff;
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

h1,
h2,
h3,
h4 {
  font-family: "Volkhov", serif;
  color: #181e4b;
}

.section-tag {
  text-transform: uppercase;
  font-size: 14px;
  color: #5e6282;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 50px 80px;
}

.logo {
  font-size: 28px;
  font-weight: 700;
  color: #181e4b;
}

.navbar nav a {
  margin: 0 20px;
  text-decoration: none;
  color: #212832;
  font-weight: 500;
}

.navbar nav a.active {
  font-weight: 700;
}

.btn-outline {
  border: 1px solid #212832;
  background: transparent;
  padding: 10px 20px;
  border-radius: 5px;
  margin-left: 20px;
  cursor: pointer;
}

.lang-selector {
  margin-left: 30px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
}

.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 60px 80px;
  position: relative;
}

.hero-text {
  flex: 1;
  max-width: 50%;
  z-index: 2;
}

.tagline {
  color: #df6951;
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
}

.hero h1 {
  font-size: 70px;
  line-height: 1.1;
  margin: 20px 0;
}

.highlight {
  position: relative;
  color: #df6951;
}

.highlight::after {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 8px;
  background: #f1a501;
  opacity: 0.3;
  z-index: -1;
}

.desc {
  margin: 30px 0;
  max-width: 500px;
  font-size: 16px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 30px;
}

.btn-primary {
  background: #f1a501;
  color: white;
  border: none;
  padding: 16px 32px;
  border-radius: 10px;
  font-weight: 600;
  box-shadow: 0 10px 20px rgba(241, 165, 1, 0.3);
  cursor: pointer;
}

.play {
  display: flex;
  align-items: center;
  gap: 15px;
  color: #686a76;
  font-weight: 500;
  cursor: pointer;
}

.play-btn {
  width: 52px;
  height: 52px;
  background: #df6951;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 20px rgba(223, 105, 81, 0.3);
}

.hero-image {
  position: relative;
  flex: 1;
  text-align: right;
}

.hero-image img {
  max-width: 650px;
  width: 100%;
}

.decoration {
  position: absolute;
  pointer-events: none;
}

.plane {
  top: -50px;
  right: 100px;
  animation: float 6s ease-in-out infinite;
}

.paper {
  top: 100px;
  left: -50px;
  animation: float 8s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

section {
  padding: 100px 0;
  text-align: center;
}

section h2 {
  font-size: 48px;
  margin-bottom: 60px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-top: 60px;
  justify-items: center;
  margin-bottom: 100px;
}

.service-card {
  background: white;
  padding: 40px 20px;
  border-radius: 36px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  position: relative;
  transition: transform 0.3s;
  text-align: center;
  max-width: 250px;
}

.service-card:hover {
  transform: translateY(-10px);
}

.service-card .icon {
  margin-bottom: 20px;
}

.service-card h4 {
  margin: 20px 0 15px;
  font-size: 20px;
}

.service-card.active .active-decoration {
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 30px;
  background: #df6951;
  border-radius: 20px;
}

.destination-grid {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 60px;
  margin-bottom: 100px;
}

.destination-card {
  background: white;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  width: 300px;
  transition: transform 0.3s;
}

.destination-card:hover {
  transform: translateY(-15px);
}

.img-wrapper img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.card-content {
  padding: 25px;
  text-align: left;
}

.info {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
  font-weight: 500;
}

.card-content p {
  color: #5e6282;
  display: flex;
  align-items: center;
  gap: 10px;
}

.booking {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 80px;
  text-align: left;
}

.booking-text {
  flex: 1;
}

.steps {
  margin-top: 50px;
}

.step {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  margin-bottom: 40px;
}

.step-icon {
  width: 60px;
  height: 60px;
  border-radius: 15px;
  flex-shrink: 0;
  background-size: 40px;
  background-repeat: no-repeat;
  background-position: center;
}

.step-icon.choose {
  background: #f0bb1f33 url("images/choose-icon.png") center no-repeat;
}

.step-icon.payment {
  background: #f15a2b33 url("images/payment-icon.png") center no-repeat;
}

.step-icon.airport {
  background: #00638033 url("images/airport-icon.png") center no-repeat;
}

.booking-card {
  background: white;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  width: 380px;
  flex-shrink: 0;
}

.card-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.card-body {
  padding: 25px;
}

.card-body h4 {
  margin-bottom: 10px;
}

.trip-status {
  display: flex;
  justify-content: space-between;
  margin: 20px 0;
  font-size: 14px;
  color: #5e6282;
}

.progress {
  color: #080809;
  font-weight: 600;
}

.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #5e6282;
}

.testimonial-slider {
  max-width: 600px;
  margin: 60px auto 0;
  position: relative;
}

.testimonial-card {
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  text-align: left;
}

.testimonial-card p {
  font-style: italic;
  margin-bottom: 30px;
  font-size: 18px;
}

.dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #c4c4c4;
}

.dot.active {
  background: #df6951;
}

.logos {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 80px 0;
  opacity: 0.7;
}

.subscribe {
  background: #f9f7fe;
  border-radius: 120px 20px 20px 20px;
  padding: 80px;
  margin: 120px 80px;
  position: relative;
  overflow: hidden;
}

.subscribe-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.subscribe h3 {
  font-size: 32px;
  margin-bottom: 50px;
}

.subscribe form {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.input-wrapper {
  position: relative;
  width: 400px;
}

.input-wrapper i {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: #df6951;
}

.subscribe input {
  width: 100%;
  padding: 20px 20px 20px 60px;
  border-radius: 10px;
  border: none;
  font-size: 16px;
}

.subscribe button {
  background: linear-gradient(180deg, #ff946d, #ff7d68);
  color: white;
  border: none;
  padding: 20px 40px;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
}

footer {
  padding: 100px 80px 50px;
}

.footer-main {
  display: flex;
  justify-content: space-between;
  margin-bottom: 60px;
}

.footer-logo h2 {
  font-size: 40px;
  margin-bottom: 15px;
}

.footer-links {
  display: flex;
  gap: 100px;
}

.footer-links div h4 {
  margin-bottom: 25px;
  font-size: 20px;
}

.footer-links a {
  display: block;
  margin-bottom: 15px;
  text-decoration: none;
  color: #5e6282;
}

.footer-social {
  text-align: right;
}

.social-icons {
  display: flex;
  gap: 20px;
  font-size: 20px;
  margin-bottom: 20px;
}

.app-buttons img {
  height: 40px;
  margin-left: 10px;
}

.copyright {
  text-align: center;
  color: #5e6282;
  font-size: 14px;
}
