/* Samsun Saathane Meydan Taksi */
:root {
  --taxi: #f5c400;
  --ink: #121212;
  --ink-soft: #3a3a3a;
  --paper: #fffdf5;
  --white: #ffffff;
  --wa: #128c7e;
  --wa-deep: #0e6b60;
  --shadow: 0 14px 32px rgba(18, 18, 18, 0.14);
  --radius: 14px;
  --font-display: "Bebas Neue", system-ui, sans-serif;
  --font-body: "DM Sans", system-ui, sans-serif;
  --logo-size: 52px;
  --lang-w: 76px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  min-height: 100dvh;
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(110% 70% at 50% -5%, #ffe566 0%, transparent 50%),
    linear-gradient(180deg, var(--taxi) 0%, #f6d33a 28%, var(--paper) 58%);
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow-x: hidden;
}

.checker {
  position: fixed;
  inset: auto 0 0 0;
  height: 22px;
  background: repeating-linear-gradient(
    90deg,
    #121212 0 16px,
    #f5c400 16px 32px
  );
  z-index: 5;
  animation: slide-check 14s linear infinite;
}

@keyframes slide-check {
  to {
    background-position: 64px 0;
  }
}

.page {
  width: min(100%, 460px);
  padding: 0.75rem 0.9rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  animation: rise 0.65s cubic-bezier(0.22, 1, 0.36, 1) both;
}

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

/* Logo left · title center · language right */
.top {
  position: relative;
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  min-height: var(--logo-size);
  margin-bottom: 0.25rem;
  padding-inline: calc(var(--logo-size) + 0.2rem) calc(var(--lang-w) + 0.2rem);
}

.logo {
  position: absolute;
  left: 0;
  top: 0.15rem;
  width: var(--logo-size);
  height: var(--logo-size);
  object-fit: contain;
  display: block;
  background: transparent;
  filter: drop-shadow(0 3px 6px rgba(18, 18, 18, 0.15));
}

.lang {
  position: absolute;
  right: 0;
  top: 0.2rem;
  display: inline-flex;
  border: 1.5px solid rgba(18, 18, 18, 0.2);
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255, 253, 245, 0.55);
  backdrop-filter: blur(4px);
}

.lang-btn {
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--ink-soft);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  padding: 0.38rem 0.55rem;
  cursor: pointer;
  line-height: 1;
  min-width: 34px;
  -webkit-tap-highlight-color: transparent;
}

.lang-btn.is-active {
  background: var(--ink);
  color: var(--taxi);
}

.brand {
  width: 100%;
  text-align: center;
  padding-top: 0.05rem;
}

.city {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 0.2rem;
}

h1 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.08rem;
  font-family: var(--font-display);
  font-weight: 400;
  color: #0a0a0a;
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.45),
    0 2px 4px rgba(18, 18, 18, 0.18);
}

.h-line {
  display: block;
  font-size: clamp(1.75rem, 7vw, 2.35rem);
  line-height: 1.05;
  letter-spacing: 0.04em;
  min-height: 1.05em;
  -webkit-text-stroke: 0.35px #0a0a0a;
  paint-order: stroke fill;
}

.hours {
  margin-top: 0.15rem;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 5.2vw, 1.55rem);
  line-height: 1;
  letter-spacing: 0.14em;
  font-weight: 400;
  color: var(--ink);
  opacity: 0.92;
}

.taxi {
  width: min(78%, 320px);
  margin: 0.05rem auto 0.35rem;
  filter: drop-shadow(0 10px 16px rgba(18, 18, 18, 0.16));
  animation: float 4s ease-in-out infinite;
  background: transparent;
}

.taxi img {
  width: 100%;
  height: auto;
  display: block;
  background: transparent;
  border: none;
  border-radius: 0;
}

.trust {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.4rem;
  width: 100%;
  margin: 0 0 0.95rem;
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--taxi);
}

.trust li {
  position: static;
  padding: 0.4rem 0.75rem;
  background: var(--ink);
  border: 1px solid #0a0a0a;
  border-radius: 999px;
  line-height: 1.2;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(18, 18, 18, 0.16);
}

.trust li::before {
  content: none;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

/* Services: no card — blends into yellow */
.services {
  list-style: none;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin: 0.15rem 0 0.85rem;
  padding: 0.1rem 0;
  background: transparent;
  border: none;
}

.services li {
  position: relative;
  padding-left: 1.15rem;
  font-size: clamp(0.95rem, 4.1vw, 1.08rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.012em;
  color: var(--ink);
  text-align: left;
  white-space: nowrap;
}

.services li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.42em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ink);
  box-shadow: 0 0 0 2px rgba(245, 196, 0, 0.65);
}

.actions {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.actions-row {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  width: 100%;
  min-height: 48px;
  padding: 0.7rem 1.1rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 1.02rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  box-shadow: var(--shadow);
  -webkit-tap-highlight-color: transparent;
}

.btn:active {
  transform: scale(0.98);
}

.btn-icon {
  display: inline-flex;
  line-height: 0;
}

.btn-call {
  background: var(--ink);
  color: var(--taxi);
}

.btn-call:hover {
  background: #000;
}

.btn-wa {
  background: var(--wa);
  color: var(--white);
}

.btn-wa:hover {
  background: var(--wa-deep);
}

.btn-reserve {
  background: var(--white);
  color: var(--ink);
  border: 2px solid var(--ink);
  box-shadow: 0 8px 20px rgba(18, 18, 18, 0.1);
}

.btn-reserve:hover {
  background: #fff8d6;
}

.phone {
  margin-top: 0.7rem;
  font-size: 0.98rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 2px solid rgba(18, 18, 18, 0.18);
  padding-bottom: 2px;
  text-align: center;
}

.phone:hover {
  border-color: var(--ink);
}

.foot {
  width: 100%;
  padding: 0.55rem 1rem calc(2.75rem + env(safe-area-inset-bottom, 0px));
  text-align: center;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--ink-soft);
  z-index: 1;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.28rem;
}

.foot-brand {
  font-weight: 600;
  color: var(--ink);
}

.foot-link {
  color: var(--ink-soft);
  text-decoration: none;
  word-break: break-all;
}

.foot-link:hover {
  color: var(--ink);
  text-decoration: underline;
}

@media (min-width: 420px) {
  :root {
    --logo-size: 58px;
  }

  .actions-row {
    flex-direction: row;
  }

  .actions-row .btn {
    flex: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page,
  .taxi,
  .checker {
    animation: none;
  }
}
