/* ===========================================================
   EXTRAS.CSS — Sunum öncesi profesyonel iyileştirmeler
   Hero rating panel · Stats band · Nearby · Trust badges
   Policies · Reviews · Socials · Footer · Back-to-top · KVKK
   =========================================================== */

/* ───────── 1) HERO panel — yıldız puanı ───────── */
.hero-panel-rating {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-bottom: 1.25rem;
  margin-bottom: 1.25rem;
  border-bottom: 1px solid rgba(201, 169, 98, 0.35);
}

.hero-rating-score {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.hero-rating-score strong {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1;
}

.hero-rating-stars {
  display: inline-flex;
  gap: 2px;
}

.hero-rating-stars svg {
  width: 0.95rem;
  height: 0.95rem;
  fill: var(--gold);
}

.hero-rating-text {
  font-size: 0.8125rem;
  letter-spacing: 0.04em;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.95);
}

.hero-panel-label {
  color: var(--gold-light);
}

.hero-panel-list li {
  color: rgba(255, 255, 255, 0.96);
}

.hero-panel-list li span {
  flex: 1;
  min-width: 0;
}

.hero-panel-divider { display: none; }

.hero-panel-list li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.hero-panel-list svg {
  width: 1.05rem;
  height: 1.05rem;
  color: var(--gold);
  flex-shrink: 0;
}

/* ───────── 2) STATS BAND (animated counter) ───────── */
.stats-band {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 100%);
  padding: 3.25rem 0;
  position: relative;
  overflow: hidden;
}

.stats-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(201, 169, 98, 0.12), transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(201, 169, 98, 0.08), transparent 50%);
}

.stats-band-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 1rem 0;
  position: relative;
}

.stat-item {
  text-align: center;
  padding: 0 1rem;
}

.stat-item .stat-num,
.stat-item .stat-suffix {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 4vw, 3rem);
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
  display: inline-block;
}

.stat-item p {
  margin-top: 0.5rem;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
}

.stat-divider {
  width: 1px;
  height: 3rem;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(201, 169, 98, 0.4),
    transparent
  );
}

/* ───────── 3) NEARBY (Yakın Yerler) ───────── */
.nearby-wrapper {
  margin-top: 4rem;
}

.nearby-card {
  background: var(--white);
  border: 1px solid rgba(0, 23, 71, 0.08);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem;
  box-shadow: var(--shadow);
  position: relative;
}

.nearby-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 2rem;
  right: 2rem;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.nearby-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(0, 23, 71, 0.08);
}

.nearby-title {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 500;
  color: var(--navy);
  line-height: 1.2;
}

.nearby-link {
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  color: var(--gold);
  font-weight: 500;
  transition: color 0.2s;
}

.nearby-link:hover {
  color: var(--navy);
}

.nearby-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.25rem 2.5rem;
}

.nearby-list li {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px dashed rgba(0, 23, 71, 0.08);
}

.nearby-list li:nth-last-child(-n+2) {
  border-bottom: none;
}

.nearby-icon {
  width: 2.4rem;
  height: 2.4rem;
  display: grid;
  place-items: center;
  background: rgba(201, 169, 98, 0.1);
  color: var(--gold);
  border-radius: 50%;
}

.nearby-icon svg {
  width: 1.15rem;
  height: 1.15rem;
}

.nearby-info {
  display: flex;
  flex-direction: column;
}

.nearby-info strong {
  font-family: var(--font-body);
  font-weight: 500;
  color: var(--navy);
  font-size: 0.95rem;
}

.nearby-info span {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-top: 2px;
}

.nearby-distance {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.04em;
  white-space: nowrap;
}

/* ───────── 4) ROOMS — meta ikonları ───────── */
.room-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  flex-wrap: wrap;
}


.room-meta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 0.85rem 0;
  margin-bottom: 0.85rem;
  border-top: 1px solid rgba(0, 23, 71, 0.07);
  border-bottom: 1px solid rgba(0, 23, 71, 0.07);
}

.room-meta li {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
}

.room-meta svg {
  width: 1.05rem;
  height: 1.05rem;
  color: var(--gold);
  flex-shrink: 0;
}

/* ───────── 5) REVIEWS — yıldız + avatar ───────── */
.review-stars {
  display: inline-flex;
  gap: 3px;
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
}

.review-stars svg {
  width: 0.95rem;
  height: 0.95rem;
  fill: var(--gold);
  filter: drop-shadow(0 1px 2px rgba(201, 169, 98, 0.3));
}

.review-card footer {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-top: 1.6rem;
  padding-top: 1.3rem;
  border-top: 1px solid rgba(0, 23, 71, 0.08);
}

.review-avatar {
  width: 2.65rem;
  height: 2.65rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--navy), #002965);
  color: var(--gold);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.05em;
  flex-shrink: 0;
  box-shadow:
    0 2px 8px rgba(0, 23, 71, 0.2),
    inset 0 0 0 1px rgba(201, 169, 98, 0.25);
}

.review-meta {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  min-width: 0;
}

.review-card footer cite {
  display: block;
  font-style: normal;
  font-weight: 600;
  color: var(--navy);
  font-size: 0.92rem;
  letter-spacing: 0.005em;
}

/* "Verified guest" style source badge */
.review-source-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.32rem;
  align-self: flex-start;
  padding: 0.18rem 0.55rem 0.18rem 0.4rem;
  background: rgba(201, 169, 98, 0.1);
  border: 1px solid rgba(201, 169, 98, 0.3);
  border-radius: 999px;
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.3;
  white-space: nowrap;
}

.review-source-badge svg {
  width: 0.78rem;
  height: 0.78rem;
  flex-shrink: 0;
  stroke: var(--gold);
}

.review-source-badge small {
  font-size: inherit;
  color: inherit;
  margin: 0;
}

/* ───────── 6) TRUST BADGES (Google / Booking / Tripadvisor) ───────── */
.trust-badges {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-top: 3.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(0, 23, 71, 0.08);
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.85rem 1.25rem;
  background: var(--white);
  border: 1px solid rgba(0, 23, 71, 0.1);
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 16px rgba(0, 23, 71, 0.06);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
  text-decoration: none;
  color: inherit;
}

.trust-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 23, 71, 0.1);
}

.trust-badge-logo {
  width: 2.4rem;
  height: 2.4rem;
  display: grid;
  place-items: center;
  background: var(--navy);
  color: var(--gold);
  border-radius: 50%;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
}

.trust-badge strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--navy);
  font-weight: 600;
}

.trust-stars {
  display: flex;
  gap: 0.12rem;
  margin: 0.25rem 0 0.2rem;
  font-size: 0.9rem;
  line-height: 1;
}

.trust-star {
  color: rgba(0, 23, 71, 0.14);
}

.trust-star--full {
  color: var(--gold);
}

.trust-star--partial {
  background: linear-gradient(
    90deg,
    var(--gold) calc(var(--pct, 0.5) * 100%),
    rgba(0, 23, 71, 0.14) calc(var(--pct, 0.5) * 100%)
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.trust-badge small {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 2px;
}

/* ───────── 7) POLICIES ───────── */
.policies {
  background: var(--cream);
  position: relative;
}

.policy-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.policy-card {
  padding: 1.75rem 1.5rem;
  background: var(--white);
  border: 1px solid rgba(0, 23, 71, 0.08);
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 24px rgba(0, 23, 71, 0.05);
  position: relative;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.policy-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(0, 23, 71, 0.1);
}

.policy-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 1.5rem;
  width: 2.5rem;
  height: 3px;
  background: var(--gold);
}

.policy-icon {
  display: grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  background: rgba(201, 169, 98, 0.1);
  color: var(--gold);
  border-radius: var(--radius);
  margin-bottom: 1rem;
}

.policy-icon svg {
  width: 1.35rem;
  height: 1.35rem;
}

.policy-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 1rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid rgba(0, 23, 71, 0.08);
}

.policy-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.55rem 0;
  font-size: 0.85rem;
}

.policy-list li + li {
  border-top: 1px dashed rgba(0, 23, 71, 0.08);
}

.policy-list span {
  color: var(--text-muted);
}

.policy-list strong {
  color: var(--navy);
  font-weight: 500;
  text-align: right;
}

/* ───────── 8) CONTACT — sosyal medya ───────── */
.contact-socials {
  display: flex;
  gap: 0.65rem;
  margin: 1.5rem 0 1.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(0, 23, 71, 0.08);
}

.social-link {
  width: 2.5rem;
  height: 2.5rem;
  display: grid;
  place-items: center;
  background: var(--cream);
  border: 1px solid rgba(0, 23, 71, 0.08);
  border-radius: 50%;
  color: var(--navy);
  transition: all 0.25s var(--ease);
}

.social-link svg {
  width: 1.1rem;
  height: 1.1rem;
}

.social-link:hover {
  background: var(--navy);
  color: var(--gold);
  border-color: var(--navy);
  transform: translateY(-2px);
}

/* ───────── 9) FOOTER — sosyal + iletişim + legal ───────── */
.footer-grid {
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr !important;
}

.footer-socials {
  display: flex;
  gap: 0.65rem;
  margin-top: 1.5rem;
}

.footer-socials a {
  width: 2.25rem;
  height: 2.25rem;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.25s var(--ease);
}

.footer-socials svg {
  width: 0.95rem;
  height: 0.95rem;
}

.footer-socials a:hover {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}

.footer-contact-col {
  display: flex;
  flex-direction: column;
}

.footer-line {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.45rem 0;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.78);
}

.footer-line span[aria-hidden] {
  color: var(--gold);
  width: 1.1rem;
  text-align: center;
}

.footer-line a {
  transition: color 0.2s;
}

.footer-line a:hover {
  color: var(--gold);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-legal {
  display: flex;
  gap: 1.25rem;
}

.footer-legal a {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.55);
  transition: color 0.2s;
}

.footer-legal a:hover {
  color: var(--gold);
}

/* ───────── 10) BACK-TO-TOP ───────── */
.back-to-top {
  position: fixed;
  bottom: 6.25rem;
  right: 1.5rem;
  z-index: 899;
  width: 2.75rem;
  height: 2.75rem;
  display: grid;
  place-items: center;
  background: var(--navy);
  color: var(--gold);
  border: 1px solid rgba(201, 169, 98, 0.35);
  border-radius: 50%;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.3s var(--ease);
  box-shadow: 0 8px 20px rgba(0, 23, 71, 0.25);
}

.back-to-top svg {
  width: 1rem;
  height: 1rem;
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}

/* ───────── 11) COOKIE BAR ───────── */
.cookie-bar {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  z-index: 950;
  max-width: 22rem;
  padding: 1.25rem 1.5rem;
  background: var(--navy);
  color: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(201, 169, 98, 0.25);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  transform: translateY(120%);
  opacity: 0;
  transition: all 0.5s var(--ease-out);
}

.cookie-bar.is-visible {
  transform: translateY(0);
  opacity: 1;
}

.cookie-bar p {
  font-size: 0.85rem;
  line-height: 1.55;
  margin-bottom: 1rem;
}

.cookie-actions {
  display: flex;
  gap: 0.5rem;
  justify-content: flex-end;
}

.btn-sm {
  padding: 0.55rem 1rem;
  font-size: 0.78rem;
}

.cookie-bar .btn-ghost {
  border-color: rgba(255, 255, 255, 0.3);
}

/* ───────── 12) Tipografi rötuşları ───────── */
.section-title {
  letter-spacing: -0.005em;
}

.section-lead {
  font-size: 1.05rem;
  line-height: 1.7;
}

.about-text p,
.experience-text p {
  line-height: 1.75;
}

/* ───────── 13) Responsive ───────── */
@media (max-width: 1024px) {
  .stats-band-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem 0;
  }

  .stat-divider {
    display: none;
  }

  .policy-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .nearby-list {
    grid-template-columns: 1fr;
  }

  .nearby-list li:nth-last-child(-n+2) {
    border-bottom: 1px dashed rgba(0, 23, 71, 0.08);
  }

  .nearby-list li:last-child {
    border-bottom: none;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 2.5rem !important;
  }
}

@media (max-width: 768px) {
  .stats-band {
    padding: 2.25rem 0;
  }

  .stats-band-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.75rem 0;
  }

  .stat-item .stat-num,
  .stat-item .stat-suffix {
    font-size: 2rem;
  }

  .nearby-card {
    padding: 1.5rem 1.25rem;
  }

  .nearby-card::before {
    left: 1.25rem;
    right: 1.25rem;
  }

  .policy-grid {
    grid-template-columns: 1fr;
  }

  .trust-badges {
    gap: 0.75rem;
    margin-top: 2.5rem;
    padding-top: 2rem;
  }

  .trust-badge {
    padding: 0.7rem 1rem;
  }

  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-legal {
    justify-content: center;
    flex-wrap: wrap;
  }

  .back-to-top {
    bottom: 5.5rem;
    right: 1rem;
    width: 2.5rem;
    height: 2.5rem;
  }

  .cookie-bar {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    max-width: none;
  }

  .hero-rating-score strong {
    font-size: 1.85rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .stat-num {
    transition: none;
  }
}
