:root {
  --tbt-yellow: #ffbf00;
  --tbt-yellow-2: #ffd54a;
  --tbt-ink: #0d0f14;
  --tbt-muted: #6f747d;
  --tbt-line: rgba(12, 15, 20, .10);
  --tbt-white: #ffffff;
  --tbt-green: #22c867;
  --tbt-radius: 28px;
}

.taxibt-tarife-section,
.taxibt-tarife-section * { box-sizing: border-box; }

.taxibt-tarife-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 0%, rgba(255,191,0,.14), transparent 28%),
    radial-gradient(circle at 90% 18%, rgba(255,191,0,.08), transparent 24%),
    linear-gradient(180deg, #fff 0%, #f8f8f6 100%);
  padding: clamp(64px, 8vw, 96px) 18px clamp(34px, 4vw, 54px);
  isolation: isolate;
}

.taxibt-tarife-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .42;
  background-image: linear-gradient(rgba(0,0,0,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(0,0,0,.025) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, black, transparent 55%);
  z-index: -1;
}

.taxibt-tarife-shell { width: min(1180px, 100%); margin: 0 auto; }

.taxibt-tarife-head { max-width: 760px; margin: 0 auto 44px; text-align: center; }

.taxibt-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 14px;
  color: #8b6800;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .16em;
}

.taxibt-eyebrow > span {
  width: 26px;
  height: 3px;
  border-radius: 9px;
  background: var(--tbt-yellow);
  box-shadow: 0 0 18px rgba(255,191,0,.65);
}

.taxibt-tarife-head h2 {
  margin: 0;
  color: var(--tbt-ink);
  font-size: clamp(34px, 5.4vw, 64px);
  line-height: .98;
  letter-spacing: -.048em;
  font-weight: 950;
  text-wrap: balance;
}

.taxibt-tarife-head h2::after {
  content: "";
  display: block;
  width: 112px;
  height: 8px;
  margin: 18px auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--tbt-yellow), var(--tbt-yellow-2), transparent);
  background-size: 220% 100%;
  animation: taxibt-shine 3.6s ease-in-out infinite;
}

.taxibt-tarife-head > p {
  max-width: 650px;
  margin: 20px auto 0;
  color: var(--tbt-muted);
  font-size: clamp(16px, 2.4vw, 19px);
  line-height: 1.65;
}

.taxibt-live-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 18px;
  padding: 9px 14px 9px 10px;
  border: 1px solid rgba(255,183,0,.24);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255,255,255,.92), rgba(255,248,224,.82));
  color: #343941;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .01em;
  box-shadow: 0 8px 28px rgba(13,15,20,.06), inset 0 1px 0 rgba(255,255,255,.9);
  backdrop-filter: blur(12px);
}

.taxibt-live-pill i {
  position: relative;
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  border-radius: 50%;
  background: linear-gradient(145deg, #2bd47d, #16ad61);
  box-shadow: 0 0 0 4px rgba(34,200,103,.10), 0 5px 14px rgba(22,173,97,.22);
}

.taxibt-live-pill i::after {
  content: "";
  position: absolute;
  left: 7px;
  top: 5px;
  width: 6px;
  height: 9px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.taxibt-price-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.taxibt-price-card {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  padding: 26px;
  border-radius: var(--tbt-radius);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.taxibt-price-card:hover { transform: translateY(-5px); }

.taxibt-card-light {
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(13,15,20,.08);
  box-shadow: 0 16px 45px rgba(17,20,27,.07);
}

.taxibt-card-light:hover { box-shadow: 0 24px 58px rgba(17,20,27,.11); border-color: rgba(255,191,0,.28); }

.taxibt-card-featured {
  color: #fff;
  border: 1px solid rgba(255,191,0,.95);
  background:
    radial-gradient(circle at 12% 0%, rgba(255,191,0,.18), transparent 34%),
    linear-gradient(145deg, #12151b 0%, #080a0d 100%);
  box-shadow: 0 22px 60px rgba(0,0,0,.24), 0 0 0 1px rgba(255,191,0,.15) inset;
}

.taxibt-card-featured::after {
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;
  right: -140px;
  bottom: -140px;
  border: 1px solid rgba(255,191,0,.17);
  border-radius: 50%;
  box-shadow: 0 0 0 38px rgba(255,191,0,.035), 0 0 0 78px rgba(255,191,0,.025);
  pointer-events: none;
}

.taxibt-card-featured:hover { box-shadow: 0 30px 72px rgba(0,0,0,.34), 0 0 0 1px rgba(255,191,0,.2) inset; }

.taxibt-featured-top { display: flex; align-items: center; justify-content: space-between; gap: 16px; }

.taxibt-card-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(255,191,0,.20), rgba(255,191,0,.06));
  color: #b98400;
}

.taxibt-featured-top .taxibt-card-icon { margin-bottom: 22px; color: var(--tbt-yellow); }
.taxibt-card-icon svg { width: 26px; height: 26px; fill: currentColor; }

.taxibt-badge {
  align-self: flex-start;
  padding: 9px 12px;
  border-radius: 12px;
  background: var(--tbt-yellow);
  color: #111319;
  font-size: 11px;
  line-height: 1;
  font-weight: 950;
  letter-spacing: .09em;
  box-shadow: 0 8px 30px rgba(255,191,0,.25);
}

.taxibt-kicker {
  margin: 0 0 8px;
  color: #9b7a18;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .13em;
}
.taxibt-card-featured .taxibt-kicker { color: #e8bd3d; }

.taxibt-price-card h3 {
  margin: 0;
  color: inherit;
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -.025em;
  font-weight: 900;
}
.taxibt-card-light h3 { color: var(--tbt-ink); }

.taxibt-price {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  margin-top: 14px;
  color: var(--tbt-yellow);
}
.taxibt-card-light .taxibt-price { color: #e6a900; }
.taxibt-price strong { font-size: 36px; line-height: 1; letter-spacing: -.045em; font-weight: 950; }
.taxibt-price span { padding-bottom: 3px; font-size: 14px; font-weight: 900; }

.taxibt-card-sub { margin: 10px 0 0; color: #858a93; font-size: 13px; line-height: 1.5; }
.taxibt-card-featured .taxibt-card-sub { color: rgba(255,255,255,.56); }

.taxibt-divider { height: 1px; margin: 22px 0; background: var(--tbt-line); }
.taxibt-card-featured .taxibt-divider { background: rgba(255,255,255,.12); }

.taxibt-list,
.taxibt-check-list { list-style: none; margin: 0; padding: 0; }

.taxibt-list li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 9px 0;
  color: #6e737c;
  font-size: 13px;
  border-bottom: 1px dashed rgba(12,15,20,.07);
}
.taxibt-list li:last-child { border-bottom: 0; }
.taxibt-list li b { color: #20242b; font-weight: 900; white-space: nowrap; }

.taxibt-card-featured .taxibt-list li { color: rgba(255,255,255,.68); border-bottom-color: rgba(255,255,255,.08); }
.taxibt-card-featured .taxibt-list li b { color: #fff; }

.taxibt-airport-list li { padding: 0; }
.taxibt-airport-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  padding: 10px 0;
  color: inherit;
  text-decoration: none !important;
}
.taxibt-airport-list a:hover b { color: var(--tbt-yellow); }
.taxibt-airport-list em { margin-left: 3px; color: var(--tbt-yellow); font-style: normal; transition: transform .2s ease; display: inline-block; }
.taxibt-airport-list a:hover em { transform: translateX(3px); }

.taxibt-check-list { display: grid; gap: 13px; }
.taxibt-check-list li { display: flex; align-items: flex-start; gap: 10px; color: #6f747d; font-size: 13px; line-height: 1.5; }
.taxibt-check-list i { flex: 0 0 22px; height: 22px; display: grid; place-items: center; border-radius: 50%; background: rgba(255,191,0,.15); color: #b78300; font-style: normal; font-weight: 950; }

.taxibt-price-cta {
  margin-top: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px;
  border-radius: 24px;
  background: #0d0f14;
  box-shadow: 0 20px 54px rgba(0,0,0,.15);
}

.taxibt-cta-copy { display: grid; gap: 4px; }
.taxibt-cta-copy span { color: rgba(255,255,255,.58); font-size: 12px; font-weight: 800; letter-spacing: .04em; }
.taxibt-cta-copy strong { color: #fff; font-size: 17px; line-height: 1.35; }
.taxibt-cta-actions { display: flex; gap: 10px; flex-wrap: wrap; }

.taxibt-btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 17px;
  border-radius: 15px;
  text-decoration: none !important;
  font-size: 13px;
  font-weight: 950;
  transition: transform .2s ease, filter .2s ease, box-shadow .2s ease;
}
.taxibt-btn:hover { transform: translateY(-2px); filter: brightness(1.03); }
.taxibt-btn svg { width: 18px; height: 18px; fill: currentColor; }
.taxibt-btn-phone { background: var(--tbt-yellow); color: #111319 !important; box-shadow: 0 10px 28px rgba(255,191,0,.24); }
.taxibt-btn-whatsapp { background: var(--tbt-green); color: #fff !important; box-shadow: 0 10px 28px rgba(34,200,103,.20); }

.taxibt-disclaimer { max-width: 900px; margin: 15px auto 0; text-align: center; color: #8b9098; font-size: 11px; line-height: 1.55; }

.taxibt-reveal { opacity: 0; transform: translateY(18px); transition: opacity .65s ease, transform .65s cubic-bezier(.2,.75,.25,1); transition-delay: var(--taxibt-delay, 0ms); }
.taxibt-reveal.taxibt-in { opacity: 1; transform: translateY(0); }

@keyframes taxibt-shine {
  0%, 100% { background-position: 0% 50%; transform: scaleX(.9); opacity: .72; }
  50% { background-position: 100% 50%; transform: scaleX(1.08); opacity: 1; }
}

@media (max-width: 900px) {
  .taxibt-price-grid { grid-template-columns: 1fr; max-width: 620px; margin: 0 auto; }
  .taxibt-price-card { padding: 24px; }
  .taxibt-card-featured { order: -1; }
  .taxibt-price-cta { max-width: 620px; margin-left: auto; margin-right: auto; }
  .taxibt-disclaimer { max-width: 620px; }
}

@media (max-width: 620px) {
  .taxibt-tarife-section { padding: 54px 14px 22px; }
  .taxibt-tarife-head { margin-bottom: 30px; text-align: left; }
  .taxibt-eyebrow { justify-content: flex-start; }
  .taxibt-tarife-head h2 { font-size: clamp(34px, 11.5vw, 48px); }
  .taxibt-tarife-head h2::after { margin-left: 0; width: 92px; }
  .taxibt-tarife-head > p { margin-left: 0; font-size: 15px; }
  .taxibt-live-pill { font-size: 11px; }
  .taxibt-price-card { border-radius: 24px; }
  .taxibt-price strong { font-size: 34px; }
  .taxibt-price-cta { align-items: stretch; flex-direction: column; border-radius: 22px; }
  .taxibt-cta-actions { display: grid; grid-template-columns: 1fr; }
  .taxibt-btn { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  .taxibt-reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .taxibt-tarife-head h2::after { animation: none; }
  .taxibt-price-card,
  .taxibt-btn,
  .taxibt-airport-list em { transition: none; }
}

/* V2 refinements */
.taxibt-tarife-section { width: 100%; clear: both; }
.taxibt-tarife-section .taxibt-airport-from { display: block; }
.taxibt-tarife-section .taxibt-airport-from strong {
  display: block;
  font-size: 32px;
  line-height: 1.05;
  white-space: normal;
}
.taxibt-tarife-section a:focus-visible,
.taxibt-tarife-section button:focus-visible {
  outline: 3px solid rgba(255,191,0,.65);
  outline-offset: 3px;
}


/* V2.1 – spacing bridge către secțiunea următoare */
.taxibt-tarife-next-section {
  margin-top: 0 !important;
  padding-top: clamp(44px, 5vw, 68px) !important;
}

@media (max-width: 620px) {
  .taxibt-tarife-next-section {
    margin-top: 0 !important;
    padding-top: 30px !important;
  }
}
