/* =========================================
   RESET
========================================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "DM Sans", sans-serif;
  color: #102a56;
  background: #ffffff;
}

a {
  text-decoration: none;
  color: inherit;
}

button,
input,
select {
  font-family: inherit;
}

/* =========================================
   NAVBAR
========================================= */

.navbar {
  position: fixed;
  top: 0;
  left: 0;

  width: 100%;
  height: 78px;

  z-index: 1000;

  background: rgba(255, 255, 255, 0.96);

  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  border-bottom: 1px solid rgba(10, 45, 95, 0.07);

  box-shadow: 0 5px 25px rgba(20, 50, 90, 0.06);
}

/* =========================================
   NAV CONTAINER
========================================= */

.nav-container {
  width: min(1400px, 100%);

  height: 100%;

  margin: 0 auto;

  padding: 0 55px;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* =========================================
   LOGO
========================================= */

.logo {
  display: flex;
  align-items: center;

  gap: 11px;

  flex-shrink: 0;
}

.logo-icon {
  width: 43px;
  height: 43px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: linear-gradient(135deg, #0b8eea, #0752b9);

  color: white;

  font-size: 18px;

  box-shadow: 0 7px 18px rgba(7, 82, 185, 0.22);
}

.logo-text {
  display: flex;
  flex-direction: column;

  line-height: 1;
}

.logo-text strong {
  color: #092c70;

  font-size: 21px;

  font-weight: 800;

  letter-spacing: 1px;
}

.logo-text span {
  margin-top: 5px;

  color: #1384d7;

  font-size: 8px;

  font-weight: 800;

  letter-spacing: 4px;
}

/* =========================================
   NAV LINKS
========================================= */

.nav-links {
  display: flex;
  align-items: center;

  gap: 36px;

  margin-left: auto;
  margin-right: 38px;
}

.nav-links a {
  position: relative;

  padding: 8px 0;

  color: #31466b;

  font-size: 14px;

  font-weight: 600;

  transition: color 0.25s ease;
}

.nav-links a::after {
  content: "";

  position: absolute;

  left: 0;
  bottom: 0;

  width: 0;
  height: 2px;

  border-radius: 5px;

  background: #0a73cf;

  transition: width 0.25s ease;
}

.nav-links a:hover {
  color: #0a73cf;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a.active {
  color: #0a73cf;
}

/* =========================================
   GET QUOTE BUTTON
========================================= */

.nav-quote {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  gap: 9px;

  padding: 12px 21px;

  border-radius: 30px;

  background: #092c70;

  color: white;

  font-size: 13px;

  font-weight: 700;

  box-shadow: 0 8px 20px rgba(9, 44, 112, 0.18);

  transition:
    background 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.nav-quote:hover {
  background: #0a69c4;

  transform: translateY(-2px);

  box-shadow: 0 11px 25px rgba(9, 44, 112, 0.25);
}

.nav-quote i {
  font-size: 12px;
}

/* =========================================
   MOBILE MENU BUTTON
========================================= */

.menu-button {
  display: none;

  border: none;

  background: transparent;

  color: #092c70;

  font-size: 23px;

  cursor: pointer;
}

/* =========================================
   TABLET
========================================= */

@media (max-width: 950px) {
  .nav-container {
    padding: 0 30px;
  }

  .nav-links {
    gap: 22px;

    margin-right: 22px;
  }

  .nav-links a {
    font-size: 13px;
  }

  .nav-quote {
    padding: 11px 16px;
  }
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 760px) {
  .navbar {
    height: 70px;
  }

  .nav-container {
    padding: 0 20px;
  }

  .nav-links,
  .nav-quote {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .logo-icon {
    width: 39px;
    height: 39px;

    font-size: 16px;
  }

  .logo-text strong {
    font-size: 19px;
  }

  .logo-text span {
    font-size: 7px;
    letter-spacing: 3.5px;
  }
}
/* =========================================
    HERO SECTION
 ========================================= */

.hero {
  position: relative;

  min-height: 760px;

  padding-top: 70px;

  display: flex;
  align-items: center;

  overflow: hidden;

  background-image: url("images/hero4.jpg");

  background-size: cover;

  /* Show more of the important middle/right area */
  background-position: 65% center;

  background-repeat: no-repeat;

  background-color: #0752a8;
}

/* =========================================
   HERO OVERLAY
========================================= */

.hero-overlay {
  position: absolute;
  inset: 0;

  z-index: 1;

  background: linear-gradient(
    90deg,
    rgba(3, 47, 112, 0.94) 0%,
    rgba(4, 69, 145, 0.84) 35%,
    rgba(4, 76, 150, 0.48) 65%,
    rgba(4, 58, 125, 0.15) 100%
  );
}

/* =========================================
   HERO CONTAINER
========================================= */

.hero-container {
  position: relative;

  z-index: 5;

  width: min(1400px, 100%);

  margin: 0 auto;

  padding: 70px 55px;

  display: grid;

  grid-template-columns:
    minmax(350px, 0.9fr)
    minmax(520px, 1.1fr);

  gap: 65px;

  align-items: center;
}

/* =========================================
   HERO CONTENT
========================================= */

.hero-content {
  color: white;

  max-width: 590px;
}

/* SMALL LABEL */

.hero-label {
  display: inline-flex;

  align-items: center;

  margin-bottom: 22px;

  padding: 9px 15px;

  border: 1px solid rgba(255, 255, 255, 0.25);

  border-radius: 30px;

  background: rgba(255, 255, 255, 0.1);

  backdrop-filter: blur(8px);

  color: white;

  font-size: 11px;

  font-weight: 700;

  letter-spacing: 1.2px;
}

/* =========================================
   HERO HEADING
========================================= */

.hero-content h1 {
  margin-bottom: 22px;

  color: white;

  font-family: "DM Sans", sans-serif;

  font-size: clamp(52px, 5.5vw, 78px);

  font-weight: 800;

  line-height: 0.98;

  letter-spacing: -3px;
}

.hero-content h1 span {
  display: block;

  color: #ffc33b;
}

/* =========================================
   HERO DESCRIPTION
========================================= */

.hero-content p {
  max-width: 500px;

  margin-bottom: 32px;

  color: rgba(255, 255, 255, 0.9);

  font-size: 17px;

  line-height: 1.7;
}

/* =========================================
   HERO CTA
========================================= */

.hero-cta {
  display: inline-flex;

  align-items: center;

  gap: 15px;

  padding: 15px 23px;

  border-radius: 30px;

  background: #ffc33b;

  color: #092c70;

  font-size: 14px;

  font-weight: 800;

  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);

  transition:
    transform 0.25s ease,
    background 0.25s ease,
    box-shadow 0.25s ease;
}

.hero-cta span {
  display: flex;

  align-items: center;

  gap: 9px;
}

.hero-cta > i {
  transition: transform 0.25s ease;
}

.hero-cta:hover {
  transform: translateY(-3px);

  background: #ffd15c;

  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.27);
}

.hero-cta:hover > i {
  transform: translateX(5px);
}

/* =========================================
   BOOKING CARD
========================================= */

.booking-card {
  width: 100%;

  padding: 23px;

  border-radius: 22px;

  background: rgba(255, 255, 255, 0.98);

  box-shadow: 0 30px 70px rgba(0, 25, 65, 0.28);

  border: 1px solid rgba(255, 255, 255, 0.8);

  backdrop-filter: blur(15px);
}

/* =========================================
   TRIP TOGGLE
========================================= */

.trip-toggle {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 8px;

  margin-bottom: 18px;
}

.trip-button {
  height: 46px;

  border: 1px solid #d4dce7;

  border-radius: 9px;

  background: white;

  color: #092c70;

  font-size: 13px;

  font-weight: 700;

  cursor: pointer;

  transition:
    background 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease;
}

.trip-button i {
  margin-right: 6px;
}

.trip-button:hover {
  border-color: #092c70;
}

.trip-button.active {
  border-color: #092c70;

  background: #092c70;

  color: white;

  box-shadow: 0 7px 15px rgba(9, 44, 112, 0.16);
}

/* =========================================
   FORM ROW
========================================= */

.form-row {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 13px;
}

/* =========================================
   FORM GROUP
========================================= */

.form-group {
  margin-bottom: 12px;
}

.form-group label {
  display: block;

  margin-bottom: 6px;

  padding-left: 3px;

  color: #253b61;

  font-size: 11px;

  font-weight: 700;
}

/* =========================================
   INPUT BOX
========================================= */

.input-box {
  height: 46px;

  display: flex;

  align-items: center;

  gap: 9px;

  padding: 0 12px;

  border: 1px solid #d2dbe7;

  border-radius: 8px;

  background: white;

  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.input-box:focus-within {
  border-color: #1683d5;

  box-shadow: 0 0 0 3px rgba(22, 131, 213, 0.1);
}

.input-box > i {
  flex-shrink: 0;

  color: #0c6fca;

  font-size: 14px;
}

.input-box input,
.input-box select {
  width: 100%;
  height: 100%;

  outline: none;

  border: none;

  background: transparent;

  color: #263b5e;

  font-size: 12px;
}

.input-box input::placeholder {
  color: #9aa7b8;
}

.input-box select {
  cursor: pointer;
}

/* =========================================
   QUOTE BUTTON
========================================= */

.quote-button {
  width: 100%;

  height: 48px;

  display: flex;

  align-items: center;
  justify-content: center;

  gap: 9px;

  margin-top: 4px;

  border: none;

  border-radius: 9px;

  background: #ffc33b;

  color: #092c70;

  font-size: 12px;

  font-weight: 800;

  cursor: pointer;

  box-shadow: 0 8px 20px rgba(255, 195, 59, 0.2);

  transition:
    transform 0.25s ease,
    background 0.25s ease,
    box-shadow 0.25s ease;
}

.quote-button:hover {
  transform: translateY(-2px);

  background: #ffd15c;

  box-shadow: 0 12px 25px rgba(255, 195, 59, 0.3);
}

/* =========================================
   CLOUDS
========================================= */

.hero-cloud {
  position: absolute;

  z-index: 3;

  width: 350px;
  height: 100px;

  border-radius: 50%;

  background: rgba(255, 255, 255, 0.14);

  filter: blur(28px);

  pointer-events: none;
}

.cloud-one {
  top: 145px;

  left: -400px;

  animation: cloudMoveOne 42s linear infinite;
}

.cloud-two {
  top: 430px;

  left: -350px;

  width: 280px;
  height: 80px;

  opacity: 0.65;

  animation: cloudMoveTwo 55s linear infinite;
}

@keyframes cloudMoveOne {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(1900px);
  }
}

@keyframes cloudMoveTwo {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(2100px);
  }
}

/* =========================================
   FLYING PLANE
========================================= */

.flying-plane {
  position: absolute;

  z-index: 4;

  top: 135px;
  left: -100px;

  color: rgba(255, 255, 255, 0.9);

  font-size: 43px;

  filter: drop-shadow(0 7px 10px rgba(0, 0, 0, 0.25));

  pointer-events: none;

  animation: flyAcross 17s ease-in-out infinite;
}

@keyframes flyAcross {
  0% {
    opacity: 0;

    transform: translate(0, 25px) rotate(-5deg);
  }

  10% {
    opacity: 1;
  }

  45% {
    transform: translate(750px, -20px) rotate(2deg);
  }

  75% {
    transform: translate(1250px, -5px) rotate(1deg);
  }

  90% {
    opacity: 1;
  }

  100% {
    opacity: 0;

    transform: translate(1850px, -70px) rotate(5deg);
  }
}

/* =========================================
   TABLET
========================================= */

@media (max-width: 1050px) {
  .hero-container {
    grid-template-columns: 1fr 1fr;

    gap: 30px;

    padding: 60px 30px;
  }

  .hero-content h1 {
    font-size: 55px;
  }
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 760px) {
  .hero {
    min-height: auto;
    padding-top: 70px;
    background-image: url("images/hero.jpg");
    background-position: 85% center;
    background-size: auto 100%;
  }

  .hero-container {
    grid-template-columns: 1fr;
    gap: 45px;

    padding: 55px 20px 50px;
  }

  .hero-content {
    max-width: 650px;
    margin: 0 auto;
    text-align: center;
  }

  .hero-content h1 {
    font-size: 43px;
    line-height: 1;
    letter-spacing: -2px;
  }

  .hero-content p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-cta {
    margin: 0 auto;
  }

  .booking-card {
    max-width: 650px;
    margin: 0 auto;
  }
  .flying-plane {
    /* display: none; */
    font-size: 30px;

    top: 100px;
  }
}

/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 520px) {
  .hero-container {
    padding: 45px 15px 45px;
  }

  .hero-content h1 {
    font-size: 43px;

    letter-spacing: -2px;
  }

  .hero-content p {
    font-size: 15px;
  }

  .hero-label {
    font-size: 9px;
  }

  .booking-card {
    padding: 16px;

    border-radius: 18px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .trip-button {
    font-size: 12px;
  }
}
/* =========================================
   FORM MESSAGES
========================================= */

.form-message {
  width: 100%;

  margin-bottom: 15px;

  padding: 12px 15px;

  border-radius: 9px;

  font-size: 12px;

  font-weight: 600;

  line-height: 1.5;
}

.form-message.error {
  background: #fff1f1;

  border: 1px solid #ffcaca;

  color: #b42318;
}

.form-message.success {
  background: #effaf3;

  border: 1px solid #b8e5c7;

  color: #147a3d;
}
/* =========================================
   POPULAR DESTINATIONS
========================================= */

.destinations {
  position: relative;

  padding: 105px 0 110px;

  background: #ffffff;

  overflow: hidden;
}

.destinations-container {
  width: min(1250px, 100%);

  margin: 0 auto;

  padding: 0 30px;
}

/* =========================================
   SECTION HEADER
========================================= */

.section-header {
  max-width: 650px;

  margin: 0 auto 55px;

  text-align: center;
}

.section-label {
  display: inline-block;

  margin-bottom: 13px;

  color: #1683d5;

  font-size: 11px;

  font-weight: 800;

  letter-spacing: 2px;
}

.section-header h2 {
  margin-bottom: 15px;

  color: #092c70;

  font-size: clamp(36px, 4vw, 50px);

  font-weight: 800;

  line-height: 1.1;

  letter-spacing: -1.5px;
}

.section-header h2 span {
  color: #1683d5;
}

.section-header p {
  max-width: 570px;

  margin: 0 auto;

  color: #6c7b91;

  font-size: 15px;

  line-height: 1.7;
}

/* =========================================
   DESTINATION GRID
========================================= */

.destinations-grid {
  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 22px;
}

/* =========================================
   DESTINATION CARD
========================================= */

.destination-card {
  overflow: hidden;

  border-radius: 18px;

  background: #ffffff;

  border: 1px solid #edf1f6;

  box-shadow: 0 10px 30px rgba(19, 55, 95, 0.07);

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.destination-card:hover {
  transform: translateY(-8px);

  box-shadow: 0 20px 45px rgba(19, 55, 95, 0.14);
}

/* =========================================
   DESTINATION IMAGE
========================================= */

.destination-image {
  position: relative;
  height: 270px;
  overflow: hidden;
}

.destination-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.destination-card:hover .destination-image img {
  transform: scale(1.06);
}

/* =========================================
   DESTINATION INFO
========================================= */

.destination-info {
  padding: 13px 16px 14px;
}

.destination-info h3 {
  margin: 0 0 5px;

  color: #092c70;

  font-size: 18px;
  font-weight: 800;
}

.destination-info p {
  margin: 0 0 9px;

  color: #738198;

  font-size: 11px;
  line-height: 1.45;

  /* Prevent the text from making cards too tall */
  max-height: 34px;
  overflow: hidden;
}

.destination-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;

  color: #1683d5;

  font-size: 10px;
  font-weight: 800;

  transition: gap 0.25s ease;
}

.destination-link:hover {
  gap: 10px;
}

/* =========================================
   TABLET
========================================= */

@media (max-width: 1050px) {
  .destinations-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {
  .destinations {
    padding: 75px 0 80px;
  }

  .destinations-container {
    padding: 0 18px;
  }

  .section-header {
    margin-bottom: 38px;
  }

  .section-header h2 {
    font-size: 35px;
  }

  .section-header p {
    font-size: 14px;
  }

  .destinations-grid {
    grid-template-columns: 1fr;

    gap: 20px;
  }

  .destination-image {
    height: 260px;
  }
}
/* =========================================
   WHY CHOOSE ZIMUCH
========================================= */

.why-zimuch {
  position: relative;

  padding: 90px 0 100px;

  background: #f4f8fd;

  overflow: hidden;
}

.why-zimuch-container {
  width: min(1250px, 100%);

  margin: 0 auto;

  padding: 0 30px;
}

/* =========================================
   FEATURES GRID
========================================= */

.why-grid {
  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 20px;
}

/* =========================================
   FEATURE CARD
========================================= */

.why-card {
  padding: 32px 22px 30px;

  text-align: center;

  background: #ffffff;

  border: 1px solid #e8eef6;

  border-radius: 16px;

  box-shadow: 0 8px 25px rgba(15, 53, 95, 0.06);

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.why-card:hover {
  transform: translateY(-7px);

  box-shadow: 0 18px 38px rgba(15, 53, 95, 0.11);
}

/* =========================================
   ICON
========================================= */

.why-icon {
  width: 58px;
  height: 58px;

  margin: 0 auto 18px;

  display: flex;

  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: #e5f1ff;

  color: #1683d5;

  font-size: 21px;

  transition:
    transform 0.3s ease,
    background 0.3s ease;
}

.why-card:hover .why-icon {
  transform: scale(1.08);

  background: #1683d5;

  color: #ffffff;
}

/* =========================================
   CARD TEXT
========================================= */

.why-card h3 {
  max-width: 190px;

  margin: 0 auto 10px;

  color: #092c70;

  font-size: 15px;

  font-weight: 800;

  line-height: 1.3;
}

.why-card p {
  margin: 0 auto;

  max-width: 205px;

  color: #738198;

  font-size: 11px;

  line-height: 1.6;
}

/* =========================================
   TABLET
========================================= */

@media (max-width: 1000px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {
  .why-zimuch {
    padding: 70px 0 75px;
  }

  .why-zimuch-container {
    padding: 0 18px;
  }

  .why-grid {
    grid-template-columns: 1fr;

    gap: 16px;
  }

  .why-card {
    padding: 28px 20px;
  }
}
/* =========================================
   HOW IT WORKS
========================================= */

.how-it-works {
  position: relative;

  padding: 100px 0 105px;

  background: #ffffff;

  overflow: hidden;
}

.how-container {
  width: min(1250px, 100%);

  margin: 0 auto;

  padding: 0 30px;
}

/* =========================================
   STEPS CONTAINER
========================================= */

.steps-container {
  display: grid;

  grid-template-columns: 1fr auto 1fr auto 1fr;

  align-items: center;

  gap: 20px;

  max-width: 1100px;

  margin: 0 auto;
}

/* =========================================
   STEP CARD
========================================= */

.step-card {
  position: relative;

  padding: 32px 25px 30px;

  text-align: center;

  border: 1px solid #e8eef6;

  border-radius: 18px;

  background: #ffffff;

  box-shadow: 0 8px 28px rgba(15, 53, 95, 0.06);

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.step-card:hover {
  transform: translateY(-7px);

  box-shadow: 0 18px 40px rgba(15, 53, 95, 0.11);
}

/* =========================================
   STEP NUMBER
========================================= */

.step-number {
  position: absolute;

  top: 14px;
  right: 16px;

  color: #dce8f5;

  font-size: 12px;

  font-weight: 900;
}

/* =========================================
   STEP ICON
========================================= */

.step-icon {
  width: 65px;
  height: 65px;

  margin: 0 auto 20px;

  display: flex;

  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: #e7f3ff;

  color: #1683d5;

  font-size: 23px;

  transition:
    background 0.3s ease,
    color 0.3s ease,
    transform 0.3s ease;
}

.step-card:hover .step-icon {
  background: #1683d5;

  color: #ffffff;

  transform: scale(1.08);
}

/* =========================================
   STEP TEXT
========================================= */

.step-card h3 {
  margin-bottom: 10px;

  color: #092c70;

  font-size: 16px;

  font-weight: 800;
}

.step-card p {
  max-width: 220px;

  margin: 0 auto;

  color: #738198;

  font-size: 11px;

  line-height: 1.65;
}

/* =========================================
   CONNECTOR
========================================= */

.step-connector {
  display: flex;

  align-items: center;
  justify-content: center;

  color: #1683d5;

  font-size: 18px;
}

/* =========================================
   TABLET
========================================= */

@media (max-width: 900px) {
  .steps-container {
    grid-template-columns: repeat(3, 1fr);

    gap: 15px;
  }

  .step-connector {
    display: none;
  }
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {
  .how-it-works {
    padding: 75px 0 80px;
  }

  .how-container {
    padding: 0 18px;
  }

  .steps-container {
    grid-template-columns: 1fr;

    gap: 16px;
  }

  .step-card {
    padding: 30px 22px;
  }
}
/* =========================================
   CTA SECTION
========================================= */

.travel-cta {
  position: relative;

  padding: 90px 30px;

  background: linear-gradient(135deg, #092c70, #116bb5);

  overflow: hidden;
}

/* Decorative circles */

.travel-cta::before {
  content: "";

  position: absolute;

  width: 300px;
  height: 300px;

  top: -150px;
  right: 8%;

  border-radius: 50%;

  background: rgba(255, 255, 255, 0.06);
}

.travel-cta::after {
  content: "";

  position: absolute;

  width: 220px;
  height: 220px;

  bottom: -120px;
  left: 5%;

  border-radius: 50%;

  background: rgba(255, 255, 255, 0.05);
}

.cta-container {
  position: relative;

  z-index: 2;

  max-width: 850px;

  margin: 0 auto;

  text-align: center;
}

.cta-label {
  display: inline-block;

  margin-bottom: 14px;

  color: #8ed3ff;

  font-size: 10px;

  font-weight: 800;

  letter-spacing: 2px;
}

.cta-content h2 {
  margin-bottom: 16px;

  color: #ffffff;

  font-size: clamp(36px, 5vw, 52px);

  font-weight: 800;

  line-height: 1.1;

  letter-spacing: -1.5px;
}

.cta-content h2 span {
  color: #8ed3ff;
}

.cta-content p {
  max-width: 570px;

  margin: 0 auto 28px;

  color: rgba(255, 255, 255, 0.78);

  font-size: 14px;

  line-height: 1.7;
}

/* CTA BUTTON */

.cta-button {
  display: inline-flex;

  align-items: center;

  gap: 10px;

  padding: 14px 24px;

  border-radius: 8px;

  background: #ffffff;

  color: #092c70;

  font-size: 12px;

  font-weight: 800;

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.cta-button:hover {
  transform: translateY(-3px);

  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18);
}

.cta-button i {
  font-size: 10px;
}

/* MOBILE */

@media (max-width: 600px) {
  .travel-cta {
    padding: 75px 20px;
  }

  .cta-content h2 {
    font-size: 36px;
  }

  .cta-content p {
    font-size: 13px;
  }
}
/* =========================================
   FOOTER
========================================= */

.site-footer {
  background: #061f50;

  color: #ffffff;
}

/* =========================================
   FOOTER CONTAINER
========================================= */

.footer-container {
  width: min(1250px, 100%);

  margin: 0 auto;

  padding: 70px 30px 55px;

  display: grid;

  grid-template-columns: 2fr 1fr 1fr 1.4fr;

  gap: 50px;
}

/* =========================================
   BRAND
========================================= */

.footer-logo {
  display: inline-block;

  margin-bottom: 17px;

  color: #ffffff;

  font-size: 24px;

  font-weight: 900;

  letter-spacing: -0.8px;
}

.footer-logo span {
  color: #4aa9ed;
}

.footer-brand p {
  max-width: 290px;

  margin: 0 0 23px;

  color: rgba(255, 255, 255, 0.62);

  font-size: 12px;

  line-height: 1.7;
}

/* =========================================
   SOCIALS
========================================= */

.footer-socials {
  display: flex;

  gap: 9px;
}

.footer-socials a {
  width: 34px;
  height: 34px;

  display: flex;

  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: rgba(255, 255, 255, 0.08);

  color: #ffffff;

  font-size: 12px;

  transition:
    background 0.25s ease,
    transform 0.25s ease;
}

.footer-socials a:hover {
  background: #1683d5;

  transform: translateY(-3px);
}

/* =========================================
   FOOTER COLUMNS
========================================= */

.footer-column {
  display: flex;

  flex-direction: column;

  align-items: flex-start;
}

.footer-column h3 {
  margin: 0 0 20px;

  color: #ffffff;

  font-size: 13px;

  font-weight: 800;
}

.footer-column > a {
  margin-bottom: 12px;

  color: rgba(255, 255, 255, 0.62);

  font-size: 11px;

  transition:
    color 0.25s ease,
    transform 0.25s ease;
}

.footer-column > a:hover {
  color: #65baf5;

  transform: translateX(3px);
}

/* =========================================
   CONTACT
========================================= */

.footer-contact > a {
  display: flex;

  align-items: flex-start;

  gap: 9px;
}

.footer-contact i {
  width: 13px;

  margin-top: 2px;

  color: #4aa9ed;

  font-size: 10px;
}

/* =========================================
   FOOTER BOTTOM
========================================= */

.footer-bottom {
  width: min(1250px, 100%);

  margin: 0 auto;

  padding: 20px 30px;

  display: flex;

  align-items: center;
  justify-content: space-between;

  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.footer-bottom p {
  margin: 0;

  color: rgba(255, 255, 255, 0.42);

  font-size: 10px;
}

.footer-bottom-links {
  display: flex;

  gap: 20px;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.42);

  font-size: 10px;

  transition: color 0.25s ease;
}

.footer-bottom-links a:hover {
  color: #ffffff;
}

/* =========================================
   TABLET
========================================= */

@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: 1.5fr 1fr 1fr;

    gap: 40px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {
  .footer-container {
    grid-template-columns: 1fr;

    gap: 35px;

    padding: 55px 20px 40px;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-column {
    align-items: flex-start;
  }

  .footer-bottom {
    padding: 18px 20px;

    flex-direction: column;

    align-items: flex-start;

    gap: 12px;
  }

  .footer-bottom-links {
    gap: 15px;
  }
}
/* =========================================
   MOBILE NAVIGATION
========================================= */

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .nav-links.mobile-open {
    display: flex;

    position: absolute;

    top: 100%;
    left: 0;
    right: 0;

    flex-direction: column;

    padding: 20px;

    background: #ffffff;

    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);

    z-index: 999;
  }

  .nav-links.mobile-open a {
    display: block;

    width: 100%;

    padding: 13px 10px;

    color: #092c70;
  }

  .nav-links.mobile-open a:hover {
    color: #1683d5;
  }

  .menu-button {
    display: flex;

    align-items: center;
    justify-content: center;

    cursor: pointer;

    border: none;

    background: transparent;

    color: #092c70;

    font-size: 24px;
  }
}
/* =========================================
   BOOKING SUCCESS MESSAGE
========================================= */

.booking-success {
  text-align: center;
  padding: 10px 5px;
}

.success-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 15px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: #e8f7ef;
  color: #1da765;

  font-size: 20px;
}

.booking-success h3 {
  margin-bottom: 7px;
  color: #092c70;
  font-size: 19px;
}

.booking-success > p {
  margin-bottom: 18px;
  color: #738198;
  font-size: 12px;
  line-height: 1.6;
}

/* Request reference */

.booking-reference {
  margin: 15px 0;
  padding: 13px;

  border-radius: 10px;

  background: #f1f7fd;
}

.booking-reference span {
  display: block;
  margin-bottom: 4px;

  color: #738198;
  font-size: 10px;
}

.booking-reference strong {
  color: #1683d5;
  font-size: 17px;
  letter-spacing: 1px;
}

/* Booking summary */

.booking-summary {
  display: grid;
  grid-template-columns: repeat(2, 1fr);

  gap: 10px;
  margin-top: 15px;

  text-align: left;
}

.booking-summary > div {
  padding: 11px;

  border: 1px solid #e8eef6;
  border-radius: 8px;

  background: #ffffff;
}

.booking-summary span {
  display: block;
  margin-bottom: 4px;

  color: #8a97aa;
  font-size: 9px;

  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.booking-summary strong {
  color: #092c70;
  font-size: 11px;
}

/* Important note */

.booking-note {
  margin-top: 17px !important;
  padding: 10px;

  border-radius: 7px;

  background: #fff8e8;

  color: #876b28 !important;

  font-size: 10px !important;
}

/* Mobile */

@media (max-width: 600px) {
  .booking-summary {
    grid-template-columns: 1fr;
  }
}
/* =========================================
   NEW BOOKING REQUEST BUTTON
========================================= */

.new-request-button {
  width: 100%;

  margin-top: 18px;
  padding: 12px 18px;

  border: none;
  border-radius: 8px;

  background: #092c70;
  color: #ffffff;

  font-family: inherit;
  font-size: 11px;
  font-weight: 700;

  cursor: pointer;

  transition: 0.25s ease;
}

.new-request-button:hover {
  background: #1683d5;
  transform: translateY(-1px);
}

.new-request-button i {
  margin-right: 7px;
}
