/* ============================================================
   AKTARMASIZ.NET — Professional Design System
   ============================================================ */

/* --- Design Tokens --- */
:root {
  /* Brand Colors Pastel */
  --navy-950: #0f172a;
  --navy-900: #1e293b;
  --navy-800: #334155;
  --navy-700: #475569;
  --navy-600: #64748b;

  --sky-400: #7dd3fc;
  --sky-500: #38bdf8;
  --sky-600: #0ea5e9;
  --sky-700: #0284c7;
  --sky-50:  #f0f9ff;
  --sky-100: #e0f2fe;
  --sky-200: #bae6fd;

  --amber-400: #fde68a;
  --amber-500: #fcd34d;
  --amber-600: #fbbf24;

  --slate-50:  #fafaf9;
  --slate-100: #f5f5f4;
  --slate-200: #e7e5e4;
  --slate-300: #d6d3d1;
  --slate-400: #a8a29e;
  --slate-500: #78716c;
  --slate-600: #57534e;
  --slate-700: #44403c;
  --slate-800: #292524;
  --slate-900: #1c1917;

  --green-100: #dcfce7;
  --green-700: #15803d;
  --rose-100:  #ffe4e6;
  --rose-700:  #be123c;

  
  /* Brand Colors Pastel */
  --sky-100: #e0f2fe;
  --rose-400: #fb7185;

  /* Semantic */
  --primary:      var(--sky-500);
  --primary-dark: var(--sky-600);
  --accent:       var(--amber-500);
  --accent-dark:  var(--amber-600);
  --bg:           var(--slate-50);
  --bg-white:     #ffffff;
  --text:         var(--slate-800);
  --text-muted:   var(--slate-500);
  --border:       var(--slate-200);

  /* Type Scale */
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --text-xs:   0.6875rem;
  --text-sm:   0.875rem;
  --text-base: 1rem;
  --text-lg:   1.125rem;
  --text-xl:   1.25rem;
  --text-2xl:  1.5rem;
  --text-3xl:  1.875rem;
  --text-4xl:  2.25rem;
  --text-5xl:  3rem;
  --text-6xl:  3.75rem;

  /* Spacing */
  --sp-1:  0.25rem;
  --sp-2:  0.5rem;
  --sp-3:  0.75rem;
  --sp-4:  1rem;
  --sp-5:  1.25rem;
  --sp-6:  1.5rem;
  --sp-8:  2rem;
  --sp-10: 2.5rem;
  --sp-12: 3rem;
  --sp-16: 4rem;
  --sp-20: 5rem;
  --sp-24: 6rem;

  /* Surfaces */
  --radius-sm: 0.375rem;
  --radius:    0.625rem;
  --radius-lg: 0.875rem;
  --radius-xl: 1.25rem;
  --radius-2xl:1.75rem;

  --shadow-xs: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.07), 0 1px 2px rgba(0,0,0,0.04);
  --shadow:    0 4px 8px -2px rgba(0,0,0,0.09), 0 2px 4px -1px rgba(0,0,0,0.05);
  --shadow-md: 0 10px 20px -4px rgba(0,0,0,0.10), 0 4px 8px -2px rgba(0,0,0,0.05);
  --shadow-lg: 0 24px 40px -8px rgba(0,0,0,0.12), 0 8px 16px -4px rgba(0,0,0,0.06);
  --shadow-xl: 0 40px 64px -12px rgba(0,0,0,0.14);

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
  --duration: 220ms;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

/* --- Layout --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: var(--sp-6);
}

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* --- Sections --- */
.section    { padding-block: var(--sp-20); }
.section--sm { padding-block: var(--sp-12); }
.section--lg { padding-block: var(--sp-24); }
.section--alt { background: var(--slate-100); }

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--sp-3);
}

.section-title {
  font-size: clamp(var(--text-2xl), 3vw, var(--text-3xl));
  font-weight: 800;
  color: var(--slate-900);
  line-height: 1.2;
  letter-spacing: -0.025em;
  margin-bottom: var(--sp-3);
}

.section-subtitle {
  font-size: var(--text-lg);
  color: var(--text-muted);
  max-width: 540px;
  line-height: 1.65;
}

.section-header { margin-bottom: var(--sp-10); }
.section-header--center { text-align: center; }
.section-header--center .section-subtitle { margin-inline: auto; }

.section-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--sp-6);
  margin-bottom: var(--sp-10);
}

/* --- Header --- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: box-shadow var(--duration) var(--ease);
}

.site-header.is-scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-6);
  height: 64px;
}

.logo {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  flex-shrink: 0;
}

.logo-mark {
  width: 34px;
  height: 34px;
  background: linear-gradient(135deg, var(--sky-500), var(--navy-700));
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(14,165,233,0.35);
}

.logo-text {
  font-size: var(--text-lg);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--slate-900);
}

.logo-text span { color: var(--sky-500); }

.logo--white .logo-text { color: white; }
.logo--white .logo-text span { color: var(--amber-400); }
.logo--white .logo-mark {
  background: rgba(255,255,255,0.2);
  border: 1px solid rgba(255,255,255,0.3);
  box-shadow: none;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-link {
  padding: 6px 14px;
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--slate-600);
  border-radius: var(--radius);
  transition: color var(--duration), background var(--duration);
  white-space: nowrap;
}

.nav-link:hover, .nav-link.active {
  color: var(--sky-600);
  background: var(--sky-50);
}

.nav-link.active { font-weight: 600; }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: 8px 18px;
  font-size: var(--text-sm);
  font-weight: 600;
  color: white;
  background: var(--sky-500);
  border-radius: var(--radius);
  transition: background var(--duration), transform var(--duration), box-shadow var(--duration);
  margin-left: var(--sp-2);
}

.nav-cta:hover {
  background: var(--sky-600);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(14,165,233,0.4);
  color: white;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--sp-2);
  border-radius: var(--radius-sm);
  transition: background var(--duration);
}
.nav-toggle:hover { background: var(--slate-100); }
.nav-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--slate-700);
  border-radius: 2px;
  transition: transform var(--duration), opacity var(--duration);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


/* =============================================================
   HERO — Daytime Sky Scene
   ============================================================= */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  background: var(--sky-100);
}

.hero--day {
  background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 40%, #fbcfe8 100%);
}

.hero-sky-day {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 80% 20%, rgba(255, 237, 213, 0.4) 0%, transparent 40%),
    linear-gradient(180deg, #bae6fd 0%, #e0f2fe 60%, rgba(251, 207, 232, 0.6) 100%);
}

.hero-sun {
  position: absolute;
  top: 15%; right: 15%;
  width: 120px; height: 120px;
  background: radial-gradient(circle, rgba(253,230,138,1) 0%, rgba(252,211,77,0.8) 40%, transparent 70%);
  border-radius: 50%;
  animation: sunGlow 4s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes sunGlow {
  0% { transform: scale(1); opacity: 0.9; }
  100% { transform: scale(1.1); opacity: 1; filter: drop-shadow(0 0 20px rgba(253, 230, 138, 0.5)); }
}

.hero-birds {
  position: absolute;
  top: 25%; left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
}

.bird {
  position: absolute;
  opacity: 0.7;
}

.bird-1 { top: 10%; right: -10%; animation: flyBird 25s linear infinite; }
.bird-2 { top: 12%; right: -15%; animation: flyBird 28s linear infinite 2s; }
.bird-3 { top: 8%;  right: -5%;  animation: flyBird 22s linear infinite 5s; }

@keyframes flyBird {
  0%   { transform: translate(0, 0) scale(1.2); }
  50%  { transform: translate(-50vw, -20px) scale(0.9); }
  100% { transform: translate(-110vw, -40px) scale(0.6); }
}

.hero-cloud-day {
  position: absolute;
  pointer-events: none;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,0.05));
  z-index: 1;
}

.hero-cloud-day--1 {
  width: 350px; top: 15%; right: 10%;
  animation: cloudDriftDay 20s ease-in-out infinite alternate;
}

.hero-cloud-day--2 {
  width: 250px; top: 30%; right: 40%;
  animation: cloudDriftDay 25s ease-in-out infinite alternate-reverse;
}

.hero-cloud-day--3 {
  width: 180px; top: 18%; left: 15%;
  animation: cloudDriftDay 18s ease-in-out infinite alternate;
}

@keyframes cloudDriftDay {
  from { transform: translateX(0); }
  to   { transform: translateX(30px); }
}

/* Plane Animation Update */
.hero-plane-wrap-day {
  position: absolute;
  right: -250px;
  top: 35%;
  z-index: 5;
  will-change: transform;
  animation: planeFlyby 15s linear infinite;
  filter: drop-shadow(0 15px 30px rgba(0,0,0,0.15));
}

@keyframes planeFlyby {
  0%   { transform: translate(300px, 150px) rotate(-10deg) scale(0.6); opacity: 0; }
  5%   { opacity: 1; }
  50%  { transform: translate(-45vw, 0px) rotate(-2deg) scale(1); opacity: 1; }
  80%  { transform: translate(-85vw, -50px) rotate(2deg) scale(1.1); opacity: 0; }
  100% { transform: translate(-100vw, -80px) rotate(5deg) scale(1.1); opacity: 0; }
}

.hero-contrail-day {
  display: none; /* Removing contrail to simplify */
}

.contrail-path-day {
  display: none;
}


.hero-cityline--day {
  filter: drop-shadow(0 -10px 20px rgba(0,0,0,0.03));
  opacity: 0.9;
}

/* Updated Colors and Glassmorphism */
.hero-content--day {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.hero-glass-card {
  padding: 2rem 0;
  max-width: 640px;
}

.hero-title--day {
  color: var(--slate-800);
  font-weight: 800;
}

.hero-title--day em {
  background: linear-gradient(135deg, var(--sky-500), var(--rose-400));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle--day {
  color: var(--slate-600);
  font-weight: 400;
  font-size: 1.15rem;
  line-height: 1.7;
}

.hero-badge--day {
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.6);
  color: var(--slate-800);
  box-shadow: none;
  font-weight: 500;
}

.hero-trust--day .hero-trust-item {
  color: var(--slate-700);
  font-weight: 600;
}

.hero-trust--day .hero-trust-sep {
  background: rgba(0, 0, 0, 0.15);
}

.btn--outline-dark {
  background: rgba(255, 255, 255, 0.6);
  color: var(--slate-800);
  border: 2px solid rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  font-weight: 600;
}

.btn--outline-dark:hover {
  background: white;
  transform: translateY(-2px);
  color: var(--slate-900);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}


.hero-inner {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-12);
  align-items: center;
  min-height: 100vh;
  padding-block: var(--sp-24) var(--sp-16);
  padding-inline: var(--sp-6);
  max-width: 1200px;
  margin-inline: auto;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(10px);
  color: rgba(255,255,255,0.9);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 100px;
  margin-bottom: var(--sp-6);
  animation: fadeUp 0.7s var(--ease-out) 0.2s both;
}

.hero-content--day .hero-badge {
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.9);
  color: var(--slate-800);
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.hero-badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--sky-500);
  box-shadow: 0 0 8px rgba(14, 165, 233, 0.8);
  animation: dotPulseDay 2s ease-in-out infinite;
}

@keyframes dotPulseDay {
  0%, 100% { box-shadow: 0 0 8px rgba(14, 165, 233, 0.8); }
  50%       { box-shadow: 0 0 16px rgba(14, 165, 233, 1), 0 0 24px rgba(14, 165, 233, 0.4); }
}

.hero-title {
  font-size: clamp(2.5rem, 4.5vw, var(--text-6xl));
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: white;
  margin-bottom: var(--sp-5);
  animation: fadeUp 0.7s var(--ease-out) 0.35s both;
}

.hero-content--day .hero-title {
  color: var(--slate-900);
  text-shadow: none;
}

.hero-title em {
  font-style: normal;
  background: linear-gradient(135deg, var(--sky-500), #2dd4bf);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: var(--text-lg);
  color: rgba(255,255,255,0.72);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: var(--sp-8);
  animation: fadeUp 0.7s var(--ease-out) 0.5s both;
}

.hero-content--day .hero-subtitle {
  color: var(--slate-700);
  font-weight: 500;
}

.hero-actions {
  display: flex;
  gap: var(--sp-3);
  flex-wrap: wrap;
  animation: fadeUp 0.7s var(--ease-out) 0.65s both;
}

.hero-trust {
  margin-top: var(--sp-8);
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  animation: fadeUp 0.7s var(--ease-out) 0.8s both;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.55);
}

.hero-trust-item svg { color: var(--amber-400); flex-shrink: 0; }

.hero-trust-sep {
  width: 1px;
  height: 20px;
  background: rgba(255,255,255,0.15);
}

.hero-trust--day .hero-trust-item {
  color: var(--slate-700);
  font-weight: 600;
}

.hero-trust--day .hero-trust-item svg {
  color: var(--sky-500);
}

.hero-trust--day .hero-trust-sep {
  background: rgba(0, 0, 0, 0.1);
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  padding: 12px 24px;
  font-size: var(--text-sm);
  font-weight: 600;
  border-radius: var(--radius-lg);
  border: 2px solid transparent;
  transition: all var(--duration) var(--ease);
  white-space: nowrap;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn--primary {
  background: var(--sky-500);
  color: white;
  border-color: var(--sky-500);
  box-shadow: 0 4px 14px rgba(14,165,233,0.3);
}
.btn--primary:hover {
  background: var(--sky-600);
  border-color: var(--sky-600);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(14,165,233,0.45);
  color: white;
}
.btn--primary:active { transform: translateY(0); }

.btn--ghost {
  background: rgba(255,255,255,0.1);
  color: white;
  border-color: rgba(255,255,255,0.25);
  backdrop-filter: blur(10px);
}
.btn--ghost:hover {
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.45);
  color: white;
}

.btn--sky {
  background: var(--sky-500);
  color: white;
  border-color: var(--sky-500);
  box-shadow: 0 4px 14px rgba(14,165,233,0.35);
}
.btn--sky:hover {
  background: var(--sky-600);
  border-color: var(--sky-600);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(14,165,233,0.5);
  color: white;
}

.btn--outline {
  background: transparent;
  color: var(--sky-600);
  border-color: var(--sky-500);
}
.btn--outline:hover {
  background: var(--sky-50);
  transform: translateY(-1px);
}

.btn--white {
  background: white;
  color: var(--sky-600);
  border-color: white;
  box-shadow: var(--shadow);
}
.btn--white:hover {
  background: var(--sky-50);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--lg { padding: 15px 30px; font-size: var(--text-base); border-radius: var(--radius-xl); }


/* --- Stats Float Card --- */
.stats-float {
  position: relative;
  z-index: 20;
  margin-top: -40px;
  margin-bottom: var(--sp-16);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: white;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}

.stat-item {
  padding: var(--sp-6) var(--sp-5);
  text-align: center;
  border-right: 1px solid var(--border);
  transition: background var(--duration);
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: var(--sky-50); }

.stat-number {
  font-size: var(--text-3xl);
  font-weight: 900;
  color: var(--sky-500);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: var(--text-xs);
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}


/* --- Deal Cards --- */
.deal-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: var(--sp-6);
  position: relative;
  overflow: hidden;
  transition: transform var(--duration) var(--ease), box-shadow var(--duration) var(--ease), border-color var(--duration);
  box-shadow: var(--shadow-sm);
}

.deal-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(14,165,233,0.04) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--duration);
}

.deal-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--sky-200);
}
.deal-card:hover::after { opacity: 1; }

.deal-card--hot {
  border-color: rgba(245,158,11,0.25);
  background: linear-gradient(135deg, #fffbf0 0%, white 60%);
}
.deal-card--hot:hover { border-color: var(--amber-400); }

.deal-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: var(--text-xs);
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: var(--sp-4);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.deal-tag--hot { background: linear-gradient(135deg, var(--amber-500), #f59e0b); color: white; }
.deal-tag--hot::before { content: '🔥'; font-size: 10px; }
.deal-tag--new  { background: var(--sky-100); color: var(--sky-700); }
.deal-tag--sale { background: var(--green-100); color: var(--green-700); }

.deal-route {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  margin-bottom: var(--sp-4);
}

.deal-city-block { flex: 1; }
.deal-city-code {
  font-size: var(--text-2xl);
  font-weight: 800;
  color: var(--slate-900);
  letter-spacing: -0.02em;
  line-height: 1;
}
.deal-city-name {
  font-size: var(--text-xs);
  color: var(--text-muted);
  margin-top: 2px;
}

.deal-arrow-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}

.deal-plane-icon {
  color: var(--sky-400);
  animation: planeFly 3s ease-in-out infinite;
}

@keyframes planeFly {
  0%,100% { transform: translateX(0) rotate(-8deg); }
  50%     { transform: translateX(4px) rotate(-8deg); }
}

.deal-line {
  width: 64px;
  height: 1px;
  background: linear-gradient(90deg, var(--slate-200), var(--sky-200), var(--slate-200));
}

.deal-footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding-top: var(--sp-4);
  border-top: 1px solid var(--slate-100);
  gap: var(--sp-3);
}

.deal-meta {
  font-size: var(--text-xs);
  color: var(--text-muted);
  line-height: 1.5;
}
.deal-meta strong { color: var(--slate-700); font-weight: 600; }

.deal-price-block { text-align: right; }
.deal-from {
  font-size: var(--text-xs);
  color: var(--text-muted);
  margin-bottom: 1px;
}
.deal-amount {
  font-size: var(--text-2xl);
  font-weight: 900;
  color: var(--sky-500);
  letter-spacing: -0.03em;
  line-height: 1;
}
.deal-amount sup {
  font-size: var(--text-sm);
  font-weight: 700;
  vertical-align: super;
}


/* --- Cards (Guide / Content) --- */
.card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--duration) var(--ease), box-shadow var(--duration), border-color var(--duration);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--sky-200);
}

.card-thumb {
  width: 100%;
  aspect-ratio: 16/9;
  position: relative;
  overflow: hidden;
}

.card-thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms var(--ease);
}
.card:hover .card-thumb-img { transform: scale(1.05); }

/* Gradient placeholder for destination cards */
.card-thumb-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  position: relative;
  overflow: hidden;
}

.card-thumb-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: inherit;
  transition: transform 400ms var(--ease);
}
.card:hover .card-thumb-placeholder::before { transform: scale(1.08); }

.card-thumb-flag {
  font-size: 3rem;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.25));
}

.card-thumb-city {
  position: relative;
  z-index: 1;
  font-size: var(--text-xs);
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}

/* Destination-specific gradients */
.thumb--amsterdam { background: linear-gradient(135deg, #1a3a6b 0%, #2855a0 50%, #4a7fd4 100%); }
.thumb--london    { background: linear-gradient(135deg, #1c2b3a 0%, #2d4057 50%, #4a6f8a 100%); }
.thumb--paris     { background: linear-gradient(135deg, #3d1a4a 0%, #6b3580 50%, #9b5dbe 100%); }
.thumb--tokyo     { background: linear-gradient(135deg, #1a0a2e 0%, #c0392b 40%, #e74c3c 100%); }
.thumb--rome      { background: linear-gradient(135deg, #3d2200 0%, #a0522d 50%, #cd853f 100%); }
.thumb--newyork   { background: linear-gradient(135deg, #0d0d1a 0%, #1a1a40 50%, #2c2c80 100%); }
.thumb--dubai     { background: linear-gradient(135deg, #0d1a0a 0%, #b8860b 40%, #daa520 100%); }
.thumb--bangkok   { background: linear-gradient(135deg, #1a0d00 0%, #8b4513 40%, #d2691e 100%); }
.thumb--athens    { background: linear-gradient(135deg, #00215a 0%, #0047ab 50%, #4b9cd3 100%); }

.card-body { padding: var(--sp-5) var(--sp-6); }

.card-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--sky-600);
  background: var(--sky-50);
  padding: 3px 9px;
  border-radius: 100px;
  margin-bottom: var(--sp-3);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.card-title {
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--slate-900);
  line-height: 1.3;
  letter-spacing: -0.01em;
  margin-bottom: var(--sp-2);
}

.card-desc {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: var(--sp-4);
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--sky-600);
  transition: gap var(--duration), color var(--duration);
}
.card-link:hover { gap: 9px; color: var(--sky-700); }
.card-link svg { transition: transform var(--duration); }
.card-link:hover svg { transform: translateX(2px); }


/* --- Overview Cards (Homepage Sections Grid) --- */
.overview-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-4);
}

.overview-card {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-4);
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: var(--sp-5) var(--sp-6);
  transition: all var(--duration) var(--ease);
  box-shadow: var(--shadow-xs);
  color: inherit;
}

.overview-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--sky-200);
  color: inherit;
}

.overview-icon {
  width: 46px; height: 46px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: white;
}
.overview-icon--sky    { background: linear-gradient(135deg, var(--sky-400), var(--sky-700)); box-shadow: 0 4px 12px rgba(14,165,233,0.3); }
.overview-icon--amber  { background: linear-gradient(135deg, var(--amber-400), var(--amber-600)); box-shadow: 0 4px 12px rgba(245,158,11,0.3); }
.overview-icon--violet { background: linear-gradient(135deg, #a78bfa, #7c3aed); box-shadow: 0 4px 12px rgba(124,58,237,0.25); }
.overview-icon--teal   { background: linear-gradient(135deg, #34d399, #059669); box-shadow: 0 4px 12px rgba(5,150,105,0.25); }
.overview-icon--rose   { background: linear-gradient(135deg, #fb7185, #e11d48); box-shadow: 0 4px 12px rgba(225,29,72,0.25); }

.overview-body {}
.overview-title {
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--slate-900);
  margin-bottom: 4px;
}
.overview-desc {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: 1.55;
}
.overview-arrow {
  margin-left: auto;
  color: var(--slate-300);
  flex-shrink: 0;
  align-self: center;
  transition: color var(--duration), transform var(--duration);
}
.overview-card:hover .overview-arrow {
  color: var(--sky-500);
  transform: translateX(3px);
}


/* --- Feature Cards --- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
}

.feature-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: var(--sp-6) var(--sp-6);
  text-align: center;
  box-shadow: var(--shadow-xs);
  transition: all var(--duration) var(--ease);
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--sky-200);
}

.feature-icon-wrap {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--sky-50), var(--sky-100));
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--sp-5);
  color: var(--sky-500);
  border: 1px solid var(--sky-200);
}

.feature-title {
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--slate-900);
  margin-bottom: var(--sp-2);
}
.feature-desc {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: 1.65;
}


/* --- Info Card (Vize, Faydalı vb.) --- */
.info-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: var(--sp-6);
  box-shadow: var(--shadow-xs);
  transition: transform var(--duration) var(--ease), box-shadow var(--duration), border-color var(--duration);
}
.info-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--sky-200); }

.info-card-header { display: flex; align-items: center; gap: var(--sp-3); margin-bottom: var(--sp-4); }
.info-card-icon {
  width: 42px; height: 42px;
  border-radius: var(--radius-lg);
  background: var(--sky-50);
  display: flex; align-items: center; justify-content: center;
  color: var(--sky-600);
  flex-shrink: 0;
  font-size: 1.3rem;
  border: 1px solid var(--sky-100);
}
.info-card-title { font-size: var(--text-base); font-weight: 700; color: var(--slate-900); }
.info-card-subtitle { font-size: var(--text-xs); color: var(--text-muted); margin-top: 2px; }

.info-list { display: flex; flex-direction: column; gap: var(--sp-2); }
.info-list-item {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-2);
  font-size: var(--text-sm);
  color: var(--slate-600);
  line-height: 1.55;
}
.info-list-item::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--sky-400);
  flex-shrink: 0;
  margin-top: 7px;
}


/* --- Badges --- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: var(--text-xs);
  font-weight: 600;
  padding: 3px 9px;
  border-radius: 100px;
}
.badge--sky    { background: var(--sky-100); color: var(--sky-700); }
.badge--green  { background: var(--green-100); color: var(--green-700); }
.badge--amber  { background: #fef3c7; color: #92400e; }
.badge--orange { background: #fff7ed; color: #9a3412; }
.badge--rose   { background: var(--rose-100); color: var(--rose-700); }

/* --- Page Hero (inner pages) --- */
.page-hero {
  background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 40%, #fbcfe8 100%);
  color: var(--slate-900);
  padding-block: var(--sp-16) var(--sp-12);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,0.6);
}

.page-hero-content { 
  position: relative; 
  z-index: 1; 
  max-width: 640px; 
}

.page-hero-title {
  font-size: clamp(var(--text-3xl), 4vw, var(--text-4xl));
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: var(--sp-4);
  color: var(--slate-900);
}

.page-hero-subtitle {
  font-size: var(--text-lg);
  color: var(--slate-700);
  line-height: 1.65;
  font-weight: 500;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--text-sm);
  color: var(--slate-600);
  margin-bottom: var(--sp-5);
  font-weight: 500;
}
.breadcrumb a { color: var(--slate-600); transition: color var(--duration); }
.breadcrumb a:hover { color: var(--slate-900); }
.breadcrumb-sep { opacity: 0.4; }
.breadcrumb-current { color: var(--slate-900); font-weight: 600; }


/* --- CTA Banner --- */
.cta-banner {
  background: linear-gradient(135deg, var(--navy-700) 0%, #1040a0 50%, var(--sky-600) 100%);
  border-radius: var(--radius-2xl);
  padding: var(--sp-16) var(--sp-12);
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='20' cy='20' r='2'/%3E%3C/g%3E%3C/svg%3E");
}

.cta-banner-content { position: relative; z-index: 1; }

.cta-banner-title {
  font-size: clamp(var(--text-2xl), 4vw, var(--text-4xl));
  font-weight: 900;
  letter-spacing: -0.03em;
  margin-bottom: var(--sp-4);
}

.cta-banner-desc {
  font-size: var(--text-lg);
  opacity: 0.8;
  max-width: 480px;
  margin-inline: auto;
  margin-bottom: var(--sp-8);
  line-height: 1.65;
}

.cta-banner-actions { display: flex; gap: var(--sp-3); justify-content: center; flex-wrap: wrap; }


/* --- View All --- */
.view-all {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--sky-600);
  padding: 8px 16px;
  border: 1.5px solid var(--sky-200);
  border-radius: var(--radius-lg);
  transition: all var(--duration);
  white-space: nowrap;
}
.view-all:hover {
  background: var(--sky-50);
  border-color: var(--sky-400);
  transform: translateY(-1px);
}


/* --- Widget placeholder --- */
.widget-section {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-2xl);
  padding: var(--sp-8) var(--sp-10);
  box-shadow: var(--shadow);
  margin-bottom: var(--sp-10);
}

.widget-placeholder {
  background: linear-gradient(135deg, var(--sky-50), var(--sky-100));
  border: 2px dashed var(--sky-200);
  border-radius: var(--radius-xl);
  padding: var(--sp-16) var(--sp-8);
  text-align: center;
  color: var(--sky-600);
}

.widget-placeholder h3 { font-size: var(--text-xl); font-weight: 700; margin-bottom: var(--sp-2); }
.widget-placeholder p  { font-size: var(--text-sm); opacity: 0.75; }


/* --- Alert --- */
.alert {
  display: flex;
  gap: var(--sp-3);
  padding: var(--sp-4) var(--sp-5);
  border-radius: var(--radius-lg);
  font-size: var(--text-sm);
  line-height: 1.6;
}
.alert svg { flex-shrink: 0; margin-top: 1px; }
.alert--info    { background: var(--sky-50); color: var(--sky-700); border-left: 3px solid var(--sky-400); }
.alert--warning { background: #fffbeb; color: #92400e; border-left: 3px solid var(--amber-400); }


/* --- Grid Helpers --- */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--sp-6); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-6); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--sp-5); }


/* --- Scroll Reveal --- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal--delay-1 { transition-delay: 0.1s; }
.reveal--delay-2 { transition-delay: 0.2s; }
.reveal--delay-3 { transition-delay: 0.3s; }


/* --- Footer --- */
.site-footer {
  background: var(--navy-900);
  color: var(--slate-400);
  padding-top: var(--sp-20);
  padding-bottom: var(--sp-8);
  margin-top: var(--sp-24);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1fr;
  gap: var(--sp-10);
  padding-bottom: var(--sp-10);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: var(--sp-8);
}

.footer-brand-desc {
  font-size: var(--text-sm);
  line-height: 1.75;
  color: var(--slate-500);
  margin-block: var(--sp-4);
  max-width: 270px;
}

.footer-social {
  display: flex;
  gap: var(--sp-3);
  margin-top: var(--sp-5);
}

.footer-social a {
  width: 36px; height: 36px;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: center;
  color: var(--slate-500);
  transition: all var(--duration);
}
.footer-social a:hover {
  background: var(--sky-500);
  border-color: var(--sky-500);
  color: white;
  transform: translateY(-2px);
}

.footer-col-title {
  font-size: var(--text-xs);
  font-weight: 700;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--sp-4);
}

.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: var(--text-sm);
  color: var(--slate-500);
  transition: color var(--duration);
  line-height: 1;
}
.footer-links a:hover { color: white; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: var(--text-xs);
  color: var(--slate-600);
  gap: var(--sp-4);
  flex-wrap: wrap;
}


/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--sp-8); }
  .hero-inner { grid-template-columns: 1fr; padding-top: var(--sp-20); }
  .hero-plane-wrap { right: 10%; bottom: 20%; }
}

@media (max-width: 768px) {
  .container { padding-inline: var(--sp-4); }

  .nav-toggle { display: flex; }

  .main-nav {
    display: none;
    position: absolute;
    top: 64px; left: 0; right: 0;
    background: white;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    padding: var(--sp-3) var(--sp-4) var(--sp-4);
    z-index: 150;
  }
  .main-nav.is-open { display: block; }
  .nav-list { flex-direction: column; align-items: stretch; gap: 2px; }
  .nav-link { padding: var(--sp-3) var(--sp-4); }
  .nav-cta { margin-left: 0; margin-top: var(--sp-2); justify-content: center; }

  .hero-inner {
    grid-template-columns: 1fr;
    padding-top: var(--sp-16);
    min-height: 95vh;
  }

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

  .hero-plane-wrap {
    right: 5%;
    bottom: 18%;
    animation-name: planeLandingMobile, planeIdle;
  }

  @keyframes planeLandingMobile {
    0%   { transform: translate(200px, -180px) rotate(-18deg) scale(0.35); opacity: 0; }
    5%   { opacity: 1; }
    100% { transform: translate(-20px, 60px) rotate(0deg) scale(0.75); }
  }

  .hero-actions { flex-direction: column; align-items: flex-start; }
  .btn { justify-content: center; }

  .grid-3, .features-grid, .grid-2 { grid-template-columns: 1fr; }
  .overview-grid { grid-template-columns: 1fr; }

  .stats-float { margin-top: -20px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }

  .section-row { flex-direction: column; align-items: flex-start; }

  .cta-banner { padding: var(--sp-10) var(--sp-6); border-radius: var(--radius-xl); }
  .cta-banner-title { font-size: var(--text-2xl); }
  .cta-banner-actions { flex-direction: column; }
  .btn--lg { padding: 13px 24px; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .grid-4 { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-trust { flex-wrap: wrap; }
}
