/* Express Nakliyat — alt bölümler, bento, koyu rota bandı, footer */

.marquee-wrap {
  border-block: 1px solid var(--border);
  background: linear-gradient(90deg, var(--accent-dark), #163d28 40%, var(--accent-dark));
  color: rgba(255, 255, 255, 0.88);
  overflow: hidden;
  padding: 0.65rem 0;
}

.marquee {
  display: flex;
  gap: 2.5rem;
  width: max-content;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  animation: marquee-slide 38s linear infinite;
}

.marquee span {
  opacity: 0.9;
}

.marquee span::after {
  content: " · ";
  margin-left: 2.5rem;
  opacity: 0.45;
}

@keyframes marquee-slide {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .marquee { animation: none; justify-content: center; flex-wrap: wrap; width: auto; max-width: var(--max); margin: 0 auto; padding: 0 var(--pad); gap: 0.75rem 1.25rem; }
  .marquee span::after { content: ""; margin: 0; }
}

.features {
  position: relative;
  padding: clamp(3.25rem, 9vw, 5.5rem) 0;
  background:
    radial-gradient(ellipse 70% 50% at 10% 0%, rgba(42, 143, 82, 0.1), transparent 55%),
    linear-gradient(180deg, var(--surface) 0%, var(--bg) 100%);
}

.features::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.features__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
}

.eyebrow {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 0.5rem;
}

.eyebrow--on-dark {
  color: var(--gold-soft);
}

.features__head {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 2.25rem;
}

.features__head h2 {
  font-size: clamp(1.5rem, 3.2vw, 2.1rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin: 0 0 0.65rem;
}

.features__sub {
  color: var(--muted);
  font-size: 1.05rem;
  margin: 0;
  line-height: 1.6;
}

.bento {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 48rem) {
  .bento {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto auto;
  }
  .feature-card--wide {
    grid-column: span 2;
  }
  .feature-card--accent {
    grid-column: span 2;
  }
}

@media (min-width: 64rem) {
  .bento {
    grid-template-columns: 1.4fr 1fr 1fr;
    grid-template-rows: auto auto;
  }
  .feature-card--wide {
    grid-column: 1;
    grid-row: 1 / span 2;
  }
  .feature-card--accent {
    grid-column: 2 / -1;
    grid-row: 2;
  }
}

.feature-card {
  position: relative;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.35rem 1.45rem;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.feature-card--wide {
  min-height: 14rem;
  background:
    linear-gradient(135deg, rgba(42, 143, 82, 0.07) 0%, transparent 45%),
    linear-gradient(180deg, #fff 0%, #f8faf8 100%);
  border-color: color-mix(in srgb, var(--accent) 18%, var(--border));
}

.feature-card__shine {
  position: absolute;
  top: -50%;
  right: -30%;
  width: 55%;
  height: 120%;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.5) 50%, transparent 70%);
  transform: rotate(12deg);
  pointer-events: none;
  z-index: 0;
}

.feature-card > h3,
.feature-card > p,
.feature-card > ul,
.feature-card > a {
  position: relative;
  z-index: 1;
}

.feature-card--accent {
  background: linear-gradient(125deg, #7f1d1d 0%, #be123c 45%, #9f1239 100%);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.feature-card--accent h3 {
  color: #fff;
}

.feature-card--accent .feature-card__link {
  color: #fff;
  margin-top: 1rem;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.feature-card--accent .feature-card__link:hover {
  text-decoration: none;
  background: rgba(255, 255, 255, 0.28);
}

.feature-card h3 {
  font-size: 1.05rem;
  font-weight: 800;
  margin: 0 0 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  letter-spacing: -0.02em;
}

.feature-card p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

.feature-card--wide p {
  color: #2a3d34;
}

article.feature-card--accent p,
.feature-card.feature-card--accent p {
  color: #fff;
}

.feature-card__icon {
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, rgba(42, 143, 82, 0.15), rgba(30, 107, 61, 0.08));
  color: var(--accent);
  flex-shrink: 0;
}

.feature-card__icon svg {
  width: 1.15rem;
  height: 1.15rem;
}

.feature-card__bullets {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.feature-card__bullets li {
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: rgba(30, 107, 61, 0.08);
  color: var(--accent-dark);
}

.feature-card__link {
  display: inline-flex;
  margin-top: 1.1rem;
  font-weight: 800;
  font-size: 0.92rem;
  color: var(--gold-soft);
  text-decoration: none;
}

.feature-card__link:hover {
  text-decoration: underline;
}

.routes {
  position: relative;
  padding: clamp(3.5rem, 9vw, 5.5rem) 0 clamp(4rem, 11vw, 6.5rem);
  color: #e6ede8;
  background: var(--accent-dark);
}

.routes__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 100% 0%, rgba(201, 162, 39, 0.12), transparent 50%),
    radial-gradient(ellipse 50% 40% at 0% 100%, rgba(42, 143, 82, 0.2), transparent 55%),
    linear-gradient(180deg, #0c1a12 0%, var(--accent-dark) 40%, #0f2419 100%);
  pointer-events: none;
}

.routes__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.12;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 60 60'%3E%3Cpath fill='none' stroke='%23ffffff' stroke-width='0.4' d='M0 30h60M30 0v60'/%3E%3C/svg%3E");
  background-size: 60px 60px;
}

.routes__inner {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
}

.routes__head {
  display: grid;
  gap: 1rem;
  margin-bottom: 2rem;
}

@media (min-width: 48rem) {
  .routes__head {
    grid-template-columns: 1fr 1fr;
    align-items: end;
  }
}

.routes__head h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0;
  color: #fff;
}

.routes__lead {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.6;
  color: rgba(230, 237, 232, 0.78);
  max-width: 28rem;
}

.route-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(17.5rem, 1fr));
  gap: 0.9rem;
}

.route-card {
  display: flex;
  align-items: stretch;
  gap: 0.85rem;
  padding: 1rem 1.1rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
  text-decoration: none;
  color: inherit;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
  backdrop-filter: blur(8px);
}

.route-card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(232, 212, 138, 0.35);
  transform: translateY(-2px);
}

.route-card:focus-visible {
  outline: 2px solid var(--gold-soft);
  outline-offset: 2px;
}

.route-card__pin {
  width: 3px;
  align-self: stretch;
  border-radius: 99px;
  background: linear-gradient(180deg, var(--gold-soft), var(--accent-bright));
  flex-shrink: 0;
}

.route-card__body {
  flex: 1;
  min-width: 0;
}

.route-card__cities {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.5rem;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: -0.02em;
  color: #fff;
}

.route-card__swap {
  font-weight: 700;
  color: var(--gold-soft);
  font-size: 0.95rem;
}

.route-card__meta {
  font-size: 0.78rem;
  color: rgba(230, 237, 232, 0.65);
  margin-top: 0.35rem;
  font-weight: 600;
}

.route-card__go {
  align-self: center;
  font-size: 1.15rem;
  color: var(--gold-soft);
  opacity: 0.9;
}

.cta-band {
  position: relative;
  width: min(100% - 2 * var(--pad), var(--max));
  margin-inline: auto;
  margin-bottom: clamp(2rem, 6vw, 3rem);
  margin-top: 0.5rem;
  padding: clamp(2.85rem, 6.5vw, 3.75rem) clamp(1.35rem, 4vw, 2.25rem);
  background: linear-gradient(145deg, #450a0a 0%, #7f1d1d 35%, #be123c 70%, #9f1239 100%);
  border-radius: var(--radius-lg);
  color: #fff;
  text-align: center;
  box-shadow: 0 24px 48px rgba(127, 29, 29, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.12);
  overflow: hidden;
}

.cta-band__glow {
  position: absolute;
  width: 24rem;
  height: 24rem;
  top: -55%;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(255, 255, 255, 0.14) 0%, transparent 62%);
  pointer-events: none;
}

.cta-band h2 {
  position: relative;
  font-size: clamp(1.4rem, 3.2vw, 1.95rem);
  font-weight: 800;
  margin: 0 0 0.85rem;
  padding-top: 0.15rem;
  letter-spacing: -0.03em;
  color: #fff;
  line-height: 1.2;
}

.cta-band p {
  position: relative;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.02rem;
  max-width: 32rem;
  margin: 0 auto 1.65rem;
  line-height: 1.6;
}

.cta-band__tel {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 800;
  font-size: clamp(0.95rem, 2.4vw, 1.15rem);
  letter-spacing: 0.02em;
  color: #7f1d1d;
  text-decoration: none;
  padding: 0.9rem 1.5rem;
  background: linear-gradient(180deg, #fff 0%, #ffe4e6 100%);
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.65);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.2);
}

.cta-band__tel:hover {
  filter: brightness(1.03);
}

.cta-band__layout {
  position: relative;
  display: grid;
  gap: clamp(1.75rem, 4vw, 2.5rem);
  align-items: start;
  width: 100%;
  max-width: 56rem;
  min-width: 0;
  margin-inline: auto;
  text-align: left;
}

@media (min-width: 56rem) {
  .cta-band__layout {
    grid-template-columns: 1fr min(22.5rem, 46%);
    gap: 2rem 2.25rem;
    align-items: center;
  }
}

.cta-band__intro {
  text-align: center;
}

@media (min-width: 56rem) {
  .cta-band__intro {
    text-align: left;
  }

  .cta-band__intro p {
    margin-left: 0;
    margin-right: 0;
  }
}

.quote-form {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
  padding: clamp(1.25rem, 3vw, 1.65rem);
  background: linear-gradient(165deg, #0f2744 0%, #142f52 48%, #0c223c 100%);
  border-radius: 1.15rem;
  box-shadow: 0 16px 40px rgba(8, 20, 38, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

@media (max-width: 55.99rem) {
  .cta-band {
    width: calc(100% - 2 * var(--pad));
    margin-left: auto;
    margin-right: auto;
    padding-left: clamp(1rem, 4vw, 1.35rem);
    padding-right: clamp(1rem, 4vw, 1.35rem);
    box-sizing: border-box;
  }

  .cta-band__layout,
  .cta-band__intro,
  .quote-form {
    width: 100%;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (min-width: 56rem) {
  .quote-form {
    border-radius: 1.15rem 1.15rem 1.15rem 0.35rem;
  }
}

.quote-form__field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.quote-form__field label {
  font-size: 0.92rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.01em;
}

.quote-form__req {
  color: #fbbf24;
}

.quote-form__field input,
.quote-form__field select,
.quote-form__field textarea {
  width: 100%;
  padding: 0.72rem 0.9rem;
  font: inherit;
  font-size: 0.95rem;
  color: #0f1a12;
  background: #fff;
  border: none;
  border-radius: 0.55rem;
  box-shadow: 0 1px 2px rgba(15, 26, 18, 0.08);
}

.quote-form__field input::placeholder,
.quote-form__field textarea::placeholder {
  color: #6b7c72;
}

.quote-form__field select {
  cursor: pointer;
  appearance: none;
  color-scheme: light;
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%236b7c72' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.9rem center;
  padding-right: 2.25rem;
  color: #6b7c72;
  font-weight: 400;
}

.quote-form__field select option {
  color: #010a06;
  background-color: #fff;
  font-weight: 600;
}

.quote-form__field select option:disabled {
  color: #6b7c72;
  font-weight: 400;
}

.quote-form__field select:invalid {
  color: #6b7c72;
  font-weight: 400;
}

.quote-form__field select:valid {
  color: #0f1a12;
  font-weight: 400;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%230f1a12' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
}

.quote-form__field input:focus,
.quote-form__field select:focus,
.quote-form__field textarea:focus {
  outline: 2px solid var(--gold-soft);
  outline-offset: 1px;
}

.quote-form__field textarea {
  resize: vertical;
  min-height: 5.5rem;
}

.quote-form__field input[type="date"] {
  color-scheme: light;
}

.quote-form__submit {
  margin-top: 0.35rem;
  width: 100%;
  padding: 0.88rem 1.25rem;
  font: inherit;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #0f2744;
  background: linear-gradient(180deg, #fff 0%, #f1f5f9 100%);
  border: none;
  border-radius: 0.55rem;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.22);
  transition: filter 0.2s, transform 0.2s;
}

.quote-form__submit:hover:not(:disabled) {
  filter: brightness(1.04);
  transform: translateY(-1px);
}

.quote-form__submit:disabled {
  opacity: 0.72;
  cursor: wait;
}

.quote-form__captcha {
  min-height: 0;
  max-width: 100%;
  overflow: hidden;
  transition: min-height 0.2s ease;
}

.quote-form__captcha.is-ready {
  min-height: 4.85rem;
}

.quote-form__captcha > div {
  transform-origin: left top;
  max-width: 100%;
}

.quote-form__captcha iframe {
  max-width: 100%;
}

.toast-stack {
  position: fixed;
  top: 1rem;
  left: 50%;
  right: auto;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
  width: min(24rem, calc(100vw - 2rem));
  transform: translateX(-50%);
  pointer-events: none;
}

.toast {
  width: 100%;
  padding: 0.9rem 1.1rem;
  border-radius: 0.65rem;
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.45;
  color: #fff;
  background: #0f2744;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 12px 32px rgba(8, 20, 38, 0.35);
  opacity: 0;
  transform: translateY(-0.5rem) scale(0.98);
  transition: opacity 0.28s ease, transform 0.28s ease;
  pointer-events: auto;
  text-align: center;
  word-break: break-word;
}

.toast--long {
  font-size: 0.82rem;
  line-height: 1.5;
  text-align: left;
}

.toast.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.toast--success {
  background: linear-gradient(135deg, #14532d 0%, #166534 100%);
  border-color: rgba(187, 247, 208, 0.35);
}

.toast--error {
  background: linear-gradient(135deg, #7f1d1d 0%, #991b1b 100%);
  border-color: rgba(254, 202, 202, 0.35);
}

.toast--info {
  background: linear-gradient(135deg, #0f2744 0%, #1e3a5f 100%);
}

@media (max-width: 40rem) {
  .toast-stack {
    top: auto;
    bottom: calc(4.5rem + env(safe-area-inset-bottom, 0px));
    left: 50%;
    right: auto;
    width: calc(100vw - 2rem);
    transform: translateX(-50%);
  }
}

.site-footer {
  position: relative;
  margin-top: 0;
  padding: 0;
  color: rgba(236, 245, 238, 0.9);
  background: linear-gradient(168deg, #152a1e 0%, #0e1812 38%, #060908 100%);
  border-top: none;
  overflow: hidden;
}

.site-footer::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 10rem;
  background: radial-gradient(ellipse 75% 90% at 50% 0%, rgba(42, 143, 82, 0.14), transparent 72%);
  pointer-events: none;
}

.site-footer__glow {
  position: relative;
  z-index: 1;
  height: 5px;
  background: linear-gradient(90deg, transparent 0%, rgba(201, 162, 39, 0.85) 22%, #2a8f52 50%, rgba(201, 162, 39, 0.75) 78%, transparent 100%);
  opacity: 0.95;
}

.site-footer__inner {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
}

.site-footer__main {
  display: grid;
  gap: 2.25rem;
  padding: 2.75rem 0 2.25rem;
}

@media (min-width: 52rem) {
  .site-footer__main {
    grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr) minmax(0, 1.05fr);
    gap: 2.5rem 3rem;
    align-items: start;
  }
}

.site-footer__brand {
  text-align: center;
}

.site-footer__logo {
  display: inline-block;
  text-decoration: none;
  margin-bottom: 0.85rem;
  line-height: 0;
}

.site-footer__logo:hover .site-footer__logo-img {
  opacity: 0.9;
}

.site-footer__logo-img {
  height: 52px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  display: block;
}

.site-footer__lead {
  margin: 0 auto;
  max-width: 26rem;
  font-size: 0.98rem;
  line-height: 1.65;
  color: rgba(220, 232, 224, 0.78);
}

.site-footer__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.1rem 0 0;
  padding: 0;
  list-style: none;
  justify-content: center;
}

.site-footer__badges li {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.4rem 0.65rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(253, 230, 138, 0.95);
}

.site-footer__cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem 1.25rem;
}

@media (min-width: 52rem) {
  .site-footer__cols {
    grid-column: 2;
    grid-row: 1;
  }
}

.site-footer__h {
  margin: 0 0 1rem;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #fde68a;
}

.site-footer__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer__list li {
  margin-bottom: 0.55rem;
}

.site-footer__list a {
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.94rem;
  transition: color 0.2s, transform 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.site-footer__list a:hover {
  color: #86efac;
}

.site-footer__contact {
  padding: 1.35rem 1.25rem;
  border-radius: 1rem;
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

@media (min-width: 52rem) {
  .site-footer__contact {
    grid-column: 3;
    grid-row: 1;
    padding: 1.5rem 1.35rem;
  }
}

.site-footer__contact .site-footer__h {
  margin-bottom: 0.5rem;
}

.site-footer__contact-hint {
  margin: 0 0 1rem;
  font-size: 0.86rem;
  line-height: 1.5;
  color: rgba(200, 215, 205, 0.72);
}

.site-footer__tel {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.75rem 1rem;
  margin-bottom: 0.65rem;
  border-radius: 0.75rem;
  background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
  color: #fff !important;
  text-decoration: none;
  font-weight: 800;
  font-size: 1.08rem;
  letter-spacing: 0.02em;
  box-shadow: 0 6px 20px rgba(185, 28, 28, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.site-footer__tel:hover {
  filter: brightness(1.06);
}

.site-footer__tel-icon {
  display: grid;
  place-items: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  flex-shrink: 0;
}

.site-footer__wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.65rem 1rem;
  border-radius: 0.75rem;
  font-weight: 700;
  font-size: 0.9rem;
  color: #ecfdf5;
  text-decoration: none;
  background: rgba(18, 140, 126, 0.35);
  border: 1px solid rgba(52, 211, 153, 0.35);
}

.site-footer__wa:hover {
  background: rgba(18, 140, 126, 0.5);
  color: #fff;
}

.site-footer__bar {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: flex-start;
  padding: 1.35rem 0 2.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

@media (min-width: 40rem) {
  .site-footer__bar {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
  }
}

.site-footer__copy {
  margin: 0;
  font-size: 0.86rem;
  color: rgba(180, 198, 186, 0.75);
}

.site-footer__meta {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(253, 230, 138, 0.55);
}

@media (prefers-reduced-motion: reduce) {
  .site-footer__list a {
    transition: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .feature-card:hover {
    transform: none;
  }
  .route-card:hover {
    transform: none;
  }
  .nav-drawer__backdrop,
  .nav-drawer__panel {
    transition: none !important;
  }
}

/* ——— Mobil off-canvas menü ——— */
.nav-drawer {
  display: none;
}

@media (max-width: 63.99rem) {
  .nav-drawer {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 250;
    pointer-events: none;
    visibility: hidden;
  }

  .nav-drawer.is-open {
    pointer-events: auto;
    visibility: visible;
  }

  .nav-drawer__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(4, 8, 14, 0.58);
    opacity: 0;
    transition: opacity 0.28s ease;
  }

  .nav-drawer.is-open .nav-drawer__backdrop {
    opacity: 1;
  }

  .nav-drawer__panel {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: min(20.5rem, 88vw);
    max-width: 100%;
    background: #0a0e13;
    box-shadow: 12px 0 40px rgba(0, 0, 0, 0.45);
    display: flex;
    flex-direction: column;
    transform: translateX(-105%);
    transition: transform 0.32s cubic-bezier(0.32, 0.72, 0, 1);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    color: #fff;
  }

  .nav-drawer.is-open .nav-drawer__panel {
    transform: translateX(0);
  }

  .nav-drawer__close {
    position: absolute;
    top: 0.65rem;
    right: 0.65rem;
    z-index: 2;
    width: 2.5rem;
    height: 2.5rem;
    padding: 0;
    border: none;
    border-radius: 0.4rem;
    background: #e8eaed;
    color: #0a0e13;
    font-size: 1.65rem;
    line-height: 1;
    font-weight: 400;
    cursor: pointer;
    display: grid;
    place-items: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  }

  .nav-drawer__close:hover {
    background: #fff;
  }

  .nav-drawer__head {
    position: relative;
    padding: 1.35rem 3.25rem 1.25rem 1.25rem;
    background: linear-gradient(105deg, #f97316 0%, #ea580c 38%, #9a3412 100%);
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  }

  .nav-drawer__kicker {
    margin: 0 0 0.2rem;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.92);
  }

  .nav-drawer__brand {
    margin: 0;
    font-size: 1.15rem;
    font-weight: 900;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #fff;
    line-height: 1.15;
  }

  .nav-drawer__nav {
    flex: 1;
    padding: 0.35rem 0 1rem;
    display: flex;
    flex-direction: column;
  }

  .nav-drawer__link {
    display: block;
    padding: 0.95rem 1.25rem;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #fff;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .nav-drawer__link:hover,
  .nav-drawer__link:focus-visible {
    background: rgba(255, 255, 255, 0.06);
    outline: none;
  }

  .nav-drawer__block {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding-bottom: 0.35rem;
  }

  .nav-drawer__section {
    display: block;
    padding: 0.95rem 1.25rem 0.45rem;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #fff;
  }

  .nav-drawer__sublink {
    display: flex;
    align-items: baseline;
    gap: 0.35rem;
    padding: 0.55rem 1.25rem 0.55rem 1.65rem;
    font-size: 0.92rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.92);
    text-decoration: none;
    border-left: 3px solid transparent;
  }

  .nav-drawer__sublink:hover,
  .nav-drawer__sublink:focus-visible {
    background: rgba(249, 115, 22, 0.08);
    border-left-color: #fb923c;
    outline: none;
  }

  .nav-drawer__chev {
    color: #fb923c;
    font-weight: 700;
    font-size: 1rem;
    line-height: 1;
    flex-shrink: 0;
  }

  .nav-drawer__sublink--accent {
    font-weight: 800;
    color: #fde68a;
  }

  .nav-drawer__foot {
    margin-top: auto;
    padding: 1.15rem 1.25rem 1.35rem;
    border-top: 2px solid #ea580c;
    background: linear-gradient(180deg, rgba(234, 88, 12, 0.12) 0%, transparent 100%);
  }

  .nav-drawer__foot-label {
    margin: 0 0 0.35rem;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
  }

  .nav-drawer__tel {
    font-size: 1.35rem;
    font-weight: 800;
    color: #fff;
    text-decoration: none;
    letter-spacing: 0.03em;
  }

  .nav-drawer__tel:hover {
    text-decoration: underline;
  }
}

@media (min-width: 64rem) {
  .nav-drawer {
    display: none !important;
  }
}
