/* Uçak bileti — kurumsal arama sayfası */
.ucak-page {
  font-family: var(--site-font-sans, "Poppins", system-ui, sans-serif);
  color: #0f172a;
}

.ucak-hero {
  position: relative;
  min-height: 420px;
  padding: 48px 20px 120px;
  background: linear-gradient(135deg, #0c4a6e 0%, #1e3a5f 35%, #172554 70%, #0f172a 100%);
  overflow: hidden;
}

.ucak-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Cpath fill='%23ffffff' fill-opacity='.04' d='M0 0h60v60H0zm60 60h60v60H60z'/%3E%3C/svg%3E");
  pointer-events: none;
}

.ucak-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: 0 auto;
}

.ucak-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #e0f2fe;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.ucak-hero h1 {
  color: #fff;
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0 0 10px;
  max-width: 640px;
  line-height: 1.2;
}

.ucak-hero p {
  color: rgba(226, 232, 240, 0.92);
  font-size: 1.05rem;
  max-width: 520px;
  margin: 0 0 28px;
  line-height: 1.55;
}

/* Hero swiper */
.ucak-hero-swiper-wrap {
  position: absolute;
  right: 4%;
  top: 50%;
  transform: translateY(-50%);
  width: min(42%, 480px);
  aspect-ratio: 16/10;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: none;
}

@media (min-width: 992px) {
  .ucak-hero-swiper-wrap { display: block; }
}

.ucak-hero-swiper-wrap .swiper-slide {
  height: 100%;
  background-size: cover;
  background-position: center;
}

.ucak-hero-nav {
  position: absolute;
  bottom: 12px;
  right: 12px;
  display: flex;
  gap: 8px;
  z-index: 2;
}

.ucak-hero-nav button {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  border: none;
  background: rgba(255, 255, 255, 0.92);
  color: #0f172a;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.ucak-hero-nav button:hover {
  background: #fff;
}

/* Search card */
.ucak-search-wrap {
  max-width: 1180px;
  margin: -96px auto 0;
  padding: 0 20px 48px;
  position: relative;
  z-index: 2;
}

.ucak-search-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 24px 64px rgba(15, 23, 42, 0.14), 0 0 0 1px rgba(15, 23, 42, 0.06);
  padding: 22px 22px 26px;
}

.ucak-trip-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.ucak-trip-tabs button {
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid #e2e8f0;
  background: #f8fafc;
  font-weight: 700;
  font-size: 13px;
  color: #64748b;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.ucak-trip-tabs button.active {
  background: linear-gradient(135deg, #e0f2fe 0%, #dbeafe 100%);
  border-color: rgba(14, 165, 233, 0.4);
  color: #0369a1;
}

.ucak-form-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
  align-items: end;
}

.ucak-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.ucak-field label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #64748b;
}

.ucak-field input,
.ucak-field select {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  font-size: 14px;
  font-family: inherit;
  background: #fafbfc;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.ucak-field input:focus,
.ucak-field select:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
  background: #fff;
}

.ucak-field--from { grid-column: span 2; }
.ucak-field--to { grid-column: span 2; }
.ucak-field--date1 { grid-column: span 1; }
.ucak-field--date2 { grid-column: span 1; }
.ucak-field--pax { grid-column: span 1; }
.ucak-field--btn { grid-column: span 1; }

.ucak-btn-search {
  width: 100%;
  padding: 14px 16px;
  border: none;
  border-radius: 12px;
  background: linear-gradient(135deg, #0284c7 0%, #2563eb 100%);
  color: #fff;
  font-weight: 800;
  font-size: 15px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 10px 28px rgba(37, 99, 235, 0.35);
  transition: transform 0.15s, box-shadow 0.2s;
}

.ucak-btn-search:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 36px rgba(37, 99, 235, 0.42);
  color: #fff;
}

.ucak-note {
  margin-top: 14px;
  font-size: 12.5px;
  color: #64748b;
  line-height: 1.5;
  padding: 12px 14px;
  background: #f8fafc;
  border-radius: 10px;
  border: 1px dashed #cbd5e1;
}

.ucak-note strong { color: #0f172a; }

/* Trust row */
.ucak-trust {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px 40px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

@media (max-width: 900px) {
  .ucak-trust { grid-template-columns: repeat(2, 1fr); }
}

.ucak-trust-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: #fff;
  border-radius: 14px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.04);
}

.ucak-trust-item i {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, #e0f2fe, #dbeafe);
  color: #0369a1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.ucak-trust-item h3 {
  margin: 0 0 4px;
  font-size: 14px;
  font-weight: 800;
  color: #0f172a;
}

.ucak-trust-item p {
  margin: 0;
  font-size: 12.5px;
  color: #64748b;
  line-height: 1.45;
}

/* Popular routes */
.ucak-routes {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px 48px;
}

.ucak-section-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 6px;
  letter-spacing: -0.02em;
}

.ucak-section-sub {
  font-size: 14px;
  color: #64748b;
  margin: 0 0 22px;
}

.ucak-route-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 12px;
}

.ucak-route-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.ucak-route-card:hover {
  border-color: rgba(14, 165, 233, 0.35);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
}

.ucak-route-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.ucak-route-cities {
  font-weight: 800;
  font-size: 15px;
  color: #0f172a;
}

.ucak-route-hint {
  font-size: 12px;
  color: #94a3b8;
}

.ucak-route-card i {
  color: #0ea5e9;
  font-size: 14px;
}

/* Campaigns swiper */
.ucak-camp-section {
  max-width: 1180px;
  margin: 0 auto 48px;
  padding: 0 20px;
}

.ucak-camp-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.ucak-camp-nav {
  display: flex;
  gap: 8px;
}

.ucak-camp-nav button {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid #e2e8f0;
  background: #fff;
  cursor: pointer;
  color: #0f172a;
}

.ucak-camp-nav button:hover {
  background: #f8fafc;
}

.swiper.ucak-campaigns {
  padding-bottom: 8px;
}

.ucak-camp-slide {
  height: auto;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  background: linear-gradient(145deg, #f8fafc, #fff);
  padding: 18px;
  min-height: 140px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.ucak-camp-slide strong {
  font-size: 15px;
  color: #0f172a;
  margin-bottom: 6px;
}

.ucak-camp-slide span {
  font-size: 13px;
  color: #64748b;
}

/* CTA strip */
.ucak-cta {
  max-width: 1180px;
  margin: 0 auto 56px;
  padding: 28px 24px;
  border-radius: 18px;
  background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 100%);
  color: #e2e8f0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  box-shadow: 0 16px 48px rgba(15, 23, 42, 0.25);
}

.ucak-cta h2 {
  margin: 0 0 6px;
  font-size: 1.25rem;
  font-weight: 800;
  color: #fff;
}

.ucak-cta p {
  margin: 0;
  font-size: 14px;
  opacity: 0.92;
}

.ucak-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.ucak-cta-actions a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.2s;
}

.ucak-cta-actions a.primary {
  background: #fff;
  color: #0f172a;
}

.ucak-cta-actions a.primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.2);
  color: #0f172a;
}

.ucak-cta-actions a.ghost {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.ucak-cta-actions a.ghost:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

@media (max-width: 991px) {
  .ucak-form-grid {
    grid-template-columns: 1fr 1fr;
  }
  .ucak-field--from,
  .ucak-field--to {
    grid-column: span 2;
  }
  .ucak-field--date1,
  .ucak-field--date2,
  .ucak-field--pax,
  .ucak-field--btn {
    grid-column: span 1;
  }
}

@media (max-width: 600px) {
  .ucak-form-grid {
    grid-template-columns: 1fr;
  }
  .ucak-field--from,
  .ucak-field--to,
  .ucak-field--date1,
  .ucak-field--date2,
  .ucak-field--pax,
  .ucak-field--btn {
    grid-column: span 1;
  }
  .ucak-hero {
    padding-bottom: 100px;
  }
}
