/* Base Variables */
:root {
  --primary-green: #0d7e63;
  --secondary-teal: #1cb58e;
  --accent-orange: #f26d21;
  --accent-teal: #1abc9c;
  --bg-light: #f4f8f9;
  --bg-white: #ffffff;
  --text-dark: #2a333d;
  --text-main: #3d4a57;
  --text-light: #7b8b9a;
  --border-color: #dbe4ef;

  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 8px 16px rgba(13, 126, 99, 0.08);
  /* slight greenish shadow */
  --shadow-lg: 0 15px 30px rgba(0, 0, 0, 0.08);
  --shadow-card: 0 4px 12px rgba(0, 0, 0, 0.04);

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 30px;

  --font-main: 'Outfit', sans-serif;
  --font-text: 'Inter', sans-serif;

  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
}

/* Reset & Globals */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-text);
  color: var(--text-main);
  background-color: var(--bg-light);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

input,
select {
  font-family: inherit;
  outline: none;
}

/* Typography elements */
h1,
h2,
h3,
h4 {
  font-family: var(--font-main);
  font-weight: 700;
  color: var(--text-dark);
}

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  font-weight: 600;
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
  font-family: var(--font-main);
  font-size: 1rem;
}

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

.btn-primary:hover {
  background-color: #0c6a53;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(13, 126, 99, 0.3);
}

.btn-whatsapp {
  font-size: 1.125rem;
  padding: 16px 24px;
}

.btn-outline {
  border: 2px solid var(--border-color);
  color: var(--text-dark);
}

.btn-outline:hover {
  border-color: var(--primary-green);
  color: var(--primary-green);
}

.btn-full {
  width: 100%;
}

/* Header */
.header {
  background-color: var(--bg-white);
  padding: 16px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 1px 10px rgba(0, 0, 0, 0.06);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-content {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.text-logo {
  display: inline-flex;
  align-items: baseline;
  text-decoration: none;
  font-family: var(--font-accent);
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: -1.5px;
  line-height: 1;
}

.logo-text-dark {
  color: var(--text-dark);
}

.logo-text-green {
  color: var(--primary-green);
}

/* Footer Logo specific overrides */
.footer-logo {
  margin-bottom: 20px;
  display: inline-flex;
}

.logo-text-white {
  color: rgba(255, 255, 255, 0.95);
}

.logo-text-green-light {
  color: #7edacd;
}

/* Hero Section */
.hero-section {
  padding: 60px 0 100px;
  position: relative;
  background: linear-gradient(180deg, var(--bg-light) 0%, #e6f7f4 100%);
  overflow: hidden;
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.hero-text-wrapper {
  flex: 1;
  max-width: 550px;
}

.hero-title {
  font-family: var(--font-accent);
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
  color: var(--text-dark);
}

.hero-title .highlight {
  color: var(--primary-green);
  display: block;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-main);
  margin-bottom: 30px;
  line-height: 1.5;
}

.trust-bar {
  display: flex;
  align-items: center;
  gap: 15px;
  font-weight: 600;
  color: var(--text-dark);
  font-size: 0.95rem;
  margin-bottom: 0;
}

.trust-item i {
  color: var(--primary-green);
}

.trust-separator {
  color: #ccd5d6;
  font-weight: 300;
}

.hero-search-wrapper {
  flex: 0 0 550px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
}

.search-widget {
  background-color: var(--bg-white);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
  position: relative;
  z-index: 2;
  border: 1px solid rgba(13, 126, 99, 0.05);
  width: 100%;
}

@media (max-width: 1100px) {
  .hero-section {
    padding-bottom: 60px;
  }

  .hero-content {
    flex-direction: column;
    text-align: center;
    gap: 24px;
  }

  .hero-text-wrapper {
    max-width: 100%;
    margin-bottom: 10px;
  }

  .hero-subtitle {
    margin: 0 auto 15px;
    font-size: 1.1rem;
  }

  .trust-bar {
    justify-content: center;
    margin-bottom: 0px;
  }

  .hero-search-wrapper {
    flex: 1;
    width: 100%;
    max-width: 600px;
  }

  .search-widget {
    flex: none;
    width: 100%;
    padding: 24px;
  }

  .hero-title {
    font-size: 2.2rem;
  }
}

/* Very Small Screens */
@media (max-width: 480px) {
  .hero-title {
    font-size: 1.8rem;
  }

  .segmented-control {
    height: 48px;
  }

  .segmented-control label {
    line-height: 40px;
    font-size: 0.85rem;
  }

  .dropdown-trigger {
    height: 48px;
  }

  input[type="text"] {
    padding: 12px 12px 12px 40px;
  }
}

/* Large Screens */
@media (min-width: 1400px) {
  .container {
    max-width: 1320px;
  }

  .hero-title {
    font-size: 4.5rem;
  }

  .hero-text-wrapper {
    max-width: 700px;
  }

  .hero-content {
    gap: 40px;
    /* Reduced from 80px to bring form closer to text */
  }

  .hero-search-wrapper {
    flex: 0 0 520px;
    /* Reduced from 650px to prevent form from being too wide */
    margin-top: 40px;
    /* Push the form down to balance with the title */
  }

  .locations {
    gap: 24px;
  }

  .btn-swap {
    width: 46px;
    height: 46px;
    font-size: 1.2rem;
  }
}

/* Ultrawide Screens */
@media (min-width: 1900px) {
  .container {
    max-width: 1600px;
  }

  .hero-title {
    font-size: 5rem;
  }

  .hero-text-wrapper {
    max-width: 850px;
  }

  .hero-content {
    gap: 60px;
    /* Still noticeably tight but spaced for the larger screen */
  }

  .hero-search-wrapper {
    flex: 0 0 580px;
    /* Reduced width for ultrawide to prevent the form from looking stretched */
  }

  .locations {
    gap: 32px;
  }
}

.cta-urgency {
  margin-top: 15px;
  font-size: 0.85rem;
  color: #d9534f;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

/* Airline Logos */
.airline-trust-logos {
  padding: 60px 0;
  background: transparent;
  border-bottom: 1px solid rgba(13, 126, 99, 0.05);
  text-align: center;
  position: relative;
  z-index: 1;
}

.airline-trust-logos p {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 40px;
  font-weight: 500;
}

.logos-slider {
  width: 100%;
  overflow: hidden;
}

.logos-slider .swiper-wrapper {
  display: flex;
  align-items: center;
}

/* Desktop: Disable slider feel and show all logos */
@media (min-width: 901px) {
  .logos-slider .swiper-wrapper {
    justify-content: center;
    gap: 100px;
    transform: none !important;
  }

  .logos-slider .swiper-slide {
    width: auto !important;
    margin: 0 !important;
  }
}

.logos-slider {
  filter: grayscale(1);
  opacity: 0.5;
  transition: all var(--transition-fast);
}

.logos-slider:hover {
  filter: grayscale(0);
  opacity: 1;
}

.airline-logo {
  height: 28px;
  width: auto;
  display: block;
  margin: 0 auto;
}

/* CTA Strips (Repeated CTAs) */
.cta-strip {
  padding: 30px 0;
  background-color: var(--bg-light);
  text-align: center;
  border-bottom: 1px solid var(--border-color);
}

.btn-cta-scroll {
  padding: 16px 32px;
  font-size: 1.1rem;
  font-weight: 700;
  box-shadow: 0 10px 20px rgba(13, 126, 99, 0.2);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.btn-cta-scroll:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(13, 126, 99, 0.3);
}

.reviews-cta {
  text-align: center;
  margin-top: 50px;
}

/* Form Layout */
.form-row {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
}

.top-controls {
  margin-bottom: 24px;
}

.input-group {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
}

.input-group.half {
  flex: 0 0 calc(50% - 8px);
}

/* Segmented Control / Toggle */
.segmented-control {
  position: relative;
  display: flex;
  width: 100%;
  background-color: var(--bg-light);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 4px;
  height: 56px;
  align-items: center;
}

.segmented-control input[type="radio"] {
  display: none;
}

.segmented-control label {
  flex: 1;
  text-align: center;
  z-index: 2;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-light);
  transition: color var(--transition-fast);
  font-family: var(--font-main);
  line-height: 48px;
}

.segmented-control input[type="radio"]:checked+label {
  color: var(--primary-green);
}

.segmented-control .selection-slider {
  position: absolute;
  top: 4px;
  left: 4px;
  width: calc(50% - 4px);
  height: calc(100% - 8px);
  background-color: var(--bg-white);
  border-radius: calc(var(--radius-md) - 4px);
  box-shadow: var(--shadow-sm);
  z-index: 1;
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

#somente-ida:checked~.selection-slider {
  transform: translateX(100%);
}

/* Passenger Dropdown */
.passenger-dropdown {
  position: relative;
  width: 100%;
}

.dropdown-trigger {
  width: 100%;
  height: 56px;
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 0 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  transition: all var(--transition-fast);
  color: var(--text-dark);
  font-weight: 500;
}

.dropdown-trigger i {
  color: var(--text-light);
  font-size: 1.1rem;
}

.dropdown-trigger:hover {
  border-color: var(--secondary-teal);
}

.passenger-dropdown.active .dropdown-content {
  display: block;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 20px;
  box-shadow: var(--shadow-lg);
  z-index: 100;
}

.passenger-type {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.type-info {
  display: flex;
  flex-direction: column;
  text-align: left;
  align-items: flex-start;
}

.type-info strong {
  font-size: 1rem;
  color: var(--text-dark);
}

.type-info span {
  font-size: 0.8rem;
  color: var(--text-light);
}

.type-counter {
  display: flex;
  align-items: center;
  gap: 16px;
}

.count-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  background-color: var(--bg-light);
  color: var(--primary-green);
  font-size: 1.2rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.count-btn:hover {
  background-color: var(--primary-green);
  color: var(--bg-white);
  border-color: var(--primary-green);
}

.count-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  background-color: var(--bg-light);
  color: var(--text-light);
  border-color: var(--border-color);
}

.count-val {
  font-weight: 700;
  font-size: 1rem;
  min-width: 12px;
  text-align: center;
}

.btn-done {
  width: 100%;
  padding: 10px;
  background-color: var(--primary-green);
  color: var(--bg-white);
  border-radius: var(--radius-sm);
  font-weight: 600;
  margin-top: 10px;
}

.icon-left {
  position: absolute;
  left: 16px;
  color: var(--text-light);
  font-size: 1.1rem;
  pointer-events: none;
}

/* Inputs & Selects */
select.custom-select,
input[type="text"],
input[type="date"] {
  width: 100%;
  padding: 16px 16px 16px 44px;
  /* padding for icon */
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  font-size: 1rem;
  color: var(--text-dark);
  background-color: var(--bg-white);
  transition: all var(--transition-fast);
  appearance: none;
  /* remove native styling */
}

/* Select overrides */
select.custom-select {
  padding-left: 16px;
  /* if no icon */
  cursor: pointer;
}

select.with-icon {
  font-family: var(--font-text), 'Font Awesome 6 Free';
  /* mix fonts to get the awesome icon to render in option */
  font-weight: 500;
}

input:focus,
select:focus {
  border-color: var(--secondary-teal);
  box-shadow: 0 0 0 3px rgba(28, 181, 142, 0.15);
}

/* Swap button logic */
.locations {
  position: relative;
  align-items: center;
}

.btn-swap {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 42px;
  height: 42px;
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  color: var(--primary-green);
  border-radius: 50%;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: all var(--transition-fast);
}

.btn-swap:hover {
  background-color: var(--primary-green);
  color: var(--bg-white);
  border-color: var(--primary-green);
  transform: translate(-50%, -50%) rotate(180deg);
  box-shadow: 0 6px 15px rgba(13, 126, 99, 0.2);
}

/* CTA Footer inside form */
.cta-wrapper {
  margin-top: 30px;
  text-align: center;
}

.cta-helper {
  margin-top: 12px;
  font-size: 0.875rem;
  color: var(--text-light);
}

/* Responsive Grid Form */
@media (max-width: 768px) {
  .form-row {
    flex-direction: column;
    gap: 12px;
    margin-bottom: 12px;
  }

  .input-group.half {
    flex: 1 1 100%;
  }

  .locations {
    flex-direction: column;
    gap: 8px;
    align-items: stretch;
  }

  .btn-swap {
    position: absolute;
    left: 50%;
    top: 50%;
    right: auto;
    transform: translate(-50%, -50%) rotate(90deg);
    width: 36px;
    height: 36px;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    /* Making it pop slightly more */
    color: var(--primary-green);
    z-index: 10;
  }

  .btn-swap:hover {
    transform: translate(-50%, -50%) rotate(270deg);
    background: var(--bg-light);
  }
}

/* Promo Banner */
.promo-banner {
  background: linear-gradient(135deg, var(--secondary-teal) 0%, var(--primary-green) 100%);
  padding: 40px 0;
  color: var(--bg-white);
  border-radius: 20px;
  margin: 0 auto;
  /* Center horizontally */
  max-width: calc(100% - 40px);
  /* Leave 20px gap on each side on smaller screens */
}

@media (min-width: 1240px) {
  .promo-banner {
    max-width: 1200px;
    /* Constrain width on large screens */
  }
}


.promo-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.promo-text h2 {
  color: var(--bg-white);
  font-size: 1.8rem;
  margin-bottom: 8px;
}

.promo-text p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
}

.promo-action .btn-outline {
  border: 2px solid var(--bg-white);
  color: var(--bg-white);
  padding: 12px 30px;
}

.promo-action .btn-outline:hover {
  background: var(--bg-white);
  color: var(--secondary-teal) !important;
}

@media (max-width: 900px) {
  .promo-content {
    flex-direction: column;
    text-align: center;
  }

  .promo-action {
    margin-top: 10px;
  }
}

/* Value Proposition */
.value-prop-section {
  padding: 80px 0;
  background: linear-gradient(180deg, #e6f7f4 0%, var(--bg-white) 100%);
}

.value-prop-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 60px;
}

.value-prop-text {
  flex: 1;
}

.value-prop-text h2 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 16px;
  color: var(--text-dark);
}

.value-prop-text p {
  font-size: 1.1rem;
  color: var(--text-main);
  margin-bottom: 24px;
}

.benefits-list-short {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.benefits-list-short li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--primary-green);
  font-weight: 500;
}

.benefits-list-short li i {
  background: rgba(13, 126, 99, 0.1);
  padding: 4px;
  border-radius: 50%;
  font-size: 0.8rem;
}

.value-prop-image {
  flex: 1.2;
  position: relative;
  display: flex;
  justify-content: center;
}

.floating-illustration {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  mix-blend-mode: multiply;
  /* Helps blend light backgrounds if not transparent */
}

/* Feature Cards below */
.benefits-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.card {
  background: var(--bg-white);
  padding: 40px 30px;
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
  border: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(13, 126, 99, 0.1);
  border-color: var(--primary-green);
}

.card-icon {
  width: 64px;
  height: 64px;
  background: #eef9f7;
  color: var(--primary-green);
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-bottom: 24px;
  transition: background var(--transition-fast), color var(--transition-fast);
}

.card:hover .card-icon {
  background: var(--primary-green);
  color: #fff;
}

.card h3 {
  font-size: 1.25rem;
  color: var(--text-dark);
  margin-bottom: 12px;
  font-weight: 700;
}

.card p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.6;
}

@media (max-width: 900px) {
  .value-prop-content {
    flex-direction: column;
  }

  .benefits-cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* Reviews Section */
.reviews-section {
  padding: 80px 0;
  background-color: var(--bg-light);
}

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

.section-header h2 {
  font-size: 2.2rem;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.section-header p {
  color: var(--text-light);
  font-size: 1.1rem;
}

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

.review-card {
  background: var(--bg-white);
  padding: 30px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
  display: flex;
  flex-direction: column;
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.review-stars {
  color: #ffc107;
  margin-bottom: 20px;
  font-size: 0.9rem;
}

.review-text {
  font-style: italic;
  color: var(--text-main);
  line-height: 1.6;
  margin-bottom: 24px;
  flex: 1;
}

.review-author {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--border-color);
  padding-top: 16px;
}

.review-author strong {
  color: var(--text-dark);
  font-size: 1rem;
}

.review-author span {
  color: var(--text-light);
  font-size: 0.85rem;
}

/* Swiper Custom Styles */
.reviews-slider {
  padding-bottom: 50px;
}

.swiper-pagination-bullet-active {
  background: var(--primary-green) !important;
}

.card-slide {
  height: auto;
  display: flex;
}

@media (max-width: 992px) {
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .reviews-grid {
    grid-template-columns: 1fr;
  }
}

/* Secondary CTA Section */
.secondary-cta-section {
  background-color: #1b6b5c;
  /* Darker green for more contrast and premium look */
  padding: 60px 0 60px;
  border-radius: 0;
  margin: 0 auto;
  max-width: 100%;
}

@media (min-width: 1240px) {
  .secondary-cta-section {
    max-width: 1200px;
  }
}

.sec-cta-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.sec-cta-text h2 {
  font-size: 2.2rem;
  color: var(--bg-white);
  margin-bottom: 12px;
}

.sec-cta-text p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.05rem;
  line-height: 1.5;
}

.sec-cta-badge {
  position: relative;
  width: 400px;
  height: 250px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.sec-badge-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.badge-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.55) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  justify-content: stretch;
  padding: 16px;
}

.badge-item {
  background: rgba(255, 255, 255, 0.95);
  padding: 14px 16px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  width: 100%;
  white-space: normal;
}

.badge-icon {
  font-size: 1.4rem;
  background: var(--primary-green);
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.badge-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.badge-text strong {
  font-size: 1.1rem;
  color: var(--text-dark);
  font-family: var(--font-main);
}

.badge-text span {
  font-size: 0.85rem;
  color: var(--text-main);
  font-weight: 500;
  line-height: 1.3;
  white-space: normal;
}

.badge-airport-code {
  display: inline-block;
  background: var(--primary-green);
  color: #fff;
  font-size: 0.70rem;
  font-weight: 700;
  padding: 1px 6px;
  border-radius: 4px;
  letter-spacing: 0.5px;
  vertical-align: middle;
}

@media (max-width: 768px) {
  .sec-cta-content {
    flex-direction: column;
    text-align: center;
    gap: 24px;
  }

  .sec-cta-text {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .sec-cta-badge {
    width: 100%;
    height: auto;
    min-height: 250px;
  }

  .badge-item {
    flex-direction: column;
    text-align: center;
    padding: 16px;
    gap: 12px;
  }
}

/* Footer */
.footer {
  background: var(--text-dark);
  color: var(--text-light);
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col h3 {
  color: var(--bg-white);
  font-size: 1.1rem;
  margin-bottom: 20px;
  font-weight: 600;
}

.footer-col p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 12px;
}

.footer-col i {
  color: var(--primary-green);
  margin-right: 8px;
  width: 16px;
  text-align: center;
}

.footer-col strong {
  color: var(--bg-white);
}

.brand-col .text-logo {
  color: var(--bg-white);
  margin-bottom: 15px;
  display: inline-block;
}

.footer-tagline {
  max-width: 300px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  text-align: center;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-tagline {
    margin: 0 auto;
  }
}

/* Autocomplete Dropdown */
.autocomplete-items {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 99;
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  max-height: 250px;
  overflow-y: auto;
  margin-top: 4px;
}

.autocomplete-item {
  padding: 12px 16px;
  cursor: pointer;
  border-bottom: 1px solid var(--bg-light);
  font-size: 0.95rem;
  color: var(--text-main);
  transition: background-color var(--transition-fast);
  display: flex;
  align-items: center;
}

.autocomplete-item:last-child {
  border-bottom: none;
}

.autocomplete-item:hover,
.autocomplete-active {
  background-color: var(--bg-light);
  color: var(--primary-green);
}

.autocomplete-item .ap-code {
  margin-left: auto;
  background-color: #e6f7f4;
  color: var(--primary-green);
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 700;
  font-family: var(--font-main);
}

/* Dropdown Refinement & Animations */
.dropdown-content,
.autocomplete-items {
  transform-origin: top;
  animation: dropdownFadeIn 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}

@keyframes dropdownFadeIn {
  from {
    opacity: 0;
    transform: translateY(10px) scaleY(0.95);
  }

  to {
    opacity: 1;
    transform: translateY(0) scaleY(1);
  }
}

/* Custom Flatpickr Overrides */
.flatpickr-calendar {
  box-shadow: var(--shadow-lg) !important;
  border: none !important;
  border-radius: var(--radius-md) !important;
  overflow: hidden;
}

.flatpickr-day.selected {
  background: var(--primary-green) !important;
  border-color: var(--primary-green) !important;
}

.flatpickr-day.today {
  border-color: var(--secondary-teal) !important;
}

.flatpickr-day:hover {
  background: rgba(13, 126, 99, 0.1) !important;
}

.flatpickr-months .flatpickr-month {
  background: var(--primary-green) !important;
  color: #fff !important;
  fill: #fff !important;
}

.flatpickr-current-month .flatpickr-monthDropdown-months {
  font-family: var(--font-main) !important;
}

.flatpickr-weekday {
  background: var(--primary-green) !important;
  color: rgba(255, 255, 255, 0.9) !important;
}

.flatpickr-months .flatpickr-prev-month,
.flatpickr-months .flatpickr-next-month {
  fill: #fff !important;
}

/* --- Conversion Optimization Styling --- */

/* CTA Strips */
.cta-strip {
  padding: 40px 0;
  background-color: var(--bg-light);
  text-align: center;
  border-bottom: 1px solid var(--border-color);
}

.btn-cta-scroll {
  padding: 16px 36px;
  font-size: 1.15rem;
  font-weight: 700;
  box-shadow: 0 10px 25px rgba(13, 126, 99, 0.2);
  transition: all var(--transition-fast);
}

.btn-cta-scroll:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(13, 126, 99, 0.3);
  filter: brightness(1.1);
}

.reviews-cta {
  text-align: center;
  margin-top: 50px;
}

/* Benefit Cards Refinement */
.benefits-cards {
  gap: 30px !important;
}

.benefits-cards .card {
  padding: 40px 30px !important;
  border-radius: var(--radius-lg) !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04) !important;
}

.benefits-cards .card:hover {
  border-color: var(--primary-green) !important;
  box-shadow: 0 16px 48px rgba(13, 126, 99, 0.1) !important;
}

.benefits-cards .card-icon {
  width: 60px;
  height: 60px;
  background: #eef9f7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.6rem;
  transition: all 0.3s ease;
}

.benefits-cards .card:hover .card-icon {
  background: var(--primary-green);
  color: #fff;
}

/* Secondary CTA Section Polish */
.secondary-cta-section {
  padding: 120px 0 !important;
  background: linear-gradient(135deg, var(--primary-green) 0%, #0a634e 100%) !important;
}

.sec-cta-text h2 {
  font-size: 3rem !important;
  font-weight: 800 !important;
  margin-bottom: 24px !important;
}

.sec-cta-text p {
  font-size: 1.3rem !important;
  margin-bottom: 40px !important;
}

/* Layout Fix for Hero Text Wrapper on small screens */
@media (max-width: 1100px) {
  .hero-content {
    flex-direction: column !important;
    text-align: center !important;
  }

  .hero-text-wrapper {
    max-width: 100% !important;
    margin-bottom: 40px;
  }
}