/* ============================================================
   19-seo-tickets.css
   SEO text + price block · Popular destinations tab block
============================================================ */

/* ── SEO SECTION ── */
.seo-sec {
  padding: var(--sec-py) 0;
  background: #fff;
  position: relative;
  overflow: hidden;
}

.seo-sec::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37,99,235,.04) 0%, transparent 65%);
  pointer-events: none;
}

.seo-inner {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 72px;
  align-items: start;
}

/* LEFT */
.seo-lead {
  font-size: 17px;
  color: var(--gray-600);
  line-height: 1.75;
  margin-bottom: var(--sp-xl);
}

.seo-body {
  font-size: 15px;
  color: var(--gray-500);
  line-height: 1.85;
  margin-bottom: var(--sp-md);
}

.seo-body + .seo-body {
  border-top: 1px solid var(--gray-150);
  padding-top: var(--sp-md);
}

.seo-body strong { color: var(--gray-700); font-weight: 600; }

.seo-h2 {
  font-family: 'Sora', sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: var(--gray-900);
  margin-top: var(--sp-2xl);
  margin-bottom: var(--sp-md);
  letter-spacing: -.02em;
}

.seo-divider {
  width: 40px;
  height: 2px;
  background: var(--grad-blue-shine);
  border-radius: 2px;
  margin: var(--sp-xl) 0;
}

/* keyword tags */
.seo-keywords {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-sm);
  margin-top: var(--sp-xl);
}

.seo-kw {
  font-size: 12px;
  font-weight: 600;
  color: var(--gray-600);
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-full);
  padding: 5px 13px;
  transition: background var(--t-fast), border-color var(--t-fast), color var(--t-fast);
  cursor: default;
  font-family: 'Sora', sans-serif;
}

.seo-kw:hover {
  background: var(--blue-pale);
  border-color: rgba(37,99,235,.22);
  color: var(--blue);
}

/* RIGHT — sticky price block */
.seo-right {
  position: sticky;
  top: 88px;
  align-self: start;
}

.seo-prices {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.seo-prices-head {
  background: var(--grad-hero);
  padding: 16px 22px;
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
  overflow: hidden;
}

.seo-prices-head::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(37,99,235,.25) 0%, transparent 60%);
  pointer-events: none;
}

.seo-prices-head-icon {
  font-size: 15px;
  position: relative;
  z-index: 1;
}

.seo-prices-head-title {
  font-family: 'Sora', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(147,197,253,.9);
  position: relative;
  z-index: 1;
}

.seo-prices-head-live {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: 'Sora', sans-serif;
  font-size: 10px;
  color: rgba(147,197,253,.55);
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}

.seo-price-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--emerald);
  animation: seo-pulse 2.4s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes seo-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .5; transform: scale(.75); }
}

/* price rows */
.seo-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 22px;
  border-bottom: 1px solid var(--gray-150);
  transition: background var(--t-fast), transform var(--t-fast);
  cursor: default;
  gap: 10px;
}

.seo-price-row:last-child { border-bottom: none; }

.seo-price-row:hover { background: var(--blue-pale); }

.seo-price-route {
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: 'Sora', sans-serif;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--gray-700);
  letter-spacing: .04em;
}

.seo-price-arrow {
  color: var(--gray-300);
  font-size: 11px;
  font-style: normal;
}

.seo-price-right {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.seo-price-amount {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 15px;
  color: var(--emerald);
  white-space: nowrap;
  letter-spacing: -.01em;
}

.seo-price-badge {
  font-family: 'Sora', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  background: #FEF3C7;
  color: #92400E;
  border-radius: var(--r-full);
  padding: 3px 9px;
  white-space: nowrap;
}

.seo-price-badge--new {
  background: #DCFCE7;
  color: #166534;
}

.seo-prices-note {
  padding: 10px 22px;
  border-top: 1px solid var(--gray-150);
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  color: var(--gray-400);
  font-weight: 500;
  background: var(--gray-50);
}

/* ── POPULAR DESTINATIONS TAB BLOCK ── */
.dest-sec {
  padding: var(--sec-py) 0 0;
  background: #fff;
}

.dest-sec-head {
  text-align: center;
  margin-bottom: var(--sp-2xl);
}

/* dark WizzAir-style tab block */
.dest-tab-block {
  background: #181828;
  border-radius: var(--r-xl) var(--r-xl) 0 0;
  overflow: hidden;
}

.dest-tabs-nav-wrap {
  border-bottom: 1px solid rgba(255,255,255,.08);
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.dest-tabs-nav-wrap::-webkit-scrollbar { display: none; }

.dest-tabs-nav {
  display: inline-flex;
  align-items: stretch;
  min-width: 100%;
  width: max-content;
  padding: 0 var(--sp-xs);
}

.dest-tab-btn {
  position: relative;
  font-family: 'Sora', sans-serif;
  font-size: 12.5px;
  font-weight: 700;
  padding: 16px 22px 14px;
  border: none;
  background: transparent;
  color: rgba(255,255,255,.38);
  cursor: pointer;
  transition: color var(--t-fast);
  white-space: nowrap;
  line-height: 1;
  letter-spacing: .04em;
  flex-shrink: 0;
  user-select: none;
}

.dest-tab-btn::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--amber);
  border-radius: 2px 2px 0 0;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.22s var(--ease-smooth);
}

.dest-tab-btn:hover { color: rgba(255,255,255,.72); }

.dest-tab-btn.active { color: #fff; }
.dest-tab-btn.active::after { transform: scaleX(1); }

/* tab panels */
.dest-tab-panel { display: none; }

.dest-tab-panel.active {
  display: block;
  animation: destFadeIn .25s var(--ease-smooth) both;
}

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

/* destination links grid — dark version */
.dest-links-dark {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: #181828;
  padding: 4px 0 8px;
}

.dest-link-dark {
  display: flex;
  align-items: center;
  padding: 9px 20px 9px 16px;
  font-size: 13.5px;
  color: rgba(255,255,255,.5);
  text-decoration: none;
  transition: color var(--t-fast), background var(--t-fast);
  cursor: pointer;
  line-height: 1.35;
  font-weight: 400;
}

.dest-link-dark:hover {
  color: #fff;
  background: rgba(255,255,255,.05);
}

.dest-link-dark__chevron {
  flex-shrink: 0;
  color: rgba(255,255,255,.2);
  font-size: 12px;
  margin-right: 8px;
  transition: color var(--t-fast), transform var(--t-fast);
  font-style: normal;
}

.dest-link-dark:hover .dest-link-dark__chevron {
  color: var(--amber);
  transform: translateX(3px);
}

.dest-tab-block-foot {
  background: #181828;
  height: 24px;
  border-radius: 0 0 var(--r-xl) var(--r-xl);
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .seo-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .seo-right { position: static; }

  .dest-links-dark { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .dest-links-dark { grid-template-columns: repeat(2, 1fr); }
  .dest-tab-btn { font-size: 12px; padding: 14px 16px 12px; }
}

@media (max-width: 480px) {
  .dest-links-dark { grid-template-columns: repeat(2, 1fr); }
  .dest-tab-btn { font-size: 11.5px; padding: 13px 13px 11px; }
}
