@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Space Grotesk";
  src: url("../fonts/SpaceGrotesk.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

html,
body {
  overflow-x: clip;
}

img {
  max-width: 100%;
}

:root {
  --primary-color: #1e3a8a;
  --secondary-color: #3b82f6;
  --accent-color: #06b6d4;
  --text-dark: #1f2937;
  --text-light: #6b7280;
  --bg-light: #f9fafb;
  --bg-white: #ffffff;
  --gradient-primary: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
  --gradient-accent: linear-gradient(135deg, #06b6d4 0%, #3b82f6 100%);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
  --border-radius: 12px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  background: var(--bg-light);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1 0 auto;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.hero-content > *,
.info-cta-layout > *,
.post-layout > *,
.flights-layout > *,
.cities-grid > *,
.flights-grid-main > *,
.testimonials-grid > * {
  min-width: 0;
  max-width: 100%;
}

h1, h2, h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 1.5rem;
}

h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: 1rem;
  text-align: center;
}

h3 {
  font-size: clamp(1.2rem, 3vw, 1.5rem);
  margin-bottom: 0.75rem;
}

p {
  margin-bottom: 1rem;
  color: var(--text-light);
}

header {
  background: var(--gradient-primary);
  color: white;
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-md);
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.logo a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: white;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
}

.logo img {
  border-radius: 8px;
}

.header-notice {
  font-size: 0.85rem;
  opacity: 0.9;
  text-align: right;
}

.hero {
  background: var(--gradient-accent);
  padding: 4rem 0;
  color: white;
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-text h1 {
  color: white;
}

.hero-text p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.hero-features {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
}

.feature i {
  font-size: 1.5rem;
}

.booking-form {
  background: white;
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-lg);
  color: var(--text-dark);
}

.booking-form h3 {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  text-align: center;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  max-width: 100%;
  padding: 0.75rem;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--secondary-color);
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.checkbox-group input[type="checkbox"] {
  width: auto;
  margin-top: 0.25rem;
}

.checkbox-group label {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-light);
}

.btn-primary,
.btn-secondary {
  padding: 0.875rem 2rem;
  border: none;
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

.btn-primary {
  background: var(--gradient-primary);
  color: white;
  width: 100%;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background: var(--gradient-accent);
  color: white;
  width: 100%;
}

.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-large {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
}

section {
  padding: 4rem 0;
}

.section-subtitle {
  text-align: center;
  font-size: 1.1rem;
  margin-bottom: 3rem;
}

.cities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.city-card {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  text-decoration: none;
  color: white;
  aspect-ratio: 4/3;
  transition: var(--transition);
  box-shadow: var(--shadow-md);
}

.city-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.city-card img {
  width: 100%;
  height: 100%;
  object-fit: fill;
  transition: var(--transition);
}

.city-card:hover img {
  transform: scale(1.1);
}

.city-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
}

.city-info h3 {
  color: white;
  margin-bottom: 0.25rem;
}

.city-info p {
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  font-size: 0.9rem;
}

.flights-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.flights-grid-main {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}


.flight-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.flight-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.flight-image {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}

.flight-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.flight-card:hover .flight-image img {
  transform: scale(1.1);
}

.flight-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--gradient-accent);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}

.flight-content {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.5rem;
}

.flight-content .btn-secondary {
  margin-top: auto;
  width: 100%;
  text-align: center;
}

.flight-location {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.flight-details {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: var(--text-light);
}

.flight-details i {
  color: var(--secondary-color);
  margin-right: 0.25rem;
}

.flight-price {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.price-from {
  color: var(--text-light);
  font-size: 0.9rem;
}

.price-amount {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color);
}

.price-per {
  color: var(--text-light);
  font-size: 0.9rem;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 3rem;
}

.step {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  background: white;
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.step:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(8px);
}

.step-number {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  flex-shrink: 0;
}

.step-content h3 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.testimonial-card {
  background: white;
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.testimonial-rating {
  color: #fbbf24;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.testimonial-text {
  color: var(--text-dark);
  font-style: italic;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.testimonial-author strong {
  color: var(--primary-color);
}

.testimonial-author span {
  color: var(--text-light);
  font-size: 0.9rem;
}

.info-cta-section {
  padding: 4rem 0;
  background: var(--bg-light);
}

.info-cta-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: center;
  background: white;
  padding: 3rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
}

.info-text-block h2 {
  text-align: left;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.info-text-block p {
  color: var(--text-dark);
  line-height: 1.7;
  margin-bottom: 1rem;
  font-size: 1.05rem;
}

.info-stats-block {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 2rem;
  background: var(--gradient-primary);
  border-radius: var(--border-radius);
  color: white;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.stat-number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
}

.stat-label {
  font-size: 1rem;
  opacity: 0.9;
}

.info-stats-block .btn-primary {
  margin-top: 1rem;
  background: white;
  color: var(--primary-color);
  text-align: center;
}

.info-stats-block .btn-primary:hover {
  background: var(--bg-light);
  transform: translateY(-2px);
}

@media (max-width: 968px) {
  .info-cta-layout {
    grid-template-columns: 1fr;
    padding: 2rem;
  }
  
  .info-text-block h2 {
    text-align: center;
  }
}

@media (max-width: 640px) {
  .info-cta-section {
    padding: 3rem 0;
  }
  
  .info-cta-layout {
    padding: 1.5rem;
    gap: 2rem;
  }
  
  .stat-number {
    font-size: 2rem;
  }
}

.main-form {
  max-width: 800px;
  margin: 0 auto;
  background: white;
  padding: 3rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-lg);
  color: var(--text-dark);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

footer {
  background: #111827;
  color: white;
  padding: 3rem 0 1.5rem;
  margin-top: auto;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 3rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: white;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
}

.footer-info p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.footer-legal {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: var(--transition);
  font-size: 0.95rem;
}

.footer-legal a:hover {
  color: var(--accent-color);
}

.footer-disclaimer {
  margin-bottom: 1.5rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
}

.footer-disclaimer p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  line-height: 1.6;
  margin: 0;
}

.footer-bottom {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  margin: 0;
}

@media (max-width: 968px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .cities-grid,
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  section {
    padding: 3rem 0;
  }

  .cities-grid,
  .flights-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .step {
    flex-direction: column;
    text-align: center;
  }

  .main-form {
    padding: 2rem 1.5rem;
  }

  .header-container {
    flex-direction: column;
    text-align: center;
  }

  .header-notice {
    text-align: center;
    font-size: 0.75rem;
  }
}

.flights-section {
  padding: 3rem 0;
  background: var(--bg-light);
}

.flights-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 3rem;
  align-items: start;
}

.city-sidebar {
  background: white;
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
  position: sticky;
  top: 100px;
}

.city-sidebar h3 {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
}

.city-nav {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.city-btn {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--bg-light);
  border: 2px solid transparent;
  border-radius: 10px;
  cursor: pointer;
  transition: var(--transition);
  text-align: left;
  font-family: inherit;
  font-size: 1rem;
}

.city-btn i {
  font-size: 1.3rem;
  color: var(--secondary-color);
  width: 24px;
}

.city-btn span:first-of-type {
  flex: 1;
  font-weight: 600;
  color: var(--text-dark);
}

.flight-count {
  font-size: 0.85rem;
  color: var(--text-light);
  font-weight: 500;
}

.city-btn:hover {
  background: white;
  border-color: var(--secondary-color);
  transform: translateX(4px);
}

.city-btn.active {
  background: var(--gradient-primary);
  border-color: var(--primary-color);
  color: white;
}

.city-btn.active i {
  color: white;
}

.city-btn.active span:first-of-type {
  color: white;
}

.city-btn.active .flight-count {
  color: rgba(255, 255, 255, 0.9);
}

.city-content {
  min-height: 600px;
}

.city-panel {
  display: none;
  animation: fadeIn 0.4s ease;
}

.city-panel.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.city-header {
  margin-bottom: 2.5rem;
}

.city-header h2 {
  text-align: left;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.city-header p {
  color: var(--text-light);
  font-size: 1.1rem;
  margin: 0;
}

@media (max-width: 968px) {
  .flights-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .city-sidebar {
    position: static;
  }
  
  .city-nav {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
}

@media (max-width: 640px) {
  .city-nav {
    grid-template-columns: 1fr;
  }
  
  .city-btn {
    padding: 0.875rem 1rem;
  }
}

.post-hero {
  padding: 3rem 0;
  background: var(--bg-light);
}

.post-main-image {
  width: 100%;
  border-radius: var(--border-radius);
  overflow: hidden;
  margin-bottom: 2.5rem;
  box-shadow: var(--shadow-md);
  aspect-ratio: 16/7;
}

.post-main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.post-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  align-items: start;
}

.post-content h1 {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
}

.post-price {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: white;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
}

.post-details {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.detail-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-light);
}

.detail-item i {
  color: var(--secondary-color);
  font-size: 1.2rem;
}

.post-description {
  background: white;
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
}

.post-description h2 {
  text-align: left;
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.post-description h3 {
  color: var(--primary-color);
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  font-size: 1.3rem;
}

.post-description p {
  color: var(--text-dark);
  margin-bottom: 1rem;
  line-height: 1.7;
}

.post-description ul {
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

.post-description li {
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.post-form {
  position: sticky;
  top: 100px;
}

@media (max-width: 968px) {
  .post-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .post-form {
    position: static;
  }
}

.thanks-section {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 0;
  background: linear-gradient(135deg, #e0eafc 0%, #cfdef3 100%);
}

.thanks-card {
  background: var(--bg-white);
  padding: 3rem 2.5rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-lg);
  text-align: center;
  max-width: 650px;
  width: 100%;
  border-top: 5px solid var(--secondary-color);
}

.thanks-card img {
  margin-bottom: 1.5rem;
}

.thanks-card h1 {
  color: var(--primary-color);
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.thanks-card p {
  color: var(--text-dark);
  font-size: 1.2rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.thanks-card p:last-child {
  margin-bottom: 0;
}

@media (max-width: 640px) {
  .thanks-section {
    min-height: 70vh;
    padding: 2rem 0;
  }
  
  .thanks-card {
    padding: 2rem 1.5rem;
  }
  
  .thanks-card h1 {
    font-size: 1.6rem;
  }
  
  .thanks-card p {
    font-size: 1.1rem;
  }
}

.legal-page {
  padding: 4rem 0;
  background: var(--bg-light);
  min-height: 80vh;
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
  background: white;
  padding: 3rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
  word-break: break-word;
}

.legal-content h1 {
  text-align: left;
  color: var(--primary-color);
  margin-bottom: 2rem;
  font-size: 2.2rem;
  border-bottom: 2px solid var(--secondary-color);
  padding-bottom: 1rem;
}

.legal-content h2 {
  text-align: left;
  color: var(--primary-color);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.legal-content h3 {
  text-align: left;
  color: var(--text-dark);
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  font-size: 1.2rem;
}

.legal-content p {
  color: var(--text-dark);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1rem;
  text-align: left;
}

.legal-content ul {
  margin-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.legal-content li {
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.legal-content a {
  color: var(--secondary-color);
  text-decoration: underline;
  word-break: break-all;
}

.legal-content a:hover {
  color: var(--primary-color);
}

@media (max-width: 640px) {
  .legal-page {
    padding: 2rem 0;
  }
  
  .legal-content {
    padding: 2rem 1.5rem;
  }
  
  .legal-content h1 {
    font-size: 1.8rem;
  }
  
  .legal-content h2 {
    font-size: 1.3rem;
  }
}

[data-aos="fade-right"]:not(.aos-animate) {
  transform: translate3d(-32px, 0, 0) !important;
}

[data-aos="fade-left"]:not(.aos-animate) {
  transform: translate3d(32px, 0, 0) !important;
}

[data-aos="zoom-in"]:not(.aos-animate) {
  transform: translate3d(0, 24px, 0) scale(0.98) !important;
}

@media (max-width: 900px) {
  [data-aos] {
    transform: none !important;
    opacity: 1 !important;
    transition: none !important;
  }

  .hero-content > *,
  .info-cta-layout > *,
  .post-layout > *,
  .flights-layout > *,
  .testimonials-grid > * {
    min-width: 0;
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  .header-notice {
    word-break: break-all;
  }

  .logo a {
    flex-direction: column;
  }

  .logo a span {
    word-break: break-all;
    min-width: 0;
    flex: 1;
  }

  .footer-info,
  .footer-col {
    word-break: break-all;
  }

  .flights-grid-main {
    grid-template-columns: 1fr;
  }

  .flight-image {
    display: flex;
    flex-direction: column;
    gap: 10px;
    aspect-ratio: auto;
    overflow: visible;
  }

  .flight-image img {
    width: 100%;
    height: auto;
    aspect-ratio: 16/10;
  }

  .flight-badge {
    position: static;
    max-width: 100%;
    align-self: flex-start;
  }
}

@media (max-width: 480px) {
  .container,
  .header-container,
  .footer-container,
  .hero-content {
    padding-left: 12px;
    padding-right: 12px;
  }

  .booking-form,
  .main-form,
  .thanks-card,
  .legal-content {
    padding: 1.25rem;
  }

  h1 {
    font-size: clamp(1.6rem, 8vw, 2.2rem);
  }

  h2 {
    font-size: clamp(1.4rem, 6vw, 1.8rem);
  }
}