/* ==========================================================================
   DESIGN SYSTEM & VARIABLES
   ========================================================================== */
:root {
  --color-primary: #0c2340;
  /* Deep Navy Blue */
  --color-gold: #df9f28;
  /* Gold */
  --color-gold-hover: #c5861b;
  /* Darker Gold */
  --color-whatsapp: #00a859;
  /* WhatsApp Green */
  --color-whatsapp-hover: #008f4c;
  --color-text-dark: #0c2340;
  --color-text-muted: #475569;
  --color-bg-light: #f8fafc;
  --color-bg-white: #ffffff;
  --color-border: #e2e8f0;

  --font-main: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */
.bi {
  display: inline-block;
  width: 1em;
  height: 1em;
  fill: currentColor;
  vertical-align: -0.125em;
  flex-shrink: 0;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-main);
  background-color: var(--color-bg-white);
  color: var(--color-text-muted);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

img {
  max-width: 100%;
  height: auto;
}

/* ==========================================================================
   NAVIGATION
   ========================================================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-border);
  transition: all var(--transition-normal);
  padding: 16px 0;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 54px;
  width: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-weight: 500;
  color: var(--color-text-dark);
  font-size: 0.95rem;
  position: relative;
  padding: 6px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-gold);
  transition: width var(--transition-fast);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--color-primary) !important;
  font-size: 1rem;
}

.nav-phone::after {
  display: none !important;
}

.nav-phone:hover {
  color: var(--color-gold) !important;
}

.phone-icon-nav {
  stroke: var(--color-gold);
}

.nav-cta {
  background-color: var(--color-gold);
  color: var(--color-primary) !important;
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 600;
  transition: all var(--transition-fast) !important;
  box-shadow: 0 4px 12px rgba(223, 159, 40, 0.2);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  background-color: var(--color-gold-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(223, 159, 40, 0.3);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--color-primary);
  margin: 5px 0;
  transition: all var(--transition-fast);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
  position: relative;
  background: linear-gradient(135deg, #f8fafc 0%, #edf2f7 100%);
  padding: 140px 0 100px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Swooping background glow */
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  background: radial-gradient(circle at 80% 20%, rgba(219, 234, 254, 0.6) 0%, rgba(219, 234, 254, 0) 70%);
  z-index: 0;
  pointer-events: none;
}

.hero #hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.hero .container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

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

.hero-title {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.1;
  color: var(--color-primary);
  margin-bottom: 8px;
}

.cpam-large {
  font-size: 5.2rem;
  font-weight: 900;
  letter-spacing: -2px;
}

.gold-text {
  color: var(--color-gold);
}

.hero-tagline {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 24px;
}

.hero-subtitle {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  margin-bottom: 30px;
  max-width: 520px;
  line-height: 1.5;
}

.hero-features-container {
  width: 100%;
  max-width: 480px;
  margin-bottom: 30px;
}

.hero-features-img {
  width: 100%;
  height: auto;
  display: block;
}

.hero-cta-group {
  display: flex;
  gap: 16px;
  margin-bottom: 40px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 36px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.05rem;
  transition: all var(--transition-fast);
  cursor: pointer;
  border: none;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
}

.btn svg {
  width: 20px;
  height: 20px;
}

.btn-gold {
  background-color: var(--color-gold);
  color: var(--color-primary);
}

.btn-gold:hover {
  background-color: var(--color-gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(223, 159, 40, 0.25);
}

.btn-whatsapp {
  background-color: var(--color-whatsapp);
  color: var(--color-bg-white);
}

.btn-whatsapp:hover {
  background-color: var(--color-whatsapp-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 168, 89, 0.25);
}

.hero-bullets-bar {
  display: flex;
  gap: 24px;
}

.bullet-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text-dark);
}

.bullet-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
}

/* ==========================================================================
   HERO RIGHT COLUMN IMAGES
   ========================================================================== */
.hero-image-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
  min-height: 480px;
}

.cityscape-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;
  z-index: 0;
  pointer-events: none;
}

.hero-badges-row {
  position: absolute;
  top: 5%;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-around;
  align-items: center;
  z-index: 2;
}

.badge-logo-round {
  width: 130px;
  height: auto;
  filter: drop-shadow(0 10px 25px rgba(12, 35, 64, 0.08));
}

.badge-vitale-card {
  width: 190px;
  height: auto;
  border-radius: 12px;
  filter: drop-shadow(0 15px 30px rgba(12, 35, 64, 0.12));
}

.hero-car-container {
  position: relative;
  width: 100%;
  margin-top: auto;
  z-index: 3;
}

.hero-car-img {
  width: 100%;
  height: auto;
  display: block;
  transform: translateZ(0);
  filter: drop-shadow(0 20px 45px rgba(12, 35, 64, 0.16));
}

.car-shadow {
  position: absolute;
  bottom: -10px;
  left: 5%;
  width: 90%;
  height: 20px;
  background: radial-gradient(ellipse at center, rgba(12, 35, 64, 0.25) 0%, rgba(12, 35, 64, 0) 70%);
  z-index: -1;
  pointer-events: none;
}

/* ==========================================================================
   QUICK OVERVIEW / SECTION COMMUNE
   ========================================================================== */
.quick-overview {
  padding: 80px 0;
  background-color: var(--color-bg-light);
}

.overview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.overview-item {
  background-color: var(--color-bg-white);
  padding: 40px 30px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(12, 35, 64, 0.03);
  text-align: center;
  border: 1px solid var(--color-border);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.overview-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(12, 35, 64, 0.06);
  border-color: var(--color-gold);
}

.atout-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.atout-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.overview-item h3 {
  font-size: 1.35rem;
  color: var(--color-primary);
  margin-bottom: 16px;
  font-weight: 700;
}

.overview-link {
  font-weight: 600;
  color: var(--color-gold);
  font-size: 0.95rem;
  margin-top: auto;
  transition: color var(--transition-fast);
}

.overview-item:hover .overview-link {
  color: var(--color-gold-hover);
}

/* ==========================================================================
   PAGE HEADER
   ========================================================================== */
.page-header {
  padding: 160px 0 60px;
  background: linear-gradient(135deg, #f8fafc 0%, #edf2f7 100%);
  text-align: center;
  border-bottom: 1px solid var(--color-border);
}

.section-label {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-gold);
  margin-bottom: 12px;
}

.page-title {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 16px;
}

.page-subtitle {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* ==========================================================================
   ATOUTS DETAIL PAGE
   ========================================================================== */
.atouts-detail {
  padding: 80px 0;
}

.atouts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.atout-card-large {
  background-color: var(--color-bg-white);
  padding: 40px;
  border-radius: 16px;
  border: 1px solid var(--color-border);
  box-shadow: 0 4px 20px rgba(12, 35, 64, 0.03);
}

.atout-card-large h2 {
  font-size: 1.6rem;
  color: var(--color-primary);
  margin-bottom: 16px;
  font-weight: 700;
}

.atout-description {
  color: var(--color-text-muted);
  margin-bottom: 24px;
}

.atout-features {
  list-style: none;
}

.atout-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 0.95rem;
  color: var(--color-text-dark);
}

/* ==========================================================================
   SERVICES PAGE
   ========================================================================== */
.services-page-content {
  padding: 80px 0;
}

.services-grid-full {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-card-full {
  background-color: var(--color-bg-white);
  padding: 40px;
  border-radius: 16px;
  border: 1px solid var(--color-border);
  box-shadow: 0 4px 20px rgba(12, 35, 64, 0.03);
  display: flex;
  flex-direction: column;
}

.service-card-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 24px;
}

.service-card-icon svg {
  width: 100%;
  height: 100%;
}

.service-card-body h2 {
  font-size: 1.5rem;
  color: var(--color-primary);
  margin-bottom: 16px;
}

.service-card-body p {
  color: var(--color-text-muted);
  margin-bottom: 24px;
}

.service-perks {
  list-style: none;
}

.service-perks li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
  font-size: 0.95rem;
  color: var(--color-text-dark);
}

.service-perks li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--color-gold);
  font-weight: bold;
}

/* ==========================================================================
   TRUST SECTION
   ========================================================================== */
.trust-section {
  padding: 80px 0;
  background-color: var(--color-bg-light);
  border-top: 1px solid var(--color-border);
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-title {
  font-size: 2.2rem;
  color: var(--color-primary);
  font-weight: 800;
}

.trust-badges-row {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.badge-card {
  background-color: var(--color-bg-white);
  padding: 30px;
  border-radius: 16px;
  border: 1px solid var(--color-border);
  box-shadow: 0 4px 20px rgba(12, 35, 64, 0.03);
  display: flex;
  align-items: center;
  gap: 24px;
  max-width: 500px;
  flex: 1;
}

.badge-card img {
  width: 100px;
  height: auto;
}

.badge-card h4 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.badge-card p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

/* ==========================================================================
   CONTACT PAGE & OPTIONS
   ========================================================================== */
.contact-page-content {
  padding: 80px 0;
}

.contact-hero-card {
  background-color: var(--color-bg-light);
  border: 1px solid var(--color-border);
  border-radius: 20px;
  padding: 60px 40px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
}

.contact-hero-icon {
  margin-bottom: 20px;
}

.contact-phone {
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 8px;
}

.contact-options-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto 60px;
}

.contact-option-card {
  background-color: var(--color-bg-white);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 40px 30px;
  text-align: center;
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-option-card:hover {
  transform: translateY(-5px);
  border-color: var(--color-gold);
  box-shadow: 0 10px 25px rgba(12, 35, 64, 0.05);
}

.contact-option-icon {
  width: 64px;
  height: 64px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.gold-bg {
  background-color: rgba(223, 159, 40, 0.1);
}

.whatsapp-bg {
  background-color: rgba(0, 168, 89, 0.1);
}

.sms-bg {
  background-color: rgba(59, 130, 246, 0.1);
}

.contact-option-card h3 {
  font-size: 1.25rem;
  color: var(--color-primary);
  margin-bottom: 12px;
}

.contact-option-card p {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  margin-bottom: 20px;
}

.contact-option-action {
  font-weight: 600;
  color: var(--color-gold);
  margin-top: auto;
}

.contact-info-card {
  background-color: var(--color-bg-white);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 30px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact-info-item h4 {
  font-size: 1rem;
  color: var(--color-primary);
}

.contact-info-item p {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.contact-info-divider {
  width: 1px;
  height: 40px;
  background-color: var(--color-border);
}

/* ==========================================================================
   CTA BANNER (COMMON INNER)
   ========================================================================== */
.cta-banner {
  padding: 60px 0;
  background-color: var(--color-bg-white);
}

.cta-banner-card {
  background: linear-gradient(135deg, var(--color-primary) 0%, #1a365d 100%);
  border-radius: 24px;
  padding: 60px 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--color-bg-white);
}

.cta-banner-text h2 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.cta-banner-text p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
}

.cta-banner-buttons {
  display: flex;
  gap: 20px;
}

.btn-outline {
  border: 2px solid var(--color-gold);
  color: var(--color-gold);
  background: transparent;
}

.btn-outline:hover {
  background-color: var(--color-gold);
  color: var(--color-primary);
  transform: translateY(-2px);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  background-color: var(--color-bg-light);
  border-top: 1px solid var(--color-border);
  padding: 80px 0 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-brand p {
  margin-top: 20px;
  font-size: 0.95rem;
}

.footer-col h5 {
  font-size: 1.05rem;
  color: var(--color-primary);
  font-weight: 700;
  margin-bottom: 24px;
}

.footer-col a,
.footer-col p {
  display: block;
  margin-bottom: 12px;
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.footer-col a:hover {
  color: var(--color-gold);
}

.footer-bottom {
  border-top: 1px solid var(--color-border);
  padding-top: 30px;
  text-align: center;
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

/* ==========================================================================
   SCROLL REVEAL & INTERACTIONS
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.active,
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.15s;
}

.reveal-delay-2 {
  transition-delay: 0.3s;
}

.reveal-delay-3 {
  transition-delay: 0.45s;
}

/* ==========================================================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 3.2rem;
  }

  .cpam-large {
    font-size: 4.2rem;
  }

  .hero .container {
    gap: 40px;
  }
}

@media (max-width: 768px) {

  /* Navbar Mobile */
  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 86px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 86px);
    background-color: var(--color-bg-white);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    transition: left var(--transition-normal);
    border-top: 1px solid var(--color-border);
  }

  .nav-links.active {
    left: 0;
  }

  /* Hero Columns stacking */
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 50px;
  }

  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-subtitle {
    max-width: 100%;
  }

  .hero-cta-group {
    justify-content: center;
  }

  .hero-bullets-bar {
    flex-direction: column;
    gap: 16px;
    align-items: center;
  }

  /* Grid Stacking */
  .overview-grid,
  .atouts-grid,
  .services-grid-full,
  .contact-options-grid {
    grid-template-columns: 1fr;
  }

  .contact-info-card {
    flex-direction: column;
    gap: 20px;
  }

  .contact-info-divider {
    display: none;
  }

  .cta-banner-card {
    flex-direction: column;
    text-align: center;
    gap: 30px;
    padding: 40px;
  }

  .footer-content {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2.6rem;
  }

  .cpam-large {
    font-size: 3.4rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   HOME — faithful recreation of the supplied Taxi Amour visual
   ========================================================================== */
.home-page {
  --home-navy: #071b52;
  --home-gold: #eba918;
  --home-green: #08b85f;
  --home-copy: #26334f;
  background: #fff;
  color: var(--home-navy);
  font-family: Arial, "Helvetica Neue", sans-serif;
  min-height: 100svh;
  overflow-y: auto;
  scrollbar-width: none;
}

.home-page::-webkit-scrollbar {
  display: none;
}

html:has(body.home-page) {
  overflow-y: auto;
}

.home-page .navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  height: clamp(100px, 12vh, 143px);
  padding: 0;
  background: rgba(255, 255, 255, 0.98);
  border: 0;
  box-shadow: 0 1px 0 rgba(7, 27, 82, 0.035);
  backdrop-filter: blur(14px);
}

.home-page .nav-shell {
  width: 100%;
  height: 100%;
  padding: 0 60px 0 48px;
  display: flex;
  align-items: center;
}

.home-page .nav-logo {
  width: 202px;
  height: clamp(70px, 9vh, 104px);
  flex: 0 0 202px;
  display: flex;
  align-items: center;
}

.home-page .logo-img {
  width: 202px;
  height: auto;
  max-height: 100%;
  object-fit: contain;
}

.home-page .nav-panel {
  width: min(1025px, calc(100% - 260px));
  margin-left: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.home-page .primary-nav,
.home-page .nav-actions {
  display: flex;
  align-items: center;
}

.home-page .primary-nav {
  gap: 49px;
}

.home-page .primary-nav a {
  position: relative;
  padding: 12px 0 17px;
  color: var(--home-navy);
  font-size: 20px;
  font-weight: 400;
  line-height: 1;
  white-space: nowrap;
}

.home-page .primary-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  background: var(--home-gold);
  opacity: 0;
  transform: scaleX(0.7);
  transition: opacity 160ms ease, transform 160ms ease;
}

.home-page .primary-nav a:hover,
.home-page .primary-nav a.active {
  font-weight: 700;
}

.home-page .primary-nav a:hover::after,
.home-page .primary-nav a.active::after {
  opacity: 1;
  transform: scaleX(1);
}

.home-page .nav-actions {
  gap: 40px;
}

.home-page .nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--home-navy) !important;
  font-size: 23px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.home-page .nav-phone i {
  font-size: 27px;
  font-weight: 700;
}

.home-page .nav-cta {
  width: 204px;
  height: 61px;
  padding: 0;
  border-radius: 31px;
  background: #eba918;
  color: var(--home-navy) !important;
  box-shadow: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-size: 22px;
  font-weight: 700;
}

.home-page .nav-cta i {
  font-size: 25px;
}

.home-page .nav-cta:hover {
  background: #f0b52f;
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(235, 169, 24, 0.24);
}

.home-page .nav-toggle {
  display: none;
}

.home-page .mobile-header-phone,
.home-page .mobile-call-label {
  display: none;
}

.home-page main {
  display: block;
}

.home-page .hero {
  position: relative;
  width: 100%;
  height: calc(100svh - clamp(100px, 12vh, 143px));
  min-height: clamp(650px, 80vh, 760px);
  padding: 0;
  display: block;
  background: #f8f9fd;
  overflow: visible;
}

.home-page .hero::before,
.home-page .hero #hero-particles {
  display: none;
}

.home-page .hero-reference {
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  width: auto;
  max-width: none;
  height: 100%;
  display: block;
  object-fit: contain;
  pointer-events: none;
  user-select: none;
}

.home-page .hero-content {
  position: relative;
  z-index: 2;
  width: 650px;
  padding-top: clamp(15px, 2.5vh, 40px);
  margin-left: 74px;
  text-align: left;
}

.home-page .hero-title {
  margin: 0;
  color: var(--home-navy);
  font-family: Arial, "Helvetica Neue", sans-serif;
  font-size: 88px;
  font-weight: 800;
  line-height: 0.94;
  letter-spacing: -3.8px;
  transform: scaleX(0.945);
  transform-origin: left top;
}

.home-page .hero-title>span {
  display: block;
  white-space: nowrap;
}

.home-page .hero-title>span:nth-child(n + 2) {
  transform: translateY(-3px);
}

.home-page .hero-title strong {
  color: var(--home-gold);
  font-weight: 800;
}

.home-page .hero-title>span:first-child strong {
  display: inline-block;
  margin-right: -18px;
  transform: translateX(-10px) scaleX(0.945);
  transform-origin: left center;
}

.home-page .hero-tagline {
  margin: 4px 0 0 4px;
  color: var(--home-navy);
  font-size: 29px;
  font-weight: 700;
  line-height: 34px;
  transform: translateY(-5px) scaleX(1.01);
  transform-origin: left center;
}

.home-page .hero-subtitle {
  max-width: none;
  margin: clamp(10px, 1.8vh, 20px) 0 0 4px;
  color: var(--home-copy);
  font-size: 22px;
  font-weight: 400;
  line-height: 29px;
  transform: translateY(-4px);
}

.home-page .hero-features {
  width: 560px;
  height: 153px;
  margin: clamp(12px, 2vh, 24px) 0 0 0;
  display: grid;
  grid-template-columns: 176px 209px 175px;
  align-items: start;
  background: transparent;
}

.home-page .hero-feature {
  position: relative;
  height: 153px;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--home-navy);
  text-align: center;
  background: transparent;
}

.home-page .hero-feature+.hero-feature::before {
  content: "";
  position: absolute;
  top: 14px;
  bottom: 14px;
  left: 0;
  width: 1px;
  background: #b9c1d0;
}

.home-page .hero-feature-icon {
  width: auto;
  max-width: 110px;
  height: 80px;
  margin: 0 auto 4px;
  display: block;
  object-fit: contain;
}

.home-page .hero-feature h2 {
  margin: 0;
  color: var(--home-navy);
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
}

.home-page .hero-feature p {
  margin: 2px 0 0;
  color: #465168;
  font-size: 15.5px;
  font-weight: 400;
  line-height: 21px;
}

.home-page .hero-cta-group {
  width: 550px;
  margin: clamp(16px, 2.5vh, 31px) 0 0 -1px;
  display: grid;
  grid-template-columns: 260px 266px;
  gap: 26px;
}

.home-page .btn {
  width: 100%;
  height: 65px;
  padding: 0;
  border: 0;
  border-radius: 33px;
  box-shadow: 0 8px 18px rgba(7, 27, 82, 0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  font-family: Arial, "Helvetica Neue", sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
}

.home-page .btn i {
  font-size: 29px;
  line-height: 1;
}

.home-page .btn-gold {
  background: var(--home-gold);
  color: var(--home-navy);
}

.home-page .btn-whatsapp {
  background: var(--home-green);
  color: #fff;
}

.home-page .btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.025);
  box-shadow: 0 12px 24px rgba(7, 27, 82, 0.14);
}

.home-page .hero-bullets-bar {
  width: 722px;
  margin: clamp(20px, 3vh, 45px) 0 0 0;
  display: flex;
  align-items: center;
  gap: 0;
}

.home-page .bullet-item {
  min-height: 31px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--home-navy);
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
  white-space: nowrap;
}

.home-page .bullet-item i {
  flex: 0 0 auto;
  font-size: 30px;
  line-height: 1;
}

.home-page .bullet-item:nth-child(1) {
  padding-right: 28px;
}

.home-page .bullet-item:nth-child(2),
.home-page .bullet-item:nth-child(3) {
  border-left: 1px solid #b9c1d0;
  padding-left: 31px;
}

.home-page .bullet-item:nth-child(2) {
  padding-right: 32px;
}

.home-page .hero-mobile-visual {
  display: none;
}

.home-page .quick-overview {
  padding: 76px 0;
  background: #f7f9fc;
}

.home-page .overview-item .atout-icon {
  width: auto;
  height: auto;
  margin: 0 0 20px;
  color: var(--home-gold);
  font-size: 56px;
}

.home-page .overview-item h2 {
  margin-bottom: 14px;
  color: var(--home-navy);
  font-size: 22px;
}

.home-page .footer-logo {
  width: 190px;
  height: auto;
}

.home-page .footer-col h2 {
  margin-bottom: 24px;
  color: var(--home-navy);
  font-size: 17px;
}

.home-page .footer-bottom {
  margin: 0;
}

@media (max-width: 1400px) {
  .home-page .navbar {
    height: 112px;
  }

  .home-page .nav-shell {
    padding: 0 36px;
  }

  .home-page .nav-logo,
  .home-page .logo-img {
    width: 174px;
  }

  .home-page .nav-logo {
    flex-basis: 174px;
    height: 88px;
  }

  .home-page .nav-panel {
    width: min(900px, calc(100% - 210px));
  }

  .home-page .primary-nav {
    gap: 32px;
  }

  .home-page .primary-nav a {
    font-size: 17px;
  }

  .home-page .nav-actions {
    gap: 24px;
  }

  .home-page .nav-phone {
    font-size: 18px;
  }

  .home-page .nav-phone i {
    font-size: 22px;
  }

  .home-page .nav-cta {
    width: 170px;
    height: 54px;
    font-size: 19px;
  }

  .home-page .hero {
    height: calc(100svh - 112px);
    min-height: clamp(600px, 75vh, 700px);
  }

  .home-page .hero-content {
    width: 570px;
    margin-left: 50px;
    padding-top: clamp(15px, 2.5vh, 32px);
  }

  .home-page .hero-title {
    font-size: 70px;
  }

  .home-page .hero-tagline {
    font-size: 23px;
    line-height: 29px;
  }

  .home-page .hero-subtitle {
    font-size: 18px;
    line-height: 25px;
  }

  .home-page .hero-features {
    width: 480px;
    height: 131px;
    margin-top: 20px;
    grid-template-columns: 31.43% 37.14% 31.43%;
  }

  .home-page .hero-feature {
    height: 131px;
  }

  .home-page .hero-feature+.hero-feature::before {
    top: 12px;
    bottom: 12px;
  }

  .home-page .hero-feature-icon {
    height: 68px;
    margin-bottom: 3px;
  }

  .home-page .hero-feature h2 {
    font-size: 18px;
    line-height: 22px;
  }

  .home-page .hero-feature p {
    margin-top: 1px;
    font-size: 14px;
    line-height: 18px;
  }

  .home-page .hero-cta-group {
    width: 490px;
    grid-template-columns: 237px 237px;
    gap: 16px;
    margin-top: 22px;
  }

  .home-page .btn {
    height: 58px;
    font-size: 21px;
  }

  .home-page .hero-bullets-bar {
    margin-top: 30px;
    transform: scale(.9);
    transform-origin: left center;
  }
}

@media (max-width: 1100px) {
  html:has(body.home-page) {
    overflow: auto;
  }

  .home-page {
    height: auto;
    min-height: 100svh;
    overflow-y: auto;
    overflow-x: hidden;
  }

  .home-page .navbar {
    height: 88px;
  }

  .home-page .nav-shell {
    padding: 0 24px;
  }

  .home-page .nav-logo,
  .home-page .logo-img {
    width: 155px;
  }

  .home-page .nav-logo {
    flex-basis: 155px;
    height: 76px;
  }

  .home-page .nav-toggle {
    position: relative;
    z-index: 1002;
    margin-left: auto;
    display: block;
  }

  .home-page .nav-toggle span {
    width: 28px;
    height: 3px;
    border-radius: 2px;
  }

  .home-page .nav-panel {
    position: fixed;
    top: 88px;
    right: 0;
    left: auto;
    width: min(420px, 100%);
    height: calc(100svh - 88px);
    padding: 42px 28px;
    background: #fff;
    box-shadow: -14px 24px 40px rgba(7, 27, 82, 0.12);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 36px;
    transform: translateX(105%);
    transition: transform 240ms ease;
  }

  .home-page .nav-panel.active {
    transform: translateX(0);
  }

  .home-page .primary-nav,
  .home-page .nav-actions {
    width: 100%;
    flex-direction: column;
    gap: 8px;
    align-items: stretch;
  }

  .home-page .primary-nav a {
    padding: 15px 4px;
    font-size: 20px;
  }

  .home-page .primary-nav a::after {
    right: auto;
    width: 72px;
  }

  .home-page .nav-phone {
    padding: 16px 4px;
  }

  .home-page .nav-cta {
    width: 100%;
    margin-top: 10px;
  }

  .home-page .hero {
    height: auto;
    min-height: 0;
    padding: 60px 24px 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .home-page .hero-reference {
    display: none;
  }

  .home-page .hero-content {
    width: min(650px, 100%);
    padding: 0;
    margin: 0;
    text-align: center;
  }

  .home-page .hero-title {
    font-size: clamp(52px, 9vw, 76px);
    transform: none;
  }

  .home-page .hero-title>span:first-child strong {
    margin-right: 0;
    transform: none;
  }

  .home-page .hero-title>span:nth-child(n + 2) {
    transform: none;
  }

  .home-page .hero-title>span {
    white-space: normal;
  }

  .home-page .hero-tagline {
    margin: 12px 0 0;
    font-size: clamp(21px, 4vw, 27px);
    transform: none;
  }

  .home-page .hero-subtitle {
    margin: 22px 0 0;
    font-size: 18px;
    line-height: 27px;
    transform: none;
  }

  .home-page .hero-subtitle br {
    display: none;
  }

  .home-page .hero-features {
    width: min(560px, 100%);
    height: 153px;
    margin: 32px auto 0;
    grid-template-columns: 31.43% 37.14% 31.43%;
  }

  .home-page .hero-feature {
    height: 153px;
  }

  .home-page .hero-feature+.hero-feature::before {
    top: 14px;
    bottom: 14px;
  }

  .home-page .hero-feature-icon {
    height: 80px;
    margin-bottom: 4px;
  }

  .home-page .hero-feature h2 {
    font-size: 20px;
    line-height: 24px;
  }

  .home-page .hero-feature p {
    margin-top: 2px;
    font-size: 15.5px;
    line-height: 21px;
  }

  .home-page .hero-cta-group {
    width: min(560px, 100%);
    margin: 28px auto 0;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .home-page .hero-bullets-bar {
    width: auto;
    margin: 28px auto 0;
    justify-content: center;
    transform: none;
    flex-wrap: wrap;
    row-gap: 16px;
  }

  .home-page .hero-mobile-visual {
    width: min(760px, 100%);
    margin-top: 30px;
    display: block;
  }

  .home-page .mobile-badges {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6%;
  }

  .home-page .mobile-badges img:first-child {
    width: 33%;
  }

  .home-page .mobile-badges img:last-child {
    width: 42%;
  }

  .home-page .mobile-car {
    width: 100%;
    margin-top: -2%;
  }
}

@media (max-width: 620px) {
  html:has(body.home-page) {
    height: auto;
    overflow-y: auto;
  }

  .home-page {
    height: auto;
    min-height: 100svh;
    overflow-y: auto;
  }

  .home-page .navbar {
    position: sticky;
    height: 74px;
  }

  .home-page .nav-shell {
    gap: 14px;
    padding: 0 18px;
  }

  .home-page .nav-logo,
  .home-page .logo-img {
    width: 101px;
  }

  .home-page .nav-logo {
    height: 58px;
    flex: 0 0 101px;
  }

  .home-page .mobile-header-phone {
    margin-left: auto;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--home-navy);
    font-size: 18px;
    font-weight: 800;
    line-height: 1;
    white-space: nowrap;
  }

  .home-page .mobile-header-phone i {
    font-size: 22px;
    line-height: 1;
  }

  .home-page .nav-toggle {
    flex: 0 0 29px;
    width: 29px;
    margin-left: 0;
    padding: 0;
  }

  .home-page .nav-toggle span {
    width: 29px;
    height: 3px;
    margin: 5px 0;
    background: var(--home-navy);
  }

  .home-page .nav-panel {
    top: 74px;
    height: calc(100svh - 74px);
  }

  .home-page .hero {
    height: auto;
    min-height: calc(100svh - 74px);
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    background: #f8f9fd;
  }

  .home-page .hero-mobile-visual {
    order: -1;
    flex: 0 0 252px;
    width: 100%;
    height: 252px;
    margin: 0;
    display: block;
    overflow: hidden;
  }

  .home-page .mobile-hero-composite {
    width: 100%;
    max-width: none;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center center;
    transform: none;
  }

  .home-page .hero-content {
    flex: 1 1 auto;
    width: 100%;
    min-height: 0;
    padding: 10px 18px 7px;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    text-align: left;
  }

  .home-page .hero-title {
    margin: 0;
    font-size: 47px;
    line-height: .9;
    letter-spacing: -2.6px;
    transform: scaleX(.91);
    transform-origin: left top;
  }

  .home-page .hero-title>span,
  .home-page .hero-title>span:nth-child(n + 2) {
    white-space: nowrap;
    transform: none;
  }

  .home-page .hero-title>span:first-child strong {
    margin-right: 0;
    transform: none;
  }

  .home-page .hero-tagline {
    margin: 5px 0 0;
    font-size: 17px;
    line-height: 21px;
    letter-spacing: -.35px;
    transform: none;
    white-space: nowrap;
  }

  .home-page .hero-subtitle {
    margin: 11px 0 0;
    font-size: 13.5px;
    line-height: 19px;
    transform: none;
  }

  .home-page .hero-subtitle br {
    display: block;
  }

  .home-page .hero-features {
    width: 100%;
    height: 84px;
    margin: 15px 0 0;
    grid-template-columns: 31.5% 37% 31.5%;
  }

  .home-page .hero-feature {
    height: 84px;
  }

  .home-page .hero-feature+.hero-feature::before {
    top: 5px;
    bottom: 3px;
  }

  .home-page .hero-feature-icon {
    max-width: 52px;
    height: 43px;
    margin-bottom: 1px;
  }

  .home-page .hero-feature h2 {
    font-size: 15px;
    line-height: 17px;
  }

  .home-page .hero-feature p {
    margin-top: 1px;
    font-size: 10.5px;
    line-height: 13px;
  }

  .home-page .hero-cta-group {
    width: 100%;
    margin: 18px 0 0;
    grid-template-columns: 1fr;
    gap: 11px;
  }

  .home-page .btn {
    height: 44px;
    border-radius: 24px;
    gap: 9px;
    font-size: 19px;
    box-shadow: 0 5px 13px rgba(7, 27, 82, .11);
  }

  .home-page .btn i {
    font-size: 22px;
  }

  .home-page .desktop-call-label {
    display: none;
  }

  .home-page .mobile-call-label {
    display: inline;
  }

  .home-page .hero-bullets-bar {
    width: 100%;
    min-height: 20px;
    margin: auto 0 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    row-gap: 0;
  }

  .home-page .bullet-item,
  .home-page .bullet-item:nth-child(1),
  .home-page .bullet-item:nth-child(2),
  .home-page .bullet-item:nth-child(3) {
    width: auto;
    min-height: 18px;
    padding: 0 7px;
    justify-content: center;
    gap: 4px;
    color: var(--home-navy);
    font-size: 8.8px;
    line-height: 1;
    white-space: nowrap;
  }

  .home-page .bullet-item:nth-child(1) {
    padding-left: 0;
  }

  .home-page .bullet-item:nth-child(2),
  .home-page .bullet-item:nth-child(3) {
    border-left: 1px solid #b9c1d0;
  }

  .home-page .bullet-item:nth-child(3) {
    padding-right: 0;
  }

  .home-page .bullet-item i {
    font-size: 15px;
  }

  .home-page .overview-grid,
  .home-page .footer-content {
    grid-template-columns: 1fr;
  }
}

/* Gares & Aéroports reuses the index layout. The solid strip keeps the
   practical information readable over the darker airport photograph. */
.airport-index-page .hero-bullets-bar {
  background: #f8f9fd;
}

.airport-index-page .hero-subtitle {
  margin-top: clamp(50px, 7vh, 110px);
}

@media (max-width: 620px) {
  .airport-index-page .hero-title {
    font-size: 36px;
    letter-spacing: -1.7px;
    transform: scaleX(.94);
  }
}

/* Centering layout and reducing gap on large desktop screens */
@media (min-width: 1401px) {
  .home-page .nav-shell {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 74px;
  }

  .home-page .hero-content {
    margin-left: calc((100% - 1400px) / 2 + 74px);
  }

  .home-page .hero-reference {
    right: calc((100% - 1400px) / 2);
  }
}

/* ========================================================================== 
   GARES & AÉROPORTS — faithful recreation of the supplied visual
   ========================================================================== */
.airport-page {
  --airport-navy: #071b52;
  --airport-gold: #eba918;
  --airport-copy: #26334f;
}

@media (min-width: 1101px) {
  .airport-page .hero {
    width: 100%;
    height: calc(100svh - clamp(100px, 12vh, 143px));
    min-height: clamp(650px, 80vh, 760px);
    padding: 0;
    background: #fff;
    overflow: hidden;
  }

  .airport-page .hero::before,
  .airport-page .hero::after {
    display: none;
  }

  .airport-page .airport-hero-shell {
    position: relative;
    width: min(1400px, 100%);
    height: 100%;
    margin: 0 auto;
    overflow: hidden;
    background: #fff;
  }

  .airport-page .hero-reference {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    max-width: none;
    display: block;
    object-fit: contain;
    object-position: center;
    transform: none;
  }

  .airport-page .hero-content {
    position: relative;
    z-index: 2;
    width: 790px;
    margin: 0 0 0 74px;
    padding: 38px 0 0;
    text-align: left;
  }

  .airport-page .hero-title {
    margin: 0;
    color: var(--airport-navy);
    font-family: Arial, "Helvetica Neue", sans-serif;
    font-size: 94px;
    font-weight: 800;
    line-height: .99;
    letter-spacing: -4.6px;
    transform: scaleX(.91);
    transform-origin: left top;
  }

  .airport-page .hero-title > span,
  .airport-page .hero-title > span:nth-child(n + 2) {
    display: block;
    white-space: nowrap;
    transform: none;
  }

  .airport-page .hero-title > span:first-child strong {
    margin: 0;
    color: var(--airport-gold);
    transform: none;
  }

  .airport-page .hero-tagline {
    margin: 17px 0 0 11px;
    color: var(--airport-navy);
    font-size: 31px;
    font-weight: 700;
    line-height: 37px;
    letter-spacing: -.8px;
    transform: none;
  }

  .airport-page .hero-subtitle {
    max-width: none;
    margin: 26px 0 0 12px;
    color: var(--airport-copy);
    font-size: 23.5px;
    font-weight: 400;
    line-height: 33px;
    transform: none;
  }

  .airport-page .hero-features {
    width: 590px;
    height: 166px;
    margin: 16px 0 0 0;
    display: grid;
    grid-template-columns: 196px 230px 164px;
    align-items: start;
    background: transparent;
  }

  .airport-page .hero-feature {
    height: 166px;
    color: var(--airport-navy);
    background: transparent;
  }

  .airport-page .hero-feature + .hero-feature::before {
    top: 16px;
    bottom: 9px;
    background: #aab3c2;
  }

  .airport-page .hero-feature-icon {
    width: auto;
    max-width: 106px;
    height: 86px;
    margin: 0 auto 9px;
    display: block;
    object-fit: contain;
  }

  .airport-page .hero-feature h2 {
    margin: 0;
    color: var(--airport-navy);
    font-size: 22px;
    font-weight: 700;
    line-height: 26px;
  }

  .airport-page .hero-feature p {
    margin: 2px 0 0;
    color: #3d4a65;
    font-size: 16.5px;
    font-weight: 400;
    line-height: 21px;
  }

  .airport-page .hero-cta-group {
    width: 610px;
    margin: 33px 0 0 0;
    display: grid;
    grid-template-columns: 281px 297px;
    gap: 32px;
  }

  .airport-page .btn {
    height: 72px;
    border-radius: 36px;
    gap: 15px;
    font-size: 25px;
    box-shadow: 0 8px 18px rgba(7, 27, 82, .08);
  }

  .airport-page .btn i {
    font-size: 32px;
  }

  .airport-page .hero-bullets-bar {
    width: 805px;
    margin: 35px 0 0 0;
    display: flex;
    align-items: center;
    gap: 0;
    transform: none;
  }

  .airport-page .bullet-item {
    min-height: 42px;
    gap: 13px;
    color: var(--airport-navy);
    font-size: 19px;
    font-weight: 400;
    line-height: 1;
  }

  .airport-page .bullet-item i {
    font-size: 32px;
  }

  .airport-page .bullet-item:nth-child(1) {
    padding-right: 33px;
  }

  .airport-page .bullet-item:nth-child(2),
  .airport-page .bullet-item:nth-child(3) {
    border-left: 1px solid #aab3c2;
    padding-left: 34px;
  }

  .airport-page .bullet-item:nth-child(2) {
    padding-right: 34px;
  }

  .airport-page .hero-mobile-visual {
    display: none;
  }
}

@media (min-width: 1101px) and (max-width: 1400px) {
  .airport-page .hero {
    height: calc(100svh - 112px);
    min-height: 620px;
  }

  .airport-page .hero-content {
    width: 650px;
    margin-left: 50px;
    padding-top: 24px;
  }

  .airport-page .hero-title {
    font-size: 72px;
    letter-spacing: -3.5px;
  }

  .airport-page .hero-tagline {
    margin-top: 10px;
    font-size: 24px;
    line-height: 29px;
  }

  .airport-page .hero-subtitle {
    margin-top: 10px;
    font-size: 18px;
    line-height: 25px;
  }

  .airport-page .hero-features {
    width: 480px;
    height: 132px;
    margin-top: 7px;
    grid-template-columns: 159px 187px 134px;
  }

  .airport-page .hero-feature {
    height: 132px;
  }

  .airport-page .hero-feature-icon {
    height: 67px;
    max-width: 88px;
    margin-bottom: 2px;
  }

  .airport-page .hero-feature h2 {
    font-size: 18px;
    line-height: 22px;
  }

  .airport-page .hero-feature p {
    font-size: 14px;
    line-height: 18px;
  }

  .airport-page .hero-cta-group {
    width: 490px;
    margin-top: 19px;
    grid-template-columns: 237px 237px;
    gap: 16px;
  }

  .airport-page .btn {
    height: 58px;
    font-size: 21px;
  }

  .airport-page .hero-bullets-bar {
    margin-top: 24px;
    transform: scale(.9);
    transform-origin: left center;
  }
}

@media (max-width: 1100px) {
  .airport-page .airport-hero-shell {
    display: contents;
  }

  .airport-page .hero-title,
  .airport-page .hero-title > span,
  .airport-page .hero-title > span:nth-child(n + 2),
  .airport-page .hero-title > span:first-child strong,
  .airport-page .hero-tagline,
  .airport-page .hero-subtitle {
    transform: none;
  }

  .airport-page .hero-title > span:first-child strong {
    margin: 0;
  }

  .airport-page .mobile-hero-composite {
    object-position: 74% center;
  }
}

@media (max-width: 620px) {
  .airport-page .hero-title {
    font-size: 43px;
    line-height: .94;
    letter-spacing: -2.3px;
  }

  .airport-page .hero-title > span {
    white-space: nowrap;
  }

  .airport-page .hero-title > span:nth-child(2) {
    width: 132%;
    transform: scaleX(.76);
    transform-origin: left top;
  }

  .airport-page .hero-subtitle br {
    display: none;
  }

  .airport-page .mobile-hero-composite {
    object-position: 76% center;
  }
}
