/* =========================
   CSS CUSTOM PROPERTIES (VARIABLES)
   ========================= */
:root {
  --bs-primary: #ff3615;
  --primary-red: #ff3615;
  --primary-blue: #00005f;
  --secondary-blue: #00005e;
  --accent-teal: #02adad;
  --neutral-gray: #4a4a6b;
  --light-gray: #717273;
  --pale-gray: #c4c4cd;
  --base-font-size: 16px;
  --scale-desktop: 1.1;
  --scale-large: 1.2;
  --scale-xlarge: 1.3;
  --background-color: #f7f9fc;
  --text-color: var(--primary-blue);
  --secondary-background-color: #ffffff;
  --third-background-color: #0d0d46;
  --copyright-container-background: #f7f9fc;
  --background-button: var(--primary-red);
  --background-secondary-button: var(--secondary-blue);
  --card-title-color-text: var(--accent-teal);
  --card-color-text: var(--neutral-gray);
  --card-date-text: var(--light-gray);
  --seconday-title-color-text: var(--primary-blue);
  --third-color-text: #a3a3c5;
  --customes-color-text: #f7f9fc;
  --inactive-card-background: #f7f9fc;
  --inactive-title-color-text: var(--pale-gray);
  --inactive-color-text: var(--light-gray);
  --highlight-color: var(--primary-red);
  --linear-gradient-text-color1: var(--primary-blue);
  --linear-gradient-text-color2: var(--primary-red);
  --linear-gradient-text-color-inverted1: #6a6a6a;
  --linear-gradient-text-color-inverted2: #4a4a4a;
}
[data-theme="dark"] {
  --background-color: #060616;
  --text-color: #ffffff;
  --secondary-background-color: #060616;
  --third-background-color: #1c1c36;
  --copyright-container-background: #181829;
  --background-secondary-button: #4848ac;
  --inactive-card-background: #3232460d;
  --seconday-title-color-text: #ffffff;
  --linear-gradient-text-color1: #4a4a7a;
  --linear-gradient-text-color-inverted1: #2c2c4a;
  --linear-gradient-text-color-inverted2: #8b1a0a;
}
/* =========================
   UTILITY MIXINS
   ========================= */
/* =========================
   GLOBAL STYLES & RESET
   ========================= */
* {
  font-family: "Urbanist", sans-serif;
}
html {
  scroll-behavior: smooth;
}
body {
  background-color: var(--background-color);
  color: var(--text-color);
  font-weight: lighter;
  transition: all 0.3s ease;
}
img {
  object-fit: contain;
}
section,
footer {
  max-width: 100%;
  scroll-margin-top: 80px;
}
/* =========================
   BUTTON COMPONENTS
   ========================= */
.btn-base {
  color: #fff;
  font-size: clamp(14px, 2vw, 16px);
  padding: clamp(8px, 1.5vw, 12px) clamp(16px, 3vw, 24px);
  transition: all 0.3s ease;
  font-weight: 600;
}
.btn-base:hover,
.btn-base:focus,
.btn-base:active {
  color: #fff;
  transform: translateY(-2px);
}
@media (max-width: 991.98px) {
  .btn-base {
    font-size: 14px;
    padding: 8px 16px;
    white-space: nowrap;
    min-width: auto;
  }
}
.btn-custom {
  color: #fff;
  font-size: clamp(14px, 2vw, 16px);
  padding: clamp(8px, 1.5vw, 12px) clamp(16px, 3vw, 24px);
  transition: all 0.3s ease;
  font-weight: 600;
  background-color: var(--background-button);
  border-color: var(--background-button);
  border-radius: 6px;
}
.btn-custom:hover,
.btn-custom:focus,
.btn-custom:active {
  color: #fff;
  transform: translateY(-2px);
}
@media (max-width: 991.98px) {
  .btn-custom {
    font-size: 14px;
    padding: 8px 16px;
    white-space: nowrap;
    min-width: auto;
  }
}
.btn-custom:hover,
.btn-custom:focus,
.btn-custom:active {
  color: #fff;
  background-color: #e12000;
  border-color: #e12000;
  box-shadow: 0 0 0 0px #ff3615;
  transform: translateY(-2px);
}
.btn-custom.btn-mobile {
  font-size: 0.75rem;
  padding: 0.4rem 0.8rem;
  white-space: nowrap;
  min-width: auto;
  border-radius: 4px;
}
.btn-custom-blue {
  color: #fff;
  font-size: clamp(14px, 2vw, 16px);
  padding: clamp(8px, 1.5vw, 12px) clamp(16px, 3vw, 24px);
  transition: all 0.3s ease;
  font-weight: 600;
  background-color: var(--background-secondary-button);
  border-color: var(--background-secondary-button);
  border-radius: 100px;
}
.btn-custom-blue:hover,
.btn-custom-blue:focus,
.btn-custom-blue:active {
  color: #fff;
  transform: translateY(-2px);
}
@media (max-width: 991.98px) {
  .btn-custom-blue {
    font-size: 14px;
    padding: 8px 16px;
    white-space: nowrap;
    min-width: auto;
  }
}
.btn-custom-blue:hover,
.btn-custom-blue:focus,
.btn-custom-blue:active {
  background-color: #4343ad;
  border-color: #4343ad;
  box-shadow: 0 0 0 0px var(--background-secondary-button);
  color: #fff;
  transform: translateY(-2px);
}
/* =========================
   THEME COMPONENTS
   ========================= */
#themeToggleMobile,
#themeToggleDesktop,
.theme-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
#themeToggleMobile:hover,
#themeToggleDesktop:hover,
.theme-toggle:hover,
#themeToggleMobile:focus,
#themeToggleDesktop:focus,
.theme-toggle:focus,
#themeToggleMobile:active,
#themeToggleDesktop:active,
.theme-toggle:active {
  border-color: #e12000;
  box-shadow: 0 0 0 0px #ff3615;
}
@media (max-width: 991.98px) {
  #themeToggleMobile,
  #themeToggleDesktop,
  .theme-toggle {
    margin-right: 0.75rem;
    flex-shrink: 0;
  }
  #themeToggleMobile img,
  #themeToggleDesktop img,
  .theme-toggle img {
    width: 80px;
    height: 32px;
  }
}
[data-theme="dark"] .phone-icon {
  filter: brightness(0) invert(1);
}
.noise-search-img {
  border-radius: 10px;
}
[data-theme="dark"] .noise-search-img {
  content: url("./assets/images/noiseSearchDark.png");
}
/* Estilos para imágenes del carrusel - sin filtros para mantener colores originales */
.plane-background {
  transition: filter 0.3s ease;
}
.plane-background.dark-plane {
  filter: brightness(1) invert(1);
}
.theme-logo {
  width: 24%;
}
@media (min-width: 768px) {
  .theme-logo {
    width: 12%;
  }
}
/* =========================
   CARD COMPONENTS
   ========================= */
.card {
  align-items: center;
  border: none;
  display: flex;
  text-align: center;
  padding: 0;
  margin: 0;
}
.card .card-body h3 {
  font-size: 1.5rem;
  font-weight: 700;
}
.card .card-body .card-title {
  font-size: 1.3rem !important;
  font-weight: 700;
}
.card .card-body p {
  font-size: 1rem !important;
  font-weight: 500;
}
/* =========================
   NAVIGATION COMPONENTS
   ========================= */
.navbar {
  background-color: var(--secondary-background-color);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 1px 3px rgba(76, 75, 75, 0.1);
  padding: 0.75rem 0;
  transition: all 0.3s ease;
}
[data-theme="dark"] .navbar {
  border-bottom-color: rgba(255, 255, 255, 0.1);
}
.navbar.scrolled {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
[data-theme="dark"] .navbar.scrolled {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}
@media (max-width: 991.98px) {
  .navbar {
    padding: 0.5rem 1rem;
  }
  .navbar .phone-text {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-color);
    white-space: nowrap;
  }
  .navbar #themeToggleMobile .theme-toggle-img,
  .navbar .theme-toggle .theme-toggle-img {
    width: 80px;
    height: 32px;
  }
  .navbar .btn-mobile {
    font-size: 0.75rem;
    padding: 0.4rem 0.8rem;
    white-space: nowrap;
    min-width: auto;
  }
  .navbar .gap-2 {
    gap: 0.5rem;
  }
}
.navbar-collapse {
  flex-grow: 0;
}
.navbar-nav .nav-link {
  color: var(--text-color);
  font-weight: 500;
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  padding: clamp(0.4rem, 1vw, 0.5rem) clamp(0.8rem, 1.5vw, 1rem);
  margin: 0 0.25rem;
  transition: all 0.3s ease;
  border-radius: 6px;
  position: relative;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus {
  color: var(--highlight-color);
  background-color: rgba(255, 54, 21, 0.1);
}
.navbar-nav .nav-link.active {
  color: var(--highlight-color);
  background-color: rgba(255, 54, 21, 0.15);
}
.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: var(--highlight-color);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  width: 80%;
}
@media (max-width: 991.98px) {
  .navbar-nav .nav-link {
    padding: 0.75rem 1rem;
    margin: 0.1rem 0;
    border-radius: 8px;
  }
}
.navbar-brand img {
  transition: transform 0.3s ease;
}
.navbar-brand img:hover {
  transform: scale(1.05);
}
/* =========================
   TYPOGRAPHY COMPONENTS
   ========================= */
.sub-title {
  font-family: Urbanist;
  font-weight: 700;
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 100%;
  letter-spacing: 0;
  background: linear-gradient(111.47deg, var(--linear-gradient-text-color1) 12.16%, var(--linear-gradient-text-color2) 79.57%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (min-width: 768px) {
  .sub-title {
    font-size: clamp(2.5rem, 4vw, 4rem);
  }
}
@media (min-width: 1024px) {
  .sub-title {
    font-size: clamp(3rem, 4vw, 3.5rem);
  }
}
.description {
  font-family: Zain;
  font-weight: 400;
  font-size: clamp(1.2rem, 2.5vw, 1.7rem);
  line-height: 32px;
  letter-spacing: 0;
}
/* =========================
   TRUSTED BY SECTION
   ========================= */
.trust-by {
  padding: 1.5rem 0;
  background-color: var(--secondary-background-color);
}
.trust-by p {
  font-family: Zain;
  font-weight: 400;
  font-size: clamp(1.3rem, 4vw, 2.7rem);
  line-height: 110%;
  letter-spacing: 0;
  text-align: center;
  padding: 1rem 1rem 0;
}
@media (min-width: 768px) {
  .trust-by p {
    font-size: 2.7rem;
    line-height: 100%;
    padding-top: 3rem;
    padding-left: 0;
    padding-right: 0;
  }
}
.trust-by img {
  width: 60%;
  padding: 10px;
}
@media (min-width: 768px) {
  .trust-by img {
    width: 16%;
  }
}
@media (min-width: 768px) {
  .trust-by {
    padding: 3rem 0;
    padding-top: 5rem;
  }
}
.trust-by-carousel-wrapper {
  overflow: hidden;
  width: 100%;
  max-width: 98vw;
  margin: 0 auto;
  padding: 0 0.25rem;
}
@media (max-width: 767px) {
  .trust-by-carousel-wrapper {
    height: 800px;
    padding: 1.5rem;
    border-radius: 12px;
    position: relative;
  }
  .trust-by-carousel-wrapper .card .card-body p {
    width: 100%;
    word-break: break-word;
    white-space: normal;
    box-sizing: border-box;
  }
}
@media (min-width: 768px) {
  .trust-by-carousel-wrapper {
    max-width: 95vw;
    padding: 0;
  }
}
.trust-by-carousel {
  background-color: white;
  display: flex;
  gap: 1rem;
  align-items: center;
  will-change: transform;
}
@media (max-width: 767px) {
  .trust-by-carousel {
    flex-direction: column;
    gap: 4rem;
    animation: trustby-scroll-vertical 60s linear infinite;
    padding: 2rem 0;
  }
}
@media (min-width: 768px) {
  .trust-by-carousel {
    flex-direction: row;
    animation: trustby-scroll-horizontal 84s linear infinite;
    width: max-content;
    gap: 3rem;
  }
}
@media (max-width: 767px) {
  .trust-by-carousel body .trustby-carousel img:not([width]):not([height]) {
    height: 120px;
    max-width: 350px;
    width: auto;
    object-fit: contain;
  }
  .trust-by-carousel body .trustby-carousel img {
    height: 120px;
    max-width: 350px;
    width: auto;
    object-fit: contain;
  }
  .trust-by-carousel body .trustby-carousel .vertical-logo,
  .trust-by-carousel body .trustby-carousel .avports-logo,
  .trust-by-carousel body .trustby-carousel .KTEB_logo,
  .trust-by-carousel body .trustby-carousel .reduced-logo,
  .trust-by-carousel body .trustby-carousel img[src*="FuelerLinx-logo.png"],
  .trust-by-carousel body .trustby-carousel img[src*="SunNFun.png"],
  .trust-by-carousel body .trustby-carousel img[src*="woolpert-logo-dark.webp"],
  .trust-by-carousel body .trustby-carousel img[src*="CSFS.png"] {
    height: 120px;
    max-width: 350px;
    width: auto;
  }
  .trust-by-carousel body .trustby-carousel .KAGS_logo,
  .trust-by-carousel body .trustby-carousel img[src*="KAGS.png"],
  .trust-by-carousel body .trustby-carousel img[src*="KBFM.png"] {
    height: 120px;
    max-width: 350px;
    width: auto;
  }
  .trust-by-carousel body .trustby-carousel .WYDOT-logo,
  .trust-by-carousel body .trustby-carousel img[src*="WYDOT.png"] {
    height: 120px;
    max-width: 350px;
    width: auto;
  }
  .trust-by-carousel body .trustby-carousel .KTEB_logo {
    width: 200px;
  }
}
.trust-by-carousel .vertical-logo {
  width: 250px;
}
.trust-by-carousel .avports-logo {
  width: 352px;
}
@media (min-width: 768px) {
  .trust-by-carousel .KTEB_logo {
    width: 400px;
  }
}
.trust-by-carousel .KAGS_logo {
  width: 450px;
}
.trust-by-carousel .reduced-logo {
  width: 300px;
}
.trust-by-carousel .WYDOT-logo {
  width: 250px;
}
.trust-by-carousel img {
  object-fit: contain;
  user-select: none;
  pointer-events: none;
  opacity: 0.85;
  transition: opacity 0.2s;
}
@media (max-width: 767px) {
  .trust-by-carousel img {
    height: 120px;
    border-radius: 10px;
    margin: 0.75rem 0;
    max-height: 120px;
  }
  .trust-by-carousel img[src*="KAGS.png"],
  .trust-by-carousel img[src*="KBFM.png"] {
    height: 120px;
    max-height: 120px;
    margin: 0.75rem 0;
  }
  .trust-by-carousel img[src*="WYDOT.png"] {
    height: 120px;
    max-height: 120px;
    margin: 0.75rem 0;
  }
}
.trust-by-carousel img:hover {
  opacity: 1;
}
@media (min-width: 768px) {
  .trust-by-carousel img {
    height: 60px;
    width: 352px;
    padding-left: 2rem;
    padding-right: 2rem;
    height: auto;
    border-radius: 16px;
  }
}
@keyframes trustby-scroll-vertical {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-50%);
  }
}
@keyframes trustby-scroll-horizontal {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.data-collection {
  background-color: var(--background-color);
  padding-top: 3rem;
}
.data-collection .list-item .list {
  background: #ff3615;
}
.data-collection .list-item .gray-text {
  color: var(--text-color);
}
.data-collection .col-12 .description.px-3 {
  padding-bottom: 2rem;
  font-size: clamp(1rem, 2vw, 1.7rem);
}
.data-collection .col-12 .plane-image {
  padding-top: 2rem;
}
@media (min-width: 768px) {
  .data-collection .sub-title {
    font-family: Urbanist;
    font-weight: 700;
    font-size: 56px;
    line-height: 100%;
    letter-spacing: 0%;
  }
}
.data-collection .list {
  width: 4px;
  height: 20px;
  background: #d1d0d9;
  margin-right: 1rem;
}
.data-collection .list:hover {
  background: #ff3615;
}
.data-collection .gray-text {
  color: #c4c4cd;
}
.data-collection .active {
  background: #ff3615;
}
.data-collection span {
  font-family: Urbanist;
  font-weight: 600;
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 100%;
  letter-spacing: 0%;
}
.data-collection .report-image {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.3);
  transition: all 0.3s ease;
  width: 100%;
  height: auto;
  padding: 3px;
}
.data-collection .report-image:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px 0 rgba(31, 38, 135, 0.4);
}
[data-theme="dark"] .data-collection .report-image {
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.4);
}
[data-theme="dark"] .data-collection .report-image:hover {
  background: rgba(0, 0, 0, 0.3);
  box-shadow: 0 12px 40px 0 rgba(0, 0, 0, 0.5);
}
.data-collection .plane-image {
  width: 100%;
  display: block;
  filter: brightness(0.8) contrast(1.1);
}
@media (min-width: 768px) {
  .data-collection .plane-image {
    width: 70%;
    filter: brightness(0.7) contrast(1.2);
    height: auto;
    position: relative;
    bottom: 20%;
  }
}
@media (min-width: 768px) {
  .data-collection {
    padding-top: 6rem;
  }
}
.position-absolute {
  position: absolute;
}
.position-relative {
  position: relative;
}
.airport-activity.automated-alerts .image-container {
  margin-top: 0vh;
  border-radius: 10px;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
}
.airport-activity.automated-alerts .description {
  font-size: clamp(1rem, 2vw, 1.7rem);
}
.airport-activity.automated-alerts .position-absolute {
  left: 50%;
  transform: translateX(-50%);
  top: 50px;
  width: 50%;
}
.airport-activity.automated-alerts .statistics-vector {
  left: 37%;
  transform: translateX(-50%);
  top: 50px;
  width: 24%;
}
.airport-activity.automated-alerts .plane-img {
  position: absolute;
  top: 5rem;
  left: 24px;
  width: 11%;
  object-fit: cover;
}
@media (max-width: 768px) {
  .airport-activity.automated-alerts .plane-img {
    width: 6%;
    /* ...otras reglas... */
  }
}
@media (min-width: 768px) {
  .airport-activity.automated-alerts .plane-img {
    transform: rotate(270deg);
    top: 2rem;
    width: 4%;
    left: 72%;
    z-index: 2;
  }
}
.airport-activity.automated-alerts .plane-img2 {
  position: absolute;
}
@media (min-width: 768px) {
  .airport-activity.automated-alerts .plane-img2 {
    transform: rotate(270deg);
    top: -7rem;
    padding-top: 0rem;
    width: 4%;
    left: 24%;
    z-index: 2;
  }
}
.airport-activity.automated-alerts .list-item .list {
  background: #ff3615;
}
.airport-activity.automated-alerts .list-item .gray-text {
  color: var(--text-color);
}
@media (min-width: 768px) {
  .airport-activity.automated-alerts .sub-title {
    font-family: Urbanist;
    font-weight: 700;
    font-size: 56px;
    line-height: 100%;
    letter-spacing: 0%;
  }
}
.airport-activity.automated-alerts .list {
  width: 4px;
  height: 20px;
  background: #d1d0d9;
  margin-right: 1rem;
}
.airport-activity.automated-alerts .list:hover {
  background: #ff3615;
}
.airport-activity.automated-alerts .gray-text {
  color: #c4c4cd;
}
.airport-activity.automated-alerts .active {
  background: #ff3615;
}
.airport-activity.automated-alerts span {
  font-family: Urbanist;
  font-weight: 600;
  font-size: 1.2rem;
  line-height: 100%;
  letter-spacing: 0%;
}
.airport-activity {
  margin-top: 3rem;
}
.airport-activity .plane-img {
  position: absolute;
  top: 16rem;
  left: 50%;
  transform: translateX(-50%) rotate(270deg);
  width: 11%;
  object-fit: cover;
  z-index: 2;
}
@media (min-width: 768px) {
  .airport-activity .plane-img {
    top: 13rem;
    padding-top: 0rem;
    width: 4%;
    left: 50%;
    transform: translateX(-50%) rotate(270deg);
  }
}
.airport-activity .plane-img-md {
  position: absolute;
  top: -13rem;
  left: 24px;
  width: 11%;
  object-fit: cover;
  transform: rotate(270deg);
}
@media (min-width: 768px) {
  .airport-activity .plane-img-md {
    bottom: 7rem;
    width: 2.3%;
    left: 24%;
    z-index: 2;
  }
}
.airport-activity .text-container {
  position: relative;
}
.airport-activity .text-container .plane-img {
  position: absolute;
  top: 16rem;
  left: 24px;
  width: 11%;
  object-fit: cover;
  transform: rotate(270deg);
}
@media (min-width: 768px) {
  .airport-activity .text-container .plane-img {
    top: 22rem;
    padding-top: 0rem;
    width: 5%;
    left: -7.5%;
    z-index: 2;
  }
}
.airport-activity .live-map-image {
  width: 100%;
  height: auto;
}
@media (min-width: 768px) {
  .airport-activity .live-map-image {
    width: 100%;
    padding-top: 12vh;
  }
}
.airport-activity .live-statistics-image {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.3);
  transition: all 0.3s ease;
  width: 100%;
  height: auto;
  padding: 3px;
}
.airport-activity .live-statistics-image:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px 0 rgba(31, 38, 135, 0.4);
}
[data-theme="dark"] .airport-activity .live-statistics-image {
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.4);
}
[data-theme="dark"] .airport-activity .live-statistics-image:hover {
  background: rgba(0, 0, 0, 0.3);
  box-shadow: 0 12px 40px 0 rgba(0, 0, 0, 0.5);
}
@media (min-width: 768px) {
  .airport-activity .live-statistics-image {
    width: 100%;
  }
}
.airport-activity .public-map {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.3);
  width: 100%;
  height: auto;
  transition: all 0.3s ease;
}
[data-theme="dark"] .airport-activity .public-map {
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.4);
}
.airport-activity .public-map:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px 0 rgba(31, 38, 135, 0.4);
}
[data-theme="dark"] .airport-activity .public-map:hover {
  background: rgba(0, 0, 0, 0.3);
  box-shadow: 0 12px 40px 0 rgba(0, 0, 0, 0.5);
}
@media (min-width: 768px) {
  .airport-activity .public-map {
    width: 90%;
    aspect-ratio: 16/9;
    height: auto;
    padding-top: 50vh;
    position: relative;
    z-index: 9;
  }
}
@media (min-width: 768px) {
  .airport-activity {
    margin-top: 6rem;
  }
}
.airport-activity .image-container {
  margin-top: 0rem;
}
.airport-activity .image-container .noise-search-image {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.3);
  transition: all 0.3s ease;
  width: 100%;
  height: auto;
  padding: 3px;
}
.airport-activity .image-container .noise-search-image:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px 0 rgba(31, 38, 135, 0.4);
}
[data-theme="dark"] .airport-activity .image-container .noise-search-image {
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.4);
}
[data-theme="dark"] .airport-activity .image-container .noise-search-image:hover {
  background: rgba(0, 0, 0, 0.3);
  box-shadow: 0 12px 40px 0 rgba(0, 0, 0, 0.5);
}
.automated-alerts {
  margin-top: 7rem;
  position: relative;
}
@media (max-width: 767px) {
  .automated-alerts {
    margin-top: 5rem;
  }
}
.automated-alerts .plane-img {
  position: absolute;
  top: 5rem;
  right: 4px;
  width: 11%;
  object-fit: cover;
  transform: rotate(270deg);
}
@media (max-width: 768px) {
  .automated-alerts .plane-img {
    width: 6%;
    /* ...otras reglas... */
  }
}
.automated-alerts .plane-img-md {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  width: 11%;
  object-fit: cover;
  transform: rotate(270deg);
  z-index: 2;
}
@media (min-width: 768px) {
  .automated-alerts .plane-img-md {
    bottom: 3rem;
    right: 3rem;
    width: 2.3%;
  }
}
.automated-alerts .notifications-vector {
  position: absolute;
  top: 2rem;
  left: 37%;
  transform: translateX(-50%);
  width: 24%;
}
.automated-alerts .noise-vector {
  position: absolute;
  top: 33rem;
  left: 37%;
  transform: translateX(-50%);
  width: 24%;
}
.carousel-caption {
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5);
  height: fit-content;
  width: 100%;
  top: 43%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 16px !important;
}
.carousel-caption:hover {
  background: rgba(0, 0, 0, 0.7);
}
[data-theme="dark"] .carousel-caption {
  background: rgba(0, 0, 0, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.15);
}
[data-theme="dark"] .carousel-caption:hover {
  background: rgba(0, 0, 0, 0.8);
}
@media (max-width: 767px) {
  .carousel-caption {
    width: 85% !important;
    padding: 2rem 1.5rem !important;
    margin: 0 1rem !important;
    top: 50% !important;
    border-radius: 16px !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    background: rgba(0, 0, 0, 0.7) !important;
    overflow: hidden !important;
  }
}
[data-theme="dark"] .carousel-caption {
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.6);
}
@media (min-width: 768px) {
  .carousel-caption {
    width: 70%;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -60%);
  }
}
.carousel-caption span {
  font-family: Urbanist;
  font-weight: 700;
  font-size: 32px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}
@media (max-width: 767px) {
  .carousel-caption span {
    font-size: 28px;
    line-height: 1.2;
    margin-bottom: 1rem;
  }
}
@media (min-width: 768px) {
  .carousel-caption span {
    font-size: 56px;
  }
}
.carousel-caption p {
  font-family: Zain;
  font-weight: 300;
  font-size: clamp(1.2rem, 2.5vw, 1.7rem);
  line-height: 18px;
  letter-spacing: 0%;
  text-align: center;
  margin-top: 2rem;
  color: #ffffff;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}
@media (max-width: 767px) {
  .carousel-caption p {
    font-size: 16px;
    line-height: 1.4;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    padding: 0;
  }
}
@media (min-width: 768px) {
  .carousel-caption p {
    line-height: 0.9;
    padding: 1rem;
  }
}
.carousel {
  position: relative;
}
.carousel img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  clip-path: polygon(0 15%, 100% 0, 100% 85%, 0% 100%);
}
@media (max-width: 767px) {
  .carousel img {
    height: 800px !important;
    object-fit: cover;
    object-position: center;
  }
}
@media (min-width: 768px) {
  .carousel img {
    height: 100vh;
    max-width: none;
  }
}
.carousel body .carousel img.carousel-control-prev-icon,
.carousel body .carousel img.carousel-control-next-icon {
  width: 16px !important;
  height: 16px !important;
  opacity: 1;
}
@media (max-width: 767px) {
  .carousel body .carousel img.carousel-control-prev-icon,
  .carousel body .carousel img.carousel-control-next-icon {
    width: 16px !important;
    height: 16px !important;
  }
}
.carousel .carousel-navigation {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  padding-left: 1rem;
  padding-right: 1rem;
  gap: 20px;
  z-index: 2;
}
@media (min-width: 768px) {
  .carousel .carousel-navigation {
    bottom: auto;
    top: 50%;
    transform: translateY(-50%);
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
.carousel .carousel-control-prev {
  margin-top: 40px;
}
.carousel .carousel-control-next {
  margin-bottom: 40px;
}
.carousel .carousel-control-prev,
.carousel .carousel-control-next {
  position: static;
  width: 40px;
  height: 40px;
  background-color: #0b0201b8;
  border-radius: 50%;
  opacity: 1;
}
.carousel .carousel-control-prev:hover,
.carousel .carousel-control-next:hover,
.carousel .carousel-control-prev:focus,
.carousel .carousel-control-next:focus,
.carousel .carousel-control-prev:active,
.carousel .carousel-control-next:active {
  opacity: 1;
}
.carousel .carousel-control-prev:hover img,
.carousel .carousel-control-next:hover img,
.carousel .carousel-control-prev:focus img,
.carousel .carousel-control-next:focus img,
.carousel .carousel-control-prev:active img,
.carousel .carousel-control-next:active img {
  opacity: 1;
  filter: none;
}
.carousel .carousel-control-prev img.carousel-control-prev-icon,
.carousel .carousel-control-next img.carousel-control-prev-icon,
.carousel .carousel-control-prev img.carousel-control-next-icon,
.carousel .carousel-control-next img.carousel-control-next-icon {
  width: 16px;
  height: 16px !important;
  opacity: 1;
}
.carousel .carousel-control-prev-icon {
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'><path d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/></svg>");
}
.carousel .carousel-control-next-icon {
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'><path d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/></svg>");
}
.cards {
  position: relative;
}
.cards .plane-img {
  position: absolute;
  top: 1.5rem;
  right: 10rem;
  width: 9%;
  object-fit: cover;
  transform: rotate(0deg);
}
@media (min-width: 768px) {
  .cards .plane-img {
    top: 1.5rem;
    right: 101.5%;
    width: 5%;
    object-fit: cover;
    transform: rotate(270deg);
  }
}
.cards .card-container {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  margin: 45px;
  padding: 7px 0 9px;
}
.cards .card-container:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-1px);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
}
[data-theme="dark"] .cards .card-container {
  background: rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}
[data-theme="dark"] .cards .card-container:hover {
  background: rgba(0, 0, 0, 0.15);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
}
@media (max-width: 767px) {
  .cards .card-container {
    margin: 0;
    padding: 15px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  .cards .card-container .card {
    width: 100%;
    max-width: 100%;
    margin: 0;
    display: block;
  }
  .cards .card-container .card-body {
    width: 100%;
    max-width: 100%;
    margin: 0;
    display: block;
  }
  .cards .card-container .card-text,
  .cards .card-container .card .card-body p {
    width: 100%;
    max-width: 100%;
    margin: 0;
    display: block;
    text-align: start;
  }
}
.cards .card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.2);
  transition: all 0.3s ease;
  text-align: start;
}
.cards .card:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px 0 rgba(31, 38, 135, 0.3);
}
[data-theme="dark"] .cards .card {
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.25);
}
[data-theme="dark"] .cards .card:hover {
  background: rgba(0, 0, 0, 0.3);
  box-shadow: 0 12px 40px 0 rgba(0, 0, 0, 0.4);
}
@media (min-width: 768px) {
  .cards .card {
    width: 100%;
    max-width: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
.cards .card-title-active {
  display: flex;
  align-items: center;
  padding-bottom: 15px;
  color: var(--card-title-color-text);
  font-family: Urbanist;
  font-weight: 600;
  font-size: 1.1rem;
  line-height: 100%;
  letter-spacing: 0%;
}
.cards .card-text {
  color: var(--card-color-text);
  font-family: Zain;
  font-weight: 400;
  font-size: 16px;
  line-height: 18px;
  letter-spacing: 0%;
}
.cards .date-text1 {
  color: var(--card-date-text);
  font-family: Zain;
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
  vertical-align: middle;
}
.cards .card-title-inactive {
  color: var(--inactive-title-color-text);
  font-family: Urbanist;
  font-weight: 600;
  font-size: 1.1rem;
  line-height: 100%;
  letter-spacing: 0%;
}
.cards .card-title-red {
  display: flex;
  align-items: center;
  padding-bottom: 15px;
  color: #d93c26;
  font-family: Urbanist;
  font-weight: 600;
  font-size: 1.1rem;
  line-height: 100%;
  letter-spacing: 0%;
}
.cards .card-title-orange {
  display: flex;
  align-items: center;
  padding-bottom: 15px;
  color: #ff8c00;
  font-family: Urbanist;
  font-weight: 600;
  font-size: 1.1rem;
  line-height: 100%;
  letter-spacing: 0%;
}
.cards .date-text {
  color: var(--inactive-title-color-text);
  font-family: Zain;
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
  vertical-align: middle;
}
.cards .card-title {
  font-size: 1.3rem !important;
  font-weight: 700;
}
.cards p {
  font-size: 1.2rem !important;
  font-weight: 500;
}
.live-map-section {
  padding-top: 4rem;
  padding-left: 1vw;
  padding-right: 1vw;
  background-color: var(--secondary-background-color);
  padding-bottom: 3rem;
}
.live-map-section .live-map-icon {
  margin-bottom: 1rem;
}
[data-theme="dark"] .live-map-section .live-map-icon {
  filter: brightness(0) invert(1);
}
.live-map-section .live-map-section-title {
  padding-bottom: 2rem;
}
@media (min-width: 768px) {
  .live-map-section .live-map-section-title {
    font-family: Urbanist;
    font-weight: 700;
    font-size: 56px;
    line-height: 100%;
    letter-spacing: 0%;
  }
}
.live-map-section p {
  font-family: Urbanist;
  font-weight: 700;
  font-size: 32px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  color: var(--seconday-title-color-text);
}
.live-map-section .card {
  background-color: var(--secondary-background-color);
}
@media (min-width: 768px) {
  .live-map-section .card {
    margin-top: 1rem;
  }
}
.live-map-section .card-title {
  font-family: Urbanist;
  font-weight: 600;
  font-size: 1rem;
  line-height: 100%;
  letter-spacing: 0%;
  color: var(--text-color);
}
.live-map-section .tow-container {
  align-items: flex-start !important;
  padding-left: 8rem;
  padding-right: 8rem;
}
@media (max-width: 767px) {
  .live-map-section .tow-container {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
}
.live-map-section .towing-image,
.live-map-section .pretow-image {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 11px solid #000000;
  border-radius: 10px;
  box-shadow: 0 12px 40px 0 rgba(31, 38, 135, 0.3);
  transition: all 0.3s ease;
  width: 100%;
  height: auto;
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
  position: relative;
  z-index: 1;
}
.live-map-section .towing-image:hover,
.live-map-section .pretow-image:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px 0 rgba(31, 38, 135, 0.4);
}
[data-theme="dark"] .live-map-section .towing-image:hover,
[data-theme="dark"] .live-map-section .pretow-image:hover {
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 12px 40px 0 rgba(255, 255, 255, 0.2);
  border: 2px solid #ffffff;
}
[data-theme="dark"] .live-map-section .towing-image,
[data-theme="dark"] .live-map-section .pretow-image {
  background: rgba(255, 255, 255, 0.15);
  border: 2px solid #ffffff;
  box-shadow: 0 8px 32px 0 rgba(255, 255, 255, 0.2);
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
}
.live-map-section .Tow-pics-image {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  width: 100%;
  height: auto;
  padding: 3px;
  border-radius: 10px;
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.3);
  transition: all 0.3s ease;
}
[data-theme="dark"] .live-map-section .Tow-pics-image {
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.4);
}
.live-map-section .Tow-pics-image:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px 0 rgba(31, 38, 135, 0.4);
}
[data-theme="dark"] .live-map-section .Tow-pics-image:hover {
  background: rgba(0, 0, 0, 0.3);
  box-shadow: 0 12px 40px 0 rgba(0, 0, 0, 0.5);
}
.live-map-section .card-title {
  font-weight: 700;
  font-size: 20px !important;
  line-height: 100%;
  letter-spacing: 0%;
}
.live-map-section {
  padding-top: 4rem;
  padding-left: 1vw;
  padding-right: 1vw;
  background-color: var(--secondary-background-color);
  padding-bottom: 3rem;
}
.live-map-section .live-map-icon {
  margin-bottom: 1rem;
}
[data-theme="dark"] .live-map-section .live-map-icon {
  filter: brightness(0) invert(1);
}
.live-map-section .live-map-section-title {
  padding-bottom: 2rem;
}
@media (min-width: 768px) {
  .live-map-section .live-map-section-title {
    font-family: Urbanist;
    font-weight: 700;
    font-size: 56px;
    line-height: 100%;
    letter-spacing: 0%;
  }
}
.live-map-section p {
  font-family: Urbanist;
  font-weight: 700;
  font-size: 32px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  color: var(--seconday-title-color-text);
}
.live-map-section .card {
  background-color: var(--secondary-background-color);
}
@media (min-width: 768px) {
  .live-map-section .card {
    margin-top: 1rem;
  }
}
.live-map-section .card-title {
  font-family: Urbanist;
  font-weight: 600;
  font-size: 1rem;
  line-height: 100%;
  letter-spacing: 0%;
  color: var(--text-color);
}
.live-map-section .tow-container {
  align-items: flex-start !important;
  padding-left: 8rem;
  padding-right: 8rem;
}
@media (max-width: 767px) {
  .live-map-section .tow-container {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
}
.live-map-section .towing-image,
.live-map-section .pretow-image {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 11px solid #000000;
  border-radius: 10px;
  box-shadow: 0 12px 40px 0 rgba(31, 38, 135, 0.3);
  transition: all 0.3s ease;
  width: 100%;
  height: auto;
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
  position: relative;
  z-index: 1;
}
.live-map-section .towing-image:hover,
.live-map-section .pretow-image:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px 0 rgba(31, 38, 135, 0.4);
}
[data-theme="dark"] .live-map-section .towing-image:hover,
[data-theme="dark"] .live-map-section .pretow-image:hover {
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 12px 40px 0 rgba(255, 255, 255, 0.2);
  border: 2px solid #ffffff;
}
[data-theme="dark"] .live-map-section .towing-image,
[data-theme="dark"] .live-map-section .pretow-image {
  background: rgba(255, 255, 255, 0.15);
  border: 2px solid #ffffff;
  box-shadow: 0 8px 32px 0 rgba(255, 255, 255, 0.2);
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
}
.live-map-section .Tow-pics-image {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  width: 100%;
  height: auto;
  padding: 3px;
  border-radius: 10px;
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.3);
  transition: all 0.3s ease;
}
[data-theme="dark"] .live-map-section .Tow-pics-image {
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.4);
}
.live-map-section .Tow-pics-image:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px 0 rgba(31, 38, 135, 0.4);
}
[data-theme="dark"] .live-map-section .Tow-pics-image:hover {
  background: rgba(0, 0, 0, 0.3);
  box-shadow: 0 12px 40px 0 rgba(0, 0, 0, 0.5);
}
.live-map-section .card-title {
  font-weight: 700;
  font-size: 20px !important;
  line-height: 100%;
  letter-spacing: 0%;
}
.landingHero {
  position: relative;
  width: 100%;
  align-items: flex-start;
  min-height: 721px;
  overflow: hidden;
}
.landingHero h1 {
  font-style: italic;
  font-weight: 800;
  font-size: clamp(3rem, 8vw, 6rem);
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  padding-bottom: 1rem;
  padding-top: 3.5rem;
}
@media (min-width: 768px) {
  .landingHero h1 {
    font-size: clamp(4rem, 10vw, 8rem);
  }
}
@media (min-width: 1024px) {
  .landingHero h1 {
    font-size: clamp(5rem, 8vw, 7rem);
  }
}
@media (min-width: 1440px) {
  .landingHero h1 {
    font-size: clamp(6rem, 7vw, 8rem);
  }
}
.landingHero p {
  font-family: "Zain", sans-serif;
  font-weight: 400;
  font-size: clamp(1.5rem, 4vw, 2.7rem);
  line-height: 145%;
  text-align: center;
  padding-bottom: 2rem;
}
.landingHero img {
  width: 100;
  height: 58;
  top: 177px;
  left: 138px;
  margin-top: 4.6rem;
}
.landingHero button {
  font-family: Urbanist;
  font-weight: 600;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  padding: 12px 20px 12px 20px;
}
.landingHero .logo-1200-hero {
  margin-top: 1rem;
  width: 70%;
}
.landingHero .right-hero-content {
  flex: 1;
  padding-top: 8rem;
}
.landingHero .right-hero-content p {
  margin: auto;
  width: 80%;
  color: whitesmoke;
  text-align: center;
  font-size: 1.7rem;
}
.landingHero .right-hero-content p span {
  font-size: 2.2rem;
  font-weight: bold;
}
@media screen and (max-width: 992px) {
  .landingHero .right-hero-content {
    padding-bottom: 50px;
  }
}
.landingHero .right-hero-content .description-text {
  margin-top: 2rem;
  color: whitesmoke;
  text-align: justify;
  font-size: 1rem;
}
.landingHero::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, var(--background-color) 0%, var(--background-color) 45%, transparent 80%, transparent 100%), url("./assets/images/background/desktopBackgroundLight.jpeg") center bottom;
  background-size: 100% 100%, cover;
  z-index: -1;
}
[data-theme="dark"] .landingHero::before {
  background: linear-gradient(to bottom, var(--background-color) 0%, var(--background-color) 45%, transparent 80%, transparent 100%), url("./assets/images/background/desktopBackgroundDark.jpeg") center bottom;
}
@media (min-width: 768px) {
  .landingHero::before {
    top: 35%;
    background: linear-gradient(to bottom, var(--background-color) 0%, var(--background-color) 20%, transparent 80%, transparent 100%), url("./assets/images/background/desktopBackgroundLight.jpeg") center bottom;
    background-size: 150% 100%;
  }
  [data-theme="dark"] .landingHero::before {
    top: 0%;
    left: 0px;
    background: linear-gradient(to bottom, var(--background-color) 0%, var(--background-color) 10%, transparent 100%, transparent 0%), url("./assets/images/background/desktopBackgroundDark.jpeg") 49% bottom;
    background-size: 150% 108%;
    filter: brightness(1.3) contrast(1.1);
  }
}
.landingHero .hero-content {
  color: white;
  padding-top: 3rem;
  padding-bottom: 20px;
  padding-left: 3%;
  box-sizing: border-box;
}
.landingHero .hero-content h1 {
  font-size: 4rem;
  line-height: 4.1rem;
  text-align: center;
  margin-top: 40px;
  font-weight: normal;
  font-style: italic;
}
.landingHero .hero-content h1 span {
  display: block;
}
.landingHero .hero-content .buttons-group {
  display: flex;
  justify-content: center;
}
.landingHero .hero-content .buttons-group .button-container {
  display: inline-block;
  margin: 30px 10px;
  padding: 5px;
  border: 1px solid white;
  width: 200px;
  border-radius: 10px;
}
.landingHero .hero-content .buttons-group .button-container button {
  font-size: 1rem;
  padding: 10px;
  text-align: center;
  background-color: #ff4a07;
  color: white;
  margin: auto;
  width: 100%;
  border-radius: 5px;
}
@media only screen and (max-width: 769px) {
  .landingHero .hero-content {
    padding-top: 0px;
  }
}
.landingHero .learn-more {
  text-align: center;
  margin-top: 1.5rem;
}
.landingHero .learn-more a {
  text-decoration: none;
  color: white;
}
.landingHero .learn-more a i {
  display: block;
  margin: auto;
  font-size: 2rem;
}
@media screen and (max-width: 500px) {
  .landingHero .hero-content h1 {
    font-size: 3rem;
  }
  .landingHero .hero-content h1 span {
    display: block;
  }
  .landingHero .hero-content .buttons-group {
    flex-direction: column;
  }
}
@media screen and (max-width: 1220px) {
  .landingHero {
    flex-direction: column;
  }
  .landingHero .hero-content h1 {
    font-size: 3rem;
  }
  .landingHero .buttons-group {
    margin-top: 4rem;
  }
  .landingHero .button-container {
    margin: 5px 10px !important;
  }
  .landingHero .right-hero-content {
    margin-top: 4rem;
    width: 90%;
  }
  .landingHero .right-hero-content p {
    font-size: 1rem;
  }
  .landingHero .right-hero-content p img {
    margin-top: 2rem;
  }
  .landingHero .right-hero-content p span {
    font-size: 1.3rem;
  }
}
@media screen and (max-width: 992px) {
  .landingHero .description-text {
    width: 90%;
  }
  .landingHero .logo-1200-hero {
    margin-top: 1rem;
    width: 100%;
  }
}
@media screen and (min-width: 993px) {
  .landingHero .description-text {
    width: 60%;
  }
}
@media screen and (min-width: 999px) and (max-width: 1280px) {
  .landingHero {
    flex-direction: column;
  }
  .landingHero .hero-content h1 {
    font-size: 3rem;
  }
  .landingHero .hero-content h1 span {
    display: block;
  }
  .landingHero .buttons-group {
    margin-top: 4rem;
  }
  .landingHero .button-container {
    margin: 5px 10px !important;
  }
  .landingHero .right-hero-content {
    margin-top: 4rem;
    width: 90%;
  }
  .landingHero .right-hero-content p {
    font-size: 1rem;
  }
  .landingHero .right-hero-content p img {
    margin-top: 2rem;
  }
  .landingHero .right-hero-content p span {
    font-size: 1.3rem;
  }
  .landingHero .buttons-group {
    flex-direction: row;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.separator {
  width: 100%;
  height: 1px;
  display: flex;
}
.separator .line {
  flex: 1;
  height: 100%;
  background-color: #e0e0e0;
}
.separator .fade {
  width: 200px;
  height: 100%;
  background: linear-gradient(to right, #e0e0e0, transparent);
}
.airports {
  padding: 4% 3%;
  text-align: center;
}
.airports .carousel-dark {
  height: 100%;
}
.airports .iconImg {
  margin-bottom: 10px;
}
.airports .mt-2 {
  margin-top: 5rem;
}
.airports h2 {
  font-size: 3rem;
  line-height: 3.1rem;
}
.airports h2 span {
  color: #ff3615;
}
@media screen and (max-width: 1220px) {
  .airports {
    flex-direction: column;
  }
  .airports h2 {
    font-size: 2rem;
  }
  .airports header {
    margin: auto;
  }
  .airports header h2 {
    font-size: 2rem;
    text-align: center;
  }
}
@media screen and (min-width: 999px) and (max-width: 1280px) {
  .airports header h2 {
    font-size: 2.4rem;
  }
}
.towing {
  padding: 2% 3%;
  text-align: center;
}
.towing .carousel-dark {
  height: 100%;
}
.towing .iconImg {
  margin-bottom: 10px;
}
.towing .mt-2 {
  margin-top: 5rem;
}
.towing h2 {
  font-size: 3rem;
  line-height: 3.1rem;
}
.towing h2 span {
  color: #ff3615;
}
@media screen and (max-width: 1220px) {
  .towing {
    flex-direction: column;
  }
  .towing h2 {
    font-size: 2rem;
  }
  .towing header {
    margin: auto;
  }
  .towing header h2 {
    font-size: 2rem;
    text-align: center;
  }
}
@media screen and (min-width: 999px) and (max-width: 1280px) {
  .towing header h2 {
    font-size: 2.4rem;
  }
}
.customers {
  background: radial-gradient(ellipse 150% 150% at 0% 0%, rgba(255, 54, 21, 0.1) -300%, #0d0d46 70%);
  position: relative;
  padding-bottom: 3rem;
  padding-top: 3rem;
}
.customers::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  pointer-events: none;
  z-index: 1;
}
[data-theme="dark"] .customers::before {
  background: rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.02);
}
.customers > * {
  position: relative;
  z-index: 2;
}
.customers .btn.btn-custom {
  font-size: 1.2rem;
}
.customers .customers-title {
  font-family: Urbanist;
  font-weight: 700;
  font-size: 40px;
  line-height: 100%;
  letter-spacing: 0%;
  color: var(--customes-color-text);
  text-align: center;
  padding-top: 2rem;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 1.5rem 2rem 2rem 2rem;
  margin: 0 auto;
  max-width: fit-content;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3), 0 1px 2px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}
.customers .customers-title:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
  transform: translateY(-1px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2), 0 4px 10px rgba(0, 0, 0, 0.1);
}
[data-theme="dark"] .customers .customers-title {
  background: rgba(0, 0, 0, 0.15);
  border-color: rgba(255, 255, 255, 0.05);
}
[data-theme="dark"] .customers .customers-title:hover {
  background: rgba(0, 0, 0, 0.2);
  border-color: rgba(255, 255, 255, 0.08);
}
@media (min-width: 768px) {
  .customers .customers-title {
    font-size: 56px;
    text-align: start;
    margin: 0;
    max-width: none;
    padding: 1.5rem 2.5rem 2rem 2.5rem;
  }
}
@media (max-width: 767px) {
  .customers .customers-title {
    padding: 0;
    margin: 0 1rem;
    background: none !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    text-align: start !important;
  }
}
.customers .customers-text {
  font-family: Zain;
  font-weight: 400;
  font-size: 2rem;
  line-height: 32px;
  letter-spacing: 0%;
  color: var(--third-color-text);
}
.customers .btn-custom {
  border-radius: 50px;
}
.customers .card {
  background: var(--third-background-color);
  border: 1px solid #6c757d38;
}
.customers .card .card-title {
  font-family: Urbanist;
  font-weight: 400;
  font-style: italic;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
  color: var(--customes-color-text);
  padding-top: 10px;
}
.customers .card .client-name {
  font-family: Urbanist;
  font-weight: 700;
  font-size: 16px;
  line-height: 18px;
  letter-spacing: 0%;
  color: var(--customes-color-text);
  margin-bottom: 2px;
  margin-top: 1.3rem;
}
.customers .card .client-airport {
  font-family: Urbanist;
  font-weight: 500;
  font-size: 14px;
  line-height: 16px;
  letter-spacing: 0%;
  color: var(--third-color-text);
  margin-top: 0;
}
.testimonials-carousel-wrapper {
  overflow: hidden;
  height: 50vh;
  position: relative;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  background: transparent;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.2);
  padding: 1.5rem;
}
[data-theme="dark"] .testimonials-carousel-wrapper {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.25);
}
.testimonials-carousel-wrapper:hover {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.25);
  transition: all 0.3s ease;
}
[data-theme="dark"] .testimonials-carousel-wrapper:hover {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.testimonials-carousel-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 20px;
  pointer-events: none;
  z-index: 1;
}
[data-theme="dark"] .testimonials-carousel-wrapper::before {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 50%, rgba(255, 255, 255, 0.05) 100%);
}
.testimonials-carousel {
  display: flex;
  flex-direction: column;
  animation: testimonials-scroll 30s linear infinite;
  position: relative;
  z-index: 2;
}
.testimonials-carousel .card {
  background: rgba(255, 255, 255, 0.15) !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  margin-bottom: 1rem;
  transition: all 0.3s ease;
  flex-shrink: 0;
}
[data-theme="dark"] .testimonials-carousel .card {
  background: rgba(0, 0, 0, 0.3) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
}
.testimonials-carousel .card:hover {
  background: rgba(255, 255, 255, 0.2) !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
[data-theme="dark"] .testimonials-carousel .card:hover {
  background: rgba(0, 0, 0, 0.4) !important;
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.05);
}
@keyframes testimonials-scroll {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-50%);
  }
}
.team {
  padding-top: 3rem;
}
.team .team-title {
  font-family: Urbanist;
  font-weight: 700;
  font-size: 40px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  padding-bottom: 1rem;
  color: var(--seconday-title-color-text);
}
.team .team-text {
  font-family: Zain;
  font-weight: 400;
  font-size: clamp(1.2rem, 2.5vw, 1.7rem);
  line-height: 30px;
  letter-spacing: 0%;
  text-align: center;
  color: var(--seconday-title-color-text);
}
.team .team-text .highlighted {
  font-family: Zain;
  font-weight: 400;
  font-size: clamp(1.2rem, 2.5vw, 1.7rem);
  line-height: 30px;
  letter-spacing: 0%;
  text-align: center;
  color: var(--background-button);
}
footer {
  padding-top: 10rem;
  padding-bottom: 7rem;
}
footer .footer-title {
  font-family: Urbanist;
  font-weight: 700;
  font-size: clamp(1.2rem, 2.5vw, 1.7rem);
  line-height: 100%;
  letter-spacing: 0%;
  color: var(--seconday-title-color-text);
}
footer .form-label {
  font-family: Zain;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 100%;
  letter-spacing: 0%;
  color: var(--card-color-text);
}
footer .contact-title {
  font-family: Urbanist;
  font-weight: 700;
  font-size: 24px;
  line-height: 100%;
  letter-spacing: 0%;
  color: var(--seconday-title-color-text);
}
footer .contact-us {
  margin-top: 2rem;
}
@media (min-width: 768px) {
  footer .contact-us {
    margin-top: 0;
  }
}
footer .contact-us .contact-subtitle {
  font-family: Urbanist;
  font-weight: 700;
  font-size: 24px;
  padding-top: rem;
  line-height: 100%;
  letter-spacing: 0%;
  color: var(--seconday-title-color-text);
}
@media (min-width: 768px) {
  footer .contact-us .contact-subtitle {
    margin-top: 2rem;
  }
}
footer .contact-us .contact-text {
  font-family: Zain;
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 100%;
  letter-spacing: 0%;
  color: var(--card-color-text);
}
footer .contact-us .phone-number {
  font-family: Urbanist;
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  color: var(--seconday-title-color-text);
}
footer .send-button {
  border-radius: 10px;
}
footer .contact-btn {
  font-family: Urbanist;
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  text-decoration: none;
  color: var(--seconday-title-color-text);
}
.svg-icon {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.copyright-container {
  background-color: var(--copyright-container-background);
  color: var(--seconday-title-color-text);
  font-family: Urbanist;
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
}
.copyright-container .copyright-text {
  margin-top: 10px;
  margin-bottom: 10px;
}
@media (min-width: 768px) {
  .col-md-6 {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}
.plane-background {
  transition: filter 0.3s ease;
}
.plane-background.dark-plane {
  filter: brightness(1) invert(1);
}
.theme-logo {
  width: 24% !important;
}
@media (min-width: 768px) {
  .theme-logo {
    width: 12% !important;
  }
}
section,
footer {
  max-width: 100%;
}
/* Reglas de filtros eliminadas para mantener colores originales de logos */
.public-map {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.3);
  transition: all 0.3s ease;
}
[data-theme="dark"] .public-map {
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.4);
}
.public-map:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px 0 rgba(31, 38, 135, 0.4);
}
[data-theme="dark"] .public-map:hover {
  background: rgba(0, 0, 0, 0.3);
  box-shadow: 0 12px 40px 0 rgba(0, 0, 0, 0.5);
}
@media (min-width: 768px) {
  .public-map {
    height: 60vh;
  }
}
/* =========================
   RESPONSIVE SCALING FIXES
   ========================= */
@media screen and (min-width: 1280px) and (max-width: 1440px) and (-webkit-min-device-pixel-ratio: 2) {
  html {
    font-size: calc(var(--base-font-size) * var(--scale-desktop));
  }
  .landingHero h1 {
    font-size: 90px !important;
  }
  .sub-title {
    font-size: 48px !important;
  }
  .trust-by p {
    font-size: 2.2rem !important;
  }
}
@media screen and (min-width: 1441px) and (max-width: 1920px) {
  html {
    font-size: calc(var(--base-font-size) * var(--scale-large));
  }
  .landingHero h1 {
    font-size: 110px !important;
  }
  .sub-title {
    font-size: 64px !important;
  }
  .trust-by p {
    font-size: 3rem !important;
  }
  .customers-title {
    font-size: 64px !important;
  }
  .customers-text {
    font-size: 2.4rem !important;
  }
}
@media screen and (min-width: 1921px) {
  html {
    font-size: calc(var(--base-font-size) * var(--scale-xlarge));
  }
  .landingHero h1 {
    font-size: 130px !important;
  }
  .sub-title {
    font-size: 72px !important;
  }
  .trust-by p {
    font-size: 3.5rem !important;
  }
  .description {
    font-size: 32px !important;
  }
  .customers-title {
    font-size: 72px !important;
  }
  .customers-text {
    font-size: 2.8rem !important;
  }
}
@media screen and (min-width: 1920px) and (max-width: 1920px) and (max-height: 1080px) {
  .container-fluid {
    max-width: 85% !important;
  }
  .carousel img {
    height: 85vh !important;
  }
  .carousel.slide {
    margin-top: 2rem;
  }
  .section {
    padding: clamp(1.5rem, 3vw, 4rem) 0;
  }
  .hero-section {
    min-height: 80vh;
  }
  .airport-activity .plane-img-md {
    top: 0rem;
  }
  .airport-activity.automated-alerts .image-container {
    margin-top: 55vh !important;
  }
  .airport-activity.automated-alerts .image-container {
    margin-top: 20vh !important;
  }
  .landingHero h1 {
    font-size: 100px !important;
  }
  .sub-title {
    font-size: 56px !important;
  }
  .description {
    font-size: 24px !important;
  }
  .automated-alerts .notifications-vector {
    top: -4rem;
  }
}
@media screen and (min-width: 1024px) and (max-device-pixel-ratio: 1.5) {
  .airport-activity .plane-img-md {
    top: 0rem;
  }
  .airport-activity .image-container {
    margin-top: 20vh !important;
  }
  .airport-activity.automated-alerts .image-container {
    margin-top: 20vh !important;
  }
  .carousel.slide {
    margin-top: 2rem;
  }
}
@media screen and (min-width: 1600px) {
  .airport-activity .text-container .plane-img {
    top: 23rem;
  }
  .airport-activity .plane-img-md {
    top: -10rem;
  }
  .carousel.slide {
    margin-top: 2rem;
  }
  .airport-activity.automated-alerts .image-container {
    margin-top: 0vh !important;
  }
  .automated-alerts .notifications-vector {
    top: -4rem;
  }
}
@media screen and (min-width: 1921px) {
  .container-fluid {
    max-width: 1800px;
    margin: 0 auto;
  }
  h1 {
    font-size: clamp(4rem, 6vw, 8rem) !important;
  }
  .sub-title {
    font-size: clamp(3rem, 4vw, 5rem) !important;
  }
  .description {
    font-size: clamp(1.5rem, 2vw, 2.2rem) !important;
    line-height: 1.6;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
  .navbar-nav .nav-link {
    font-size: 0.95rem;
    padding: 0.4rem 0.8rem;
  }
  .hero-section {
    min-height: 75vh;
  }
}
/* =========================
   MOBILE TEXT STANDARDIZATION
   Estandarización de tamaños de texto para mobile
   ========================= */
@media (max-width: 767px) {
  .description,
  .description.px-3,
  .team-text,
  p.description {
    font-size: 1.3rem !important;
    line-height: 1.5 !important;
  }
  .gray-text,
  .list-item span,
  .data-collection span {
    font-size: 1rem !important;
    line-height: 1.4 !important;
  }
  .card-text {
    font-size: 1.2rem !important;
    line-height: 1.3 !important;
  }
  main p {
    font-size: 1.4rem !important;
    line-height: 1.5 !important;
  }
  .footer-title,
  .contact-text,
  .social-media-text {
    font-size: 1.3rem !important;
    line-height: 1.4 !important;
  }
  .form-label {
    font-size: 1.25rem !important;
  }
  .customers-text {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}
/* =========================
   MOBILE SPACING STANDARDIZATION
   Espaciado uniforme para mobile - sin afectar desktop
   ========================= */
@media (max-width: 767px) {
  body main.landingHero,
  body .trust-by,
  body .data-collection,
  body .airport-activity,
  body .automated-alerts,
  body #noise-monitoring,
  body #solutions,
  body #liveMapView,
  body .customers,
  body .team,
  body footer {
    padding-top: 3rem;
    padding-bottom: 3rem;
    margin-bottom: 0;
  }
  body main.landingHero {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
  body .trust-by {
    padding-top: 2rem;
    padding-bottom: 1.5rem;
  }
  body .automated-alerts {
    padding-top: 0;
  }
  body #noise-monitoring {
    padding-top: 0rem;
    padding-bottom: 1rem;
  }
  body .sub-title,
  body h1,
  body h2,
  body h3 {
    margin-bottom: 1.5rem;
    margin-top: 0;
  }
  body .description,
  body p.description {
    margin-bottom: 1.5rem;
    margin-top: 0;
  }
  body .section-title,
  body .feature-title,
  body .service-title,
  body .about-title,
  body header h1,
  body header h2,
  body .hero-title {
    margin-bottom: 1.5rem;
    margin-top: 0;
  }
  body .section-description,
  body .feature-description,
  body .service-description,
  body .about-description,
  body .hero-subtitle,
  body .subtitle {
    margin-top: 0;
    margin-bottom: 1.5rem;
  }
  body .airports-section h1,
  body .airports-section h2,
  body .fbos-section h1,
  body .fbos-section h2,
  body .flight-schools-section h1,
  body .flight-schools-section h2,
  body .live-map-section h1,
  body .live-map-section h2,
  body .customers-section h1,
  body .customers-section h2,
  body .team-section h1,
  body .team-section h2 {
    margin-bottom: 1.5rem;
    margin-top: 0;
  }
  body .airports-section p,
  body .fbos-section p,
  body .flight-schools-section p,
  body .live-map-section p,
  body .customers-section p,
  body .team-section p {
    margin-top: 0;
    margin-bottom: 1.5rem;
  }
  body .list-item {
    margin-bottom: 0.75rem;
  }
  body .btn {
    margin-top: 1.5rem;
    margin-bottom: 1rem;
  }
  body .btn-custom.btn-mobile,
  body .btn.btn-custom.btn-mobile {
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 0.2rem;
    padding-bottom: 0.2rem;
    height: auto;
    min-height: auto;
  }
  body #themeToggleMobile,
  body .theme-toggle {
    margin-top: 0;
    margin-bottom: 0;
  }
  body .card {
    margin-bottom: 1.5rem;
  }
  body .image-container,
  body .report-image,
  body .live-statistics-image,
  body .noise-search-image {
    margin-top: 2rem;
    margin-bottom: 2rem;
  }
  body .team {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
  body .team-carousel {
    padding-top: 0;
  }
  body #noise-monitoring h1,
  body #noise-monitoring h2,
  body .team h1,
  body .team h2,
  body .team-title {
    margin-top: 0;
    margin-bottom: 1.5rem;
    padding-top: 0;
    padding-bottom: 0;
  }
  body #noise-monitoring p,
  body .team p,
  body .team-text {
    margin-top: 0;
    margin-bottom: 1.5rem;
  }
  body footer {
    padding-top: 4rem;
    padding-bottom: 2rem;
  }
  body #solutions {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
  body #liveMapView {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
  body .customers {
    padding-top: 3rem;
    padding-bottom: 2rem;
  }
  body .live-map-image.px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  /* ==================================
     OVERRIDE UNIVERSAL TITLE-PARAGRAPH SPACING
     Forzar espaciado consistente entre títulos y párrafos
     ================================== */
  html body h1,
  html body h2,
  html body h3,
  html body h4,
  html body h5,
  html body h6,
  html body .h1,
  html body .h2,
  html body .h3,
  html body .h4,
  html body .h5,
  html body .h6,
  html body .title,
  html body .section-title,
  html body .feature-title,
  html body .hero-title,
  html body .about-title,
  html body .service-title,
  html body header h1,
  html body header h2,
  html body header h3,
  html body .display-1,
  html body .display-2,
  html body .display-3,
  html body .display-4 {
    margin-bottom: 1.5rem;
    margin-top: 0;
  }
  html body p,
  html body .p,
  html body .description,
  html body .section-description,
  html body .feature-description,
  html body .hero-subtitle,
  html body .subtitle,
  html body .about-description,
  html body .service-description,
  html body .card-text,
  html body div p,
  html body section p,
  html body article p,
  html body .text,
  html body .content,
  html body .body-text {
    margin-top: 0;
    margin-bottom: 1.5rem;
  }
  html body .mb-0,
  html body .mb-1,
  html body .mb-2,
  html body .mb-3,
  html body .mb-4,
  html body .mb-5 {
    margin-bottom: 1.5rem;
  }
  html body .mt-0,
  html body .mt-1,
  html body .mt-2,
  html body .mt-3,
  html body .mt-4,
  html body .mt-5 {
    margin-top: 0;
  }
  html body h1 + p,
  html body h2 + p,
  html body h3 + p,
  html body h4 + p,
  html body h5 + p,
  html body h6 + p,
  html body .h1 + p,
  html body .h2 + p,
  html body .h3 + p,
  html body .h4 + p,
  html body .h5 + p,
  html body .h6 + p,
  html body .title + p,
  html body .section-title + p,
  html body .feature-title + p,
  html body header h1 + p,
  html body header h2 + p,
  html body header h3 + p {
    margin-top: 0;
    margin-bottom: 1.5rem;
  }
  /* ==================================
     CONSISTENT TOP SPACING FOR ALL SECTION TITLES
     Espaciado superior consistente para títulos de sección
     ================================== */
  html body section h1:first-child,
  html body section h2:first-child,
  html body section h3:first-child,
  html body .section h1:first-child,
  html body .section h2:first-child,
  html body .section h3:first-child,
  html body main h1:first-child,
  html body main h2:first-child,
  html body div[id] h1:first-child,
  html body div[id] h2:first-child,
  html body #noise-monitoring h1:first-child,
  html body #noise-monitoring h2:first-child,
  html body #solutions h1:first-child,
  html body #solutions h2:first-child,
  html body #liveMapView h1:first-child,
  html body #liveMapView h2:first-child,
  html body .team h1:first-child,
  html body .team h2:first-child,
  html body .team-title:first-child,
  html body .customers h1:first-child,
  html body .customers h2:first-child {
    margin-top: 0;
    padding-top: 0;
  }
  /* ==================================
     SECCIÓN TOWING - RESTAURAR ESTILOS ORIGINALES
     ================================== */
  html body .towing p,
  html body .towing .description,
  html body .towing .text,
  html body .towing .card-text,
  html body section.towing p,
  html body div.towing p {
    font-weight: normal !important;
    font-size: inherit !important;
    margin-bottom: inherit;
  }
}
.bold {
  font-weight: 500;
}
@media (max-width: 767px) {
  .airport-activity .text-container .plane-img {
    position: absolute;
    top: 25rem;
    left: 0;
    width: 3%;
    object-fit: cover;
    transform: rotate(270deg);
  }
}
