/**
 * Yolway vitrin — kurumsal tema
 */
:root {
  --yw-ink: #0b1220;
  --yw-ink-2: #141c2b;
  --yw-gold: #c4a35a;
  --yw-gold-2: #a8863f;
  --yw-paper: #f5f6f8;
  --yw-white: #ffffff;
  --yw-muted: #5c6678;
  --yw-line: rgba(11, 18, 32, 0.1);
  --yw-line-soft: rgba(255, 255, 255, 0.14);
  --yw-wa: #128c7e;
  --yw-wa-2: #0e7368;
  --yw-radius: 10px;
  --yw-font-display: "Outfit", "Segoe UI", sans-serif;
  --yw-font-body: "Source Sans 3", "Segoe UI", sans-serif;
  --yw-shadow: 0 12px 40px rgba(11, 18, 32, 0.08);
  --yw-container: 1120px;
}

html {
  scroll-behavior: smooth;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body.yw-vitrin {
  margin: 0;
  font-family: var(--yw-font-body);
  font-size: 16px;
  line-height: 1.55;
  color: #1c2433;
  background:
    radial-gradient(1200px 500px at 10% -10%, rgba(196, 163, 90, 0.08), transparent 55%),
    linear-gradient(180deg, #eef0f4 0%, var(--yw-paper) 35%, #fafbfc 100%);
  -webkit-font-smoothing: antialiased;
  padding-bottom: 76px !important;
}

.yw-vitrin .container {
  width: min(100% - 2rem, var(--yw-container));
  margin-inline: auto;
}

.yw-vitrin a:hover,
.yw-vitrin a:focus {
  text-decoration: none;
}

/* —— Header —— */
.yw-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  padding: 1.25rem 0 0;
}

.yw-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.yw-logo {
  display: block;
  height: 52px;
  width: auto;
  max-width: 150px;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

.yw-header__phone {
  display: none;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
}

.yw-header__phone:hover {
  color: var(--yw-gold);
}

@media (min-width: 768px) {
  .yw-logo {
    height: 60px;
    max-width: 170px;
  }

  .yw-header__phone {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
  }
}

/* —— Hero —— */
.yw-hero {
  position: relative;
  min-height: 0;
  display: flex;
  align-items: flex-end;
  color: var(--yw-white);
  background: var(--yw-ink) center / cover no-repeat;
  overflow: hidden;
}

.yw-hero__media {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  animation: yw-hero-ken 22s ease-out forwards;
}

@keyframes yw-hero-ken {
  from { transform: scale(1.06); }
  to { transform: scale(1.01); }
}

@media (prefers-reduced-motion: reduce) {
  .yw-hero__media {
    animation: none;
    transform: scale(1.01);
  }
}

.yw-hero__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(11, 18, 32, 0.88) 0%, rgba(11, 18, 32, 0.55) 48%, rgba(11, 18, 32, 0.35) 100%),
    linear-gradient(180deg, rgba(11, 18, 32, 0.25) 0%, rgba(11, 18, 32, 0.75) 100%);
}

.yw-hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 5rem 0 1.75rem;
  max-width: 52rem;
  animation: yw-fade-up 0.65s ease-out both;
}

@media (min-width: 768px) {
  .yw-hero__content {
    padding: 5.25rem 0 2rem;
  }
}

@keyframes yw-fade-up {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .yw-hero__content { animation: none; }
}

.yw-hero__eyebrow {
  display: inline-block;
  margin: 0 0 0.85rem;
  color: var(--yw-gold);
  font-family: var(--yw-font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.yw-hero__title {
  margin: 0 0 0.85rem;
  font-family: var(--yw-font-display);
  font-weight: 600;
  font-size: clamp(2rem, 4.8vw, 3.15rem);
  line-height: 1.12;
  letter-spacing: -0.025em;
  color: var(--yw-white);
  text-wrap: balance;
}

.yw-hero__lead {
  margin: 0 0 1.5rem;
  max-width: 34rem;
  font-size: clamp(1rem, 2vw, 1.1rem);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.78);
}

.yw-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-bottom: 1.35rem;
}

.yw-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 48px;
  padding: 0.75rem 1.25rem;
  border-radius: 8px;
  font-family: var(--yw-font-display);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.01em;
  border: 0;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}

.yw-btn:hover {
  transform: translateY(-1px);
}

.yw-btn--amber {
  background: var(--yw-gold);
  color: #0b1220 !important;
}

.yw-btn--amber:hover {
  background: #d4b56a;
  color: #0b1220 !important;
}

.yw-btn--ghost {
  background: transparent;
  color: #fff !important;
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.yw-btn--ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff !important;
}

.yw-btn--wa {
  background: var(--yw-wa);
  color: #fff !important;
}

.yw-btn--wa:hover {
  background: var(--yw-wa-2);
  color: #fff !important;
}

.yw-btn--dark {
  background: var(--yw-ink);
  color: #fff !important;
}

.yw-btn--outline-dark {
  background: transparent;
  color: var(--yw-ink) !important;
  border: 1.5px solid var(--yw-ink);
}

/* Quote strip */
.yw-quote {
  max-width: 640px;
  padding: 1rem;
  border-radius: var(--yw-radius);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--yw-line-soft);
  backdrop-filter: blur(10px);
}

.yw-quote__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.65rem;
}

@media (min-width: 700px) {
  .yw-quote__grid {
    grid-template-columns: 1fr 1fr auto;
    align-items: end;
  }
}

.yw-quote label {
  display: block;
  margin-bottom: 0.3rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.yw-quote input {
  width: 100%;
  min-height: 44px;
  padding: 0.6rem 0.8rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(11, 18, 32, 0.35);
  color: #fff;
  font-family: inherit;
  font-size: 0.95rem;
}

.yw-quote input::placeholder {
  color: rgba(255, 255, 255, 0.38);
}

.yw-quote input:focus {
  outline: none;
  border-color: rgba(196, 163, 90, 0.75);
}

.yw-quote .yw-btn {
  width: 100%;
  min-height: 44px;
}

@media (min-width: 700px) {
  .yw-quote .yw-btn {
    width: auto;
    min-width: 140px;
  }
}

/* —— Booking form (wizard) —— */
.yw-book {
  margin-top: 0.25rem;
  margin-left: auto;
  margin-right: auto;
  padding: 1rem 1.1rem 1.1rem;
  border-radius: var(--yw-radius);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--yw-line-soft);
  backdrop-filter: blur(12px);
  max-width: 28rem;
  width: 100%;
}

.yw-book__hp {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.yw-book__otp-lead {
  margin: 0 0 0.85rem;
  font-size: 0.88rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.7);
}

.yw-book__otp-input {
  letter-spacing: 0.35em;
  text-align: center;
  font-size: 1.35rem !important;
  font-weight: 600;
  font-family: var(--yw-font-display);
}

.yw-book__otp-resend {
  display: inline-block;
  margin-top: 0.75rem;
  padding: 0;
  border: 0;
  background: none;
  color: var(--yw-gold);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.yw-book__otp-resend:disabled {
  opacity: 0.45;
  cursor: default;
  text-decoration: none;
}

.yw-book__panel-title {
  margin: 0 0 0.75rem;
  font-family: var(--yw-font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}

.yw-book__panel {
  animation: yw-fade-up 0.35s ease-out both;
}

.yw-book__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
}

.yw-book__grid--1 {
  grid-template-columns: 1fr;
}

.yw-book__grid--2 {
  grid-template-columns: 1fr 1fr;
}

.yw-book__field {
  min-width: 0;
}

.yw-book__field--full {
  grid-column: 1 / -1;
}

.yw-book__field label {
  display: block;
  margin-bottom: 0.28rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.yw-book__opt {
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
  opacity: 0.75;
}

.yw-book__hint {
  margin: 0.35rem 0 0;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.45);
}

.yw-book__yolcu-list {
  display: grid;
  gap: 0.45rem;
}

.yw-book__yolcu-item input,
.yw-book__yolcu-input {
  width: 100%;
  min-height: 42px;
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(11, 18, 32, 0.4);
  color: #fff;
  font-family: inherit;
  font-size: 0.9rem;
}

.yw-book__yolcu-input::placeholder {
  color: rgba(255, 255, 255, 0.38);
}

.yw-book__yolcu-input:focus {
  outline: none;
  border-color: rgba(196, 163, 90, 0.75);
}

.yw-book__field input,
.yw-book__field select {
  width: 100%;
  min-height: 44px;
  padding: 0.55rem 0.75rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(11, 18, 32, 0.4);
  color: #fff;
  font-family: inherit;
  font-size: 0.92rem;
}

.yw-book__field select {
  appearance: none;
  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='%23c4a35a' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  padding-right: 2rem;
}

.yw-book__field input::placeholder {
  color: rgba(255, 255, 255, 0.38);
}

.yw-book__field input:focus,
.yw-book__field select:focus {
  outline: none;
  border-color: rgba(196, 163, 90, 0.75);
}

.yw-book__field option {
  color: #0b1220;
  background: #fff;
}

.yw-book__summary {
  margin: 0 0 1rem;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}

.yw-book__summary > div {
  display: grid;
  grid-template-columns: 7.5rem 1fr;
  gap: 0.5rem;
  padding: 0.55rem 0.65rem;
  border-radius: 8px;
  background: rgba(11, 18, 32, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.yw-book__summary dt {
  margin: 0;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  align-self: center;
}

.yw-book__summary dd {
  margin: 0;
  font-size: 0.92rem;
  color: #fff;
  font-weight: 600;
  font-family: var(--yw-font-display);
}

.yw-book__summary > div:has(.yw-book__sum-names) dt {
  align-self: start;
  padding-top: 0.15rem;
}

.yw-book__sum-count {
  display: block;
  margin-bottom: 0.35rem;
}

.yw-book__sum-names {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.2rem;
}

.yw-book__sum-names li {
  font-weight: 600;
  line-height: 1.35;
}

.yw-book__price {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  margin-bottom: 0.25rem;
}

.yw-book__price--lg {
  padding: 0.75rem 0.85rem;
  border-radius: 8px;
  background: rgba(196, 163, 90, 0.1);
  border: 1px solid rgba(196, 163, 90, 0.35);
}

.yw-book__price-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.yw-book__price strong {
  font-family: var(--yw-font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: #fff;
}

.yw-book__price strong.is-ready {
  color: var(--yw-gold);
}

.yw-book__nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem;
  margin-top: 1rem;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.yw-book__nav-right {
  display: flex;
  gap: 0.55rem;
  margin-left: auto;
}

.yw-book__nav .yw-btn,
.yw-book__nav-btn {
  min-width: 0;
  width: 2.5rem;
  height: 2.5rem;
  min-height: 2.5rem;
  padding: 0;
  border-radius: 50%;
  font-size: 0.9rem;
}

.yw-book__nav .yw-btn--ghost {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff !important;
}

.yw-book__nav-btn [data-icon="busy"] {
  display: none !important;
}

.yw-book__nav-btn.is-busy [data-icon="submit"] {
  display: none !important;
}

.yw-book__nav-btn.is-busy [data-icon="busy"] {
  display: inline-block !important;
}

.yw-book__msg {
  margin: 0.75rem 0 0;
  padding: 0.65rem 0.8rem;
  border-radius: 8px;
  font-size: 0.9rem;
  line-height: 1.4;
}

.yw-book__msg--ok {
  background: rgba(18, 140, 126, 0.2);
  border: 1px solid rgba(18, 140, 126, 0.45);
  color: #b8f0e4;
}

.yw-book__msg--error {
  background: rgba(180, 50, 50, 0.2);
  border: 1px solid rgba(220, 90, 90, 0.45);
  color: #ffc9c9;
}

@media (max-width: 575px) {
  .yw-book__grid,
  .yw-book__grid--2 {
    grid-template-columns: 1fr;
  }

  .yw-book__field--full {
    grid-column: auto;
  }

  .yw-book__summary > div {
    grid-template-columns: 1fr;
    gap: 0.2rem;
  }

  .yw-book__nav .yw-btn,
  .yw-book__nav-btn {
    flex: 0 0 auto;
    width: 2.35rem;
    height: 2.35rem;
    min-height: 2.35rem;
  }
}

/* —— Trust —— */
.yw-trust {
  background: var(--yw-white);
  border-bottom: 1px solid var(--yw-line);
}

.yw-trust__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  padding: 0;
}

@media (min-width: 768px) {
  .yw-trust__row {
    grid-template-columns: repeat(4, 1fr);
  }
}

.yw-trust__item {
  text-align: center;
  padding: 1.35rem 1rem;
  border-right: 1px solid var(--yw-line);
  border-bottom: 1px solid var(--yw-line);
}

@media (min-width: 768px) {
  .yw-trust__item {
    border-bottom: 0;
  }

  .yw-trust__item:last-child {
    border-right: 0;
  }
}

.yw-trust__item:nth-child(2n) {
  border-right: 0;
}

@media (min-width: 768px) {
  .yw-trust__item:nth-child(2n) {
    border-right: 1px solid var(--yw-line);
  }
}

.yw-trust__item strong {
  display: block;
  margin-bottom: 0.2rem;
  font-family: var(--yw-font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--yw-ink);
}

.yw-trust__item span {
  font-size: 0.82rem;
  color: var(--yw-muted);
  line-height: 1.35;
}

/* —— Sections —— */
.yw-section {
  padding: 4rem 0;
}

.yw-section--ink {
  background: var(--yw-ink-2);
  color: #fff;
}

.yw-section--muted {
  background: #e9ebf0;
  color: var(--yw-ink);
  border-top: 1px solid var(--yw-line);
  border-bottom: 1px solid var(--yw-line);
}

.yw-section__head {
  text-align: center;
  margin-bottom: 2.25rem;
}

.yw-section__head h2 {
  margin: 0 0 0.5rem;
  font-family: var(--yw-font-display);
  font-weight: 600;
  font-size: clamp(1.5rem, 3vw, 2rem);
  letter-spacing: -0.02em;
  color: inherit;
}

.yw-section__head p {
  margin: 0 auto;
  max-width: 34rem;
  color: var(--yw-muted);
  font-size: 1rem;
  line-height: 1.55;
}

.yw-section--ink .yw-section__head p {
  color: rgba(255, 255, 255, 0.62);
}

.yw-services {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 576px) {
  .yw-services {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 992px) {
  .yw-services {
    grid-template-columns: repeat(4, 1fr);
  }
}

.yw-service {
  padding: 1.35rem 1.2rem 1.45rem;
  border-radius: var(--yw-radius);
  background: var(--yw-white);
  border: 1px solid var(--yw-line);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.yw-service:hover {
  border-color: rgba(196, 163, 90, 0.55);
  box-shadow: var(--yw-shadow);
}

.yw-service__icon {
  width: 44px;
  height: 44px;
  margin-bottom: 0.85rem;
  object-fit: contain;
  opacity: 0.9;
}

.yw-service h3 {
  margin: 0 0 0.4rem;
  font-family: var(--yw-font-display);
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--yw-ink);
}

.yw-service p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--yw-muted);
}

/* Why */
.yw-why {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 992px) {
  .yw-why {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 3rem;
  }
}

.yw-why__visual {
  border-radius: 12px;
  overflow: hidden;
  background: linear-gradient(160deg, #1a2436, #0b1220);
  min-height: 240px;
  display: flex;
  align-items: stretch;
  justify-content: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.yw-why__visual img {
  width: 100%;
  height: 100%;
  min-height: 240px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.yw-why__list {
  list-style: none;
  margin: 1.15rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}

.yw-why__list li {
  position: relative;
  padding: 0.7rem 0.85rem 0.7rem 2.15rem;
  border-radius: 8px;
  background: #fff;
  border: 1px solid var(--yw-line);
  font-weight: 600;
  font-size: 0.92rem;
  font-family: var(--yw-font-display);
  color: var(--yw-ink);
}

.yw-section--ink .yw-why__list li {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.yw-why__list li::before {
  content: "";
  position: absolute;
  left: 0.85rem;
  top: 50%;
  width: 8px;
  height: 8px;
  margin-top: -4px;
  border-radius: 50%;
  background: var(--yw-gold);
}

.yw-why__text {
  color: var(--yw-muted);
  line-height: 1.65;
  margin: 0;
}

.yw-section--ink .yw-why__text {
  color: rgba(255, 255, 255, 0.68);
}

/* Routes */
.yw-routes {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.65rem;
}

@media (min-width: 700px) {
  .yw-routes {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1100px) {
  .yw-routes {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.yw-route {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 1rem 1.05rem;
  border-radius: 8px;
  background: var(--yw-white);
  border: 1px solid var(--yw-line);
  color: inherit;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.yw-route:hover {
  border-color: rgba(196, 163, 90, 0.65);
  box-shadow: var(--yw-shadow);
  color: inherit;
}

.yw-route strong {
  display: block;
  font-family: var(--yw-font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--yw-ink);
}

.yw-route span {
  font-size: 0.8rem;
  color: var(--yw-muted);
}

.yw-route__go {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: var(--yw-ink);
  color: var(--yw-gold);
  font-size: 0.8rem;
}

.yw-seo-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 0.55rem;
  justify-content: center;
  margin-top: 1.75rem;
}

.yw-seo-pills a,
.yw-seo-pills a:link,
.yw-seo-pills a:visited,
.yw-seo-pills a:hover,
.yw-seo-pills a:focus,
.yw-seo-pills a:active {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0.35rem 0.85rem;
  border-radius: 6px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  color: var(--yw-ink);
  font-size: 0.8rem;
  font-weight: 500;
  font-family: var(--yw-font-body);
  background: rgba(255, 255, 255, 0.72);
  text-decoration: none !important;
  box-shadow: none;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.yw-seo-pills a:hover,
.yw-seo-pills a:focus {
  background: var(--yw-ink);
  color: #fff;
  border-color: var(--yw-ink);
  text-decoration: none !important;
}

/* Phones mid strip — sade numara listesi */
.yw-phones {
  background: var(--yw-gold);
  padding: 1.35rem 0;
}

.yw-phones__row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: center;
}

.yw-phones--quiet {
  background: transparent;
  border-top: 1px solid rgba(11, 18, 32, 0.08);
  padding: 1.1rem 0 1.25rem;
}

.yw-phones__label {
  margin: 0 0 0.45rem;
  text-align: center;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(11, 18, 32, 0.45);
}

.yw-phones__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.25rem;
  justify-content: center;
}

.yw-phones__list a {
  color: var(--yw-ink);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border-bottom: 1px solid rgba(11, 18, 32, 0.2);
}

.yw-phones__list a:hover {
  border-bottom-color: var(--yw-gold-deep, #9a7b2f);
  color: var(--yw-gold-deep, #9a7b2f);
}

/* Footer — içerikten net ayrılan alt blok */
.yw-footer {
  background: #060910;
  color: rgba(255, 255, 255, 0.68);
  padding: 3.25rem 0 2rem;
  margin-top: 0;
  border-top: 1px solid rgba(196, 163, 90, 0.38);
  box-shadow: 0 -18px 40px rgba(6, 9, 16, 0.18);
  position: relative;
}

.yw-footer::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, var(--yw-gold) 20%, var(--yw-gold) 80%, transparent 100%);
  opacity: 0.85;
}

.yw-footer__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.75rem;
}

@media (min-width: 992px) {
  .yw-footer__grid {
    grid-template-columns: 1.3fr 1fr 1fr 1fr;
  }
}

.yw-footer h3 {
  margin: 0 0 0.75rem;
  font-family: var(--yw-font-display);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--yw-gold);
  font-weight: 600;
}

.yw-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.yw-footer li {
  margin-bottom: 0.35rem;
  font-size: 0.9rem;
}

.yw-footer a {
  color: rgba(255, 255, 255, 0.75);
}

.yw-footer a:hover {
  color: var(--yw-gold);
}

.yw-footer__brand p {
  margin: 0.65rem 0 1rem;
  font-size: 0.9rem;
  line-height: 1.5;
  max-width: 28ch;
}

.yw-footer__brand img {
  display: block;
  padding: 0.5rem 0.7rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
}

.yw-footer__copy {
  margin: 0;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.42);
  text-align: center;
}

/* Sticky CTA — sadece Ara + WhatsApp */
.yw-sticky {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10000;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem;
  padding: 0.65rem 0.75rem;
  padding-bottom: max(0.65rem, env(safe-area-inset-bottom));
  background: rgba(11, 18, 32, 0.96);
  border-top: 1px solid rgba(196, 163, 90, 0.28);
  backdrop-filter: blur(10px);
}

.yw-sticky .yw-btn {
  min-height: 46px;
  font-size: 0.9rem;
  border-radius: 8px;
}

@media (min-width: 768px) {
  .yw-sticky {
    max-width: 420px;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    bottom: 1rem;
    border-radius: 12px;
    padding: 0.55rem;
    border: 1px solid rgba(196, 163, 90, 0.3);
  }

  body.yw-vitrin {
    padding-bottom: 88px !important;
  }
}

/* SEO page helpers */
.yw-seo-crumb {
  padding: 5.25rem 0 0.75rem;
  font-size: 0.85rem;
  color: var(--yw-muted);
}

.yw-seo-crumb a {
  color: var(--yw-ink);
  font-weight: 600;
}

.yw-seo-hero {
  min-height: 0;
  align-items: flex-end;
}

.yw-seo-hero .yw-hero__content {
  padding-top: 4.75rem;
  padding-bottom: 1.75rem;
  max-width: 42rem;
}

.yw-seo-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .yw-seo-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.yw-seo-card {
  padding: 1.25rem;
  border-radius: var(--yw-radius);
  background: #fff;
  border: 1px solid var(--yw-line);
}

.yw-seo-card h2 {
  margin: 0 0 0.5rem;
  font-family: var(--yw-font-display);
  font-size: 1.08rem;
  color: var(--yw-ink);
}

.yw-seo-card p {
  margin: 0;
  color: var(--yw-muted);
  line-height: 1.55;
  font-size: 0.95rem;
}

.yw-faq-item {
  padding: 1rem 0;
  border-bottom: 1px solid var(--yw-line);
}

.yw-faq-item:last-child {
  border-bottom: 0;
}

.yw-faq-item h3 {
  margin: 0 0 0.35rem;
  font-size: 1rem;
  color: var(--yw-ink);
  font-family: var(--yw-font-display);
}

.yw-faq-item p {
  margin: 0;
  color: var(--yw-muted);
  line-height: 1.5;
  font-size: 0.92rem;
}

.yw-section--ink .yw-faq-item {
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

.yw-section--ink .yw-faq-item h3 {
  color: #fff;
}

.yw-section--ink .yw-faq-item p {
  color: rgba(255, 255, 255, 0.65);
}

.yw-split {
  display: grid;
  gap: 2rem;
}

@media (min-width: 992px) {
  .yw-split {
    grid-template-columns: 1fr 1fr;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
