.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding-left: 2rem;
  padding-right: 2rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.text-center {
  text-align: center;
}

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

.text-left {
  text-align: left;
}

.hidden {
  display: none !important;
}

@media (min-width: 768px) {
  .md-show {
    display: flex !important;
  }
  .md-hide {
    display: none !important;
  }
}
@media (min-width: 768px) {
  .md-block {
    display: block !important;
  }
}
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 400;
  background: hsl(210, 20%, 98%);
  color: hsl(220, 30%, 12%);
  line-height: 1.6;
  min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

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

ul, ol {
  list-style: none;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

button {
  cursor: pointer;
}

.utility-bar {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.utility-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 2.5rem;
}
.utility-bar__left {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.utility-bar__left a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.75rem;
}
.utility-bar__left a:hover {
  color: white;
}
.utility-bar__left a strong {
  color: white;
}
.utility-bar__right {
  display: none;
  align-items: center;
  gap: 1rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.75rem;
}
.utility-bar__right a:hover {
  color: white;
}
@media (min-width: 768px) {
  .utility-bar__right {
    display: flex;
  }
}
.utility-bar--solid {
  background: hsl(220, 65%, 18%);
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
}
.header__nav {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  transition: all 0.3s ease;
}
.header__nav--solid {
  background: hsl(220, 65%, 18%);
  box-shadow: 0 8px 30px hsla(220, 30%, 12%, 0.12);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 3.5rem;
}
.header__logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.header__logo-icon {
  background: hsl(16, 85%, 58%);
  border-radius: 0.75rem;
  padding: 0.375rem;
  display: flex;
}
.header__logo-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  color: hsl(0, 0%, 100%);
}
.header__logo-text {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: white;
  letter-spacing: -0.025em;
}
.header__links {
  display: none;
  align-items: center;
  gap: 0.25rem;
}
@media (min-width: 768px) {
  .header__links {
    display: flex;
  }
}
.header__links a {
  padding: 0.5rem 1rem;
  border-radius: 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
}
.header__links a:hover {
  color: white;
  background: rgba(255, 255, 255, 0.1);
}
.header__links a.active {
  background: rgba(255, 255, 255, 0.2);
  color: white;
}
.header__hamburger {
  display: flex;
}
@media (min-width: 768px) {
  .header__hamburger {
    display: none;
  }
}
.header__hamburger {
  background: none;
  border: none;
  color: white;
  padding: 0.5rem;
}
.header__hamburger svg {
  width: 1.25rem;
  height: 1.25rem;
}
.header__mobile {
  display: none;
  background: hsl(220, 65%, 18%);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
}
.header__mobile.open {
  display: block;
}
@media (min-width: 768px) {
  .header__mobile.open {
    display: none;
  }
}
.header__mobile-inner {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.header__mobile a {
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
}
.header__mobile a:hover {
  background: rgba(255, 255, 255, 0.1);
}
.header__mobile a.active {
  background: rgba(255, 255, 255, 0.2);
  color: white;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, hsla(220, 65%, 18%, 0.7), hsla(220, 65%, 18%, 0.2) 50%, hsla(0, 0%, 100%, 0.8));
}
.hero__content {
  position: relative;
  z-index: 10;
  flex: 1;
  display: flex;
  align-items: center;
  padding-top: 9rem;
  padding-bottom: 2rem;
}
@media (min-width: 768px) {
  .hero__content {
    padding-top: 10rem;
  }
}
.hero__text {
  max-width: 36rem;
}
.hero__text h1 {
  font-size: 3rem;
  color: hsl(0, 0%, 100%);
  margin-bottom: 1.25rem;
  letter-spacing: -0.025em;
  line-height: 1.08;
}
@media (min-width: 768px) {
  .hero__text h1 {
    font-size: 3.75rem;
  }
}
@media (min-width: 1024px) {
  .hero__text h1 {
    font-size: 4.5rem;
  }
}
.hero__text p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}
@media (min-width: 768px) {
  .hero__text p {
    font-size: 1.25rem;
  }
}
.hero__badges {
  display: none;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2.5rem;
}
@media (min-width: 768px) {
  .hero__badges {
    display: flex;
  }
}
.hero__badges span {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(4px);
  color: hsl(0, 0%, 100%);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.625rem 1.25rem;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.hero__search {
  position: relative;
  z-index: 10;
  padding-bottom: 1.5rem;
  margin-top: 2rem;
}

.search-widget {
  background: hsl(0, 0%, 100%);
  border-radius: 1.25rem;
  box-shadow: 0 1px 3px hsla(220, 30%, 12%, 0.06), 0 4px 12px hsla(220, 30%, 12%, 0.04);
  box-shadow: 0 12px 40px hsla(220, 30%, 12%, 0.15);
  max-width: 72rem;
  margin: 0 auto;
  overflow: hidden;
}
.search-widget__top {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem 0.75rem;
}
.search-widget__trip-toggle {
  display: flex;
  background: hsl(210, 20%, 95%);
  border-radius: 1rem;
  padding: 0.25rem;
  gap: 0.25rem;
}
.search-widget__trip-toggle button {
  padding: 0.5rem 1rem;
  border-radius: 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  border: none;
  background: none;
  color: hsl(220, 10%, 46%);
  transition: all 0.3s ease;
}
.search-widget__trip-toggle button.active {
  background: hsl(220, 65%, 18%);
  color: hsl(0, 0%, 100%);
  box-shadow: 0 1px 3px hsla(220, 30%, 12%, 0.06), 0 4px 12px hsla(220, 30%, 12%, 0.04);
}
.search-widget__cabin {
  margin-left: auto;
  position: relative;
}
.search-widget__cabin select {
  appearance: none;
  background: hsl(210, 20%, 95%);
  color: hsl(220, 30%, 12%);
  padding: 0.5rem 2rem 0.5rem 1rem;
  border-radius: 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  border: none;
  outline: none;
}
.search-widget__cabin select:focus {
  box-shadow: 0 0 0 2px hsl(16, 85%, 58%);
}
.search-widget__cabin svg {
  position: absolute;
  right: 0.5rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1rem;
  height: 1rem;
  color: hsl(220, 10%, 46%);
  pointer-events: none;
}
.search-widget__fields {
  padding: 0 1.5rem 1.5rem;
}
.search-widget__grid {
  display: grid;
  gap: 0.75rem;
  align-items: end;
}
@media (min-width: 768px) {
  .search-widget__grid {
    grid-template-columns: 1fr auto 1fr 1fr 1fr auto;
  }
}
.search-widget__field label {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  color: hsl(220, 10%, 46%);
  margin-bottom: 0.25rem;
}
.search-widget__field input, .search-widget__field select {
  width: 100%;
  padding: 0.75rem 1rem;
  background: hsl(210, 20%, 95%);
  border: none;
  border-radius: 1rem;
  color: hsl(220, 30%, 12%);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 500;
  outline: none;
  transition: all 0.3s ease;
}
.search-widget__field input:focus, .search-widget__field select:focus {
  box-shadow: 0 0 0 2px hsl(16, 85%, 58%);
}
.search-widget__field input::placeholder, .search-widget__field select::placeholder {
  color: hsla(220, 10%, 46%, 0.5);
}
.search-widget__swap {
  display: none;
}
@media (min-width: 768px) {
  .search-widget__swap {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.search-widget__swap {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  background: hsl(200, 60%, 94%);
  border: none;
  transition: all 0.3s ease;
}
.search-widget__swap:hover {
  background: hsl(16, 85%, 58%);
  color: hsl(0, 0%, 100%);
}
.search-widget__swap svg {
  width: 1rem;
  height: 1rem;
}
.search-widget__submit {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, hsl(16, 85%, 58%) 0%, hsl(30, 90%, 55%) 100%);
  color: hsl(0, 0%, 100%);
  padding: 0.75rem 2rem;
  border-radius: 1rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  box-shadow: 0 1px 3px hsla(220, 30%, 12%, 0.06), 0 4px 12px hsla(220, 30%, 12%, 0.04);
  transition: all 0.3s ease;
}
.search-widget__submit:hover {
  box-shadow: 0 8px 30px hsla(220, 30%, 12%, 0.12);
  transform: scale(1.02);
}
.search-widget__submit {
  padding: 0.75rem 2rem;
  justify-content: center;
}
.search-widget__submit svg {
  width: 1rem;
  height: 1rem;
}
.search-widget__passengers {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 0.75rem;
}
.search-widget__pax-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: hsl(210, 20%, 95%);
  border-radius: 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: hsl(220, 30%, 12%);
  border: none;
  cursor: pointer;
}
.search-widget__pax-btn svg {
  width: 1rem;
  height: 1rem;
  color: hsl(220, 10%, 46%);
}
.search-widget__pax-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 0.5rem;
  background: hsl(0, 0%, 100%);
  box-shadow: 0 8px 30px hsla(220, 30%, 12%, 0.12);
  border-radius: 1rem;
  padding: 1rem;
  z-index: 10;
  min-width: 200px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.search-widget__pax-dropdown span {
  font-size: 0.875rem;
  font-weight: 500;
}
.search-widget__pax-dropdown-controls {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.search-widget__pax-dropdown-controls button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 9999px;
  background: hsl(210, 20%, 95%);
  border: none;
  transition: all 0.3s ease;
}
.search-widget__pax-dropdown-controls button:hover {
  background: hsl(200, 60%, 94%);
}
.search-widget__pax-dropdown-controls .count {
  font-weight: 700;
}

.features {
  padding: 6rem 0;
  background: hsl(0, 0%, 100%);
}
.features__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
@media (min-width: 768px) {
  .features__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.features__item {
  text-align: center;
}
.features__item-icon {
  width: 3.5rem;
  height: 3.5rem;
  background: hsl(200, 60%, 94%);
  border-radius: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin: 0 auto 1rem;
  transition: all 0.3s ease;
}
.features__item h3 {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
  color: hsl(220, 30%, 12%);
  margin-bottom: 0.25rem;
}
.features__item p {
  font-size: 0.875rem;
  color: hsl(220, 10%, 46%);
}
.features__item:hover .features__item-icon {
  background: hsl(16, 85%, 58%);
  transform: scale(1.1);
}
.features__item:hover .features__item-icon svg {
  color: hsl(0, 0%, 100%);
}

.traveller-love {
  padding: 6rem 0;
  background: hsl(210, 20%, 98%);
}
.traveller-love__header {
  text-align: center;
  margin-bottom: 3rem;
}
.traveller-love__header h2 {
  color: hsl(220, 30%, 12%);
  font-size: 1.875rem;
}
@media (min-width: 768px) {
  .traveller-love__header h2 {
    font-size: 2.25rem;
  }
}
.traveller-love__header p {
  color: hsl(220, 10%, 46%);
  margin-top: 0.5rem;
}
.traveller-love__grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1.5rem;
  max-width: 64rem;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .traveller-love__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.traveller-love__card {
  background: hsl(0, 0%, 100%);
  border-radius: 1.25rem;
  box-shadow: 0 1px 3px hsla(220, 30%, 12%, 0.06), 0 4px 12px hsla(220, 30%, 12%, 0.04);
  border: 1px solid hsl(214, 20%, 90%);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.traveller-love__card-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.traveller-love__card-logo .icon {
  background: hsl(16, 85%, 58%);
  border-radius: 0.75rem;
  padding: 0.375rem;
  display: flex;
}
.traveller-love__card-logo .icon svg {
  width: 1rem;
  height: 1rem;
  color: hsl(0, 0%, 100%);
}
.traveller-love__card-logo span {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  color: hsl(220, 30%, 12%);
}
.traveller-love__card h3 {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  color: hsl(220, 30%, 12%);
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
}
.traveller-love__card p {
  color: hsl(220, 10%, 46%);
  font-size: 0.875rem;
  line-height: 1.6;
}
.traveller-love__card-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 2rem;
}
.traveller-love__card-author .avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  background: hsl(200, 60%, 94%);
  font-weight: 700;
  font-size: 0.875rem;
  color: hsl(220, 30%, 12%);
}
.traveller-love__card-author .name {
  font-weight: 600;
  font-size: 0.875rem;
  color: hsl(220, 30%, 12%);
}
.traveller-love__card-author .role {
  font-size: 0.75rem;
  color: hsl(220, 10%, 46%);
}
.traveller-love__card-author .dot {
  width: 0.625rem;
  height: 0.625rem;
  border-radius: 9999px;
  background: hsl(16, 85%, 58%);
  margin-left: auto;
}
.traveller-love__stats {
  background: hsl(0, 0%, 100%);
  border-radius: 1.25rem;
  box-shadow: 0 1px 3px hsla(220, 30%, 12%, 0.06), 0 4px 12px hsla(220, 30%, 12%, 0.04);
  border: 1px solid hsl(214, 20%, 90%);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.traveller-love__stat {
  padding: 1.5rem;
}
.traveller-love__stat-top {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.traveller-love__stat .stat-icon {
  width: 2.5rem;
  height: 2.5rem;
  background: hsla(152, 60%, 42%, 0.1);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.traveller-love__stat .stat-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  color: hsl(152, 60%, 42%);
}
.traveller-love__stat h4 {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  color: hsl(220, 30%, 12%);
}
.traveller-love__stat p {
  color: hsl(220, 10%, 46%);
  font-size: 0.875rem;
  margin-top: 0.25rem;
}
.traveller-love__stat-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1rem;
}
.traveller-love__stat-bottom .big {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 3rem;
  color: hsl(220, 30%, 12%);
}
.traveller-love__stat-bottom .label {
  color: hsl(220, 10%, 46%);
  font-size: 0.875rem;
  margin-top: 0.25rem;
}
.traveller-love__image {
  border-radius: 1.25rem;
  overflow: hidden;
  position: relative;
  min-height: 320px;
}
.traveller-love__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}
.traveller-love__image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.3) 50%, transparent);
}
.traveller-love__image-content {
  position: relative;
  z-index: 10;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 2rem;
}
.traveller-love__image-content .number {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 3.75rem;
  color: white;
}
.traveller-love__image-content h4 {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  color: white;
  font-size: 1.125rem;
}
.traveller-love__image-content p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  margin-top: 0.25rem;
}

.popular-routes {
  padding: 6rem 0;
  background: hsl(220, 65%, 18%);
}
.popular-routes__header {
  display: flex;
  flex-direction: column;
  margin-bottom: 3rem;
}
@media (min-width: 768px) {
  .popular-routes__header {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}
.popular-routes__header .label {
  color: hsl(16, 85%, 58%);
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.popular-routes__header h2 {
  color: hsl(0, 0%, 100%);
  font-size: 1.875rem;
  margin-top: 0.5rem;
}
@media (min-width: 768px) {
  .popular-routes__header h2 {
    font-size: 2.25rem;
  }
}
.popular-routes__see-more {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: hsl(0, 0%, 100%);
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-top: 1rem;
  transition: all 0.3s ease;
}
.popular-routes__see-more:hover {
  background: rgba(255, 255, 255, 0.1);
}
.popular-routes__see-more svg {
  width: 1rem;
  height: 1rem;
}
@media (min-width: 768px) {
  .popular-routes__see-more {
    margin-top: 0;
  }
}
.popular-routes__grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1.5rem;
}
@media (min-width: 640px) {
  .popular-routes__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .popular-routes__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.popular-routes__card {
  cursor: pointer;
}
.popular-routes__card-image {
  border-radius: 1.25rem;
  overflow: hidden;
  aspect-ratio: 4/3;
  margin-bottom: 0.75rem;
}
.popular-routes__card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.popular-routes__card:hover .popular-routes__card-image img {
  transform: scale(1.05);
}
.popular-routes__card-route {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.25rem;
}
.popular-routes__card-route .cities {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: hsl(0, 0%, 100%);
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
}
.popular-routes__card-route .cities svg {
  width: 0.875rem;
  height: 0.875rem;
  color: hsl(16, 85%, 58%);
}
.popular-routes__card-route .date {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
}
.popular-routes__card-label {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.75rem;
  margin-bottom: 0.25rem;
}
.popular-routes__card-price {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: hsl(0, 0%, 100%);
}

.testimonials {
  padding: 6rem 0;
  background: hsl(220, 65%, 18%);
}
.testimonials__header {
  margin-bottom: 3rem;
}
.testimonials__header h2 {
  color: hsl(0, 0%, 100%);
  font-size: 1.875rem;
}
@media (min-width: 768px) {
  .testimonials__header h2 {
    font-size: 2.25rem;
  }
}
.testimonials__header h2 {
  margin-bottom: 0.5rem;
}
.testimonials__header p {
  color: rgba(255, 255, 255, 0.5);
}
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1.5rem;
  margin-bottom: 4rem;
}
@media (min-width: 768px) {
  .testimonials__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.testimonials__summary {
  background: hsl(0, 0%, 100%);
  border-radius: 1.25rem;
  box-shadow: 0 1px 3px hsla(220, 30%, 12%, 0.06), 0 4px 12px hsla(220, 30%, 12%, 0.04);
  border: 1px solid rgba(224.4, 228.82, 234.6, 0.3);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.testimonials__summary .excellent {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  color: hsl(220, 30%, 12%);
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
}
.testimonials__summary .stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 0.75rem;
}
.testimonials__summary .stars .star {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  background: hsl(152, 60%, 42%);
}
.testimonials__summary .stars .star svg {
  width: 1.25rem;
  height: 1.25rem;
  color: hsl(0, 0%, 100%);
  fill: hsl(0, 0%, 100%);
}
.testimonials__summary .review-count {
  color: hsl(220, 10%, 46%);
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}
.testimonials__summary .review-count strong {
  color: hsl(220, 30%, 12%);
  text-decoration: underline;
}
.testimonials__summary .trustpilot {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  margin-top: 0.25rem;
}
.testimonials__summary .trustpilot svg {
  width: 1.25rem;
  height: 1.25rem;
  color: hsl(152, 60%, 42%);
  fill: hsl(152, 60%, 42%);
}
.testimonials__summary .trustpilot span {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  color: hsl(220, 30%, 12%);
}
.testimonials__review {
  background: hsl(0, 0%, 100%);
  border-radius: 1.25rem;
  box-shadow: 0 1px 3px hsla(220, 30%, 12%, 0.06), 0 4px 12px hsla(220, 30%, 12%, 0.04);
  border: 1px solid rgba(224.4, 228.82, 234.6, 0.3);
  padding: 1.5rem;
}
.testimonials__review-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}
.testimonials__review .stars-small {
  display: flex;
  gap: 0.125rem;
}
.testimonials__review .stars-small .star {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  background: hsl(152, 60%, 42%);
}
.testimonials__review .stars-small .star svg {
  width: 0.875rem;
  height: 0.875rem;
  color: hsl(0, 0%, 100%);
  fill: hsl(0, 0%, 100%);
}
.testimonials__review .time {
  color: hsl(220, 10%, 46%);
  font-size: 0.75rem;
}
.testimonials__review h4 {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  color: hsl(220, 30%, 12%);
  margin-bottom: 0.5rem;
}
.testimonials__review p {
  color: hsl(220, 10%, 46%);
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}
.testimonials__review .name {
  font-weight: 600;
  color: hsl(220, 30%, 12%);
  font-size: 0.875rem;
}
.testimonials__airlines {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2.5rem;
}
.testimonials__airlines-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
@media (min-width: 768px) {
  .testimonials__airlines-inner {
    gap: 3.5rem;
  }
}
.testimonials__airlines-inner span {
  color: rgba(255, 255, 255, 0.4);
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .testimonials__airlines-inner span {
    font-size: 1rem;
  }
}

.faq {
  padding: 6rem 0;
  background: hsl(210, 20%, 98%);
}
.faq__header {
  margin-bottom: 3rem;
}
.faq__header h2 {
  color: hsl(220, 30%, 12%);
  font-size: 1.875rem;
}
@media (min-width: 768px) {
  .faq__header h2 {
    font-size: 2.25rem;
  }
}
.faq__grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 3rem;
}
@media (min-width: 768px) {
  .faq__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.faq__item {
  border-bottom: 1px solid rgba(224.4, 228.82, 234.6, 0.5);
}
.faq__item-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: none;
  padding: 1.25rem 0;
  text-align: left;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
  color: hsl(220, 30%, 12%);
  cursor: pointer;
}
.faq__item-trigger svg {
  width: 1.25rem;
  height: 1.25rem;
  color: hsl(220, 10%, 46%);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 1rem;
}
.faq__item-trigger.active svg {
  transform: rotate(180deg);
}
.faq__item-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}
.faq__item-content p {
  padding-bottom: 1.25rem;
  color: hsl(220, 10%, 46%);
  line-height: 1.6;
}
.faq__item.open .faq__item-content {
  max-height: 500px;
}

.cta {
  padding: 6rem 0;
  background: linear-gradient(135deg, hsl(220, 65%, 18%) 0%, hsl(220, 50%, 28%) 50%, hsl(200, 60%, 35%) 100%);
  text-align: center;
}
.cta h2 {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 1.875rem;
  color: white;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .cta h2 {
    font-size: 3rem;
  }
}
.cta p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2.5rem;
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.125rem;
}
.cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, hsl(16, 85%, 58%) 0%, hsl(30, 90%, 55%) 100%);
  color: hsl(0, 0%, 100%);
  padding: 0.75rem 2rem;
  border-radius: 1rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  box-shadow: 0 1px 3px hsla(220, 30%, 12%, 0.06), 0 4px 12px hsla(220, 30%, 12%, 0.04);
  transition: all 0.3s ease;
}
.cta__btn:hover {
  box-shadow: 0 8px 30px hsla(220, 30%, 12%, 0.12);
  transform: scale(1.02);
}
.cta__btn {
  padding: 1rem 2.5rem;
  font-size: 1.125rem;
}
.cta__btn svg {
  width: 1.25rem;
  height: 1.25rem;
}

.footer {
  background: hsl(220, 65%, 18%);
  color: hsl(0, 0%, 100%);
}
.footer__inner {
  padding: 4rem 0;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 2.5rem;
}
@media (min-width: 768px) {
  .footer__inner {
    grid-template-columns: repeat(4, 1fr);
  }
}
.footer__brand .logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.footer__brand .logo .icon {
  background: hsl(16, 85%, 58%);
  border-radius: 0.75rem;
  padding: 0.375rem;
  display: flex;
}
.footer__brand .logo .icon svg {
  width: 1.25rem;
  height: 1.25rem;
  color: hsl(0, 0%, 100%);
}
.footer__brand .logo span {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.025em;
}
.footer__brand p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  line-height: 1.6;
}
.footer__col h4 {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
  margin-bottom: 1rem;
}
.footer__col ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.875rem;
}
.footer__col li a, .footer__col li span {
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.3s ease;
}
.footer__col li a:hover {
  color: hsl(16, 85%, 58%);
}
.footer__contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.6);
}
.footer__contact-item svg {
  width: 1rem;
  height: 1rem;
  color: hsl(16, 85%, 58%);
}
.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.4);
}
@media (min-width: 768px) {
  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}
.footer__bottom-links {
  display: flex;
  gap: 1.5rem;
}
.footer__bottom-links a:hover {
  color: hsl(16, 85%, 58%);
}

.page-hero {
  background: linear-gradient(135deg, hsl(220, 65%, 18%) 0%, hsl(220, 50%, 28%) 50%, hsl(200, 60%, 35%) 100%);
  padding: 4rem 0 6rem;
  text-align: center;
}
.page-hero__icon {
  width: 3.5rem;
  height: 3.5rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin: 0 auto 1.5rem;
}
.page-hero__icon svg {
  width: 1.75rem;
  height: 1.75rem;
  color: hsl(16, 85%, 58%);
}
.page-hero__badge {
  color: hsl(16, 85%, 58%);
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}
.page-hero h1 {
  color: hsl(0, 0%, 100%);
  font-size: 1.875rem;
  margin-bottom: 0.75rem;
}
@media (min-width: 768px) {
  .page-hero h1 {
    font-size: 2.25rem;
  }
}
@media (min-width: 1024px) {
  .page-hero h1 {
    font-size: 3rem;
  }
}
.page-hero__subtitle {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.125rem;
  max-width: 42rem;
  margin: 0 auto;
}
.page-hero__meta {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
  margin-top: 0.75rem;
}

.page-layout {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: hsl(210, 20%, 98%);
}

.page-main {
  flex: 1;
  padding-top: 6rem;
}

.about__intro {
  padding: 6rem 0;
  max-width: 48rem;
  margin: 0 auto;
}
.about__intro p {
  color: hsl(220, 10%, 46%);
  font-size: 1.125rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.about__values {
  padding: 6rem 0;
  background: hsl(0, 0%, 100%);
}
.about__values-header {
  text-align: center;
  margin-bottom: 3rem;
}
.about__values-header .label {
  color: hsl(16, 85%, 58%);
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.about__values-header h2 {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  color: hsl(220, 30%, 12%);
  font-size: 1.875rem;
  margin-top: 0.5rem;
}
@media (min-width: 768px) {
  .about__values-header h2 {
    font-size: 2.25rem;
  }
}
.about__values-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 2rem;
  max-width: 56rem;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .about__values-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.about__values-card {
  background: hsl(210, 20%, 98%);
  border-radius: 1.25rem;
  padding: 2rem;
  box-shadow: 0 1px 3px hsla(220, 30%, 12%, 0.06), 0 4px 12px hsla(220, 30%, 12%, 0.04);
  text-align: center;
}
.about__values-card .icon-wrap {
  width: 3.5rem;
  height: 3.5rem;
  background: hsl(200, 60%, 94%);
  border-radius: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin: 0 auto 1.5rem;
}
.about__values-card .icon-wrap svg {
  width: 1.5rem;
  height: 1.5rem;
  color: hsl(220, 65%, 18%);
}
.about__values-card h3 {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  color: hsl(220, 30%, 12%);
  margin-bottom: 0.5rem;
}
.about__values-card p {
  font-size: 0.875rem;
  color: hsl(220, 10%, 46%);
}
.about__stats {
  padding: 6rem 0;
}
.about__stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
@media (min-width: 768px) {
  .about__stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.about__stats-item {
  text-align: center;
}
.about__stats-item .icon-wrap {
  width: 3.5rem;
  height: 3.5rem;
  background: hsl(200, 60%, 94%);
  border-radius: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin: 0 auto 1rem;
}
.about__stats-item .icon-wrap svg {
  width: 1.5rem;
  height: 1.5rem;
  color: hsl(220, 65%, 18%);
}
.about__stats-item .value {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 1.875rem;
  color: hsl(220, 30%, 12%);
}
.about__stats-item .label {
  font-size: 0.875rem;
  color: hsl(220, 10%, 46%);
  margin-top: 0.25rem;
}

.contact__cards {
  padding: 2.5rem 0;
  margin-top: -2.5rem;
  position: relative;
  z-index: 10;
}
.contact__cards-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1rem;
  max-width: 64rem;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .contact__cards-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.contact__cards-card {
  background: hsl(0, 0%, 100%);
  border-radius: 1.25rem;
  box-shadow: 0 1px 3px hsla(220, 30%, 12%, 0.06), 0 4px 12px hsla(220, 30%, 12%, 0.04);
  padding: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.contact__cards-card .icon-wrap {
  width: 3rem;
  height: 3rem;
  background: hsl(200, 60%, 94%);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact__cards-card .icon-wrap svg {
  width: 1.25rem;
  height: 1.25rem;
  color: hsl(220, 65%, 18%);
}
.contact__cards-card .title {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
  color: hsl(220, 30%, 12%);
}
.contact__cards-card .value {
  color: hsl(220, 30%, 12%);
  font-weight: 500;
  font-size: 0.875rem;
}
.contact__cards-card .sub {
  color: hsl(220, 10%, 46%);
  font-size: 0.75rem;
  margin-top: 0.125rem;
}
.contact__form-section {
  padding: 6rem 0;
  max-width: 48rem;
  margin: 0 auto;
}
.contact__form-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.contact__form-header .icon-wrap {
  width: 2.5rem;
  height: 2.5rem;
  background: hsl(200, 60%, 94%);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact__form-header .icon-wrap svg {
  width: 1.25rem;
  height: 1.25rem;
  color: hsl(220, 65%, 18%);
}
.contact__form-header h2 {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: hsl(220, 30%, 12%);
}
.contact__form {
  background: hsl(0, 0%, 100%);
  border-radius: 1.25rem;
  box-shadow: 0 1px 3px hsla(220, 30%, 12%, 0.06), 0 4px 12px hsla(220, 30%, 12%, 0.04);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.contact__form-row {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1rem;
}
@media (min-width: 768px) {
  .contact__form-row {
    grid-template-columns: repeat(2, 1fr);
  }
}
.contact__form label {
  font-size: 0.875rem;
  font-weight: 500;
  color: hsl(220, 10%, 46%);
  margin-bottom: 0.25rem;
  display: block;
}
.contact__form input, .contact__form textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  background: hsl(210, 20%, 95%);
  border: none;
  border-radius: 1rem;
  color: hsl(220, 30%, 12%);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 500;
  outline: none;
  transition: all 0.3s ease;
}
.contact__form input:focus, .contact__form textarea:focus {
  box-shadow: 0 0 0 2px hsl(16, 85%, 58%);
}
.contact__form input::placeholder, .contact__form textarea::placeholder {
  color: hsla(220, 10%, 46%, 0.5);
}
.contact__form textarea {
  resize: none;
  min-height: 120px;
}
.contact__submit {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, hsl(16, 85%, 58%) 0%, hsl(30, 90%, 55%) 100%);
  color: hsl(0, 0%, 100%);
  padding: 0.75rem 2rem;
  border-radius: 1rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  box-shadow: 0 1px 3px hsla(220, 30%, 12%, 0.06), 0 4px 12px hsla(220, 30%, 12%, 0.04);
  transition: all 0.3s ease;
}
.contact__submit:hover {
  box-shadow: 0 8px 30px hsla(220, 30%, 12%, 0.12);
  transform: scale(1.02);
}
.contact__submit svg {
  width: 1rem;
  height: 1rem;
}

.deals__section {
  padding: 6rem 0;
}
.deals__grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1.5rem;
}
@media (min-width: 640px) {
  .deals__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .deals__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.deals__card {
  background: hsl(0, 0%, 100%);
  border-radius: 1.25rem;
  box-shadow: 0 1px 3px hsla(220, 30%, 12%, 0.06), 0 4px 12px hsla(220, 30%, 12%, 0.04);
  transition: all 0.3s ease;
}
.deals__card:hover {
  box-shadow: 0 4px 16px hsla(220, 30%, 12%, 0.1), 0 8px 32px hsla(220, 30%, 12%, 0.06);
  border-color: hsla(16, 85%, 58%, 0.2);
}
.deals__card {
  overflow: hidden;
  border: 1px solid transparent;
}
.deals__card-banner {
  background: hsl(16, 85%, 58%);
  padding: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.deals__card-banner .discount {
  color: hsl(0, 0%, 100%);
  font-weight: 600;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.deals__card-banner .airline-name {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.75rem;
}
.deals__card-body {
  padding: 1.5rem;
}
.deals__card-body .flag {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.deals__card-body .route {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}
.deals__card-body .route span {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  color: hsl(220, 30%, 12%);
}
.deals__card-body .route svg {
  width: 1rem;
  height: 1rem;
  color: hsl(16, 85%, 58%);
}
.deals__card-body .starting {
  color: hsl(220, 10%, 46%);
  font-size: 0.875rem;
  margin-bottom: 1rem;
}
.deals__card-body .bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.deals__card-body .price {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 1.875rem;
  color: hsl(220, 30%, 12%);
}
.deals__card-body .enquire-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: hsl(220, 65%, 18%);
  color: hsl(0, 0%, 100%);
  padding: 0.75rem 2rem;
  border-radius: 1rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}
.deals__card-body .enquire-btn:hover {
  opacity: 0.9;
}
.deals__card-body .enquire-btn {
  font-size: 0.875rem;
  padding: 0.5rem 1.25rem;
  opacity: 0;
  transition: all 0.3s ease;
}
.deals__card:hover .enquire-btn {
  opacity: 1;
}

.search-results__search-bar {
  background: hsl(220, 65%, 18%);
  padding-bottom: 2rem;
}
.search-results__layout {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 2rem 0;
}
@media (min-width: 768px) {
  .search-results__layout {
    flex-direction: row;
  }
}
.search-results__sidebar {
  width: 100%;
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .search-results__sidebar {
    width: 16rem;
  }
}
.search-results__sidebar-inner {
  background: hsl(0, 0%, 100%);
  border-radius: 1.25rem;
  box-shadow: 0 1px 3px hsla(220, 30%, 12%, 0.06), 0 4px 12px hsla(220, 30%, 12%, 0.04);
  padding: 1.5rem;
  position: sticky;
  top: 7rem;
}
.search-results__sidebar h3 {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
  color: hsl(220, 30%, 12%);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.search-results__sidebar h3 svg {
  width: 1rem;
  height: 1rem;
}
.search-results__sidebar-group {
  margin-bottom: 1rem;
}
.search-results__sidebar-group label {
  font-size: 0.875rem;
  font-weight: 500;
  color: hsl(220, 10%, 46%);
  margin-bottom: 0.5rem;
  display: block;
}
.search-results__sidebar-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.search-results__sidebar-btn {
  padding: 0.5rem 1rem;
  border-radius: 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  text-align: left;
  border: none;
  transition: all 0.3s ease;
  background: hsl(210, 20%, 95%);
  color: hsl(220, 30%, 12%);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}
.search-results__sidebar-btn:hover {
  background: hsl(200, 60%, 94%);
}
.search-results__sidebar-btn.active {
  background: hsl(220, 65%, 18%);
  color: hsl(0, 0%, 100%);
}
.search-results__sidebar-btn svg {
  width: 0.75rem;
  height: 0.75rem;
}
.search-results__main {
  flex: 1;
}
.search-results__header {
  margin-bottom: 1.5rem;
}
.search-results__header h2 {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: hsl(220, 30%, 12%);
}
.search-results__header p {
  color: hsl(220, 10%, 46%);
  font-size: 0.875rem;
}
.search-results__list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.flight-card {
  background: hsl(0, 0%, 100%);
  border-radius: 1.25rem;
  box-shadow: 0 1px 3px hsla(220, 30%, 12%, 0.06), 0 4px 12px hsla(220, 30%, 12%, 0.04);
  transition: all 0.3s ease;
}
.flight-card:hover {
  box-shadow: 0 4px 16px hsla(220, 30%, 12%, 0.1), 0 8px 32px hsla(220, 30%, 12%, 0.06);
  border-color: hsla(16, 85%, 58%, 0.2);
}
.flight-card {
  overflow: hidden;
  cursor: pointer;
  border: 1px solid transparent;
}
.flight-card__inner {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 768px) {
  .flight-card__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
.flight-card__airline {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 160px;
}
.flight-card__airline .icon {
  width: 2.75rem;
  height: 2.75rem;
  background: hsl(200, 60%, 94%);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}
.flight-card__airline .icon svg {
  width: 1.25rem;
  height: 1.25rem;
  color: hsl(220, 65%, 18%);
}
.flight-card__airline .name {
  font-weight: 600;
  color: hsl(220, 30%, 12%);
  font-size: 0.875rem;
}
.flight-card__airline .number {
  font-size: 0.75rem;
  color: hsl(220, 10%, 46%);
}
.flight-card:hover .flight-card__airline .icon {
  background: rgba(238.935, 105.417, 56.865, 0.1);
}
.flight-card__route {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex: 1;
}
.flight-card__route .time-block.right {
  text-align: right;
}
.flight-card__route .time-block .time {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: hsl(220, 30%, 12%);
}
.flight-card__route .time-block .airport {
  font-size: 0.75rem;
  color: hsl(220, 10%, 46%);
}
.flight-card__route .line {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  padding: 0 1rem;
}
.flight-card__route .line .duration {
  font-size: 0.75rem;
  color: hsl(220, 10%, 46%);
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.flight-card__route .line .duration svg {
  width: 0.75rem;
  height: 0.75rem;
}
.flight-card__route .line .bar {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.flight-card__route .line .bar .dash {
  flex: 1;
  height: 1px;
  background: hsl(214, 20%, 90%);
  transition: all 0.3s ease;
}
.flight-card__route .line .bar svg {
  width: 0.75rem;
  height: 0.75rem;
  color: hsl(16, 85%, 58%);
}
.flight-card__route .line .stops {
  font-size: 0.75rem;
  font-weight: 500;
  color: hsl(16, 85%, 58%);
}
.flight-card:hover .flight-card__route .bar .dash {
  background: rgba(238.935, 105.417, 56.865, 0.3);
}
.flight-card__price {
  text-align: right;
  min-width: 160px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.5rem;
}
.flight-card__price .amenities {
  display: flex;
  gap: 0.25rem;
}
.flight-card__price .amenities .amenity {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: calc(0.75rem - 2px);
  background: hsl(200, 60%, 94%);
  color: hsl(220, 10%, 46%);
}
.flight-card__price .amenities .amenity svg {
  width: 0.875rem;
  height: 0.875rem;
}
.flight-card__price .cabin {
  font-size: 0.75rem;
  color: hsl(220, 10%, 46%);
}
.flight-card__price .amount {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: hsl(220, 30%, 12%);
}
.flight-card__price .view-btn {
  background: linear-gradient(135deg, hsl(16, 85%, 58%) 0%, hsl(30, 90%, 55%) 100%);
  color: hsl(0, 0%, 100%);
  padding: 0.5rem 1.25rem;
  border-radius: 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  border: none;
  opacity: 0;
  transition: all 0.3s ease;
}
.flight-card:hover .view-btn {
  opacity: 1;
}

.flight-details {
  padding-bottom: 5rem;
  max-width: 56rem;
  margin: 0 auto;
  padding-top: 1.5rem;
}
.flight-details__back {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: hsl(220, 10%, 46%);
  background: none;
  border: none;
  margin-bottom: 1.5rem;
  transition: color 0.3s ease;
  cursor: pointer;
}
.flight-details__back:hover {
  color: hsl(220, 30%, 12%);
}
.flight-details__back svg {
  width: 1rem;
  height: 1rem;
}
.flight-details__card {
  background: hsl(0, 0%, 100%);
  border-radius: 1.25rem;
  box-shadow: 0 1px 3px hsla(220, 30%, 12%, 0.06), 0 4px 12px hsla(220, 30%, 12%, 0.04);
  overflow: hidden;
}
.flight-details__header {
  background: linear-gradient(135deg, hsl(220, 65%, 18%) 0%, hsl(220, 50%, 28%) 50%, hsl(200, 60%, 35%) 100%);
  padding: 2rem;
}
.flight-details__header-top {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.flight-details__header-top .icon {
  width: 3rem;
  height: 3rem;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.flight-details__header-top .icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: hsl(0, 0%, 100%);
}
.flight-details__header-top h1 {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: hsl(0, 0%, 100%);
}
.flight-details__header-top .flight-no {
  color: rgba(255, 255, 255, 0.6);
}
.flight-details__header-route {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.flight-details__header-route .time {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 2.5rem;
  color: hsl(0, 0%, 100%);
}
.flight-details__header-route .city {
  color: rgba(255, 255, 255, 0.6);
}
.flight-details__header-route .middle {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}
.flight-details__header-route .middle .duration {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.flight-details__header-route .middle .duration svg {
  width: 0.75rem;
  height: 0.75rem;
}
.flight-details__header-route .middle .line {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.flight-details__header-route .middle .line .dash {
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
}
.flight-details__header-route .middle .line svg {
  width: 1rem;
  height: 1rem;
  color: hsl(16, 85%, 58%);
}
.flight-details__header-route .middle .stops {
  font-size: 0.875rem;
  font-weight: 500;
  color: hsl(16, 85%, 58%);
}
.flight-details__body {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.flight-details__pricing {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
  background: hsl(200, 60%, 94%);
  border-radius: 1.25rem;
}
.flight-details__pricing .cabin {
  font-size: 0.875rem;
  color: hsl(220, 10%, 46%);
}
.flight-details__pricing .price {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 1.875rem;
  color: hsl(220, 30%, 12%);
}
.flight-details__pricing .tax {
  font-size: 0.75rem;
  color: hsl(220, 10%, 46%);
}
.flight-details__pricing .book-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, hsl(16, 85%, 58%) 0%, hsl(30, 90%, 55%) 100%);
  color: hsl(0, 0%, 100%);
  padding: 0.75rem 2rem;
  border-radius: 1rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  box-shadow: 0 1px 3px hsla(220, 30%, 12%, 0.06), 0 4px 12px hsla(220, 30%, 12%, 0.04);
  transition: all 0.3s ease;
}
.flight-details__pricing .book-btn:hover {
  box-shadow: 0 8px 30px hsla(220, 30%, 12%, 0.12);
  transform: scale(1.02);
}
.flight-details__pricing .book-btn {
  font-size: 1.125rem;
  padding: 0.875rem 2rem;
}
.flight-details__breakdown h3 {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
  color: hsl(220, 30%, 12%);
  margin-bottom: 1rem;
}
.flight-details__breakdown-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
}
.flight-details__breakdown-row .label {
  color: hsl(220, 10%, 46%);
}
.flight-details__breakdown-row .amount {
  font-weight: 500;
  color: hsl(220, 30%, 12%);
}
.flight-details__breakdown-total {
  border-top: 1px solid hsl(214, 20%, 90%);
  padding-top: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 600;
  color: hsl(220, 30%, 12%);
}
.flight-details__info-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .flight-details__info-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.flight-details__info-card {
  padding: 1.25rem;
  background: hsl(210, 20%, 95%);
  border-radius: 1.25rem;
}
.flight-details__info-card h4 {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
  color: hsl(220, 30%, 12%);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}
.flight-details__info-card h4 svg {
  width: 1rem;
  height: 1rem;
}
.flight-details__info-card ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.flight-details__info-card li {
  font-size: 0.875rem;
  color: hsl(220, 10%, 46%);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.flight-details__info-card li svg {
  width: 1rem;
  height: 1rem;
}
.flight-details__info-card li.success svg {
  color: hsl(152, 60%, 42%);
}

.enquiry {
  padding-bottom: 5rem;
  max-width: 56rem;
  margin: 0 auto;
  padding-top: 1.5rem;
}
.enquiry__title {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 1.875rem;
  color: hsl(220, 30%, 12%);
  margin-bottom: 0.5rem;
}
.enquiry__subtitle {
  color: hsl(220, 10%, 46%);
  margin-bottom: 2rem;
}
.enquiry__flight-summary {
  background: hsla(220, 65%, 18%, 0.05);
  border: 1px solid hsla(220, 65%, 18%, 0.1);
  border-radius: 1.25rem;
  padding: 1.5rem;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 768px) {
  .enquiry__flight-summary {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
.enquiry__flight-summary .flight-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.enquiry__flight-summary .flight-info .icon {
  width: 2.5rem;
  height: 2.5rem;
  background: hsla(220, 65%, 18%, 0.1);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.enquiry__flight-summary .flight-info .icon svg {
  width: 1.25rem;
  height: 1.25rem;
  color: hsl(220, 65%, 18%);
}
.enquiry__flight-summary .flight-info .name {
  font-weight: 600;
  color: hsl(220, 30%, 12%);
}
.enquiry__flight-summary .flight-info .route {
  font-size: 0.875rem;
  color: hsl(220, 10%, 46%);
}
.enquiry__flight-summary .price {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: hsl(220, 30%, 12%);
}
.enquiry__steps {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}
.enquiry__steps-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.enquiry__steps-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 700;
  background: hsl(210, 20%, 95%);
  color: hsl(220, 10%, 46%);
}
.enquiry__steps-number.active {
  background: hsl(16, 85%, 58%);
  color: hsl(0, 0%, 100%);
}
.enquiry__steps-label {
  display: none;
  font-size: 0.875rem;
  font-weight: 500;
  color: hsl(220, 10%, 46%);
}
.enquiry__steps-label.active {
  color: hsl(220, 30%, 12%);
}
@media (min-width: 640px) {
  .enquiry__steps-label {
    display: block;
  }
}
.enquiry__steps-line {
  width: 2rem;
  height: 1px;
  background: hsl(214, 20%, 90%);
}
.enquiry__steps-line.active {
  background: hsl(16, 85%, 58%);
}
.enquiry__form {
  background: hsl(0, 0%, 100%);
  border-radius: 1.25rem;
  box-shadow: 0 1px 3px hsla(220, 30%, 12%, 0.06), 0 4px 12px hsla(220, 30%, 12%, 0.04);
  padding: 2rem;
}
.enquiry__form-title {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
  font-size: 1.125rem;
  color: hsl(220, 30%, 12%);
  margin-bottom: 1rem;
}
.enquiry__form-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1rem;
}
@media (min-width: 768px) {
  .enquiry__form-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.enquiry__field label {
  font-size: 0.875rem;
  font-weight: 500;
  color: hsl(220, 10%, 46%);
  margin-bottom: 0.25rem;
  display: block;
}
.enquiry__field .input-wrap {
  position: relative;
}
.enquiry__field .input-wrap svg {
  position: absolute;
  left: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1rem;
  height: 1rem;
  color: hsl(220, 10%, 46%);
}
.enquiry__field .input-wrap input {
  width: 100%;
  padding: 0.75rem 1rem;
  background: hsl(210, 20%, 95%);
  border: none;
  border-radius: 1rem;
  color: hsl(220, 30%, 12%);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 500;
  outline: none;
  transition: all 0.3s ease;
}
.enquiry__field .input-wrap input:focus {
  box-shadow: 0 0 0 2px hsl(16, 85%, 58%);
}
.enquiry__field .input-wrap input::placeholder {
  color: hsla(220, 10%, 46%, 0.5);
}
.enquiry__field .input-wrap input {
  padding-left: 2.5rem;
}
.enquiry__field input, .enquiry__field select {
  width: 100%;
  padding: 0.75rem 1rem;
  background: hsl(210, 20%, 95%);
  border: none;
  border-radius: 1rem;
  color: hsl(220, 30%, 12%);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 500;
  outline: none;
  transition: all 0.3s ease;
}
.enquiry__field input:focus, .enquiry__field select:focus {
  box-shadow: 0 0 0 2px hsl(16, 85%, 58%);
}
.enquiry__field input::placeholder, .enquiry__field select::placeholder {
  color: hsla(220, 10%, 46%, 0.5);
}
.enquiry__actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
}
.enquiry__actions .back-btn {
  padding: 0.75rem 1.5rem;
  border-radius: 1rem;
  font-weight: 500;
  color: hsl(220, 10%, 46%);
  background: none;
  border: none;
  transition: color 0.3s ease;
}
.enquiry__actions .back-btn:hover {
  color: hsl(220, 30%, 12%);
}
.enquiry__actions .next-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, hsl(16, 85%, 58%) 0%, hsl(30, 90%, 55%) 100%);
  color: hsl(0, 0%, 100%);
  padding: 0.75rem 2rem;
  border-radius: 1rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  box-shadow: 0 1px 3px hsla(220, 30%, 12%, 0.06), 0 4px 12px hsla(220, 30%, 12%, 0.04);
  transition: all 0.3s ease;
}
.enquiry__actions .next-btn:hover {
  box-shadow: 0 8px 30px hsla(220, 30%, 12%, 0.12);
  transform: scale(1.02);
}
.enquiry__actions .submit-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, hsl(16, 85%, 58%) 0%, hsl(30, 90%, 55%) 100%);
  color: hsl(0, 0%, 100%);
  padding: 0.75rem 2rem;
  border-radius: 1rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  box-shadow: 0 1px 3px hsla(220, 30%, 12%, 0.06), 0 4px 12px hsla(220, 30%, 12%, 0.04);
  transition: all 0.3s ease;
}
.enquiry__actions .submit-btn:hover {
  box-shadow: 0 8px 30px hsla(220, 30%, 12%, 0.12);
  transform: scale(1.02);
}
.enquiry__actions .submit-btn {
  font-size: 1.125rem;
  padding: 0.75rem 2rem;
  box-shadow: 0 1px 3px hsla(220, 30%, 12%, 0.06), 0 4px 12px hsla(220, 30%, 12%, 0.04);
}
.enquiry__review-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .enquiry__review-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.enquiry__review-card {
  background: hsl(210, 20%, 95%);
  border-radius: 1.25rem;
  padding: 1.25rem;
}
.enquiry__review-card h4 {
  font-weight: 600;
  color: hsl(220, 30%, 12%);
  margin-bottom: 0.75rem;
}
.enquiry__review-card p {
  font-size: 0.875rem;
  color: hsl(220, 10%, 46%);
  margin-bottom: 0.25rem;
}
.enquiry__success {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 70vh;
  text-align: center;
}
.enquiry__success-icon {
  width: 5rem;
  height: 5rem;
  background: hsla(152, 60%, 42%, 0.1);
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin: 0 auto 1.5rem;
}
.enquiry__success-icon svg {
  width: 2.5rem;
  height: 2.5rem;
  color: hsl(152, 60%, 42%);
}
.enquiry__success h1 {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 1.875rem;
  color: hsl(220, 30%, 12%);
  margin-bottom: 0.75rem;
}
.enquiry__success p {
  color: hsl(220, 10%, 46%);
  margin-bottom: 2rem;
  max-width: 28rem;
}
.enquiry__success .home-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, hsl(16, 85%, 58%) 0%, hsl(30, 90%, 55%) 100%);
  color: hsl(0, 0%, 100%);
  padding: 0.75rem 2rem;
  border-radius: 1rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  box-shadow: 0 1px 3px hsla(220, 30%, 12%, 0.06), 0 4px 12px hsla(220, 30%, 12%, 0.04);
  transition: all 0.3s ease;
}
.enquiry__success .home-btn:hover {
  box-shadow: 0 8px 30px hsla(220, 30%, 12%, 0.12);
  transform: scale(1.02);
}

.legal {
  padding: 6rem 0;
  max-width: 56rem;
  margin: 0 auto;
}
.legal__intro {
  background: hsl(0, 0%, 100%);
  border-radius: 1.25rem;
  box-shadow: 0 1px 3px hsla(220, 30%, 12%, 0.06), 0 4px 12px hsla(220, 30%, 12%, 0.04);
  padding: 2rem;
  margin-bottom: 2rem;
}
.legal__intro p {
  color: hsl(220, 10%, 46%);
  line-height: 1.6;
}
.legal__sections {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.legal__section {
  background: hsl(0, 0%, 100%);
  border-radius: 1.25rem;
  box-shadow: 0 1px 3px hsla(220, 30%, 12%, 0.06), 0 4px 12px hsla(220, 30%, 12%, 0.04);
  padding: 2rem;
}
.legal__section-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}
.legal__section-header .icon-wrap {
  width: 2.5rem;
  height: 2.5rem;
  background: hsl(200, 60%, 94%);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.legal__section-header .icon-wrap svg {
  width: 1.25rem;
  height: 1.25rem;
  color: hsl(220, 65%, 18%);
}
.legal__section-header h2 {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: hsl(220, 30%, 12%);
}
.legal__section ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.legal__section li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: hsl(220, 10%, 46%);
  line-height: 1.6;
}
.legal__section li .dot {
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 9999px;
  background: hsl(16, 85%, 58%);
  margin-top: 0.625rem;
  flex-shrink: 0;
}
.legal__section p {
  color: hsl(220, 10%, 46%);
  line-height: 1.6;
}
.legal__contact {
  background: hsl(200, 60%, 94%);
  border-radius: 1.25rem;
  padding: 2rem;
  margin-top: 2rem;
}
.legal__contact-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.legal__contact-header svg {
  width: 1.25rem;
  height: 1.25rem;
  color: hsl(220, 65%, 18%);
}
.legal__contact-header h3 {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
  color: hsl(220, 30%, 12%);
}
.legal__contact p {
  color: hsl(220, 10%, 46%);
  margin-bottom: 0.5rem;
}
.legal__contact .info {
  color: hsl(220, 30%, 12%);
  font-weight: 500;
}

.not-found {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 70vh;
  text-align: center;
}
.not-found__icon {
  width: 5rem;
  height: 5rem;
  background: hsl(200, 60%, 94%);
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin: 0 auto 1.5rem;
}
.not-found__icon svg {
  width: 2.5rem;
  height: 2.5rem;
  color: hsl(220, 65%, 18%);
}
.not-found h1 {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 3.75rem;
  color: hsl(220, 30%, 12%);
  margin-bottom: 1rem;
}
.not-found p {
  font-size: 1.25rem;
  color: hsl(220, 10%, 46%);
  margin-bottom: 2rem;
}
.not-found .home-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, hsl(16, 85%, 58%) 0%, hsl(30, 90%, 55%) 100%);
  color: hsl(0, 0%, 100%);
  padding: 0.75rem 2rem;
  border-radius: 1rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  box-shadow: 0 1px 3px hsla(220, 30%, 12%, 0.06), 0 4px 12px hsla(220, 30%, 12%, 0.04);
  transition: all 0.3s ease;
}
.not-found .home-btn:hover {
  box-shadow: 0 8px 30px hsla(220, 30%, 12%, 0.12);
  transform: scale(1.02);
}

.toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: hsl(220, 30%, 12%);
  color: hsl(210, 20%, 98%);
  padding: 1rem 1.5rem;
  border-radius: 1rem;
  font-weight: 500;
  font-size: 0.875rem;
  box-shadow: 0 8px 30px hsla(220, 30%, 12%, 0.12);
  z-index: 100;
  transform: translateY(120%);
  opacity: 0;
  transition: all 0.3s ease;
}
.toast.show {
  transform: translateY(0);
  opacity: 1;
}

/*# sourceMappingURL=styles.css.map */
