/* Global CSS variables & design tokens */
:root {
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --font-display: 'Space Grotesk', system-ui, sans-serif;
  
  --color-primary: #4f46e5;
  --color-primary-hover: #4338ca;
  --color-primary-light: #e0e7ff;
  --color-dark: #0f172a;
  --color-dark-light: #1e293b;
  --color-dark-border: #334155;
  --color-light: #f8fafc;
  --color-light-border: #e2e8f0;
  --color-accent-amber: #f59e0b;
  --color-accent-amber-hover: #d97706;
  --color-accent-teal: #14b8a6;
  --color-accent-teal-dark: #0d9488;
  --color-gray-text: #475569;
  --color-gray-light: #94a3b8;
  --color-white: #ffffff;
  
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-inner: inset 0 2px 4px 0 rgb(0 0 0 / 0.06);
  
  --radius-sm: 0.375rem;
  --radius-md: 0.75rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 250ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset and Base Styles */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  color: var(--color-dark);
  background-color: var(--color-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Typography elements */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 1.25rem;
}

@media (min-width: 768px) {
  h1 {
    font-size: 3.5rem;
  }
}

h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--color-dark);
}

@media (min-width: 768px) {
  h2 {
    font-size: 2.5rem;
  }
}

h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

p {
  color: var(--color-gray-text);
  margin-bottom: 1rem;
}

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

ul {
  list-style: none;
}

/* Helper Utilities */
.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.max-w-3xl { max-width: 48rem; }
.max-w-2xl { max-width: 42rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.text-center { text-align: center; }
.text-white { color: var(--color-white) !important; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 2rem; }
.pb-1 { padding-bottom: 0.25rem; }
.pt-1 { padding-top: 0.25rem; }
.items-center { align-items: center; }

.section {
  padding: 2rem 0;
}

@media (min-width: 768px) {
  .section {
    padding: 3rem 0;
  }
}

.bg-light {
  background-color: var(--color-light);
}

.bg-indigo-dark {
  background-color: #0f172a; /* Slate 900 for modern feel */
}

/* Grid Layouts */
.grid-2, .grid-3, .grid-4 {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 640px) and (max-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 640px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 0.75rem;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius-md);
  cursor: pointer;
  border: 1px solid transparent;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
}

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

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

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

.btn-secondary:hover {
  background-color: #c7d2fe;
  transform: translateY(-1px);
}

.btn-amber {
  background-color: var(--color-accent-amber);
  color: var(--color-dark);
}

.btn-amber:hover {
  background-color: var(--color-accent-amber-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.1rem;
  border-radius: var(--radius-lg);
}

/* Badges & Section Tags */
.section-tag {
  display: inline-block;
  padding: 0.35rem 0.85rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background-color: var(--color-primary-light);
  color: var(--color-primary);
  border-radius: 9999px;
  margin-bottom: 1rem;
}

.section-tag.tag-amber {
  background-color: rgba(245, 158, 11, 0.15);
  color: var(--color-accent-amber);
}

.badge-new {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.75rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--color-primary);
  background-color: var(--color-primary-light);
  border-radius: 9999px;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(79, 70, 229, 0.2);
}

.gradient-text {
  background: linear-gradient(135deg, var(--color-primary) 0%, #a855f7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-lead {
  font-size: 1.2rem;
  color: var(--color-gray-text);
  margin-bottom: 3.5rem;
}

.section-lead.text-indigo-200 {
  color: #94a3b8;
}

/* Header styling */
.main-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-light-border);
  padding: 0.85rem 0;
  transition: all var(--transition-normal);
}

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

.logo-container {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-icon {
  background-color: oklch(0.828 0.189 84.429);
  color: var(--color-dark);
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-inner);
}

.plane-svg {
  width: 1.35rem;
  height: 1.35rem;
  transform: rotate(45deg);
  transition: transform 0.5s ease;
}

.logo-container:hover .plane-svg {
  transform: rotate(45deg) translate(2px, -2px) scale(1.05);
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--color-dark);
}

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

.desktop-nav {
  display: none;
}

@media (min-width: 768px) {
  .desktop-nav {
    display: flex;
    align-items: center;
    gap: 0.8rem;
  }
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-gray-text);
  text-align: center;
}

.nav-link:hover {
  color: var(--color-primary);
}

/* Hero Section */
.hero-section {
  padding: 1rem 0;
  overflow: hidden;
  position: relative;
  background: radial-gradient(circle at 80% 20%, rgba(99, 102, 241, 0.08) 0%, transparent 60%);
}

@media (min-width: 1024px) {
  .hero-section {
    padding: 3rem 0;
  }
}

.hero-container {
  display: grid;
  gap: 3.5rem;
}

@media (min-width: 1024px) {
  .hero-container {
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
  }
}

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

.hero-lead {
  font-size: 1.2rem;
  color: var(--color-gray-text);
  margin-bottom: 2rem;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background-color: var(--color-light);
  border: 1px solid var(--color-light-border);
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-dark);
}

.badge-icon {
  width: 1.2rem;
  height: 1.2rem;
}

.cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Hero Visual Radar Design */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.radar-card {
  background: var(--color-dark);
  border: 1px solid var(--color-dark-border);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  width: 100%;
  max-width: 24rem;
  aspect-ratio: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.radar-circle-outer {
  border: 1.5px dashed rgba(99, 102, 241, 0.4);
  border-radius: 50%;
  padding: 2.5rem;
  width: 100%;
  aspect-ratio: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.radar-circle-inner {
  border: 1px solid rgba(99, 102, 241, 0.2);
  border-radius: 50%;
  width: 100%;
  aspect-ratio: 1;
  position: relative;
  overflow: hidden;
  background-color: rgba(15, 23, 42, 0.5);
}

.radar-sweep {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: conic-gradient(from 0deg, rgba(79, 70, 229, 0.3) 0deg, transparent 90deg);
  border-radius: 50%;
  transform-origin: center;
  animation: sweep 4s linear infinite;
}

.radar-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  background-color: var(--color-primary);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--color-primary);
}

.radar-target {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  pointer-events: none;
}

.target-ping {
  width: 8px;
  height: 8px;
  background-color: var(--color-accent-amber);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--color-accent-amber);
  position: relative;
}

.target-ping::after {
  content: '';
  position: absolute;
  top: -6px;
  left: -6px;
  right: -6px;
  bottom: -6px;
  border: 1.5px solid var(--color-accent-amber);
  border-radius: 50%;
  opacity: 1;
  animation: target-ping-pulse 2s infinite ease-out;
}

.target-label {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-white);
  background-color: rgba(15, 23, 42, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.2rem 0.5rem;
  border-radius: var(--radius-sm);
  white-space: nowrap;
}

.pos-1 { top: 20%; left: 15%; }
.pos-2 { top: 70%; left: 20%; }
.pos-3 { top: 55%; left: 30%; }

/* Card Styling */
.card {
  background-color: var(--color-white);
  border: 1px solid var(--color-light-border);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.compare-card h3 {
  font-size: 1.35rem;
  margin-bottom: 1.25rem;
}

.compare-card ul {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.compare-card li {
  font-size: 0.95rem;
  position: relative;
  padding-left: 1.75rem;
  color: var(--color-gray-text);
}

.compare-card li strong {
  color: var(--color-dark);
}

.compare-card.bad {
  border-left: 5px solid #ef4444;
}

.compare-card.bad li::before {
  content: '✕';
  position: absolute;
  left: 0;
  color: #ef4444;
  font-weight: bold;
}

.compare-card.good {
  border-left: 5px solid var(--color-accent-teal-dark);
}

.compare-card.good li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-accent-teal-dark);
  font-weight: bold;
}

.compare-card.good li span.highlight {
  background-color: var(--color-primary-light);
  color: var(--color-primary);
  padding: 0.1rem 0.4rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
}

.card-icon {
  margin-bottom: 1.25rem;
}

.card-icon svg {
  width: 2.5rem;
  height: 2.5rem;
}

/* Step Card */
.step-card {
  background-color: var(--color-white);
  border: 1px solid var(--color-light-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.step-card:hover {
  transform: translateY(-2px);
  border-color: rgba(99, 102, 241, 0.3);
}

.step-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--color-primary-light);
  line-height: 1;
  margin-bottom: 1rem;
  user-select: none;
}

.step-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
  color: var(--color-dark);
}

.step-card p {
  font-size: 0.925rem;
  color: var(--color-gray-text);
  line-height: 1.5;
}

/* Destination Cards */
.dest-card {
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: all var(--transition-normal);
}

.dest-card:hover {
  transform: translateY(-5px);
  border-color: rgba(245, 158, 11, 0.4);
  background-color: rgba(255, 255, 255, 0.05);
}

.dest-image-placeholder {
  height: 12.5rem;
  background-color: rgba(30, 41, 59, 0.8);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.dest-illustration {
  width: 50%;
  height: 50%;
}

.dest-price-tag {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  background-color: var(--color-accent-amber);
  color: var(--color-dark);
  font-weight: 800;
  font-size: 1rem;
  padding: 0.4rem 1rem;
  border-radius: 9999px;
  box-shadow: var(--shadow-md);
  font-family: var(--font-display);
}

.dest-body {
  padding: 1.75rem;
}

.dest-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.dest-header h3 {
  font-size: 1.25rem;
  margin-bottom: 0;
  color: var(--color-white);
}

.dest-header .flag {
  font-size: 1.5rem;
}

.dest-body p {
  color: #94a3b8;
  font-size: 0.925rem;
  margin-bottom: 1.5rem;
  line-height: 1.55;
}

.dest-meta {
  display: flex;
  gap: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 1rem;
  font-size: 0.825rem;
  color: #64748b;
  font-weight: 600;
}

.meta-item {
  display: inline-flex;
  align-items: center;
}

/* Tech / Radar Section Details */
.tech-graphic {
  display: flex;
  justify-content: center;
}

.dashboard-svg {
  width: 100%;
  max-width: 450px;
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius-lg);
}

.feature-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.feature-bullet {
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

.tech-content h2 {
  margin-bottom: 1.5rem;
}

.tech-content p {
  margin-bottom: 2rem;
  font-size: 1.05rem;
}

/* CTA Banner */
.cta-banner {
  background: linear-gradient(135deg, var(--color-primary) 0%, #312e81 100%);
  color: var(--color-white);
  padding: 5rem 0;
  text-align: center;
}

.cta-banner h2 {
  color: var(--color-white);
  font-size: 2.25rem;
  margin-bottom: 1.25rem;
}

.cta-banner p {
  color: var(--color-primary-light);
  font-size: 1.15rem;
  margin-bottom: 2.25rem;
  line-height: 1.6;
}

/* Footer styling */
.main-footer {
  background-color: #0b0f19;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 4.5rem 0 3.5rem;
  color: #94a3b8;
}

.footer-grid {
  display: grid;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1.2fr 0.8fr 1fr;
  }
}

.footer-brand p {
  font-size: 0.9rem;
}

.footer-links h4, .footer-info h4 {
  color: var(--color-white);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  font-size: 0.925rem;
}

.footer-links a:hover {
  color: var(--color-white);
}

.footer-info p {
  font-size: 0.875rem;
  line-height: 1.5;
  color: #64748b;
}

/* Animations */
@keyframes sweep {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes target-ping-pulse {
  from { transform: scale(0.5); opacity: 1; }
  to { transform: scale(2.2); opacity: 0; }
}

.animate-pulse-slow {
  animation: pulse-slow 6s ease-in-out infinite;
}

@keyframes pulse-slow {
  0%, 100% { opacity: 0.9; }
  50% { opacity: 1; }
}

/* Micro-responsive alignment */
@media (max-width: 640px) {
  .cta-group {
    flex-direction: column;
    gap: 0.75rem;
  }
  .btn-lg {
    width: 100%;
    padding: 0.85rem 1.5rem;
    font-size: 1rem;
  }
  .header-cta {
    display: none; /* simple menu constraint */
  }
  
  /* Layout Padding & Spacing Optimizations */
  .section {
    padding: 2.5rem 0;
  }
  .section-lead {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
  
  /* Card Spacing Reductions to Prevent Horizontal Squeezing */
  .card {
    padding: 1.5rem;
  }
  .step-card {
    padding: 1.5rem;
  }
  .dest-body {
    padding: 1.5rem;
  }
  .faq-item {
    padding: 1.25rem;
  }
  .faq-question {
    font-size: 1.05rem;
  }
  
  /* App SEO Box Mobile Tuning */
  .app-seo-box {
    padding: 1.25rem;
    gap: 1.75rem;
  }
  
  /* Airport Cards inside Quick Links Grid */
  .seo-airport-card {
    padding: 1rem;
    gap: 1rem;
  }
  
  /* Radar Card Sizing & Target Label Scaling */
  .radar-card {
    padding: 1.25rem;
    max-width: 100%;
  }
  .target-label {
    font-size: 0.65rem;
    padding: 0.15rem 0.35rem;
  }
  
  /* Hero Badges Layout for Small Screens */
  .hero-badges {
    gap: 0.5rem;
    margin-bottom: 1.75rem;
  }
  .hero-badge {
    padding: 0.4rem 0.75rem;
    font-size: 0.8rem;
    width: 100%; /* Stacks nicely as rows on narrow viewports */
  }
}

/* Extra Small Screen Headings Scale-down */
@media (max-width: 480px) {
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.6rem;
  }
  .logo-text {
    font-size: 1.15rem;
  }
}

/* FAQ Section Styles */
.faq-container {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  text-align: left;
}

.faq-item {
  background-color: var(--color-white);
  border: 1px solid var(--color-light-border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  transition: all var(--transition-normal);
}

.faq-item:hover {
  border-color: rgba(99, 102, 241, 0.25);
  box-shadow: var(--shadow-sm);
}

.faq-question {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--color-dark);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.faq-question::before {
  content: "Q:";
  color: var(--color-primary);
  font-weight: 800;
}

.faq-answer p {
  color: var(--color-gray-text);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 0;
}

/* App-like SEO Card Block Styles */
.app-seo-box {
  background-color: var(--color-white);
  border: 1px solid var(--color-light-border);
  border-radius: var(--radius-xl);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  box-shadow: var(--shadow-sm);
  text-align: left;
}

@media (max-width: 640px) {
  .app-seo-box {
    padding: 1rem;
  }

}

@media (min-width: 768px) {
  .app-seo-box {
    padding: 3.5rem;
    gap: 3rem;
  }
}

.seo-box-header {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.micro-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.35rem 0.85rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background-color: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.2);
  color: var(--color-accent-amber-hover);
  width: fit-content;
}

.sparkle-icon {
  width: 14px;
  height: 14px;
  color: var(--color-accent-amber);
}

.seo-box-header h2 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: var(--color-dark);
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .seo-box-header h2 {
    font-size: 2.25rem;
  }
}

.seo-box-desc {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--color-gray-text);
  margin-bottom: 0;
  max-width: 54rem;
}

/* Three Cards Grid */
.seo-cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .seo-cards-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.seo-card {
  background-color: var(--color-white);
  border: 1px solid var(--color-light-border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.seo-card:hover {
  border-color: var(--color-primary-light);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.seo-card-icon-wrapper {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s;
}

.seo-card:hover .seo-card-icon-wrapper {
  transform: scale(1.1);
}

.seo-card-icon-wrapper.text-amber {
  background-color: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.2);
  color: var(--color-accent-amber);
}

.seo-card-icon-wrapper.text-sky {
  background-color: #f0f9ff;
  border: 1px solid #bae6fd;
  color: #0284c7;
}

.seo-card-icon-wrapper.text-emerald {
  background-color: rgba(20, 184, 166, 0.1);
  border: 1px solid rgba(20, 184, 166, 0.2);
  color: var(--color-accent-teal-dark);
}

.seo-card-icon {
  width: 1.35rem;
  height: 1.35rem;
}

.seo-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 0;
}

.seo-card p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--color-gray-text);
  margin-bottom: 0;
}

/* Quick Links Area inside Box */
.seo-quick-links-area {
  border-top: 1px solid var(--color-light-border);
  padding-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.quick-links-header {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 0.5rem;
}

@media (min-width: 640px) {
  .quick-links-header {
    flex-direction: row;
    align-items: center;
  }
}

.quick-links-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-dark);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0;
}

.plane-icon {
  width: 1rem;
  height: 1rem;
  color: var(--color-gray-light);
  transform: rotate(45deg);
}

.quick-links-subtitle {
  font-size: 0.8rem;
  color: var(--color-gray-light);
  font-weight: 500;
}

/* Airports Grid */
.seo-airports-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .seo-airports-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .seo-airports-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.seo-airport-card {
  background-color: var(--color-white);
  border: 1px solid var(--color-light-border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
}

@media (max-width: 640px) {
  .seo-airport-card {
    padding: 0.5rem;
  }

}

.seo-airport-card:hover {
  border-color: var(--color-primary-light);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.airport-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--color-light-border);
  padding-bottom: 0.75rem;
  margin-bottom: 0.25rem;
}

.airport-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.airport-indicator {
  width: 3px;
  height: 1.5rem;
  border-radius: 9999px;
}

.airport-indicator.bg-amber {
  background-color: var(--color-accent-amber);
}

.airport-info h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-dark);
  margin: 0;
  line-height: 1.1;
}

.region-label {
  font-size: 0.75rem;
  color: var(--color-gray-light);
  font-weight: 500;
  display: block;
  margin-top: 0.15rem;
  line-height: 1;
}

.airport-code-badge {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-gray-text);
  background-color: var(--color-light);
  border: 1px solid var(--color-light-border);
  padding: 0.2rem 0.5rem;
  border-radius: var(--radius-sm);
}

.country-tags-container {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.country-tag-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.1rem 0.4rem;
  border: 1px solid var(--color-light-border);
  background-color: var(--color-light);
  border-radius: var(--radius-md);
  font-size: 0.6rem;
  font-weight: 500;
  color: var(--color-gray-text);
  transition: all var(--transition-fast);
  cursor: pointer;
}

.country-tag-btn:hover {
  background-color: var(--color-primary-light);
  border-color: var(--color-primary);
  color: var(--color-primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.country-tag-btn:active {
  transform: scale(0.97);
}

.country-tag-btn .emoji {
  font-size: 0.9rem;
}

/* Mobile Optimization for Destination Cards */
@media (max-width: 767px) {
  #kierunki .grid-3 {
    gap: 1rem;
  }

  .dest-card {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    min-height: 150px;
    background-color: rgba(255, 255, 255, 0.02);
  }

  .dest-image-placeholder {
    width: 120px;
    height: auto;
    min-height: 100%;
    flex-shrink: 0;
    border-bottom: none;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    padding: 0.5rem;
  }

  .dest-illustration {
    width: 65%;
    height: 65%;
    margin-bottom: 1.5rem; /* Make space for the price tag at bottom */
  }

  .dest-price-tag {
    bottom: 0.5rem;
    right: 50%;
    transform: translateX(50%);
    font-size: 0.725rem;
    padding: 0.2rem 0.5rem;
    white-space: nowrap;
    width: auto;
    text-align: center;
  }

  .dest-body {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
    min-width: 0; /* Prevent text overflow */
  }

  .dest-header {
    margin-bottom: 0.35rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
  }

  .dest-header h3 {
    font-size: 0.95rem;
    font-weight: 700;
  }

  .dest-header .flag {
    font-size: 1.15rem;
  }

  .dest-body p {
    font-size: 0.75rem;
    margin-bottom: 0.5rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-align: left;
    color: #94a3b8;
  }

  .dest-meta {
    padding-top: 0.5rem;
    margin-top: 0;
    gap: 0.75rem;
    font-size: 0.7rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
  }
}


