/* Ankara Termal - Genel Stil
   Renk paleti: sıcak turkuaz/mavi termal su teması */

:root {
  --primary: #0077b6;
  --primary-dark: #023e8a;
  --accent: #00b4d8;
  --gray-light: #f4f7f9;
  --gray: #6b7684;
  --border: #e3e8ec;
  --white: #ffffff;
  --success: #2a9d63;
  --danger: #d84545;
  --star: #f5a623;
  --radius: 12px;
  --shadow: 0 4px 16px rgba(2, 62, 138, 0.08);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Arial, sans-serif;
  background: var(--gray-light);
  color: #1c2733;
  line-height: 1.5;
}

a { color: var(--primary); text-decoration: none; }
a:hover { color: var(--primary-dark); }

img { max-width: 100%; display: block; }

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 16px;
}

/* HEADER */
.site-header {
  background: linear-gradient(90deg, var(--primary-dark), var(--primary));
  color: var(--white);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.logo { font-size: 1.4rem; font-weight: 700; color: var(--white); display: flex; align-items: center; gap: 8px; }
.main-nav { display: flex; gap: 22px; align-items: center; }
.main-nav a { color: var(--white); font-weight: 500; opacity: .92; }
.main-nav a:hover { opacity: 1; }
.btn {
  display: inline-block;
  padding: 9px 20px;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: transform .15s ease, box-shadow .15s ease;
}
.btn-light { background: var(--white); color: var(--primary-dark); }
.btn-light:hover { transform: translateY(-1px); box-shadow: 0 4px 10px rgba(0,0,0,.15); color: var(--primary-dark); }
.btn-primary { background: var(--primary); color: var(--white); }
.btn-primary:hover { background: var(--primary-dark); color: var(--white); }
.btn-outline { background: transparent; border: 1.5px solid var(--primary); color: var(--primary); }
.btn-danger { background: var(--danger); color: var(--white); }
.btn-block { width: 100%; }

/* HERO + İLÇE ŞERİDİ */
.hero {
  background: var(--white);
  padding: 28px 0 20px;
  border-bottom: 1px solid var(--border);
}
.hero h1 { font-size: 1.6rem; color: var(--primary-dark); margin: 0 0 6px; }
.hero p { color: var(--gray); margin: 0 0 18px; }

.district-strip {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  padding: 6px 2px 14px;
}
.district-strip::-webkit-scrollbar { height: 6px; }
.district-strip::-webkit-scrollbar-thumb { background: var(--border); border-radius: 4px; }
.district-item {
  flex: 0 0 auto;
  text-align: center;
  width: 88px;
}
.district-item .icon-circle {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--gray-light);
  border: 2px solid var(--accent);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 6px;
  font-size: 1.5rem;
  overflow: hidden;
}
.district-item span { font-size: .8rem; font-weight: 600; color: #1c2733; }
.district-item:hover .icon-circle { background: var(--accent); border-color: var(--primary-dark); }

/* BADGE / ROZET */
.badges-row { display: flex; gap: 16px; flex-wrap: wrap; margin: 22px 0; }
.badge-card {
  flex: 1 1 300px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 16px;
  display: flex;
  gap: 14px;
  align-items: center;
  border: 1px solid var(--border);
}
.badge-card .badge-icon {
  font-size: 2rem;
  background: linear-gradient(135deg, var(--accent), var(--primary));
  color: var(--white);
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex: none;
}
.badge-card .label { font-size: .78rem; text-transform: uppercase; color: var(--gray); letter-spacing: .04em; }
.badge-card .hotel-name { font-weight: 700; font-size: 1.05rem; color: var(--primary-dark); }

/* SECTION */
.section { padding: 30px 0; }
.section-title {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 16px;
}
.section-title h2 { font-size: 1.25rem; color: var(--primary-dark); margin: 0; }
.section-title a { font-size: .9rem; font-weight: 600; }

/* OTEL KARTLARI */
.hotel-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 20px; }
.hotel-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  display: flex; flex-direction: column;
}
.hotel-card .thumb { position: relative; aspect-ratio: 4/3; background: var(--gray-light); overflow: hidden; }
.hotel-card .thumb img { width: 100%; height: 100%; object-fit: cover; }
.hotel-card .rank { position: absolute; top: 8px; left: 8px; background: var(--primary-dark); color: var(--white); font-weight: 700; font-size: .8rem; padding: 3px 9px; border-radius: 20px; }
.hotel-card .body { padding: 14px; flex: 1; display: flex; flex-direction: column; gap: 6px; }
.hotel-card .district-tag { font-size: .75rem; color: var(--primary); font-weight: 600; text-transform: uppercase; }
.hotel-card h3 { margin: 0; font-size: 1.02rem; color: #1c2733; }
.hotel-card .score-row { display: flex; align-items: center; gap: 8px; font-size: .85rem; color: var(--gray); }
.score-pill { background: var(--primary); color: var(--white); font-weight: 700; padding: 2px 9px; border-radius: 20px; font-size: .8rem; }
.price-tag { margin-top: auto; font-weight: 700; color: var(--primary-dark); }

/* YILDIZ */
.stars { color: var(--star); letter-spacing: 1px; }

/* YORUM KARTLARI */
.review-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 14px; box-shadow: var(--shadow); }
.review-card .top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 6px; }
.review-card .author { font-weight: 700; }
.review-card .hotel-link { font-size: .8rem; color: var(--primary); }

/* OTEL DETAY */
.gallery { display: grid; grid-template-columns: 2fr 1fr 1fr; grid-template-rows: 1fr 1fr; gap: 8px; border-radius: var(--radius); overflow: hidden; }
.gallery img { width: 100%; height: 100%; object-fit: cover; }
.gallery .main { grid-row: span 2; }

.hotel-header { display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 14px; margin: 18px 0; }
.hotel-header h1 { margin: 0 0 4px; color: var(--primary-dark); }
.hotel-header .meta { color: var(--gray); font-size: .92rem; }
.action-buttons { display: flex; gap: 10px; flex-wrap: wrap; }

.feature-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 10px; }
.feature-chip { background: var(--white); border: 1px solid var(--border); border-radius: 30px; padding: 8px 14px; font-size: .85rem; display: flex; align-items: center; gap: 8px; }

.vote-box { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); padding: 20px; border: 1px solid var(--border); }
.vote-scale { display: flex; gap: 6px; flex-wrap: wrap; margin: 12px 0; }
.vote-scale button {
  width: 38px; height: 38px; border-radius: 50%; border: 2px solid var(--primary);
  background: var(--white); color: var(--primary); font-weight: 700; cursor: pointer;
}
.vote-scale button:hover, .vote-scale button.selected { background: var(--primary); color: var(--white); }

.stat-row { display: flex; gap: 22px; color: var(--gray); font-size: .88rem; margin-top: 10px; }

.map-embed { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); }
.map-embed iframe { width: 100%; height: 320px; border: 0; }

.attractions-box { background: var(--white); border-radius: var(--radius); padding: 18px; border: 1px solid var(--border); }
.attractions-box .attraction { display: flex; gap: 12px; padding: 10px 0; border-bottom: 1px solid var(--border); }
.attractions-box .attraction:last-child { border-bottom: none; }
.attractions-box .attraction img { width: 84px; height: 64px; object-fit: cover; border-radius: 8px; flex: none; }

/* FORM */
.form-card { max-width: 460px; margin: 40px auto; background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); padding: 30px; border: 1px solid var(--border); }
.form-card h1 { font-size: 1.3rem; color: var(--primary-dark); margin-top: 0; }
.field { margin-bottom: 16px; }
.field label { display: block; font-weight: 600; margin-bottom: 6px; font-size: .9rem; }
.field input, .field select, .field textarea {
  width: 100%; padding: 10px 12px; border: 1.5px solid var(--border); border-radius: 8px; font-size: .95rem;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--primary); }
.checkbox-field { display: flex; align-items: flex-start; gap: 8px; font-size: .85rem; color: var(--gray); }
.otp-inputs { display: flex; gap: 8px; justify-content: center; margin: 14px 0; }
.otp-inputs input { width: 42px; height: 48px; text-align: center; font-size: 1.2rem; }

.alert { padding: 12px 16px; border-radius: 8px; margin-bottom: 16px; font-size: .9rem; }
.alert-error { background: #fdecec; color: var(--danger); border: 1px solid #f3c6c6; }
.alert-success { background: #eaf7ef; color: var(--success); border: 1px solid #c3e9d1; }

/* FOOTER */
.site-footer { background: var(--primary-dark); color: #d7e9f7; margin-top: 40px; padding: 40px 0 20px; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 24px; }
.footer-grid h4 { color: var(--white); margin: 0 0 12px; font-size: 1rem; }
.footer-grid a { color: #b9d7ec; display: block; margin-bottom: 8px; font-size: .9rem; }
.footer-grid a:hover { color: var(--white); }
.social-icons { display: flex; gap: 10px; }
.social-icons a { width: 36px; height: 36px; background: rgba(255,255,255,.12); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.footer-bottom { text-align: center; margin-top: 30px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.15); font-size: .82rem; color: #a9c8de; }

/* RESPONSIVE */
@media (max-width: 720px) {
  .main-nav { display: none; }
  .gallery { grid-template-columns: 1fr 1fr; }
  .gallery .main { grid-column: span 2; }
  .hotel-header { flex-direction: column; }
}
