/* Public site — SSR ek bileşenleri (temel tasarımı tamamlar) */
:root { --st-gold: #c89b3c; --st-card: #fff; --st-border: rgba(0,0,0,.08); --st-muted: #64748b; }
[data-theme="dark"] { --st-card: #131a26; --st-border: rgba(255,255,255,.08); --st-muted: #94a3b8; }

/* Grid'ler — not: why-grid/why-item stilleri tasarım style.css'inden gelir (zengin 2 sütun düzeni) */
.services-grid, .routes-grid, .testi-grid { display: grid; gap: 1.4rem; }
.services-grid { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.routes-grid { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.testi-grid { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }

.service-card, .route-card, .testi-card {
  background: var(--st-card); border: 1px solid var(--st-border);
  border-radius: 18px; padding: 1.8rem; transition: transform .2s, box-shadow .2s;
}
.service-card:hover, .route-card:hover, .testi-card:hover { transform: translateY(-4px); box-shadow: 0 14px 40px rgba(0,0,0,.08); }
.service-card__icon {
  width: 52px; height: 52px; border-radius: 14px; display: flex; align-items: center; justify-content: center;
  background: rgba(200,155,60,.12); color: var(--st-gold); margin-bottom: 1rem;
}
.service-card h3 { font-size: 1.1rem; margin-bottom: .5rem; }
.service-card p, .route-card__desc { color: var(--st-muted); font-size: .92rem; line-height: 1.6; }

.route-card__path { display: flex; align-items: center; gap: .6rem; font-size: 1.05rem; margin-bottom: .8rem; color: var(--st-gold); }
.route-card__foot { display: flex; justify-content: space-between; align-items: center; margin-top: 1rem; padding-top: 1rem; border-top: 1px solid var(--st-border); }
.route-card__price { font-weight: 800; font-size: 1.2rem; } .route-card__price small { font-weight: 500; color: var(--st-muted); }
.route-card__time { color: var(--st-muted); font-size: .85rem; }

.tour-card__desc { color: var(--st-muted); font-size: .9rem; margin: .5rem 0; }
.tour-card__placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
  color: var(--st-muted); background: linear-gradient(135deg, rgba(200,155,60,.10), rgba(0,0,0,.05)); }

.testi-card__stars { color: var(--st-gold); display: flex; gap: 2px; margin-bottom: .8rem; }
.testi-card__text { font-style: italic; line-height: 1.7; margin-bottom: 1rem; }
.testi-card__author strong { display: block; } .testi-card__author span { color: var(--st-muted); font-size: .85rem; }

/* Google yorum kartı ek bileşenleri */
.testi-card__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: .8rem; }
.testi-card__head .testi-card__stars { margin-bottom: 0; }
.testi-card__source { display: inline-flex; align-items: center; }
.testi-card__foot { display: flex; align-items: flex-end; justify-content: space-between; gap: 1rem; margin-top: 1rem; }
.testi-card__link { font-size: .82rem; font-weight: 700; color: var(--st-gold); white-space: nowrap; }
.testi-card__link:hover { text-decoration: underline; }
.testi-cta { text-align: center; margin-top: 2.4rem; }
.testi-cta .btn { gap: .6rem; }
.testi-cta__rating { font-weight: 800; color: var(--st-gold); }

/* SSS */
.faq-list { display: flex; flex-direction: column; gap: .8rem; }
.faq-item { background: var(--st-card); border: 1px solid var(--st-border); border-radius: 14px; overflow: hidden; }
.faq-item summary { padding: 1.1rem 1.4rem; font-weight: 600; cursor: pointer; list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item__body { padding: 0 1.4rem 1.1rem; color: var(--st-muted); line-height: 1.6; }
.container--narrow { max-width: 820px; }

/* İletişim + teklif */
.contact-form { display: flex; flex-direction: column; gap: 1rem; }

/* Mesaj alanı: tasarım .field__control input/select'i stiller ama textarea'yı kapsamaz;
   textarea'yı diğer alanlarla aynı görünüme getir + sabit 52px yüksekliği çok satır için esnet */
.field__control--area { height: auto; align-items: stretch; padding-top: .7rem; padding-bottom: .7rem; }
.field__control textarea {
  flex: 1; width: 100%;
  border: 0; outline: 0; background: transparent; color: inherit;
  font-family: inherit; font-weight: 600; font-size: .95rem; line-height: 1.5;
  resize: vertical; min-height: 120px;
}
.field__control textarea::placeholder { color: var(--text-3); font-weight: 500; }
.quote-input { width: 100%; padding: .7rem 1rem; border: 1px solid var(--st-border); border-radius: 10px; background: var(--st-card); color: inherit; }
.alert { padding: 1rem 1.2rem; border-radius: 12px; margin-bottom: 1.2rem; font-weight: 500; }
.alert--ok { background: rgba(16,185,129,.12); color: #059669; }
.alert--err { background: rgba(244,63,94,.12); color: #e11d48; }

/* WhatsApp float */
.wa-float { position: fixed; bottom: 24px; right: 24px; width: 58px; height: 58px; border-radius: 50%;
  background: #25d366; color: #fff; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(37,211,102,.45); z-index: 900; transition: transform .2s; }
.wa-float:hover { transform: scale(1.08); } .wa-float--left { right: auto; left: 24px; }

/* Çerez banner */
.cookie-banner { position: fixed; bottom: 0; left: 0; right: 0; z-index: 950;
  background: var(--st-card); border-top: 1px solid var(--st-border); padding: 1rem 1.4rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  box-shadow: 0 -6px 24px rgba(0,0,0,.08); }
/* `display:flex` HTML hidden attribute'unu ezmesin: hidden varken banner gizli kalsın
   (consent.js banner.hidden ile aç/kapatıyor — Kabul/Reddet sonrası banner kapansın diye) */
.cookie-banner[hidden] { display: none; }
.cookie-banner p { font-size: .9rem; color: var(--st-muted); margin: 0; flex: 1; min-width: 240px; }
.cookie-banner__actions { display: flex; gap: .6rem; }

/* Harita pin */
.map-pin { background: var(--st-gold); color: #fff; width: 26px; height: 26px; border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg); display: flex; align-items: center; justify-content: center; box-shadow: 0 2px 6px rgba(0,0,0,.3); }
.map-pin span { transform: rotate(45deg); font-size: 12px; font-weight: 700; }
.map-pin--stop { background: #0b1526; }

/* Detay sayfaları */
.detail { padding-top: 7rem; }
.detail__back { display: inline-block; margin-bottom: 1.2rem; color: var(--st-gold); font-weight: 600; text-decoration: none; font-size: .9rem; }
.detail__title { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 800; margin-bottom: 1rem; line-height: 1.15; }
.detail__icon { width: 60px; height: 60px; border-radius: 16px; background: rgba(200,155,60,.12); color: var(--st-gold);
  display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; }
.detail__meta { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 1.4rem; color: var(--st-muted); font-size: .95rem; }
.detail__price { color: var(--st-gold); font-weight: 700; }
.detail__route { margin-bottom: 1.4rem; color: var(--st-muted); font-size: .95rem; }
.detail__lead { font-size: 1.15rem; line-height: 1.7; margin-bottom: 1.5rem; }
.detail__body { line-height: 1.8; margin-bottom: 2rem; }
.detail__body h2, .detail__body h3 { margin: 1.6rem 0 .8rem; font-weight: 700; }
.detail__body p { margin-bottom: 1rem; }
.detail__body img { max-width: 100%; border-radius: 12px; }

/* Blog */
.blog-grid { display: grid; gap: 1.6rem; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); margin-top: 2rem; }
.blog-card { background: var(--st-card); border: 1px solid var(--st-border); border-radius: 18px; overflow: hidden; transition: transform .2s, box-shadow .2s; }
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(0,0,0,.1); }
.blog-card__body { padding: 1.6rem; }
.blog-card__date { font-size: .8rem; color: var(--st-muted); }
.blog-card__title { font-size: 1.25rem; font-weight: 700; margin: .5rem 0 .8rem; }
.blog-card__title a { color: inherit; text-decoration: none; }
.blog-card__title a:hover { color: var(--st-gold); }
.blog-card__excerpt { color: var(--st-muted); line-height: 1.6; margin-bottom: 1rem; font-size: .95rem; }
.blog-card__more { color: var(--st-gold); font-weight: 600; text-decoration: none; font-size: .9rem; }
.route-card__link, .service-card__link, .tour-card__link { display: inline-block; margin-top: .8rem; color: var(--st-gold); font-weight: 600; text-decoration: none; font-size: .9rem; }

/* Filomuz (araç fotoğraflı kartlar) */
.fleet-grid { display: grid; gap: 1.6rem; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); margin-top: 2rem; }
.fleet-card { background: var(--st-card); border: 1px solid var(--st-border); border-radius: 18px; overflow: hidden; transition: transform .2s, box-shadow .2s; }
.fleet-card:hover { transform: translateY(-4px); box-shadow: 0 14px 34px rgba(0,0,0,.12); }
.fleet-card__media { aspect-ratio: 16/10; background: rgba(200,155,60,.06); overflow: hidden; }
.fleet-card__media img { width: 100%; height: 100%; object-fit: cover; }
.fleet-card__placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; color: var(--st-gold); opacity: .5; }
.fleet-card__body { padding: 1.3rem 1.5rem; }
.fleet-card__body h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: .6rem; }
.fleet-card__meta { display: flex; align-items: center; justify-content: space-between; color: var(--st-muted); font-size: .9rem; }
.fleet-card__meta span { display: inline-flex; align-items: center; gap: .35rem; }
.fleet-card__price { color: var(--st-gold); font-weight: 700; font-size: 1.05rem; }
.fleet-card__price small { color: var(--st-muted); font-weight: 500; }

/* Filomuz kartı — grup etiketi + ikonlu özellikler */
.fleet-card__tag { display: inline-block; font-size: .7rem; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: var(--st-gold); margin-bottom: .3rem; }
.fleet-card__features { list-style: none; margin: .8rem 0; padding: 0; display: grid; gap: .5rem; }
.fleet-card__features li { display: flex; align-items: center; gap: .5rem; font-size: .88rem; color: var(--st-muted); }
.fleet-card__features li svg { width: 16px; height: 16px; color: var(--st-gold); flex-shrink: 0; }

/* Durum kodu sayfası (404/403/500…). Header .header fixed olduğu için üstten pay bırakılır;
   min-height, kısa metinde footer'ın ekranın ortasına tırmanmasını engeller. */
.errpage { display: flex; align-items: center; min-height: 68vh; padding: 9rem 0 5rem; }
.errpage__inner { text-align: center; max-width: 620px; margin: 0 auto; }
.errpage__code {
  display: block; font-size: clamp(4.5rem, 14vw, 8rem); font-weight: 800; line-height: 1;
  color: var(--st-gold); opacity: .28; letter-spacing: -.03em;
}
.errpage__title { font-size: clamp(1.5rem, 4vw, 2.1rem); font-weight: 700; margin: .6rem 0 .9rem; }
.errpage__text { color: var(--st-muted); line-height: 1.7; margin-bottom: 2rem; }
.errpage__actions { display: flex; gap: .8rem; justify-content: center; flex-wrap: wrap; }
