/*
Theme Name: Onward Theme
Theme URI: https://example.com/onward-theme
Author: Azizbek Hakimov
Description: Custom theme for onward flight proof landing + order pages.
Version: 0.1
Text Domain: onward-theme
*/

/* Global reset to avoid horizontal overflow */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: linear-gradient(180deg, #a8f3ec 0%, #7de0d1 55%, #6cd1c2 100%);
}

/* Ensure images don't overflow container */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

.ot-page {
  min-height: 100vh;
  background: transparent;
  color: #102a43;
}

.ot-container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* HEADER */
.ot-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: #baeee8;
  backdrop-filter: blur(16px);
}

.ot-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 84px;
}

.ot-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.ot-logo-img {
  height: 70px;
  width: 70px;
  display: block;
}

.ot-nav {
  display: flex;
  align-items: center;
  flex: 1;
  gap: 1.75rem;
  margin-left: 2rem; /* logo bilan nav orasidagi bo'shliq */
}

.ot-nav-links {
  display: flex;
  gap: 2rem;
  font-size: 1rem;
}

.ot-nav-link {
  text-decoration: none;
  color: #0f172a;
  font-weight: 500;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
}

.ot-nav-link:hover {
  background: rgba(15, 118, 110, 0.12);
  text-decoration: none;
}

.ot-nav-actions {
  display: flex;
  gap: 0.75rem;
  margin-left: auto; /* menyudan keyin tugmalarni to'liq o'ngga surish */
}

.ot-menu-toggle {
  display: none;
  padding: 0;
  margin-left: 1.25rem;
  border: none;
  background: transparent;
  cursor: pointer;
}

.ot-menu-toggle-icon {
  display: block;
  width: 40px;
  height: 40px;
}

.ot-menu-toggle-close {
  display: none;
  font-size: 1.75rem;
  line-height: 1;
  color: #1f2933;
}

.ot-nav-btn {
  padding: 0.65rem 1.6rem;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  border: 1px solid transparent;
  background: #ffffff;
  color: #0f172a;
  text-decoration: none;
  transition: background-color 0.18s ease, color 0.18s ease, transform 0.18s ease,
    box-shadow 0.18s ease;
}

.ot-nav-btn--primary {
  background: linear-gradient(135deg, #0f766e, #0b3b74);
  color: #ffffff;
  border-color: transparent;
}

.ot-nav-btn--primary:hover {
  opacity: 0.96;
  transform: translateY(-1px);
  box-shadow: 0 6px 14px rgba(15, 23, 42, 0.28);
}

.ot-nav-btn:not(.ot-nav-btn--primary):hover {
  background: #f4f9f9;
  transform: translateY(-1px);
  box-shadow: 0 6px 14px rgba(15, 23, 42, 0.18);
}

/* MOBILE HEADER STATE */
@media (max-width: 768px) {
  .ot-header {
    background: transparent;
  }

  .ot-header-inner {
    align-items: center;
  }

  .ot-logo-img {
    height: 52px;
  }

  .ot-nav-links,
  .ot-nav-actions {
    display: none;
  }

  .ot-menu-toggle {
    display: block;
    margin-left: auto;
  }
}

/* MOBILE DROPDOWN MENU (under header) */
.ot-mobile-menu {
  display: none; /* desktopda ham default yashirin */
}

@media (max-width: 768px) {

  .ot-mobile-menu-inner {
    padding: 1.25rem 0 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    border-radius: 16px;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.18);
  }

  .ot-mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }

  .ot-mobile-link {
    text-decoration: none;
    color: #0f172a;
    font-size: 1.05rem;
    padding: 0.75rem 1rem;
    border-radius: 999px;
  }

  .ot-mobile-link:hover,
  .ot-mobile-link:active {
    background: rgba(15, 118, 110, 0.08);
  }

  .ot-mobile-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(15, 23, 42, 0.16);
    margin: 10px;
  }

  /* Open state */
  .ot-menu-open .ot-mobile-menu {
    display: block;
  }

  .ot-menu-open .ot-menu-toggle-icon--open {
    display: none;
  }

  .ot-menu-open .ot-menu-toggle-close {
    display: inline-block;
  }
}

/* HERO */
.ot-main {
  margin-top: 80px;
}

.ot-hero {
  padding-top: 1rem;
}

.ot-hero-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  background: #dffaf5;
  border-radius: 32px;
  padding: 3rem 3.5rem;
  box-shadow: 0 26px 70px rgba(15, 23, 42, 0.15);
}

.ot-hero-text {
  max-width: 520px;
}

.ot-hero-title {
  margin: 0 0 1.25rem;
  font-size: 2.6rem;
  line-height: 1.1;
  color: #102a43;
}

.ot-hero-subtitle {
  margin: 0 0 2rem;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #1f394d;
}

.ot-hero-cta {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.ot-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 2.4rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  text-decoration: none;
}

.ot-btn-primary {
  background: #ff7ad9;
  color: #12212f;
  box-shadow: 0 16px 36px rgba(255, 122, 217, 0.55);
  transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
}

.ot-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 46px rgba(255, 122, 217, 0.7);
  filter: brightness(1.02);
}

.ot-hero-price {
  margin: 0;
  font-size: 0.9rem;
  color: #1f394d;
}

.ot-hero-price span {
  font-weight: 700;
}

.ot-hero-illustration {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.ot-hero-image {
  width: 100%;
  max-width: 430px;
  height: auto;
  display: block;
  transition: transform 0.18s ease-out;
}

@media (max-width: 900px) {
  .ot-hero-inner {
    flex-direction: column; /* mobile/tabletda: title, text, rasm, keyin mobil button */
    padding: 2.25rem 1.75rem 2.5rem;
  }

  .ot-hero-text {
    max-width: none;
    text-align: left;
  }

  .ot-hero-illustration {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .ot-hero-inner {
    padding: 1.75rem 1.25rem 2.25rem;
    border-radius: 24px;
    align-items: center; /* ichkaridagi bloklarni markazga yaqinlashtiramiz */
  }

  .ot-hero-title {
    font-size: 2rem;
  }

  .ot-hero-cta {
    flex-direction: column;
    align-items: center;
  }

  .ot-hero-image {
    max-width: 360px;
  }
}

/* Hero CTA – desktop vs mobile */
.ot-hero-cta--mobile {
  display: none;
}

@media (max-width: 640px) {
  .ot-hero-text {
    text-align: center;
  }

  .ot-hero-cta--desktop {
    display: none;
  }

  .ot-hero-cta--mobile {
    display: flex;
    margin-top: 1.5rem;
    justify-content: center;
  }
}

/* FEATURES SECTION */
.ot-section {
  padding: 4rem 0 4.5rem;
}

.ot-section--features {
  padding-top: 3rem;
}

.ot-feature-shell {
  background: linear-gradient(90deg, #002b49 0%, #27aea0 100%);
  border-radius: 1.75rem;
  padding: 2.5rem 2rem 3rem;
}

.ot-feature-header {
  text-align: center;
  margin-bottom: 2.5rem;
  color: #ffffff;
}

.ot-feature-kicker {
  margin: 0 0 0.75rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.85;
}

.ot-feature-title-main {
  margin: 0 0 0.75rem;
  font-size: 2.2rem;
  line-height: 1.25;
  font-weight: 800;
}

.ot-feature-subtitle {
  margin: 0 auto;
  max-width: 720px;
  font-size: 0.98rem;
  line-height: 1.7;
  opacity: 0.95;
}

.ot-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.ot-feature-card {
  background-image: linear-gradient(90deg, #ebfee5 0%, #ffffff80 100%);
  border-radius: 1.25rem;
  padding: 1.5rem 1.25rem 1.8rem;
  text-align: center;
  box-shadow: 0 4px 6px -1px #0000001a, 0 2px 4px -2px #0000001a;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ot-feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.35);
}

.ot-feature-icon {
  width: 64px;
  height: 64px;
  border-radius: 999px;
  background: #002b49;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: #ffffff;
}

.ot-feature-icon svg {
  width: 32px;
  height: 32px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ot-feature-title {
  margin: 0 0 0.4rem;
  font-size: 1.05rem;
  font-weight: 600;
  color: #000000;
}

.ot-feature-text {
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.6;
  color: #111827;
}

@media (max-width: 900px) {
  .ot-section {
    padding: 3.25rem 0 4rem;
  }

  .ot-feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .ot-section-title {
    font-size: 1.7rem;
  }

  .ot-feature-card {
    padding: 1.25rem 1.05rem 1.5rem;
  }

  .ot-feature-grid {
    grid-template-columns: 1fr;
  }
}

/* HOW IT WORKS */
.ot-section--how {
  padding-top: 2rem;
}

.ot-how-header {
  text-align: center;
  margin-bottom: 2.75rem;
}

.ot-how-kicker {
  margin: 0 0 0.75rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #64748b;
}

.ot-how-title {
  margin: 0;
  font-size: 2.4rem;
  line-height: 1.2;
  font-weight: 800;
  color: #111827;
}

.ot-how-steps {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.ot-how-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2.5rem;
}

.ot-how-row--reverse {
  flex-direction: row-reverse;
}

.ot-how-copy,
.ot-how-card-col {
  /* flex: 1 1 320px; */
}

.ot-how-copy {
  max-width: 560px;
}

.ot-how-heading {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.ot-how-icon {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: linear-gradient(90deg, #002b49 0%, #27aea0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
}

.ot-how-icon svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ot-how-step-title {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 600;
  color: #111827;
}

.ot-how-text {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.7;
  color: #4b5563;
}

.ot-how-highlight {
  color: #27aea0;
}

.ot-how-highlight-secondary {
  color: #2563eb;
}

.ot-how-card {
  background-image: linear-gradient(90deg, #ebfee5 0%, #ffffff80 100%);
  border-radius: 1.25rem;
  padding: 1.5rem 1.75rem;
  box-shadow: 0 4px 6px -1px #0000001a, 0 2px 4px -2px #0000001a;
  width: 100%;
}

@media (min-width: 901px) {
  .ot-how-card {
    max-width: 380px; /* faqat katta ekranlarda cheklaymiz */
  }
}

.ot-how-card-title {
  margin: 0 0 1rem;
  font-size: 1.05rem;
  font-weight: 600;
  color: #111827;
}

.ot-how-card-body {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.ot-how-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.ot-how-card-grid--compact {
  gap: 0.5rem;
}

.ot-how-card-label {
  display: block;
  font-size: 0.78rem;
  color: #6b7280;
  margin-bottom: 0.2rem;
}

.ot-how-card-label--muted {
  font-size: 0.7rem;
  color: #9ca3af;
}

.ot-how-pill {
  background: #f9fafb;
  border-radius: 0.75rem;
  padding: 0.65rem 0.75rem;
  font-size: 0.87rem;
  color: #111827;
}

.ot-how-chip {
  background: #f9fafb;
  border-radius: 0.5rem;
  padding: 0.35rem 0.5rem;
  font-size: 0.75rem;
  color: #111827;
}

.ot-how-card-separator {
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid #e5e7eb;
}

.ot-how-card-subtitle {
  margin: 0 0 0.5rem;
  font-size: 0.86rem;
  font-weight: 500;
  color: #111827;
}

.ot-how-upsell {
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  border-radius: 0.9rem;
  background: linear-gradient(90deg, #002b49 0%, #27aea0 100%);
}

.ot-how-upsell-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.ot-how-upsell-text {
  font-size: 0.88rem;
  font-weight: 500;
  color: #ffffff;
}

.ot-how-upsell-check {
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #002b49;
  font-size: 0.78rem;
  font-weight: 700;
}

.ot-how-cta-row {
  display: flex;
  justify-content: center;
  margin-top: 3.25rem;
}

.ot-how-cta-buttons {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.ot-how-circle-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  border: none;
  background: linear-gradient(90deg, #002b49 0%, #27aea0 100%);
  color: #ffffff;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.3);
  text-decoration: none;
  transition: transform 0.2s ease;
}

.ot-how-circle-btn svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ot-how-circle-btn:hover {
  transform: translateY(-2px);
}

@media (max-width: 900px) {
  .ot-how-row,
  .ot-how-row--reverse {
    flex-direction: column;
  }

  /* Tablet + mobile: copy va kartani ustma-ust, karta markazda tursin */
  .ot-how-copy {
    max-width: 100%;
  }

  .ot-how-card-col {
    display: flex;
    justify-content: center;
    width: 100%;
  }

  .ot-how-card {
    max-width: 420px;
    width: 100%;
    margin: 0 auto;
  }
}

@media (max-width: 640px) {
  .ot-how-title {
    font-size: 2rem;
  }

  .ot-how-card-grid {
    grid-template-columns: 1fr;
  }

  /* How it works – mobile layout (qaytadan, qat'iyroq) */
  .ot-section--how .ot-container {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  .ot-how-steps {
    align-items: stretch;
  }

  .ot-how-row,
  .ot-how-row--reverse {
    flex-direction: column;
    align-items: stretch;
    text-align: left;
  }

  .ot-how-copy,
  .ot-how-card-col {
    width: 100%;
    max-width: 100%;
  }

  .ot-how-heading {
    justify-content: flex-start;
  }

  .ot-how-card-col {
    display: block;
    margin-top: 1.25rem;
  }

  .ot-how-card {
    max-width: 100% !important; /* mobil uchun to'liq kenglik */
    width: 100% !important;
    margin: 0;                  /* o'ngga surilmasin */
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

/* USE CASES */
.ot-section--use {
  padding-top: 3rem;
}

/* SUPPORT / CONTACT PAGE */
.ot-section--support {
  padding-top: 3rem;
}

.ot-support-header {
  margin-bottom: 2rem;
}

.ot-support-alert {
  margin-bottom: 1.5rem;
  padding: 0.85rem 1rem;
  border-radius: 0.75rem;
  font-size: 0.9rem;
}

.ot-support-alert--success {
  background: #ecfdf3;
  color: #166534;
  border: 1px solid #bbf7d0;
}

.ot-support-alert--error {
  background: #fef2f2;
  color: #b91c1c;
  border: 1px solid #fecaca;
}

.ot-support-title {
  margin: 0 0 0.5rem;
  font-size: 2.2rem;
  font-weight: 800;
  color: #111827;
}

.ot-support-subtitle {
  margin: 0;
  font-size: 0.98rem;
  color: #4b5563;
}

.ot-support-layout {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1.2fr);
  gap: 1.75rem;
}

.ot-support-main,
.ot-support-aside {
  background-image: linear-gradient(90deg, #ebfee5 0%, #ffffff80 100%);
  border-radius: 1.25rem;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
  border: 1px solid #e5e7eb;
  padding: 1.75rem 1.75rem 1.5rem;
}

.ot-support-block-title {
  margin: 0 0 1.25rem;
  font-size: 1rem;
  font-weight: 600;
  color: #111827;
}

.ot-support-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.ot-support-field-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.ot-support-field label {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: #4b5563;
}

.ot-support-field input,
.ot-support-field textarea {
  width: 100%;
  border-radius: 0.75rem;
  border: 1px solid #d1d5db;
  padding: 0.6rem 0.85rem;
  font-size: 0.9rem;
  outline: none;
  font-family: inherit;
}

.ot-support-field textarea {
  resize: vertical;
  min-height: 140px;
}

.ot-support-submit {
  align-self: flex-start;
  margin-top: 0.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.8rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  background: #111827;
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 600;
}

.ot-support-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.ot-support-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #9ca3af;
  margin-bottom: 0.1rem;
}

.ot-support-value {
  font-size: 0.95rem;
  color: #111827;
}

.ot-support-value.ot-support-value a,
.ot-support-value a {
  color: #111827;
  text-decoration: none;
}

.ot-support-value a:hover {
  text-decoration: underline;
}

@media (max-width: 900px) {
  .ot-support-layout {
    grid-template-columns: minmax(0, 1.5fr) minmax(0, 1.2fr);
  }
}

@media (max-width: 640px) {
  .ot-section--support {
    padding-top: 2.5rem;
  }

  .ot-support-layout {
    grid-template-columns: 1fr;
  }

  .ot-support-main,
  .ot-support-aside {
    padding: 1.4rem 1.25rem 1.25rem;
  }

  .ot-support-field-row {
    grid-template-columns: 1fr;
  }

  .ot-support-submit {
    width: 100%;
    justify-content: center;
  }
}

/* ORDER PAGE */
.ot-section--order {
  padding-top: 3rem;
}

.ot-order-shell {
  display: flex;
  justify-content: center;
}

.ot-order-card {
  width: 100%;
  max-width: 560px;
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #dfdfe1;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.16);
  /* visible so Passengers dropdown is not clipped at card bottom */
  overflow: visible;
}

.ot-order-card-header {
  padding: 1.5rem 1.5rem 1.25rem;
}

.ot-order-card-header h1 {
  margin: 0;
  font-size: 1.875rem;
  line-height: 2.25rem;
  font-weight: 800;
  color: #191b1e;
}

.ot-order-form {
  padding: 0 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.ot-order-row {
  display: grid;
  gap: 1rem;
}

.ot-order-row--trip-type {
  margin: 0;
}

.ot-order-trip-type {
  border: 0;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1.75rem;
}

.ot-order-radio {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 500;
  color: #191b1e;
  margin: 0;
}

.ot-order-radio input[type='radio'] {
  width: 1.125rem;
  height: 1.125rem;
  flex-shrink: 0;
  accent-color: #1f368d;
}

.ot-order-row--dates {
  grid-template-columns: 1fr;
}

@media (min-width: 520px) {
  .ot-order-card--round .ot-order-row--dates {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

.ot-order-row--from-to {
  grid-template-columns: minmax(0, 1.5fr) auto minmax(0, 1.5fr);
  align-items: flex-end;
  gap: 0.75rem;
}

.ot-order-field label {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 1rem;
  font-weight: 500;
  color: #191b1e;
}

.ot-order-input-wrap {
  position: relative;
}

.ot-order-input-wrap--combo {
  z-index: 1;
}

.ot-order-input-wrap--combo.is-open {
  z-index: 30;
}

.ot-order-input-wrap--select {
  z-index: 2;
}

.ot-order-input-wrap--select.is-open {
  z-index: 45;
}

.ot-order-suggest {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 4px);
  max-height: 280px;
  overflow-y: auto;
  background: #ffffff;
  border-radius: 0.75rem;
  border: 1px solid #d5dbe3;
  box-shadow: 0 12px 32px rgba(25, 27, 30, 0.12);
}

.ot-order-suggest-head {
  display: none;
}

.ot-order-suggest.is-mobile {
  position: fixed;
  top: var(--ot-header-h, 0px);
  left: 0;
  right: 0;
  bottom: 0;
  max-height: none;
  border-radius: 0;
  border: none;
  box-shadow: none;
  z-index: 9999;
  padding-top: 0;
}

.ot-order-suggest.is-mobile .ot-order-suggest-head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  border-bottom: 1px solid #e7ecf3;
  background: #ffffff;
  position: sticky;
  top: 0;
  z-index: 1;
}

.ot-order-suggest-search {
  flex: 1;
  min-width: 0;
}

.ot-order-suggest-mobile-input {
  width: 100%;
  height: 44px;
  border-radius: 0.75rem;
  border: 1px solid #d5dbe3;
  padding: 0 0.9rem;
  font-size: 1rem;
  outline: none;
  background: #ffffff;
}

.ot-order-suggest-mobile-input:focus {
  border-color: transparent;
  box-shadow: 0 0 0 2px #003580;
}

.ot-order-suggest-back {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 999px;
  border: none;
  background: transparent;
  color: #191b1e;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.ot-order-suggest-title {
  font-size: 1.05rem;
  font-weight: 600;
  color: #191b1e;
}

.ot-order-suggest-hint {
  padding: 0.85rem 1rem;
  font-size: 0.9rem;
  color: #777f89;
}

.ot-order-suggest.is-mobile .ot-order-suggest-hint {
  padding: 0.95rem 1rem;
}

.ot-order-suggest-list {
  padding: 0.35rem 0;
}

.ot-order-suggest.is-mobile .ot-order-suggest-list {
  padding: 0;
}

.ot-order-suggest-item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.65rem 1rem;
  cursor: pointer;
  font-size: 0.95rem;
  color: #191b1e;
  border: none;
  background: transparent;
  width: 100%;
  text-align: left;
}

.ot-order-suggest.is-mobile .ot-order-suggest-item {
  padding: 0.9rem 1rem;
  border-bottom: 1px solid #eef2f7;
}

.ot-order-suggest.is-mobile .ot-order-suggest-item:hover,
.ot-order-suggest.is-mobile .ot-order-suggest-item:focus {
  background: transparent;
}

.ot-order-suggest-item-flag {
  flex-shrink: 0;
  width: 1.75rem;
  height: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  line-height: 1;
  margin-top: 0.05rem;
}

.ot-order-suggest-item-flag-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.06);
}

.ot-order-suggest-item-flag--text {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #5c6570;
  background: #eef2f7;
  border-radius: 2px;
}

.ot-order-suggest-item:hover,
.ot-order-suggest-item:focus {
  background: #f3f6fb;
  outline: none;
}

.ot-order-suggest-item-main {
  flex: 1;
  min-width: 0;
}

.ot-order-suggest-item-title {
  font-weight: 500;
}

.ot-order-suggest-item-sub {
  font-size: 0.82rem;
  color: #777f89;
  margin-top: 0.15rem;
}

.ot-order-suggest-item-code {
  flex-shrink: 0;
  font-weight: 600;
  color: #1f368d;
  font-size: 0.95rem;
}

.ot-order-input-icon {
  position: absolute;
  left: 0.9rem;
  top: 50%;
  transform: translateY(-50%);
  color: #777f89;
  font-size: 0.9rem;
}

.ot-order-input-wrap input {
  width: 100%;
  height: 3.5rem;
  padding: 0 1rem 0 2.6rem;
  border-radius: 0.75rem;
  border: 1px solid #777f89;
  font-size: 0.98rem;
  outline: none;
}

.ot-order-input-wrap input:focus {
  border-color: transparent;
  box-shadow: 0 0 0 2px #003580;
}

.ot-order-input-wrap input.is-loading {
  background-image: linear-gradient(90deg, rgba(0, 53, 128, 0.06), rgba(0, 53, 128, 0.12), rgba(0, 53, 128, 0.06));
  background-size: 200% 100%;
  animation: otShimmer 1.2s ease-in-out infinite;
}

/* Flight dropdown (native <select>) */
/* Flight dropdown (custom panel) */
.ot-flight-select-btn.is-loading {
  background-image: linear-gradient(90deg, rgba(0, 53, 128, 0.06), rgba(0, 53, 128, 0.12), rgba(0, 53, 128, 0.06));
  background-size: 200% 100%;
  animation: otShimmer 1.2s ease-in-out infinite;
}

.ot-flight-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.28);
  z-index: 9998;
}

.ot-flight-panel {
  position: fixed;
  left: 50%;
  top: 110px;
  transform: translateX(-50%);
  width: min(720px, calc(100vw - 2rem));
  background: #ffffff;
  border: 1px solid rgba(25, 27, 30, 0.12);
  border-radius: 0.9rem;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.16);
  z-index: 9999;
  overflow: hidden;
}

.ot-flight-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  border-bottom: 1px solid #eef2f7;
}

.ot-flight-panel-title {
  font-size: 1rem;
  font-weight: 700;
  color: #111827;
}

.ot-flight-panel-close {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 999px;
  border: none;
  background: rgba(31, 54, 141, 0.08);
  color: #1f368d;
  cursor: pointer;
  font-size: 1.35rem;
  line-height: 1;
}

.ot-flight-panel-list {
  max-height: min(60vh, 520px);
  overflow: auto;
  padding: 0.35rem 0;
}

.ot-flight-item {
  width: 100%;
  border: none;
  background: transparent;
  padding: 0.7rem 1rem;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  text-align: left;
  cursor: pointer;
}

.ot-flight-item:hover,
.ot-flight-item:focus {
  outline: none;
  background: #f3f6fb;
}

.ot-flight-item-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: #0f172a;
  line-height: 1.35;
}

.ot-flight-item-main {
  flex: 1;
  min-width: 0;
  display: grid;
  gap: 0.25rem;
}

.ot-flight-item-num {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #0f172a;
}

.ot-flight-item-route {
  font-size: 0.92rem;
  font-weight: 600;
  color: #334155;
}

.ot-flight-item-date {
  font-size: 0.88rem;
  font-weight: 600;
  color: #0f172a;
  margin-top: 0.15rem;
}

.ot-flight-item-time {
  font-size: 0.88rem;
  color: #475569;
  line-height: 1.35;
}

.ot-flight-item-dur {
  font-size: 0.82rem;
  color: #64748b;
}

.ot-flight-item-airline {
  font-size: 0.88rem;
  font-weight: 600;
  color: #1f368d;
  margin-top: 0.15rem;
}

.ot-flight-item-check {
  color: #1f368d;
  font-weight: 900;
  opacity: 0;
  transform: translateY(2px);
}

.ot-flight-item.is-selected .ot-flight-item-check {
  opacity: 1;
}

@media (max-width: 640px) {
  .ot-flight-panel {
    left: 0;
    right: 0;
    bottom: 0;
    top: auto;
    transform: none;
    width: 100%;
    border-radius: 16px 16px 0 0;
  }
  .ot-flight-panel-list {
    max-height: min(60vh, 520px);
  }
}

.ot-order-row--flight {
  animation: otFadeUp 160ms ease-out both;
}

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

@keyframes otShimmer {
  0% {
    background-position: 0% 0%;
  }
  100% {
    background-position: 200% 0%;
  }
}

/* Flatpickr theme alignment */
.flatpickr-calendar {
  border-radius: 0.9rem;
  box-shadow: 0 18px 40px rgba(25, 27, 30, 0.14);
  border: 1px solid #e6ecf4;
  /* Keep calendar above the fixed header on mobile */
  z-index: 100000 !important;
}
.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange,
.flatpickr-day.selected:hover,
.flatpickr-day.startRange:hover,
.flatpickr-day.endRange:hover {
  background: #1f368d;
  border-color: #1f368d;
}
.flatpickr-day.today {
  border-color: rgba(31, 54, 141, 0.35);
}
.flatpickr-day.disabled,
.flatpickr-day.disabled:hover {
  color: #b7c0cc;
}

.ot-order-swap {
  display: flex;
  justify-content: center;
  padding-bottom: 0.25rem;
}

.ot-order-swap--mobile {
  display: none;
}

.ot-order-swap-btn {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  border: none;
  background: #ffcbf0;
  color: #1f368d;
  cursor: pointer;
}

.ot-order-input-wrap--select .ot-order-select-btn {
  width: 100%;
  height: 3.5rem;
  padding: 0 2.4rem 0 2.6rem;
  border-radius: 0.75rem;
  border: 1px solid #777f89;
  background: #ffffff;
  font-size: 0.98rem;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.ot-order-select-caret {
  color: #777f89;
  font-size: 0.85rem;
}

.ot-modal-open {
  overflow: hidden;
}

.ot-passengers-backdrop {
  display: none;
}

.ot-passengers {
  display: none;
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  width: min(360px, calc(100vw - 2rem));
  background: #ffffff;
  border: 1px solid rgba(25, 27, 30, 0.12);
  border-radius: 0.9rem;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.16);
  z-index: 50;
  overflow: hidden;
}

.ot-passengers.is-open {
  display: block;
}

.ot-passengers-header {
  display: none;
}

.ot-passengers-title {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 700;
  color: #111827;
}

.ot-passengers-body {
  padding: 0.9rem 0.9rem 0.4rem;
}

.ot-passengers-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(25, 27, 30, 0.08);
}

.ot-passengers-row:last-child {
  border-bottom: none;
}

.ot-passengers-meta {
  display: grid;
  gap: 0.2rem;
}

.ot-passengers-name {
  font-size: 0.98rem;
  font-weight: 650;
  color: #111827;
}

.ot-passengers-sub {
  font-size: 0.82rem;
  color: #6b7280;
}

.ot-passengers-stepper {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.ot-passengers-count {
  width: 1.5rem;
  text-align: center;
  font-weight: 700;
  color: #111827;
}

.ot-passengers-step {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: none;
  background: rgba(31, 54, 141, 0.08);
  color: #1f368d;
  font-size: 1.15rem;
  line-height: 1;
  cursor: pointer;
}

.ot-passengers-step:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.ot-passengers-footer {
  display: none;
}

.ot-passengers-done {
  width: 100%;
  height: 56px;
  border: none;
  border-radius: 999px;
  background: linear-gradient(135deg, #0f766e, #0b3b74);
  color: #ffffff;
  font-weight: 800;
  cursor: pointer;
}

.ot-passengers-done:hover {
  opacity: 0.96;
}

.ot-order-help {
  margin-top: 0.3rem;
  font-size: 0.78rem;
  color: #5b5d5f;
}

.ot-order-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 0.5rem;
  position: relative;
  z-index: 1;
}

.ot-order-submit {
  width: 100%;
  max-width: 180px;
  height: 54px;
  border-radius: 999px;
  border: none;
  background: #d3ffae;
  color: #1f368d;
  font-weight: 700;
  cursor: pointer;
}

.ot-order-submit:hover {
  background: #c0ff8b;
}

@media (max-width: 640px) {
  .ot-order-card {
    border-radius: 12px;
  }

  .ot-order-card-header,
  .ot-order-form {
    padding-left: 1.1rem;
    padding-right: 1.1rem;
  }

  .ot-order-row--from-to {
    grid-template-columns: 1fr;
  }

  .ot-order-swap {
    order: -1;
    justify-content: flex-start;
    padding-bottom: 0;
  }

  .ot-order-swap--desktop {
    display: none;
  }

  .ot-order-input-wrap {
    position: relative;
  }

  .ot-order-input-wrap input {
    padding-right: 3.6rem;
  }

  .ot-order-swap--mobile {
    display: flex;
    position: absolute;
    right: 0.55rem;
    top: 50%;
    transform: translateY(-50%);
    padding-bottom: 0;
    order: 0;
    justify-content: center;
  }

  .ot-order-actions {
    justify-content: center;
  }

  .ot-passengers-backdrop.is-open {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    z-index: 80;
  }

  .ot-passengers.is-open {
    display: flex;
  }

  .ot-passengers {
    position: fixed;
    inset: 0;
    width: auto;
    border-radius: 0;
    border: none;
    box-shadow: none;
    z-index: 90;
    flex-direction: column;
  }

  .ot-passengers-header {
    display: grid;
    grid-template-columns: 44px 1fr;
    align-items: center;
    gap: 0.25rem;
    padding: 0.9rem 0.9rem 0.6rem;
    background: #ffffff;
  }

  .ot-passengers-back {
    width: 44px;
    height: 44px;
    border: none;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    cursor: pointer;
    color: #111827;
  }

  .ot-passengers-back svg {
    display: block;
  }

  .ot-passengers-title {
    line-height: 1.2;
    align-self: center;
  }

  .ot-passengers-body {
    padding: 1rem 1.1rem;
    overflow: auto;
    flex: 1 1 auto;
    background: #ffffff;
  }

  .ot-passengers-row {
    padding: 1.05rem 0;
  }

  .ot-passengers-step {
    width: 36px;
    height: 36px;
    font-size: 1.25rem;
    background: rgba(31, 54, 141, 0.07);
  }

  .ot-passengers-footer {
    display: block;
    padding: 0.9rem 1.1rem 1.1rem;
    background: #ffffff;
    box-shadow: 0 -10px 24px rgba(0, 0, 0, 0.08);
  }
}

/* PASSENGER DETAILS (STEP) */
.ot-step-main {
  position: relative;
  z-index: 10;
  margin-top: 80px;
}

.ot-step-topbar {
  background: #f6f6f6;
}

.ot-step-topbar-inner {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.ot-stepper {
  display: none;
}

.ot-stepper--desktop {
  display: flex;
  align-items: center;
}

.ot-stepper-seg {
  display: flex;
  align-items: center;
  flex: 1 1 auto;
}

.ot-stepper-seg:last-child {
  flex: 0 0 auto;
}

.ot-stepper-dot {
  width: 25px;
  height: 25px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1;
  color: #5b5d5f;
  border: 2px solid #868686;
  flex-shrink: 0;
}

.ot-stepper-seg--active .ot-stepper-dot {
  background: #475aa2;
  color: #ffffff;
  border-color: transparent;
}

.ot-stepper-label {
  margin-left: 0.5rem;
  font-size: 0.9rem;
  font-weight: 800;
  color: #5b5d5f;
  white-space: nowrap;
}

.ot-stepper-seg--active .ot-stepper-label {
  color: #191b1e;
}

.ot-stepper-seg--done .ot-stepper-dot {
  background: #475aa2;
  color: #ffffff;
  border-color: transparent;
  font-size: 0;
}

.ot-stepper-seg--done .ot-stepper-dot::before {
  content: "✓";
  font-size: 0.95rem;
}

.ot-stepper-seg--done .ot-stepper-label {
  color: #191b1e;
}

.ot-stepper-line {
  flex: 1 1 auto;
  margin: 0 0.75rem;
  height: 0;
  border-top: 1px dotted #868686;
}

.ot-step-section {
  background: #f6f6f6;
}

.ot-step-content {
  padding-top: 1.5rem;
  padding-bottom: 2rem;
}

.ot-step-title {
  max-width: 768px;
  margin: 0 auto 1.25rem;
}

.ot-step-title h1 {
  margin: 0;
  font-size: 1.9rem;
  line-height: 2.25rem;
  font-weight: 900;
  color: #191b1e;
}

.ot-passenger-form {
  max-width: 768px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.ot-passenger-card {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #dfdfe1;
  padding: 1.25rem;
}

.ot-passenger-card-title {
  margin: 0 0 1rem;
  font-size: 1.25rem;
  font-weight: 900;
  color: #191b1e;
}

.ot-passenger-field {
  display: grid;
  gap: 0.5rem;
}

.ot-passenger-label {
  font-size: 1rem;
  font-weight: 600;
  color: #191b1e;
}

.ot-gender-grid {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.ot-gender-btn {
  min-width: 140px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  border: 1px solid #c4c4c4;
  background: #ffffff;
  cursor: pointer;
}

.ot-gender-radio {
  width: 24px;
  height: 24px;
  border-radius: 999px;
  border: 2px solid #777f89;
}

.ot-gender-btn.is-active {
  border-color: #003580;
  box-shadow: 0 0 0 2px rgba(0, 53, 128, 0.12);
}

.ot-gender-btn.is-active .ot-gender-radio {
  border-color: #003580;
  box-shadow: inset 0 0 0 6px #003580;
}

.ot-passenger-grid {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.ot-passenger-input {
  width: 100%;
  height: 3.5rem;
  padding: 0 1rem;
  border-radius: 0.75rem;
  border: 1px solid #777f89;
  font-size: 1rem;
  outline: none;
}

.ot-passenger-input:focus {
  border-color: transparent;
  box-shadow: 0 0 0 2px #003580;
}

.ot-step-actions {
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
  padding-top: 0.75rem;
}

.ot-step-back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: none;
  background: transparent;
  color: #003580;
  font-weight: 900;
  cursor: pointer;
}

.ot-step-next {
  width: 180px;
  height: 54px;
  border-radius: 999px;
  border: none;
  background: #d3ffae;
  color: #1f368d;
  font-weight: 800;
  cursor: pointer;
}

.ot-step-next:hover {
  background: #c0ff8b;
}

.ot-step-bottombar {
  display: none;
}

/* CONTACT (EMAIL) */
.ot-contact-form {
  max-width: 768px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.ot-contact-card {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #dfdfe1;
  padding: 1.25rem;
}

.ot-contact-label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
  font-weight: 900;
  color: #191b1e;
}

.ot-contact-input {
  width: 100%;
  height: 3.25rem;
  padding: 0 1rem;
  border-radius: 0.7rem;
  border: 2px solid #e0e0e0;
  font-size: 1rem;
  color: #191b1e;
  outline: none;
}

.ot-contact-input:focus {
  border-color: transparent;
  box-shadow: 0 0 0 2px #003580;
}

.ot-contact-terms {
  margin: 1rem 0 0;
  font-size: 0.85rem;
  color: #5b5d5f;
}

.ot-contact-terms a {
  color: #003580;
  text-decoration: underline;
}

.ot-contact-terms a:hover {
  color: #002855;
}

.ot-only-mobile {
  display: none;
}

.ot-only-desktop {
  display: inline;
}

/* REVIEW & PAY */
.ot-review-grid {
  max-width: 1024px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 2rem;
  align-items: start;
}

/* PAYMENT */
.ot-payment-grid {
  max-width: 1024px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 2rem;
  align-items: start;
}

.ot-payment-left {
  display: grid;
  gap: 1.25rem;
}

.ot-payment-form--simple {
  max-width: 28rem;
  margin: 0 auto;
}

.ot-step-title .ot-payment-lead {
  margin: 0.5rem auto 0;
  max-width: 28rem;
  text-align: center;
  color: #5c6370;
  font-size: 0.95rem;
  line-height: 1.45;
}

/* Payment success (Stripe / manual confirmation page) */
.ot-payment-success-sub {
  margin: 0.35rem 0 0;
  font-size: 1rem;
  font-weight: 700;
  color: #003580;
}

.ot-payment-success-body {
  margin: 1rem 0 0;
  font-size: 1rem;
  line-height: 1.55;
  color: #3d4450;
}

.ot-payment-success-body--tight {
  margin-top: 0.65rem;
}

.ot-payment-success-pdf {
  margin-top: 1.75rem;
  padding: 1.35rem 1.25rem;
  border-radius: 12px;
  border: 1px solid #e8eaed;
  background: #ffffff;
  box-shadow: 0 1px 3px rgba(25, 27, 30, 0.06);
}

.ot-payment-success-pdf-title {
  margin: 0 0 0.65rem;
  font-weight: 800;
  color: #191b1e;
  font-size: 1.05rem;
}

.ot-payment-success-pdf-wait {
  margin: 0 0 0.75rem;
}

.ot-payment-success-pdf-note {
  margin: 0.85rem 0 0;
  font-size: 0.8125rem;
  line-height: 1.45;
}

.ot-payment-success-pdf #ot-pdf-download {
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.ot-payment-simple-card {
  margin: 1.5rem auto 0;
  padding: 1.5rem;
}

.ot-payment-amount {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid #e8eaed;
}

.ot-payment-amount-label {
  font-size: 0.85rem;
  font-weight: 650;
  color: #5c6370;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.ot-payment-amount-value {
  font-size: 1.75rem;
  font-weight: 900;
  color: #191b1e;
}

.ot-payment-hint {
  margin: 1rem 0 0;
  font-size: 0.85rem;
  color: #5c6370;
  line-height: 1.4;
}

.ot-pay-actions--simple {
  margin-top: 1.75rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.ot-pay-h2 {
  margin: 0 0 1rem;
  font-size: 1.05rem;
  font-weight: 900;
  color: #191b1e;
}

.ot-pay-field {
  display: grid;
  gap: 0.5rem;
}

.ot-pay-select {
  width: 100%;
  height: 3.5rem;
  border-radius: 0.75rem;
  border: 1px solid #777f89;
  background: #ffffff;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
  color: #191b1e;
}

.ot-pay-select:hover {
  border-color: #003580;
}

.ot-pay-select:focus {
  outline: none;
  border-color: transparent;
  box-shadow: 0 0 0 2px #003580;
}

.ot-pay-select-left {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.ot-flag {
  width: 24px;
  height: 18px;
  border-radius: 3px;
  background: linear-gradient(180deg, #1eb53a 0%, #ffffff 33%, #0099b5 66%, #1eb53a 100%);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.08);
}

.ot-pay-methods {
  display: grid;
  gap: 0.75rem;
}

.ot-pay-method {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem;
  border-radius: 0.75rem;
  border: 2px solid #dfdfe1;
  cursor: pointer;
  transition: border-color 0.15s ease, background-color 0.15s ease;
  background: #ffffff;
}

.ot-pay-method:hover {
  border-color: #003580;
}

.ot-pay-method.is-active {
  border-color: #003580;
  background: #f0f5ff;
}

.ot-pay-method-left {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 650;
  color: #191b1e;
}

.ot-pay-method input[type="radio"] {
  width: 18px;
  height: 18px;
  accent-color: #003580;
}

.ot-pay-badges {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.ot-pay-icon {
  height: 24px;
  width: auto;
  display: block;
}

.ot-pay-icon--small {
  height: 18px;
}

.ot-pay-icon--paypal {
  height: 18px;
}

.ot-promo .ot-promo-head {
  width: 100%;
  border: none;
  background: transparent;
  padding: 1rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  color: #191b1e;
}

.ot-promo.is-open .ot-promo-head svg {
  transform: rotate(180deg);
}

.ot-promo .ot-promo-head svg {
  transition: transform 0.18s ease;
  color: #777f89;
}

.ot-pay-actions {
  max-width: 1024px;
}

.ot-review-left {
  display: grid;
  gap: 1rem;
}

.ot-review-card {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #dfdfe1;
  padding: 1.25rem;
  overflow: hidden;
}

.ot-review-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.ot-review-card-head h2 {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 900;
  color: #191b1e;
}

.ot-review-edit {
  border: none;
  background: transparent;
  padding: 0;
  font-size: 0.85rem;
  color: #003580;
  text-decoration: underline;
  cursor: pointer;
}

.ot-review-edit:hover {
  color: #002a66;
}

.ot-flight-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1rem;
  align-items: center;
}

.ot-flight-code {
  font-size: 1.8rem;
  font-weight: 900;
  color: #191b1e;
}

.ot-flight-city {
  font-size: 0.85rem;
  color: #777f89;
}

.ot-flight-mid {
  display: flex;
  align-items: center;
  justify-content: center;
}

.ot-flight-dash {
  width: 56px;
  height: 1px;
  border-top: 1px dashed #d9d9d9;
}

.ot-flight-plane {
  margin: 0 0.5rem;
  flex-shrink: 0;
}

.ot-flight-logo {
  width: 24px;
  height: 24px;
  margin: 0 0.5rem;
  flex-shrink: 0;
}

.ot-flight-right {
  text-align: right;
}

.ot-flight-date {
  margin-top: 0.75rem;
  text-align: center;
  font-size: 0.95rem;
  color: #191b1e;
}

.ot-flight-note {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #e0e0e0;
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
}

.ot-flight-info {
  flex-shrink: 0;
  color: #1976d2;
  margin-top: 0.12rem;
}

.ot-flight-note p {
  margin: 0;
  font-size: 0.9rem;
  color: #5b5d5f;
}

.ot-review-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.25rem 0;
}

.ot-review-row--icon {
  align-items: flex-start;
  gap: 0.5rem;
}

.ot-review-icon {
  color: #777f89;
  flex-shrink: 0;
  margin-top: 0.12rem;
}

.ot-review-strong {
  font-size: 0.95rem;
  font-weight: 700;
  color: #191b1e;
}

.ot-review-muted {
  margin-top: 0.25rem;
  font-size: 0.85rem;
  color: #777f89;
}

.ot-cap {
  text-transform: capitalize;
}

.ot-review-sticky {
  position: sticky;
  top: 1.5rem;
}

.ot-review-breakdown {
  display: none;
  gap: 0.75rem;
  padding-bottom: 1rem;
}

.ot-review-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: #5b5d5f;
  font-size: 0.95rem;
}

.ot-review-money {
  color: #191b1e;
  font-weight: 650;
}

.ot-review-total {
  display: none;
  padding-top: 1rem;
  margin-bottom: 1rem;
  border-top: 1px solid #e0e0e0;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
}

.ot-review-total span:first-child {
  font-size: 1.3rem;
  font-weight: 900;
  color: #191b1e;
}

.ot-review-total-money {
  font-size: 1.6rem;
  font-weight: 900;
  color: #191b1e;
}

.ot-review-checks {
  display: grid;
  gap: 0.75rem;
}

.ot-review-check {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: #5b5d5f;
}

.ot-review-check strong {
  color: #191b1e;
  font-weight: 900;
}

.ot-review-actions {
  max-width: 1024px;
  margin: 0.75rem auto 0;
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
}

@media (min-width: 900px) {
  .ot-review-breakdown {
    display: grid;
  }
  .ot-review-total {
    display: flex;
  }
}

@media (max-width: 1024px) {
  .ot-review-grid {
    grid-template-columns: 1fr;
  }
  .ot-review-sticky {
    position: static;
  }

  .ot-payment-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .ot-flight-grid {
    gap: 0.6rem;
  }

  .ot-flight-code {
    font-size: 1.45rem;
  }

  .ot-flight-dash {
    width: 34px;
  }

  .ot-flight-logo {
    margin: 0 0.25rem;
  }
}

/* FLEXIBILITY OPTIONS (STEP 2) */
.ot-flex-grid {
  max-width: 768px;
  margin: 0 auto 1.25rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.ot-flex-card {
  position: relative;
  text-align: left;
  border: 1px solid #e0e0e0;
  border-radius: 16px;
  background: #ffffff;
  padding: 1.5rem;
  cursor: pointer;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease,
    background-color 0.15s ease;
  min-height: 220px;
}

.ot-flex-card:hover {
  border-color: #003580;
}

.ot-flex-card.is-selected {
  border-color: #003580;
  background: #eef7ff;
  box-shadow: 0 0 0 2px rgba(0, 53, 128, 0.12);
}

.ot-flex-radio {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 1.333px solid #777f89;
  background: #ffffff;
}

.ot-flex-card.is-selected .ot-flex-radio {
  border-color: #003580;
  box-shadow: inset 0 0 0 8px #003580;
}

.ot-flex-card-body h3 {
  margin: 0 0 0.5rem;
  font-size: 1.25rem;
  font-weight: 900;
  color: #191b1e;
}

.ot-flex-card-body p {
  margin: 0 0 0.9rem;
  font-size: 0.9rem;
  color: #5b5d5f;
}

.ot-flex-price {
  margin: 0 0 0.75rem;
  font-size: 1.15rem;
  font-weight: 900;
  color: #003580;
}

.ot-flex-list {
  margin: 0.4rem 0 0.75rem;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
}

.ot-flex-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: #191b1e;
}

.ot-flex-check {
  flex-shrink: 0;
  margin-top: 0.12rem;
  color: #4caf50;
}

.ot-flex-footnote {
  margin: 0;
  font-size: 0.75rem;
  color: #777f89;
}

@media (max-width: 768px) {
  .ot-flex-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 0.75rem;
  }
}

@media (max-width: 768px) {
  .ot-stepper--desktop {
    display: none;
  }

  .ot-stepper--mobile {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
  }

  .ot-stepper-back {
    width: 44px;
    height: 44px;
    border: none;
    background: transparent;
    color: #1f368d;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
  }

  .ot-stepper-mini {
    display: flex;
    align-items: center;
    gap: 0.35rem;
  }

  .ot-stepper-mini-seg {
    display: flex;
    align-items: center;
    gap: 0.35rem;
  }

  .ot-stepper-mini-seg--active .ot-stepper-dot {
    background: #475aa2;
    color: #ffffff;
    border-color: transparent;
  }

  .ot-stepper-mini-seg--done .ot-stepper-dot {
    background: #475aa2;
    color: #ffffff;
    border-color: transparent;
    font-size: 0;
  }

  .ot-stepper-mini-seg--done .ot-stepper-dot::before {
    content: "✓";
    font-size: 0.95rem;
  }

  .ot-stepper-mini-line {
    width: 24px;
    height: 0;
    border-top: 1px dotted #868686;
  }

  .ot-stepper-spacer {
    width: 24px;
    height: 24px;
  }

  .ot-step-content {
    padding-bottom: 5rem;
  }

  .ot-passenger-form {
    padding-bottom: 0;
  }

  .ot-passenger-grid {
    grid-template-columns: 1fr;
  }

  .ot-step-actions--desktop {
    display: none;
  }

  .ot-step-bottombar {
    display: block;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 30;
    box-shadow: 0px 2px 12px 0px rgba(0, 0, 0, 0.12);
  }

  .ot-step-bottombar-inner {
    background: #ffffff;
    padding-top: 1rem;
    padding-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
  }

  .ot-step-price {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
  }

  .ot-step-price-amount {
    font-weight: 900;
    font-size: 1.1rem;
    color: #191b1e;
  }

  .ot-step-summary {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    border: none;
    background: transparent;
    padding: 0;
    color: #1f368d;
    cursor: pointer;
    border-bottom: 1px solid #1f368d;
    width: fit-content;
  }

  .ot-step-summary-caret {
    transform: rotate(180deg);
  }

  .ot-step-next--mobile {
    width: 180px;
    height: 54px;
  }

  .ot-step-safe {
    background: #ffffff;
    height: env(safe-area-inset-bottom);
  }

  .ot-only-mobile {
    display: inline;
  }

  .ot-only-desktop {
    display: none;
  }
}

.ot-use-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.ot-use-kicker {
  margin: 0 0 0.75rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #9ca3af;
}

.ot-use-title {
  margin: 0;
  font-size: 2.2rem;
  line-height: 1.25;
  font-weight: 800;
  color: #111827;
}

.ot-use-inner {
  max-width: 900px;
  margin: 0 auto;
}

.ot-use-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 2rem;
  margin-bottom: 1.75rem;
}

.ot-use-tab {
  padding: 0.4rem 1rem;
  border-radius: 0.5rem;
  border: none;
  background: transparent;
  font-size: 0.95rem;
  font-weight: 500;
  color: #4b5563;
  cursor: pointer;
  transition: background-color 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
}

.ot-use-tab:hover {
  background: #f3f4f6;
  color: #111827;
}

.ot-use-tab--active {
  background: #111827;
  color: #ffffff;
  box-shadow: 0 4px 10px rgba(15, 23, 42, 0.25);
}

.ot-use-card {
  background-image: linear-gradient(90deg, #ebfee5 0%, #ffffff80 100%);
  border-radius: 1.6rem;
  padding: 1.75rem 2rem;
  box-shadow: 0 4px 6px -1px #0000001a, 0 2px 4px -2px #0000001a;
}

.ot-use-card-title {
  margin: 0 0 0.75rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: #111827;
}

.ot-use-card-text {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.7;
  color: #4b5563;
}

@media (max-width: 640px) {
  .ot-use-title {
    font-size: 1.8rem;
  }

  .ot-use-card {
    padding: 1.5rem 1.4rem;
  }
}

/* (more reasons section styles removed) */

/* REVIEWS */
.ot-section--reviews {
  padding-top: 6rem;
}

.ot-reviews-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.ot-reviews-kicker {
  margin: 0 0 0.75rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #9ca3af;
}

.ot-reviews-title {
  margin: 0 0 0.75rem;
  font-size: 2.2rem;
  line-height: 1.25;
  font-weight: 800;
  color: #111827;
}

.ot-reviews-subtitle {
  margin: 0 auto;
  max-width: 640px;
  font-size: 0.96rem;
  line-height: 1.7;
  color: #4b5563;
}

.ot-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.ot-review-card {
  background-image: linear-gradient(90deg, #ebfee5 0%, #ffffff80 100%);
  border-radius: 1.5rem;
  padding: 1.4rem 1.5rem;
  box-shadow: 0 4px 6px -1px #0000001a, 0 2px 4px -2px #0000001a;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  cursor: pointer;
  transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease, color 0.2s ease;
}

.ot-review-card:hover {
  background: linear-gradient(90deg, #002b49 0%, #27aea0 100%);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.35);
  transform: translateY(-4px);
}

.ot-review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: linear-gradient(90deg, #002b49 0%, #27aea0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: 600;
  font-size: 0.95rem;
  overflow: hidden;
  flex-shrink: 0;
}

.ot-review-avatar img.ot-review-avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 999px;
  display: block;
}

.ot-review-body {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.ot-review-name {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 600;
  color: #111827;
}

.ot-review-text {
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.6;
  color: #4b5563;
}

.ot-review-text > p:first-child {
  margin-top: 0;
}

.ot-review-text > p:last-child {
  margin-bottom: 0;
}

.ot-review-card:hover .ot-review-name,
.ot-review-card:hover .ot-review-text {
  color: #ffffff;
}

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

@media (max-width: 640px) {
  .ot-reviews-title {
    font-size: 1.8rem;
  }

  .ot-reviews-grid {
    grid-template-columns: 1fr;
  }
}

/* FAQS */
.ot-section--faq {
  padding-top: 3rem;
}

.ot-faq-shell {
  background: linear-gradient(90deg, #002b49 0%, #27aea0 100%);
  border-radius: 1.75rem;
  padding: 2.5rem 2rem 3rem;
}

.ot-faq-header {
  text-align: center;
  margin-bottom: 2.25rem;
  color: #ffffff;
}

.ot-faq-kicker {
  margin: 0 0 0.75rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.85;
}

.ot-faq-title {
  margin: 0;
  font-size: 2.4rem;
  line-height: 1.2;
  font-weight: 800;
}

.ot-faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.ot-faq-item {
  background: #ffffff;
  border-radius: 1.2rem;
  box-shadow: 0 4px 6px -1px #0000001a, 0 2px 4px -2px #0000001a;
  overflow: hidden;
}

.ot-faq-trigger {
  width: 100%;
  padding: 1.2rem 1.5rem;
  border: none;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.ot-faq-trigger-left {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.ot-faq-icon {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #27aea0;
}

.ot-faq-icon svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ot-faq-question {
  font-size: 1rem;
  font-weight: 600;
  color: #000000;
}

.ot-faq-chevron svg {
  width: 16px;
  height: 16px;
  stroke: #6b7280;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.2s ease;
}

.ot-faq-item.is-open .ot-faq-chevron svg {
  transform: rotate(180deg);
}

.ot-faq-panel {
  max-height: 0;
  overflow: hidden;
  padding: 0 1.5rem;
  transition: max-height 0.2s ease;
}

.ot-faq-item.is-open .ot-faq-panel {
  padding-bottom: 1.1rem;
}

.ot-faq-answer {
  margin: 0.1rem 0 0;
  font-size: 0.9rem;
  line-height: 1.6;
  color: #374151;
}

@media (max-width: 640px) {
  .ot-faq-title {
    font-size: 2rem;
  }

  .ot-faq-shell {
    padding: 2.25rem 1.5rem 2.75rem;
  }
}

/* FOOTER */
.ot-footer {
  background: linear-gradient(180deg, #8fe9e1 0%, #5ecfbe 100%);
  padding-top: 2.25rem;
}

.ot-footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 2fr) repeat(2, minmax(0, 1fr)) minmax(0, 1.5fr);
  gap: 2.5rem;
  padding: 0 0 2.75rem;
}

.ot-footer-col {
  font-size: 0.9rem;
}

.ot-footer-brand {
  max-width: 320px;
}

.ot-footer-logo {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  text-decoration: none;
  color: inherit;
}

.ot-footer-logo-img {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
}

.ot-footer-logo-text {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.ot-footer-logo-title {
  font-weight: 700;
  color: #111827;
}

.ot-footer-logo-sub {
  font-size: 0.85rem;
  color: #4b5563;
  line-height: 1.6;
}

.ot-footer-heading {
  margin: 0 0 0.75rem;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #6b7280;
}

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

.ot-footer-links a {
  text-decoration: none;
  font-size: 0.9rem;
  color: #111827;
}

.ot-footer-links a:hover {
  color: #0f766e;
}

.ot-footer-cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.ot-footer-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 1.2rem;
  border-radius: 999px;
  border: 1px solid #e5e7eb;
  font-size: 0.85rem;
  font-weight: 500;
  text-decoration: none;
  color: #111827;
  background: #ffffff;
}

.ot-footer-btn--primary {
  border: none;
  background: linear-gradient(90deg, #002b49 0%, #27aea0 100%);
  color: #ffffff;
}

.ot-footer-btn--primary:hover {
  opacity: 0.95;
}

.ot-footer-btn:hover:not(.ot-footer-btn--primary) {
  background: #f3f4f6;
}

.ot-footer-bottom {
  border-top: 1px solid rgba(148, 163, 184, 0.4);
  padding: 0.85rem 0 1rem;
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(8px);
}

.ot-footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: 0.8rem;
  color: #6b7280;
}

.ot-footer-powered {
  font-size: 0.8rem;
}

/* Tablet */
@media (max-width: 900px) {
  .ot-footer-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Mobile – 0 dan soddalashtirilgan layout */
@media (max-width: 640px) {
  .ot-footer {
    padding-top: 2rem;
  }

  .ot-footer-inner {
    grid-template-columns: 1fr;
    row-gap: 1.75rem;
    padding: 25px;
  }

  .ot-footer-brand {
    max-width: none;
  }

  .ot-footer-col {
    text-align: center;
  }

  .ot-footer-logo {
    justify-content: center;
  }

  .ot-footer-links {
    align-items: center;
  }

  .ot-footer-cta-buttons {
    align-items: stretch;
  }

  .ot-footer-btn {
    width: 100%;
  }

  .ot-footer-bottom-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

/* BLOG */
.ot-section--blog {
  padding-top: 3rem;
}

.ot-blog-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.ot-blog-kicker {
  margin: 0 0 0.75rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #9ca3af;
}

.ot-blog-title {
  margin: 0 0 0.75rem;
  font-size: 2.2rem;
  line-height: 1.25;
  font-weight: 800;
  color: #111827;
}

.ot-blog-subtitle {
  margin: 0 auto;
  max-width: 720px;
  font-size: 0.96rem;
  line-height: 1.7;
  color: #4b5563;
}

.ot-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
  margin-bottom: 2.75rem;
}

.ot-blog-card {
  border-radius: 1rem;
  background-image: linear-gradient(90deg, #ebfee5 0%, #ffffff80 100%);
  box-shadow: 0 4px 6px -1px #0000001a, 0 2px 4px -2px #0000001a;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: box-shadow 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.ot-blog-card:hover {
  border-color: #27aea0;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.35);
  transform: translateY(-4px);
}

.ot-blog-image-wrap {
  overflow: hidden;
}

.ot-blog-image {
  width: 100%;
  height: 176px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.ot-blog-card:hover .ot-blog-image {
  transform: scale(1.05);
}

.ot-blog-card-body {
  padding: 1.5rem 1.5rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.ot-blog-meta {
  font-size: 0.75rem;
  color: #6b7280;
}

.ot-blog-card-title {
  margin: 0;
  font-size: 0.98rem;
  font-weight: 600;
  color: #111827;
  line-height: 1.5;
}

.ot-blog-card-title a {
  color: inherit;
  text-decoration: none;
}

.ot-blog-card:hover .ot-blog-card-title {
  color: #27aea0;
}

.ot-blog-footer {
  padding: 0 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.ot-blog-card-body > .ot-blog-footer {
  padding: 0;
  margin-top: 0.35rem;
}

.ot-blog-byline {
  font-size: 0.85rem;
  color: #4b5563;
}

.ot-blog-author {
  font-weight: 600;
  color: #111827;
}

.ot-blog-readmore-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  border: 1px solid #e5e7eb;
  background: #ffffff;
  font-size: 0.8rem;
  font-weight: 500;
  color: #111827;
  cursor: pointer;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.12);
  transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

a.ot-blog-readmore-btn {
  text-decoration: none;
}

.ot-blog-readmore-btn:hover {
  transform: scale(1.05);
  background: #f3f4f6;
}

.ot-blog-readmore-btn--disabled {
  cursor: default;
  opacity: 0.85;
  pointer-events: none;
}

/* Ghost “Read more” (blog index reference layout) */
.ot-blog-readmore-btn--ghost {
  background: transparent;
  box-shadow: none;
}

.ot-blog-readmore-btn--ghost:hover {
  background: #f9fafb;
  transform: none;
}

/* Blog article modal (front page) */
body.ot-blog-modal-open {
  overflow: hidden;
}

.ot-blog-modal {
  position: fixed;
  inset: 0;
  z-index: 100050;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  box-sizing: border-box;
}

.ot-blog-modal[hidden] {
  display: none !important;
}

.ot-blog-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.55);
  backdrop-filter: blur(2px);
}

.ot-blog-modal-dialog {
  position: relative;
  width: min(100%, 42rem);
  max-height: min(90vh, 52rem);
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border-radius: 1rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.28);
  overflow: hidden;
}

.ot-blog-modal-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem 0.75rem;
  flex-shrink: 0;
  border-bottom: 1px solid #e5e7eb;
}

.ot-blog-modal-meta-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem 0.75rem;
  font-size: 0.8rem;
  color: #6b7280;
}

.ot-blog-modal-cat-pill:empty {
  display: none;
}

.ot-blog-modal-cat-pill {
  display: inline-block;
  padding: 0.2rem 0.65rem;
  border-radius: 999px;
  background: #f3f4f6;
  color: #374151;
  font-weight: 500;
}

.ot-blog-modal-close-x {
  flex-shrink: 0;
  width: 2.25rem;
  height: 2.25rem;
  border: none;
  border-radius: 999px;
  background: transparent;
  color: #6b7280;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.15s ease, color 0.15s ease;
}

.ot-blog-modal-close-x:hover {
  background: #f3f4f6;
  color: #111827;
}

.ot-blog-modal-scroll {
  flex: 1;
  overflow-y: auto;
  padding: 1rem 1.5rem 1.25rem;
  -webkit-overflow-scrolling: touch;
}

.ot-blog-modal-title {
  margin: 0 0 0.75rem;
  font-size: clamp(1.25rem, 4vw, 1.65rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.25;
}

.ot-blog-modal-byline {
  margin: 0 0 1.25rem;
  font-size: 0.85rem;
  color: #9ca3af;
}

.ot-blog-modal-typography {
  font-size: 0.95rem;
  line-height: 1.65;
  color: #374151;
}

.ot-blog-modal-typography p {
  margin: 0 0 1rem;
}

.ot-blog-modal-typography p:last-child {
  margin-bottom: 0;
}

.ot-blog-modal-typography a {
  color: #0ea5e9;
  text-decoration: underline;
}

.ot-blog-modal-typography img,
.ot-blog-modal-featured img {
  max-width: 100%;
  height: auto;
  border-radius: 0.5rem;
}

.ot-blog-modal-featured {
  margin: 0 0 1.25rem;
}

.ot-blog-modal-footerline {
  margin: 1.5rem 0 0;
  font-size: 0.9rem;
  color: #6b7280;
}

.ot-blog-modal-loading,
.ot-blog-modal-error {
  margin: 0;
  color: #6b7280;
}

.ot-blog-modal-error {
  color: #b91c1c;
}

.ot-blog-modal-bar {
  flex-shrink: 0;
  display: flex;
  justify-content: flex-end;
  padding: 0.85rem 1.25rem 1.1rem;
  border-top: 1px solid #e5e7eb;
  background: #fafafa;
}

.ot-blog-modal-close-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 1.35rem;
  border: none;
  border-radius: 999px;
  background: linear-gradient(90deg, #002b49 0%, #27aea0 100%);
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(39, 174, 160, 0.35);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.ot-blog-modal-close-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(39, 174, 160, 0.45);
}

.ot-blog-cta-row {
  display: flex;
  justify-content: center;
}

.ot-blog-cta-buttons {
  display: flex;
  align-items: center;
  gap: 1rem;
}

@media (max-width: 900px) {
  .ot-blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .ot-blog-title {
    font-size: 1.8rem;
  }

  .ot-blog-grid {
    grid-template-columns: 1fr;
  }
}

/* NEWSLETTER */
.ot-newsletter-form-alert {
  flex: 1 1 100%;
  width: 100%;
  margin-bottom: 0;
}

.ot-newsletter {
  margin-top: 3rem;
}

.ot-newsletter-inner {
  background: #004066;
  border-radius: 1.5rem;
  padding: 1.6rem 1.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem;
  color: #e5f7ff;
}

.ot-newsletter-left {
  display: flex;
  align-items: center;
  gap: 1rem;
  /* flex: 1 1 260px; */
}

.ot-newsletter-icon-desktop img {
  width: 72px;
  height: 72px;
  display: block;
}

.ot-newsletter-icon-mobile {
  display: none;
}

.ot-newsletter-copy {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.ot-newsletter-title {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 700;
}

.ot-newsletter-text {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.6;
  color: #c5e3ff;
}

.ot-newsletter-form {
  /* flex: 1 1 260px; */
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.ot-newsletter-input-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.ot-newsletter-input-wrap {
  flex: 1;
}

.ot-newsletter-input {
  width: 100%;
  border-radius: 10px;
  border: 1px solid #60a5fa;
  padding: 0.65rem 1rem;
  font-size: 0.9rem;
  outline: none;
  background: #ffffff;
  color: #0f172a;
}

.ot-newsletter-input::placeholder {
  color: #6b7280;
}

.ot-newsletter-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  border: 2px solid transparent;
  padding: 0.6rem 1.4rem;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  background: #fbb6ce;
  color: #002b49;
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.ot-newsletter-btn:hover {
  transform: scale(1.04);
  background: #ffe0ed;
  border-color: #f3d;
}

.ot-newsletter-btn--desktop {
  display: inline-flex;
}

.ot-newsletter-btn--mobile {
  display: none;
  width: 100%;
}

@media (max-width: 640px) {
  .ot-newsletter-inner {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    padding: 1.5rem 1.25rem;
  }

  .ot-newsletter-icon-desktop {
    display: none;
  }

  .ot-newsletter-icon-mobile {
    display: block;
    margin: 0 auto 0.75rem;
    order: -1; /* mobil ekranlarda iconni eng tepaga olib chiqamiz */
  }

  .ot-newsletter-icon-mobile img {
    width: 72px;
    height: 72px;
  }

  .ot-newsletter-input-row {
    flex-direction: column;
    align-items: stretch;
    gap: 0.6rem;
  }

  .ot-newsletter-btn--desktop {
    display: none;
  }

  .ot-newsletter-btn--mobile {
    display: inline-flex;
    justify-content: center;
  }

  .ot-newsletter-left {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .ot-newsletter-copy {
    align-items: center;
  }

  .ot-newsletter-form {
    width: 100%;
  }

  .ot-newsletter-input {
    width: 100%;
  }
}

/* ——— Blog index / single / search ——— */
body.blog,
body.search,
body.single-post {
  background: #eef1f4;
}

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

.ot-nav-link--current {
  background: rgba(15, 118, 110, 0.18);
  color: #0f172a;
}

.ot-main--blog-archive,
.ot-main--blog-single {
  padding-bottom: 3rem;
}

.ot-blog-archive-shell,
.ot-blog-single-shell {
  padding-top: 0.5rem;
}

.ot-blog-breadcrumbs {
  font-size: 0.9rem;
  color: #64748b;
  margin: 0 0 1.5rem;
}

.ot-blog-breadcrumbs a {
  color: #0f766e;
  text-decoration: none;
}

.ot-blog-breadcrumbs a:hover {
  text-decoration: underline;
}

.ot-blog-breadcrumbs-sep {
  margin: 0 0.35rem;
  color: #94a3b8;
}

.ot-blog-breadcrumbs-current {
  color: #334155;
  font-weight: 500;
}

/* Top row: featured hero + sidebar (full container width) */
.ot-blog-archive-top {
  margin-bottom: 2rem;
}

.ot-blog-archive-top:has(.ot-blog-hero) {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 2rem;
  align-items: start;
}

.ot-blog-archive-top:not(:has(.ot-blog-hero)) {
  display: flex;
  justify-content: flex-end;
}

/* Only hide the empty left column cell, not spacers inside sidebar (e.g. search) */
.ot-blog-archive-top:not(:has(.ot-blog-hero)) > .ot-blog-archive-hero-cell {
  display: none;
}

.ot-blog-archive-hero-cell .ot-blog-hero {
  margin-bottom: 0;
}

/* Full container width under hero row (3-column grid like reference) */
.ot-blog-archive-wide {
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

/* Search: sidebar column only, right-aligned; Search + gap + Trending stacked vertically */
.ot-blog-archive-top--sidebar-only {
  display: flex;
  justify-content: flex-end;
}

.ot-blog-sidebar--stack {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 300px;
}

.ot-blog-archive-hero-cell--sidebar-gap {
  flex-shrink: 0;
  min-height: 1.25rem;
}

.ot-blog-hero {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  min-height: 460px;
  margin-bottom: 2rem;
  background-color: #0f172a;
  background-image: var(--ot-blog-hero-bg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.ot-blog-hero-overlay {
  position: relative;
  z-index: 1;
  padding: 2rem 2.25rem;
  min-height: 460px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(
    180deg,
    rgba(15, 23, 42, 0.2) 0%,
    rgba(15, 23, 42, 0.75) 55%,
    rgba(15, 23, 42, 0.88) 100%
  );
  color: #fff;
}

.ot-blog-hero-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.ot-blog-hero-cat {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
  font-size: 0.8rem;
  font-weight: 600;
}

.ot-blog-hero-date {
  font-size: 0.85rem;
  opacity: 0.9;
}

.ot-blog-hero-title {
  margin: 0 0 0.75rem;
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  line-height: 1.25;
}

.ot-blog-hero-title a {
  color: inherit;
  text-decoration: none;
}

.ot-blog-hero-title a:hover {
  text-decoration: underline;
}

.ot-blog-hero-excerpt {
  margin: 0 0 1rem;
  max-width: 640px;
  line-height: 1.55;
  opacity: 0.95;
  font-size: 0.98rem;
}

.ot-blog-hero-byline {
  margin: 0 0 1.25rem;
  font-size: 0.88rem;
  opacity: 0.88;
}

.ot-blog-hero-btn {
  display: inline-flex;
  align-self: flex-start;
  padding: 0.65rem 1.35rem;
  border-radius: 999px;
  background: #fff;
  color: #0f172a;
  font-weight: 600;
  text-decoration: none;
  font-size: 0.95rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.ot-blog-hero-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.ot-blog-grid--archive {
  margin-top: 0;
}

.ot-blog-excerpt {
  margin: 0 0 0.85rem;
  font-size: 0.92rem;
  line-height: 1.5;
  color: #64748b;
}

/* Blog index / search cards: white card, meta + title + byline + ghost CTA (no excerpt) */
.ot-blog-card--index {
  background: #ffffff;
  background-image: none;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.06);
}

.ot-blog-card--index:hover {
  border-color: #d1d5db;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.1);
  transform: translateY(-2px);
}

.ot-blog-card--index .ot-blog-image {
  height: 200px;
}

.ot-blog-card--index .ot-blog-card-body {
  padding: 1.25rem 1.5rem 1.4rem;
  gap: 0.55rem;
}

.ot-blog-card--index .ot-blog-card-title {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.45;
  color: #0f172a;
}

.ot-blog-card--index .ot-blog-byline {
  font-size: 0.8125rem;
  color: #6b7280;
}

.ot-blog-card--index .ot-blog-author {
  font-weight: 600;
  color: #111827;
}

.ot-blog-sidebar-card {
  background: #fff;
  border-radius: 16px;
  padding: 1.25rem 1.35rem;
  margin-bottom: 1.25rem;
  box-shadow: 0 4px 24px rgba(15, 23, 42, 0.06);
}

.ot-blog-sidebar-title {
  margin: 0 0 1rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: #0f172a;
}

.ot-blog-search-input {
  width: 100%;
  padding: 0.65rem 1rem;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  font-size: 0.95rem;
  background: #f8fafc;
}

.ot-blog-search-input:focus {
  outline: none;
  border-color: #0d9488;
  background: #fff;
}

.ot-blog-search-count {
  margin: 0.6rem 0 0;
  font-size: 0.8rem;
  color: #94a3b8;
}

.ot-blog-trending-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.ot-blog-trending-item {
  margin-bottom: 0.85rem;
}

.ot-blog-trending-item:last-child {
  margin-bottom: 0;
}

.ot-blog-trending-link {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  text-decoration: none;
  color: inherit;
}

.ot-blog-trending-link:hover .ot-blog-trending-title {
  color: #0d9488;
}

.ot-blog-trending-thumb-wrap {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  border-radius: 10px;
  overflow: hidden;
  background: #e2e8f0;
}

.ot-blog-trending-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ot-blog-trending-title {
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.35;
  color: #1e293b;
  transition: color 0.15s ease;
}

.ot-blog-pagination {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.ot-blog-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
  justify-content: center;
}

.ot-blog-pagination li {
  display: inline-block;
}

.ot-blog-pagination a,
.ot-blog-pagination span.page-numbers {
  display: inline-block;
  padding: 0.45rem 0.85rem;
  border-radius: 10px;
  text-decoration: none;
  color: #334155;
  font-size: 0.9rem;
  font-weight: 500;
}

.ot-blog-pagination a:hover {
  background: #e2e8f0;
}

.ot-blog-pagination span.current {
  background: #0f172a;
  color: #fff;
}

.ot-blog-pagination-status {
  margin: 0;
  font-size: 0.88rem;
  color: #64748b;
}

.ot-blog-empty {
  grid-column: 1 / -1;
  color: #64748b;
  margin: 1rem 0;
}

.ot-blog-search-page-title {
  font-size: 1.35rem;
  margin: 0 0 1.5rem;
  color: #0f172a;
}

/* Single post */
.ot-blog-single-article {
  background: #fff;
  border-radius: 20px;
  padding: 2rem 2.25rem 2.5rem;
  box-shadow: 0 4px 28px rgba(15, 23, 42, 0.06);
  max-width: 760px;
  margin: 0 auto;
}

.ot-blog-single-header {
  margin-bottom: 1.5rem;
}

.ot-blog-single-meta {
  margin: 0 0 0.5rem;
  font-size: 0.9rem;
  color: #64748b;
}

.ot-blog-single-title {
  margin: 0 0 0.75rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.2;
  color: #0f172a;
}

.ot-blog-single-byline {
  margin: 0;
  font-size: 0.9rem;
  color: #475569;
}

.ot-blog-single-featured {
  margin-bottom: 1.75rem;
  border-radius: 16px;
  overflow: hidden;
}

.ot-blog-single-featured-img {
  width: 100%;
  height: auto;
  display: block;
}

.ot-blog-single-content {
  color: #334155;
  line-height: 1.65;
}

@media (max-width: 960px) {
  .ot-blog-archive-top:has(.ot-blog-hero) {
    grid-template-columns: 1fr;
  }

  .ot-blog-archive-top .ot-blog-sidebar {
    order: -1;
  }

  .ot-blog-archive-top:not(:has(.ot-blog-hero)) {
    flex-direction: column;
    align-items: stretch;
  }

  .ot-blog-archive-top--sidebar-only {
    justify-content: stretch;
  }

  .ot-blog-sidebar--stack {
    max-width: none;
  }
}

@media (max-width: 640px) {
  .ot-blog-hero {
    min-height: 280px;
  }

  .ot-blog-hero-overlay {
    padding: 1.5rem 1.25rem;
    min-height: 280px;
  }
}
