:root {
  --bg-black: #000000;
  --bg-dark: #050505;
  --text-white: #ffffff;
  --text-soft: #b9c0d0;
  --border-soft: rgba(255, 255, 255, 0.18);
  --brand-orange: #ff7a14;
  --brand-orange-hover: #e96908;
}

/* RESET */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  background-color: var(--bg-black);
  color: var(--text-white);
}

/* NAVBAR */
.custom-navbar {
  background-color: #000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  min-height: 90px;
}

.brand-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff !important;
}

.navbar-dark .navbar-nav .nav-link {
  color: #fff;
  font-size: 0.95rem;
  font-weight: 500;
  padding: 0.5rem 0.7rem;
  transition: color 0.3s ease;
  white-space: nowrap;
}

.navbar-dark .navbar-nav .nav-link:hover {
  color: var(--brand-orange);
}

/* HERO */
.hero-section {
  position: relative;
  min-height: calc(100vh - 90px);
  background: url("../img/home_ecuador_parapente.jpg") center center / cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 120px 0 80px;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 1.2rem;
  color: #f7e7d3;
}

.hero-subtitle {
  font-size: clamp(1.1rem, 1.8vw, 1.5rem);
  color: #f1e2cf;
  margin-bottom: 2rem;
  max-width: 700px;
}

/* BUTTON */
.btn-brand {
  background-color: var(--brand-orange);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 12px 24px;
  font-size: 0.95rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-brand:hover {
  background-color: var(--brand-orange-hover);
}

/* SECTIONS */
.section-dark {
  background-color: #000;
  padding: 90px 0;
}

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: #fff;
}

/* EXPERIENCES */
.experience-image-wrap {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 0 25px rgba(61, 127, 255, 0.15);
}

.experience-image {
  width: 100%;
  height: 380px;
  object-fit: cover;
}

.experience-item {
  margin-bottom: 2.5rem;
}

.experience-item h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.experience-item p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-soft);
  max-width: 520px;
}

/* CONTACT CARDS */
.contact-card {
  gap: 1.2rem;
}

.contact-icon-box {
  width: 58px;
  height: 58px;
  background-color: var(--brand-orange);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-icon {
  font-size: 1.4rem;
}

.contact-label {
  font-size: 1rem;
  color: var(--text-soft);
}

.contact-link {
  font-size: 1.2rem;
  font-weight: 600;
  color: #fff;
  text-decoration: underline;
}

.contact-link:hover {
  color: var(--brand-orange);
}

/* FORM */
.booking-section {
  padding-top: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.custom-label {
  font-size: 0.95rem;
  color: var(--text-soft);
}

.custom-input {
  background-color: transparent;
  border: 1px solid var(--border-soft);
  border-radius: 6px;
  color: #fff;
  min-height: 48px;
  padding: 10px 14px;
  font-size: 0.95rem;
}

.custom-input:focus {
  border-color: var(--brand-orange);
  box-shadow: none;
}

.custom-textarea {
  min-height: 220px;
}

/* FOOTER */
.site-footer {
  background-color: #000;
  padding: 70px 0;
}

.footer-brand {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer-text {
  font-size: 0.95rem;
  color: var(--text-soft);
  max-width: 420px;
}

.footer-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer-logo {
  max-width: 220px;
  width: 100%;
  height: auto;
  opacity: 0.9;
  transition: all 0.3s ease;
  filter: brightness(1.1);
}

.footer-logo:hover {
  opacity: 1;
  transform: scale(1.03);
}

/* =========================================================
   FLIGHTS PAGE
========================================================= */

/* PAGE HERO */
.flights-hero {
  padding: 110px 0 90px;
  background-color: #000;
}

.flights-eyebrow {
  color: var(--brand-orange);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 1rem;
  max-width: 430px;
}

.flights-main-title {
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  font-weight: 700;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 1.5rem;
  max-width: 520px;
}

.flights-hero .btn-brand {
  min-width: 170px;
}

.flights-hero-image-wrap {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 0 30px rgba(0, 132, 255, 0.16);
}

.flights-hero-image {
  width: 100%;
  height: 360px;
  object-fit: cover;
  display: block;
}

/* LOCATIONS */
.locations-section {
  padding: 40px 0 90px;
  background-color: #000;
}

.locations-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 2rem;
}

.flight-card {
  display: block;
  text-decoration: none;
  color: inherit;
}

.flight-card-image-wrap {
  border-radius: 10px;
  overflow: hidden;
  background: #111;
  margin-bottom: 0.9rem;
}

.flight-card-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.flight-card:hover .flight-card-image {
  transform: scale(1.03);
  opacity: 0.96;
}

.flight-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.flight-card-title {
  font-size: 1rem;
  font-weight: 500;
  color: #fff;
  margin: 0;
}

.flight-card-price {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--brand-orange);
  margin: 0;
}

/* INCLUDED SECTION */
.included-section {
  padding: 90px 0;
  background-color: #000;
}

.included-image-wrap {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 0 28px rgba(0, 132, 255, 0.15);
}

.included-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}

.included-content {
  padding-left: 1rem;
}

.included-title {
  font-size: clamp(1.9rem, 3vw, 2.7rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 2.5rem;
}

.included-item {
  margin-bottom: 2.7rem;
}

.included-item:last-child {
  margin-bottom: 0;
}

.included-item h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.45rem;
}

.included-item p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-soft);
  max-width: 520px;
}

/* =========================================================
   FLIGHT MODAL
========================================================= */

.flight-modal .modal-content {
  border: 0;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
}

.flight-modal .modal-header {
  padding: 2rem 2.5rem 1rem;
  border-bottom: 0;
  align-items: flex-start;
  position: relative;
}

.flight-modal .modal-title-wrap {
  max-width: 900px;
}

.flight-modal .modal-title {
  font-size: clamp(2rem, 3vw, 2.6rem);
  font-weight: 700;
  color: #2f3747;
  margin-bottom: 0.75rem;
}

.flight-modal .modal-subtitle {
  margin: 0;
  font-size: 1rem;
  color: #4f596b;
  line-height: 1.6;
}

.flight-modal .btn-close {
  position: absolute;
  top: 1.6rem;
  right: 1.8rem;
}

.flight-modal .modal-body {
  padding: 0 2.5rem 2rem;
}

.flight-modal-divider {
  height: 1px;
  background: #dfe3ea;
  margin: 0 0 1.35rem;
}

.flight-modal-top {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.6rem;
}

.flight-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.7rem 1.2rem;
  border: 1px solid #d7dbe3;
  background: #f3f3f6;
  color: #323a49;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  white-space: nowrap;
}

.flight-modal-content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(280px, 0.8fr);
  gap: 2rem;
  align-items: start;
}

.flight-modal-text p {
  font-size: 1rem;
  line-height: 1.65;
  color: #3d4657;
  margin-bottom: 1.4rem;
}

.flight-modal-section {
  border-top: 1px solid #dfe3ea;
  padding-top: 1rem;
  margin-top: 1rem;
}

.flight-modal-section h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #313949;
  margin-bottom: 0.8rem;
}

.flight-modal-section ul {
  margin: 0;
  padding-left: 1.2rem;
}

.flight-modal-section li {
  margin-bottom: 0.45rem;
  color: #3d4657;
  font-size: 0.98rem;
  line-height: 1.55;
}

.flight-modal-side-image-wrap {
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 1rem;
}

.flight-modal-side-image {
  width: 100%;
  height: 470px;
  object-fit: cover;
  display: block;
}

.flight-social-title {
  font-size: 0.95rem;
  font-weight: 500;
  color: #3d4657;
  margin-bottom: 0.8rem;
}

.flight-socials {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.flight-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 8px;
  overflow: hidden;
  text-decoration: none;
}

.flight-social-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* MODAL FOOTER ACTIONS */
.flight-modal-actions {
  border-top: 1px solid #dfe3ea;
  margin-top: 1.2rem;
  padding-top: 1.2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.flight-socials {
  display: flex;
  gap: 16px;
  align-items: center;
}

.flight-social-link {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 52px;
}

.flight-social-link img {
  max-width: 100%;
  max-height: 100%;
  display: block;
}

.btn-modal-orange,
.btn-modal-green,
.btn-modal-light {
  min-height: 52px;
  border-radius: 8px;
  padding: 0.8rem 1.3rem;
  font-size: 0.98rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  border: 1px solid transparent;
  text-decoration: none;
  transition: all 0.25s ease;
}

.btn-modal-orange {
  background: var(--brand-orange);
  color: #fff;
}

.btn-modal-orange:hover {
  background: var(--brand-orange-hover);
  color: #fff;
}

.btn-modal-green {
  background: #37a72f;
  color: #fff;
}

.btn-modal-green:hover {
  background: #2f9328;
  color: #fff;
}

.btn-modal-light {
  background: #f7f7f8;
  color: #313949;
  border-color: #d7dbe3;
}

.btn-modal-light:hover {
  background: #ececef;
  color: #313949;
}

/* MODAL SIZE */
.modal-dialog.modal-flight-xl {
  max-width: 1380px;
}

/* =========================================================
   COURSES PAGE
========================================================= */

.course-section {
  background-color: #000;
  padding: 85px 0;
}

.course-section-first {
  padding-top: 75px;
}

.course-section-border {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.course-image-wrap {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 0 28px rgba(0, 132, 255, 0.14);
}

.course-image {
  width: 100%;
  height: 410px;
  object-fit: cover;
  display: block;
}

.course-content {
  padding-left: 0.5rem;
}

.course-title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 2.8rem;
}

.course-item {
  margin-bottom: 3rem;
}

.course-item:last-child {
  margin-bottom: 0;
}

.course-item h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
}

.course-item p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text-soft);
  max-width: 520px;
}

/* =========================================================
   COURSES RESPONSIVE
========================================================= */

@media (max-width: 1199.98px) {
  .course-image {
    height: 370px;
  }

  .course-item {
    margin-bottom: 2.5rem;
  }
}

@media (max-width: 991.98px) {
  .course-section {
    padding: 70px 0;
  }

  .course-section-first {
    padding-top: 60px;
  }

  .course-image {
    height: 320px;
  }

  .course-content {
    padding-left: 0;
  }

  .course-title {
    margin-bottom: 2rem;
  }

  .course-item {
    margin-bottom: 2rem;
  }
}

@media (max-width: 767.98px) {
  .course-section {
    padding: 55px 0;
  }

  .course-image {
    height: 250px;
  }

  .course-title {
    font-size: 2rem;
    margin-bottom: 1.7rem;
  }

  .course-item h3 {
    font-size: 1.08rem;
  }

  .course-item p {
    font-size: 0.95rem;
  }
}

/* =========================================================
   EVENTS PAGE (SINGLE SECTION)
========================================================= */

.events-section {
  background-color: #000;
  padding: 90px 0;
}

.events-content {
  max-width: 560px;
}

.events-title {
  font-size: clamp(2.2rem, 3.5vw, 3rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.5rem;
}

.events-lead {
  font-size: 1.15rem;
  color: #fff;
  opacity: 0.9;
  margin-bottom: 1.5rem;
}

.events-content p {
  color: var(--text-soft);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.2rem;
}

/* POINTS */

.events-points {
  margin: 2rem 0;
}

.events-point {
  color: var(--text-soft);
  margin-bottom: 0.6rem;
  font-size: 0.95rem;
}

/* IMAGE */

.events-image-wrap {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 0 28px rgba(0, 132, 255, 0.15);
}

.events-image {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}
.language-switcher {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  height: 38px;
  padding: 0 14px !important;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff !important;
  transition: all 0.25s ease;
}

.language-switcher:hover,
.language-switcher:focus {
  background: #ff7a00;
  border-color: #ff7a00;
  color: #fff !important;
}

.navbar .nav-link {
  color: #fff;
  transition: color 0.2s ease;
}

.navbar .nav-link:hover {
  color: #ff7a00;
}

/* 🔥 THIS IS THE IMPORTANT PART */
.navbar .nav-link.active {
  color: #ff7a00 !important;
  font-weight: 600;
}

.language-dropdown {
  color: #fff !important;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  padding: 0.55rem 1rem !important;
  min-width: 78px;
  text-align: center;
  font-weight: 600;
  transition: all 0.2s ease;
}

.language-dropdown:hover,
.language-dropdown:focus,
.language-dropdown.show {
  color: #ff7a00 !important;
  border-color: #ff7a00;
  box-shadow: none;
}

.language-menu {
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 0.4rem;
  min-width: 180px;
  margin-top: 0.6rem !important;
}

.language-menu .dropdown-item {
  color: #fff;
  border-radius: 10px;
  padding: 0.65rem 0.9rem;
  font-weight: 500;
}

.language-menu .dropdown-item:hover,
.language-menu .dropdown-item:focus {
  background-color: rgba(255, 122, 0, 0.12);
  color: #ff7a00;
}

.language-menu .dropdown-item.active-lang {
  background-color: rgba(255, 122, 0, 0.16);
  color: #ff7a00;
  font-weight: 600;
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 991.98px) {
  .events-section {
    padding: 70px 0;
  }

  .events-content {
    max-width: 100%;
  }

  .events-image {
    height: 320px;
  }
}

@media (max-width: 767.98px) {
  .events-section {
    padding: 55px 0;
  }

  .events-title {
    font-size: 2rem;
  }

  .events-image {
    height: 250px;
  }
}

/* =========================================================
   HELPERS
========================================================= */

.section-spacer-top {
  margin-top: 1rem;
}

.text-soft {
  color: var(--text-soft);
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1199.98px) {
  .flight-card-image {
    height: 340px;
  }

  .flights-hero-image {
    height: 320px;
  }

  .included-image {
    height: 360px;
  }

  .flight-modal-side-image {
    height: 420px;
  }
}

@media (max-width: 991.98px) {
  .flights-hero {
    padding: 80px 0 70px;
  }

  .flights-main-title {
    max-width: 100%;
  }

  .flights-hero-image {
    height: 300px;
    margin-top: 1rem;
  }

  .locations-section {
    padding: 20px 0 70px;
  }

  .included-section {
    padding: 70px 0;
  }

  .included-content {
    padding-left: 0;
    margin-top: 1.5rem;
  }

  .flight-card-image {
    height: 320px;
  }

  .flight-modal .modal-header,
  .flight-modal .modal-body {
    padding-left: 1.4rem;
    padding-right: 1.4rem;
  }

  .flight-modal-content-grid {
    grid-template-columns: 1fr;
  }

  .flight-modal-side-image {
    height: 360px;
  }
}

@media (max-width: 767.98px) {
  .flights-hero {
    padding: 65px 0 55px;
  }

  .flights-eyebrow {
    font-size: 0.95rem;
    max-width: 100%;
  }

  .flights-main-title {
    font-size: 2.2rem;
  }

  .flights-hero-image {
    height: 240px;
  }

  .locations-title,
  .included-title {
    margin-bottom: 1.5rem;
  }

  .flight-card-image {
    height: 280px;
  }

  .flight-card-footer {
    gap: 0.6rem;
  }

  .flight-card-title,
  .flight-card-price {
    font-size: 0.95rem;
  }

  .included-image {
    height: 280px;
  }

  .included-item {
    margin-bottom: 2rem;
  }

  /* =========================================================
   FLIGHT MODAL FIXES
========================================================= */

.flight-modal .modal-content {
  border: 0;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
  position: relative;
}

.flight-modal .modal-header {
  padding: 2rem 2.5rem 1rem;
  border-bottom: 0;
  align-items: flex-start;
  position: relative;
}

.flight-modal .modal-title-wrap {
  max-width: 900px;
  padding-right: 4.5rem;
}

.flight-modal .modal-title {
  font-size: clamp(2rem, 3vw, 2.6rem);
  font-weight: 700;
  color: #2f3747;
  margin-bottom: 0.75rem;
}

.flight-modal .modal-subtitle {
  margin: 0;
  font-size: 1rem;
  color: #4f596b;
  line-height: 1.6;
}

.flight-modal .btn-close {
  position: absolute;
  top: 1.6rem;
  right: 1.8rem;
  z-index: 5;
  margin: 0;
  padding: 0;
  width: 2rem;
  height: 2rem;
  background-size: 1.5rem;
  opacity: 1;
  box-shadow: none;
}

.flight-modal .btn-close:focus {
  box-shadow: none;
}

.flight-modal .modal-body {
  padding: 0 2.5rem 2rem;
}

.flight-modal-divider {
  height: 1px;
  background: #dfe3ea;
  margin: 0 0 1.35rem;
}

.flight-modal-top {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.6rem;
}

.flight-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.7rem 1.2rem;
  border: 1px solid #d7dbe3;
  background: #f3f3f6;
  color: #323a49;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  white-space: nowrap;
}

.flight-modal-content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(280px, 0.8fr);
  gap: 2rem;
  align-items: start;
}

.flight-modal-text p {
  font-size: 1rem;
  line-height: 1.65;
  color: #3d4657;
  margin-bottom: 1.4rem;
}

.flight-modal-section {
  border-top: 1px solid #dfe3ea;
  padding-top: 1rem;
  margin-top: 1rem;
}

.flight-modal-section h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #313949;
  margin-bottom: 0.8rem;
}

.flight-modal-section ul {
  margin: 0;
  padding-left: 1.2rem;
}

.flight-modal-section li {
  margin-bottom: 0.45rem;
  color: #3d4657;
  font-size: 0.98rem;
  line-height: 1.55;
}

.flight-modal-side-image-wrap {
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 1rem;
}

.flight-modal-side-image {
  width: 100%;
  height: 470px;
  object-fit: cover;
  display: block;
}

.flight-social-title {
  font-size: 0.95rem;
  font-weight: 500;
  color: #3d4657;
  margin-bottom: 0.8rem;
}

.flight-socials {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.flight-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 8px;
  overflow: hidden;
  text-decoration: none;
  background: #f3f3f6;
  border: 1px solid #d7dbe3;
}

.flight-social-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.flight-modal-actions {
  border-top: 1px solid #dfe3ea;
  margin-top: 1.2rem;
  padding-top: 1.2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.btn-modal-orange,
.btn-modal-green,
.btn-modal-light {
  min-height: 52px;
  border-radius: 8px;
  padding: 0.8rem 1.3rem;
  font-size: 0.98rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  border: 1px solid transparent;
  text-decoration: none;
  transition: all 0.25s ease;
}

.btn-modal-orange {
  background: var(--brand-orange);
  color: #fff;
}

.btn-modal-orange:hover {
  background: var(--brand-orange-hover);
  color: #fff;
}

.btn-modal-green {
  background: #37a72f;
  color: #fff;
}

.btn-modal-green:hover {
  background: #2f9328;
  color: #fff;
}

.btn-modal-light {
  background: #f7f7f8;
  color: #313949;
  border-color: #d7dbe3;
}

.btn-modal-light:hover {
  background: #ececef;
  color: #313949;
}

.modal-dialog.modal-flight-xl {
  max-width: 1380px;
}

@media (max-width: 991.98px) {
  .flight-modal .modal-header,
  .flight-modal .modal-body {
    padding-left: 1.4rem;
    padding-right: 1.4rem;
  }

  .flight-modal .btn-close {
    top: 1.2rem;
    right: 1.2rem;
  }

  .flight-modal-content-grid {
    grid-template-columns: 1fr;
  }

  .flight-modal-side-image {
    height: 360px;
  }
}

@media (max-width: 767.98px) {
  .flight-modal .modal-header {
    padding-top: 1.4rem;
    padding-bottom: 0.8rem;
  }

  .flight-modal .modal-title-wrap {
    padding-right: 3rem;
  }

  .flight-modal .modal-title {
    font-size: 1.8rem;
  }

  .flight-modal .modal-subtitle,
  .flight-modal-text p,
  .flight-modal-section li {
    font-size: 0.95rem;
  }

  .flight-badge {
    min-height: 40px;
    font-size: 0.88rem;
    padding: 0.65rem 0.95rem;
  }

  .flight-modal-side-image {
    height: 300px;
  }

  .flight-social-link {
    width: 50px;
    height: 50px;
  }

  .btn-modal-orange,
  .btn-modal-green,
  .btn-modal-light {
    width: 100%;
    justify-content: center;
  }
}
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .hero-content {
    padding: 90px 0 60px;
  }

  .experience-image {
    height: 280px;
  }
}

@media (max-width: 768px) {
   .hero-section {
    background: url("../img/ecuador_parapente_home.jpg") center center / cover no-repeat;
    min-height: calc(100vh - 90px);
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .section-dark {
    padding: 70px 0;
  }

  .btn-brand {
    width: 100%;
    max-width: 260px;
  }

  .experience-image-wrap {
    display: none;
  }

  .flights-hero-image-wrap {
    display: none;
  }

  .included-image-wrap {
    display: none;
  }
}