/* ============================================================
   HAVUZKIRALA — sitenin ana stil dosyası
   ============================================================ */
:root {
  --primary: #00B2FF;
  --primary-10: rgba(0, 178, 255, 0.1);
  --navy: #142039;
  --banner-blue: #006DD5;
  --heading: #222222;
  --body: #333333;
  --secondary-text: #626A75;
  --tile-bg: #EFF2F6;
  --icon-color: #1C2022;
  --section-bg: #F2FBFE;
  --light-blue-badge: #E1F6FF;
  --hero-bg: #2ac0da;
  --radius-pill: 100px;
  --radius-card: 25px;
  --content-max: 1440px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

/* Hareket azaltma tercihi: kaydırma ve geçişleri kapat. */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}


html { scroll-behavior: smooth; }

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: #fff;
  color: var(--body);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; }

/* ============================================================
   ÜST ŞERİT (Yaz Passı banner)
   ============================================================ */
.top-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  position: relative;
  padding: 16px 64px;
  background: linear-gradient(0deg, var(--banner-blue) 0%, var(--banner-blue) 100%);
  color: #fff;
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  line-height: 100%;
}

.top-banner.hidden { display: none; }

.top-banner > img { width: 48px; height: 34px; flex-shrink: 0; }

.banner-copy { display: flex; gap: 7px; align-items: center; flex-wrap: wrap; justify-content: center; }
.banner-copy strong { font-weight: 800; }
.banner-copy span { font-weight: 400; }

@media (max-width: 768px) {
  .banner-copy span { display: none; }
}

.banner-close {
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  position: absolute;
  top: calc(50% - 17.5px);
  left: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  border: none;
  cursor: pointer;
  transition: background 120ms linear;
}
.banner-close:hover { background: rgba(255, 255, 255, 0.32); }

@media (max-width: 768px) {
  .banner-close { top: 6px; left: 6px; width: 20px; height: 20px; }
  .banner-close svg { width: 10px; height: 10px; }
}

.banner-cta {
  margin-left: 12px;
  flex-shrink: 0;
  border-radius: 105px;
  background: transparent;
  border: 1px solid #fff;
  padding: 4px 12px;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 160%;
  letter-spacing: -0.16px;
  white-space: nowrap;
  transition: background 120ms linear, color 120ms linear;
}
.banner-cta:hover { background: #fff; color: var(--banner-blue); }

@media (max-width: 1050px) {
  .top-banner { font-size: 12px; padding: 16px 24px; }
  .banner-cta { font-size: 12px; margin-left: 0; }
}

@media (max-width: 768px) {
  .top-banner { padding: 16px max(18px, 2%); }
}

/* ============================================================
   HEADER
   ============================================================ */
#header {
  position: sticky;
  top: 0;
  left: 0;
  z-index: 56;
  width: 100%;
  background: transparent;
  border-bottom: none;
  transition: background-color 100ms linear, border 100ms linear, box-shadow 100ms linear;
}

#header.scrolled {
  background: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.header-inner {
  display: grid;
  grid-template-areas: "logo center menu";
  grid-template-columns: auto 1fr auto;
  width: 100%;
  align-items: center;
  flex-wrap: nowrap;
  padding: 10px 60px;
}

.logo {
  grid-area: logo;
  color: #fff;
  font-size: 26px;
  font-weight: 900;
  letter-spacing: -0.6px;
  line-height: 1;
  transition: color 100ms linear;
}
#header.scrolled .logo { color: var(--heading); }

.header-nav {
  grid-area: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.header-menu {
  grid-area: menu;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  position: relative;
}

/* Butonlar */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  padding: 0 35px;
  border-radius: var(--radius-pill);
  font-size: 16px;
  font-weight: 700;
  line-height: 140%;
  letter-spacing: -0.16px;
  transition: background-color 100ms linear, border-color 100ms linear, color 100ms linear, box-shadow 100ms linear;
}
.btn-primary {
  background: var(--primary);
  color: #fff;
}
.btn-primary:hover { filter: brightness(98%); box-shadow: 0 8px 10px rgba(0, 0, 0, 0.05); }

.btn-outline {
  background: transparent;
  color: #fff;
  border: 1.05px solid #fff;
  padding: 0 20px;
}
.btn-outline:hover { background: var(--navy); border-color: var(--navy); color: #fff; }

#header.scrolled .btn-outline { color: var(--icon-color); border-color: var(--icon-color); }
#header.scrolled .btn-outline:hover { background: var(--navy); border-color: var(--navy); color: #fff; }

/* Kayıt Ol / hamburger */
.signup-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #fff;
  border-radius: var(--radius-pill);
  background: transparent;
  padding: 4px 6px;
  margin: 0 0 0 0.7rem;
  position: relative;
  cursor: pointer;
  transition: background-color 100ms linear, border-color 100ms linear;
}
.signup-btn .hamburger { fill: #fff; margin: 0 10px 0 10px; flex-shrink: 0; transition: fill 100ms linear; }
.signup-btn span {
  font-size: 18px;
  font-weight: 700;
  line-height: 40px;
  margin: 0 10px 0 0;
  color: #fff;
  transition: color 100ms linear;
  white-space: nowrap;
}

#header.scrolled .signup-btn { border-color: var(--icon-color); }
#header.scrolled .signup-btn .hamburger { fill: var(--icon-color); }
#header.scrolled .signup-btn span { color: var(--icon-color); }

@media (max-width: 576px) {
  .header-inner { padding: 10px 20px; }
  .header-nav { display: none; }
  .signup-btn span { display: none; }
  .signup-btn .hamburger { margin: 0 6px; }
}

/* Açılır menü */
.dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 300px;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  padding: 10px 0;
  flex-direction: column;
}
.dropdown.open { display: flex; }
.dropdown a {
  padding: 12px 20px;
  color: var(--heading);
  font-size: 16px;
  font-weight: 500;
}
.dropdown a:hover { background: var(--tile-bg); }
.dropdown-divider { height: 1px; background: rgba(0, 0, 0, 0.08); margin: 6px 0; }

@media (max-width: 576px) {
  .dropdown { min-width: 95vw; right: auto; left: 0; }
}

/* ============================================================
   HERO + ARAMA ÇUBUĞU
   ============================================================ */
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 65px 4%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-color: var(--hero-bg);
  background-image: url("../assets/images/hero-bg.jpg");
  height: calc(100vh - 170px);
  max-height: 700px;
  min-height: 540px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 150px;
  z-index: 5;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.12) 55.21%, rgba(0, 0, 0, 0) 100%);
  pointer-events: none;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 23px;
  width: 100%;
  max-width: var(--content-max);
  z-index: 10;
}

.hero-heading {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 23px;
  width: 100%;
}

.hero h1 {
  color: #fff;
  white-space: pre-line;
  text-align: center;
  font-size: 72px;
  font-weight: 900;
  line-height: normal;
  letter-spacing: -2.16px;
}

.hero-subtitle {
  display: block;
  color: #fff;
  text-shadow: 0 4px 54px rgba(0, 0, 0, 0.25);
  font-size: 24px;
  font-weight: 600;
  line-height: normal;
  letter-spacing: -0.72px;
  text-align: center;
  white-space: pre-line;
  margin-top: 22px;
}

.hero-search {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  width: 100%;
}

/* Masaüstü arama hapı */
.search-pill {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: var(--radius-pill);
  height: 75px;
  width: 505px;
  padding: 0 12px 0 0;
  gap: 4px;
}

.search-field {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: none;
  min-width: 0;
  height: 100%;
  padding: 0 22px;
  text-align: left;
}
.search-field.picker { width: 250px; padding: 0 0 0 22px; }
.search-field.where { width: 180px; padding: 0 2px; }

.search-field .field-value {
  display: flex;
  align-items: center;
  gap: 8px;
}

.field-label {
  font-size: 12px;
  font-weight: 500;
  color: var(--secondary-text);
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -0.12px;
}

.field-value {
  font-size: 14px;
  font-weight: 700;
  color: #000;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.search-field .field-value svg { flex-shrink: 0; }

.search-field input {
  border: none;
  outline: none;
  background: transparent;
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  color: var(--icon-color);
  width: 100%;
  padding: 0;
}
.search-field input::placeholder { color: var(--icon-color); font-weight: 700; opacity: 1; }

/* Mekan türü seçici */
.search-field.picker { cursor: pointer; position: relative; }
.search-field.picker:focus-visible { outline: 2px solid var(--primary); outline-offset: -2px; border-radius: 20px; }

.picker-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 8px;
  z-index: 60;
  min-width: 230px;
  margin: 0;
  padding: 8px 0;
  list-style: none;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.picker-option {
  padding: 10px 18px;
  font-size: 15px;
  font-weight: 600;
  color: var(--heading);
  cursor: pointer;
  white-space: nowrap;
}
.picker-option:hover { background: var(--tile-bg); }
.picker-option[aria-selected="true"] { color: var(--primary); }

.field-divider {
  width: 1px;
  height: 44px;
  background: rgba(0, 0, 0, 0.08);
  flex-shrink: 0;
}

.search-submit {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--primary);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #fff;
  flex-shrink: 0;
  margin-left: auto;
  transition: filter 100ms linear, box-shadow 100ms linear;
}
.search-submit:hover { filter: brightness(98%); box-shadow: 0 8px 10px rgba(0, 0, 0, 0.15); }
.search-submit svg { width: 20px; height: 20px; }

/* Nasıl çalışır butonu */
.how-it-works {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: none;
  background: none;
  padding: 0;
  color: #fff;
  font-size: 19px;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
  font-family: inherit;
}
.how-it-works svg { width: 11px; height: 7px; flex-shrink: 0; }
.how-it-works:hover { opacity: 0.85; }

/* Mobil arama formu */
.search-mobile {
  display: none;
  width: 100%;
  background: #fff;
  border-radius: var(--radius-card);
  padding: 18px;
  flex-direction: column;
  gap: 10px;
}

.search-mobile .field {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 12px 14px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 14px;
  text-align: left;
}
.search-mobile .field input {
  border: none;
  outline: none;
  background: transparent;
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  color: var(--icon-color);
  padding: 0;
}
.search-mobile .field input::placeholder { color: var(--icon-color); font-weight: 700; opacity: 1; }

.search-mobile .picker-field { position: relative; cursor: pointer; }
.search-mobile .picker-menu {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  min-width: 0;
}

.mobile-submit {
  width: 100%;
  height: 50px;
  border-radius: var(--radius-pill);
  background: var(--primary);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  margin-top: 4px;
}
.mobile-submit:hover { filter: brightness(98%); }

/* ============================================================
   SOSYAL KANIT ŞERİDİ
   ============================================================ */
.social-proof {
  position: relative;
  z-index: 3;
  padding: 75px 4%;
  margin: -75px 0 -54px;
  background: var(--primary);
  mask:
    radial-gradient(182px at 50% 225px, #000 99%, #0000 101%) calc(50% - 100px) 0 / 200px 51% repeat-x,
    radial-gradient(182px at 50% -175px, #0000 99%, #000 101%) 50% 50px / 200px calc(51% - 50px) repeat-x,
    radial-gradient(182px at 50% calc(100% - 225px), #000 99%, #0000 101%) calc(50% - 100px) 100% / 200px 51% repeat-x,
    radial-gradient(182px at 50% calc(100% + 175px), #0000 99%, #000 101%) 50% calc(100% - 50px) / 200px calc(51% - 50px) repeat-x;
}

.social-proof-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 17px;
  width: 100%;
  max-width: var(--content-max);
  margin: 0 auto;
}

.social-proof-copy {
  color: var(--navy);
  font-size: 18px;
  font-weight: 700;
  line-height: 160%;
  letter-spacing: -0.18px;
  text-align: center;
}

@media (max-width: 768px) {
  .social-proof { padding: 50px 4%; margin: -50px 0; mask: none; }
}

@media (max-width: 576px) {
  .social-proof-copy { font-size: 15px; }
}

/* ============================================================
   GÜVEN ŞERİDİ
   ============================================================ */
.trust-strip {
  padding: 47px 4% 55px;
  background: linear-gradient(180deg, #e0f0ff 63.84%, #ffffff 100%);
}

.trust-list {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px 56px;
  width: 100%;
  max-width: var(--content-max);
  margin: 0 auto;
  list-style: none;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--navy);
  font-size: 17px;
  font-weight: 700;
  line-height: 140%;
  letter-spacing: -0.17px;
}

.trust-icon {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  color: var(--primary);
}

@media (max-width: 768px) {
  .trust-list { gap: 18px 28px; }
  .trust-item { font-size: 14px; gap: 9px; }
  .trust-icon { width: 22px; height: 22px; }
}

/* ============================================================
   KATEGORİ KAROLARI
   ============================================================ */
.categories { display: flex; flex-direction: column; align-items: center; width: 100%; }

.categories-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 65px 4%;
  width: 100%;
  max-width: var(--content-max);
}
.categories-heading h2 {
  font-weight: 900;
  font-size: 48px;
  line-height: 120%;
  letter-spacing: -0.48px;
  color: var(--heading);
  text-align: center;
  margin-bottom: 4px;
}
.categories-sub {
  color: var(--secondary-text);
  font-size: 24px;
  line-height: 160%;
  letter-spacing: -0.24px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 36px;
}

.categories-tiles-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 0 4% 30px;
}

.category-tiles {
  display: flex;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
  justify-content: center;
}

.category-tile {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: var(--radius-pill);
  padding: 12px 16px;
  flex-shrink: 0;
  background: var(--tile-bg);
  color: var(--icon-color);
  font-size: 16px;
  font-weight: 700;
  line-height: 140%;
  transition: filter 100ms linear, box-shadow 100ms linear;
}
.category-tile:hover { box-shadow: 0 6px 14px rgba(0, 0, 0, 0.08); filter: brightness(97%); }
.category-tile.active { background: var(--primary); color: #fff; }
.category-tile svg { flex-shrink: 0; }

.discover-cta {
  margin-top: 0;
  border-radius: var(--radius-pill);
  padding: 30px;
  background: var(--primary);
  color: #fff;
  text-align: center;
  font-size: 24px;
  font-weight: 800;
  line-height: 27.3px;
  letter-spacing: -0.48px;
  transition: filter 100ms linear, box-shadow 100ms linear;
}
.discover-cta:hover { filter: brightness(98%); box-shadow: 0 8px 10px rgba(0, 0, 0, 0.05); }

@media (max-width: 992px) {
  .category-tiles {
    overflow-x: auto;
    flex-wrap: nowrap;
    scrollbar-width: none;
    max-width: 100%;
  }
  .category-tiles::-webkit-scrollbar { display: none; }
}

@media (max-width: 768px) {
  .categories-heading { padding: 35px max(2%, 18px); }
  .categories-heading h2 { font-size: 28px; font-weight: 800; letter-spacing: -0.28px; }
  .categories-sub { font-size: 16px; line-height: 22px; margin-bottom: 24px; }
  .category-tiles { align-self: flex-start; margin-bottom: 20px; }
  .category-tile { padding: 8px 12px; font-size: 14px; }
  .discover-cta { width: 100%; padding: 18px 30px; margin-top: 30px; font-size: 18px; }
}

/* ============================================================
   SSS BÖLÜMÜ
   ============================================================ */
.faq { background: var(--section-bg); padding-top: 0; margin-top: -80px; padding-bottom: 65px; }

.faq-wave { width: 100%; background: #fff; }
.faq-wave svg {
  width: 100%;
  color: var(--section-bg);
  aspect-ratio: 1440 / 150;
  height: auto;
  display: block;
  margin-bottom: -6px;
}

.faq-body {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 4%;
}

.faq-inner { display: flex; flex-direction: column; gap: 16px; width: 100%; }

.faq h2 {
  font-weight: 900;
  font-size: 48px;
  line-height: 120%;
  letter-spacing: -0.48px;
  color: var(--heading);
  text-align: left;
  margin-bottom: 4px;
}

.faq-tabs { display: flex; align-items: center; gap: 15px; margin-bottom: 8px; }

.faq-tab {
  border: none;
  cursor: pointer;
  border-radius: 105px;
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  line-height: 160%;
  letter-spacing: -0.2px;
  width: 115px;
  padding: 6px 6px 8px 6px;
  background: var(--primary-10);
  color: var(--primary);
  font-family: inherit;
  transition: background-color 100ms linear, color 100ms linear;
}
.faq-tab.active { background: var(--primary); color: #fff; }

.faq-panel { display: flex; flex-direction: column; gap: 0; width: 100%; }
.faq-panel[hidden] { display: none; }

.faq-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  margin-bottom: 20px;
  padding-bottom: 20px;
}
.faq-item[open] summary { margin-bottom: 12px; }
.faq-item summary {
  cursor: pointer;
  list-style: none;
  color: var(--body);
  font-size: 20px;
  font-weight: 500;
  line-height: 30.24px;
  font-family: inherit;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:focus-visible { outline: 2px solid var(--primary); outline-offset: 4px; }
.faq-item summary::after {
  content: "+";
  float: right;
  font-size: 24px;
  font-weight: 400;
  color: var(--secondary-text);
  transition: transform 120ms linear;
}
.faq-item[open] summary::after { transform: rotate(45deg); }

.faq-answer {
  color: var(--body);
  font-weight: 400;
  font-size: 18px;
  line-height: 160%;
  white-space: pre-line;
}
.faq-answer a { color: var(--primary); text-decoration: underline; }
.faq-answer em { font-style: italic; }

@media (max-width: 768px) {
  .faq { margin-top: -80px; padding-top: 100px; }
  .faq-body { padding: 0 max(2%, 18px); }
  .faq-inner { align-items: center; gap: 12px; }
  .faq h2 { font-size: 26px; font-weight: 800; letter-spacing: -0.26px; text-align: center; }
  .faq-tab { font-size: 16px; width: 110px; }
  .faq-item { margin-bottom: 16px; padding-bottom: 16px; }
  .faq-item summary { font-size: 14px; line-height: 20px; }
  .faq-answer { font-size: 14px; }
}




/* Mobil poster görseli */
.hero-poster { display: none; }

@media (max-width: 768px) {
  .hero {
    min-height: calc(100vh - 115px);
    height: auto;
    padding: max(2%, 18px);
    padding-bottom: 30px;
    justify-content: flex-start;
  }
  .hero::before {
    z-index: 5;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.25) 43.14%, rgba(0, 0, 0, 0) 73.6%);
  }
  .hero-content { gap: 20px; margin-top: 30px; flex: 1; }
  .hero-heading { gap: 20px; }
  .hero h1 { font-size: 32px; line-height: 120%; letter-spacing: -0.32px; }
  .hero-subtitle { font-size: 16px; letter-spacing: -0.16px; margin-top: 12px; }
  .how-it-works { font-size: 15px; }
  .search-pill { display: none; }
  .search-mobile { display: flex; }
  .hero-poster {
    display: block;
    height: 155px;
    width: 100%;
    border-radius: var(--radius-card);
    object-fit: cover;
    margin-top: auto;
  }
}

/* ============================================================
   DİĞER REZERVASYON YOLLARI
   ============================================================ */
.more-ways {
  padding-top: 0;
  padding-bottom: 48px;
  background: var(--section-bg);
}

.more-ways-inner {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 4%;
}

.more-ways-inner h2 {
  font-weight: 900;
  font-size: 48px;
  line-height: 120%;
  letter-spacing: -0.48px;
  color: var(--heading);
  text-align: left;
  margin: 0;
}

.more-ways-inner p {
  color: var(--body);
  font-size: 18px;
  font-weight: 400;
  line-height: 160%;
  margin: 0;
}
.more-ways-inner p a { color: var(--primary); text-decoration: underline; }

@media (max-width: 768px) {
  .more-ways-inner { padding: 0 max(2%, 18px); }
  .more-ways-inner h2 { font-size: 26px; font-weight: 800; letter-spacing: -0.26px; text-align: center; }
  .more-ways-inner p { font-size: 14px; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--navy);
  color: #fff;
  padding: 51.2px 50px 83.2px;
}

.footer-main {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 50px 60px;
  max-width: var(--content-max);
  margin: 0 auto;
}

.footer-links {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 50px 60px;
}

.footer-brand {
  font-size: 26px;
  font-weight: 900;
  letter-spacing: -0.6px;
  line-height: 1;
  color: #fff;
  min-width: 170px;
}

.footer-app { display: flex; flex-direction: column; min-width: 150px; }
.app-badges { display: flex; flex-direction: column; gap: 18px; margin-top: 20px; }
.app-badges a { display: block; }
.app-badges img { width: 150px; height: 40px; object-fit: contain; display: block; }

.footer-social { display: flex; flex-direction: column; max-width: 280px; }
.footer-social-title {
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 20px;
  line-height: normal;
}
.footer-social-body {
  font-size: 14px;
  font-weight: 400;
  color: #fff;
  line-height: 160%;
  margin: 0;
  opacity: 0.9;
}
.footer-social-links { display: flex; gap: 10px; margin-top: 30px; }
.footer-social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
}
.footer-social-links svg { height: 18px; width: auto; color: #fff; }

/* Footer alt bar */
.footer-bottom {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px 34px;
  max-width: var(--content-max);
  margin: 50px auto 0;
}

.footer-copy {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px 34px;
}
.footer-copy p {
  font-size: 14px;
  font-weight: 400;
  color: #fff;
  margin: 0;
}
.footer-copy a {
  font-size: 14px;
  font-weight: 400;
  color: #fff;
  text-decoration: none;
  transition: opacity 120ms linear;
}
.footer-copy a:hover { opacity: 0.8; }

.footer-region {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #fff;
  border-radius: 13px;
  background: transparent;
  color: #fff;
  font-size: 14px;
  padding: 11px;
  cursor: pointer;
  font-family: inherit;
  transition: opacity 120ms linear;
}
.footer-region svg { width: 16px; height: 16px; }

/* ============================================================
   CHAT DESTEK WIDGET
   ============================================================ */
.chat-button {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: none;
  background: #004F91;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: rgba(0, 0, 0, 0.18) 0 4px 12px 0, rgba(0, 0, 0, 0.1) 0 1px 4px 0;
  transition: transform 120ms linear, filter 120ms linear;
}
.chat-button:hover { transform: scale(1.05); filter: brightness(1.06); }
.chat-button svg { width: 40px; height: 40px; }

.chat-panel {
  position: fixed;
  bottom: 92px;
  right: 24px;
  z-index: 9999;
  width: 300px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
  overflow: hidden;
}
.chat-panel[hidden] { display: none; }

.chat-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  background: #004F91;
  color: #fff;
}
.chat-panel-header strong { font-size: 15px; font-weight: 700; }
.chat-panel-close {
  border: none;
  background: transparent;
  color: #fff;
  font-size: 15px;
  line-height: 1;
  cursor: pointer;
  padding: 4px 6px;
}
.chat-panel-close:hover { opacity: 0.8; }

.chat-panel-body { padding: 16px; }
.chat-panel-body p { margin: 0 0 14px; color: var(--body); font-size: 14px; line-height: 1.6; }
.chat-panel-link {
  display: inline-block;
  border-radius: var(--radius-pill);
  background: var(--primary);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 10px 18px;
  text-decoration: none;
}
.chat-panel-link:hover { filter: brightness(98%); }

@media (max-width: 576px) {
  .chat-panel { right: 12px; left: 12px; width: auto; bottom: 84px; }
}

@media (max-width: 576px) {
  .footer-bottom { justify-content: flex-start; margin-top: 40px; }
}

@media (max-width: 576px) {
  .site-footer { padding: 40px 20px 60px; }
  .footer-main { gap: 40px 40px; }
  .footer-links { gap: 40px 40px; }
}

.footer-col { display: flex; flex-direction: column; min-width: 140px; }

.footer-col-title {
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 20px;
  line-height: normal;
}

.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin: 0 0 12px; }
.footer-col a {
  font-size: 14px;
  font-weight: 400;
  color: #fff;
  text-decoration: none;
  line-height: normal;
  transition: opacity 120ms linear;
}
.footer-col a:hover { opacity: 0.8; }

/* ============================================================
   KATEGORİLER — ÖNE ÇIKAN HAVUZ KARUSELİ
   ============================================================ */
.pool-carousel {
  position: relative;
  width: 100%;
  margin-bottom: 40px;
}

.pool-carousel-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 4px 2px;
}
.pool-carousel-track::-webkit-scrollbar { display: none; }

/* Explore kartı */
.pool-explore-card {
  flex: 0 0 355px;
  height: 234px;
  border-radius: 12px;
  padding: 22px 20px;
  background: linear-gradient(150deg, #1CADF5, #0B8FD1);
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: center;
  align-items: flex-start;
  text-decoration: none;
  scroll-snap-align: start;
}
.explore-icon svg { width: 32px; height: 32px; display: block; }
.explore-title { font-size: 24px; font-weight: 800; line-height: 1.2; }
.explore-sub { font-size: 14px; opacity: 0.92; line-height: 1.5; }
.explore-link { font-size: 14px; font-weight: 700; text-decoration: underline; text-underline-offset: 3px; margin-top: 6px; }

/* Havuz ilan kartı */
.pool-card {
  flex: 0 0 410px;
  text-decoration: none;
  scroll-snap-align: start;
  color: inherit;
}
.pool-card-img { border-radius: 10px; overflow: hidden; margin-bottom: 12px; }
.pool-card-img img { width: 100%; height: 278px; object-fit: cover; display: block; }
.pool-card-name { font-size: 20px; font-weight: 700; color: var(--heading); margin: 0 0 4px; }
.pool-card-loc { font-size: 16px; color: #717171; margin-bottom: 8px; }
.pool-card-rating { display: flex; align-items: center; gap: 5px; margin-bottom: 8px; }
.stars { display: inline-flex; gap: 1px; }
.star { width: 15px; height: 15px; fill: var(--primary); }
.star.partial { fill: none; }
.pool-card-count { font-size: 16px; color: #000; }
.pool-card-price { font-size: 20px; font-weight: 800; color: #000; }

/* Karusel okları */
.pool-carousel-arrow {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  z-index: 2;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--heading);
  transition: box-shadow 120ms linear, transform 120ms linear;
}
.pool-carousel-arrow:hover { box-shadow: 0 6px 16px rgba(0, 0, 0, 0.18); transform: translateY(-50%) scale(1.04); }
.pool-carousel-prev { left: -12px; }
.pool-carousel-next { right: -12px; }
.pool-carousel-arrow svg { width: 20px; height: 20px; }

@media (max-width: 768px) {
  .pool-card { flex: 0 0 85%; }
  .pool-explore-card { flex: 0 0 85%; }
  .pool-card-img img { height: 220px; }
  .pool-carousel-arrow { display: none; }
}

/* ============================================================
   BECOME-A-HOST — HERO
   ============================================================ */
.host-hero {
  position: relative;
  min-height: 628px;
  overflow: hidden;
  display: flex;
  align-items: stretch;
  padding: 0 4%;
}

.host-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.host-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: linear-gradient(90deg, rgba(10, 30, 40, 0.55) 0%, rgba(10, 30, 40, 0.15) 55%, rgba(10, 30, 40, 0.35) 100%);
  pointer-events: none;
}

.host-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--content-max);
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 60px 0;
}

.host-hero-heading {
  display: flex;
  flex-direction: column;
  max-width: 520px;
}
.host-hero-heading h1 {
  color: #fff;
  font-size: 28px;
  font-weight: 800;
  line-height: 30.8px;
  letter-spacing: -0.28px;
  margin: 0;
}
.host-hero-tagline {
  color: #fff;
  font-size: 28px;
  font-weight: 800;
  line-height: 30.8px;
  letter-spacing: -0.28px;
  margin-top: 4px;
}
.host-hero-sub {
  color: #fff;
  font-size: 18px;
  line-height: 1.5;
  margin: 16px 0 0;
  max-width: 460px;
}

.host-hero-shield {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 14px;
  padding: 12px 16px;
  max-width: 460px;
}
.host-hero-shield .hk-shield { width: 46px; height: 46px; flex-shrink: 0; }
.shield-copy { display: flex; flex-direction: column; gap: 2px; }
.shield-title { color: #fff; font-size: 16px; font-weight: 700; }
.shield-sub { color: rgba(255, 255, 255, 0.92); font-size: 14px; line-height: 1.4; }

.host-hero-side {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  max-width: 440px;
}

.host-hero-cta {
  border: none;
  background: rgba(15, 35, 32, 0.72);
  color: #fff;
  border-radius: 9999px;
  padding: 0 24px;
  height: 48px;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  transition: background 120ms linear;
}
.host-hero-cta:hover { background: rgba(15, 35, 32, 0.85); }

.host-review-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  background: #fff;
  border-radius: 18px;
  padding: 24px;
  max-width: 420px;
  text-align: center;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
}
.host-review-body { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.host-review-name { font-size: 20px; font-weight: 700; color: var(--heading); }
.host-review-quote {
  font-size: 16px;
  line-height: 22px;
  color: rgba(0, 0, 0, 0.55);
  margin: 10px 0 0;
}

@media (max-width: 900px) {
  .host-hero-content { flex-direction: column; align-items: flex-start; gap: 28px; padding: 40px 0 50px; }
  .host-hero { padding: 0 4%; }
  .host-hero-side { align-items: flex-start; max-width: 100%; }
  .host-review-card { text-align: left; align-items: flex-start; max-width: 100%; }
  .host-review-body { align-items: flex-start; }
}

/* ============================================================
   BECOME-A-HOST — KAZANÇ HESAPLAYICI
   ============================================================ */
.earnings { padding: 120px 4%; }

.earnings-wrap {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
}

.earnings-info { flex: 1 1 460px; max-width: 544px; }
.earnings-info h2 { font-size: 36px; font-weight: 800; color: var(--heading); margin: 0; }

.earnings-amount { display: flex; align-items: baseline; gap: 6px; margin: 12px 0 8px; }
.earnings-amount .amount { font-size: 72px; font-weight: 800; color: var(--icon-color); line-height: 1; }
.earnings-amount .per { font-size: 36px; font-weight: 800; color: var(--icon-color); }

.earnings-sub { font-size: 18px; color: var(--secondary-text); margin: 0 0 18px; }
.earnings-sub strong { color: var(--icon-color); }

.earnings-calc {
  border: none;
  background: none;
  color: var(--secondary-text);
  font-size: 15px;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
  padding: 0;
  font-family: inherit;
  margin-bottom: 18px;
  display: block;
}

.earnings-daisy {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(230, 246, 255, 0.8);
  color: #000;
  border: none;
  border-radius: 20px;
  padding: 6px 10px 6px 14px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  margin-bottom: 20px;
}
.earnings-daisy svg { width: 16px; height: 16px; color: var(--primary); }
.earnings-daisy .new-badge {
  background: var(--primary);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  border-radius: 20px;
  padding: 3px 8px;
}

.earnings-location {
  width: 100%;
  max-width: 440px;
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  background: transparent;
  font-size: 16px;
  font-weight: 600;
  color: var(--icon-color);
  padding: 8px 0;
  font-family: inherit;
  outline: none;
}
.earnings-location::placeholder { color: var(--icon-color); font-weight: 600; opacity: 0.7; }
.earnings-location:focus { border-bottom-color: var(--primary); }

/* Stilize harita paneli */
.earnings-map {
  flex: 1 1 460px;
  max-width: 544px;
  min-height: 438px;
  background: #F9F5ED;
  border-radius: 16px;
  padding: 30px;
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  justify-content: center;
  gap: 14px;
}

.map-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 9999px;
  padding: 8px 14px;
  font-size: 18px;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.9);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
  transform: translateY(var(--offset, 0));
}
.map-chip:nth-child(3n) { --offset: 14px; }
.map-chip:nth-child(3n + 1) { --offset: -10px; }
.map-chip:nth-child(5n) { --offset: 8px; }

@media (max-width: 900px) {
  .earnings { padding: 70px 4%; }
  .earnings-wrap { flex-direction: column; align-items: flex-start; }
  .earnings-amount .amount { font-size: 56px; }
  .earnings-map { min-height: 320px; width: 100%; }
}

/* Kazanç hesaplayıcı — etkileşim */
.earnings-info { position: relative; }
.map-chip { cursor: pointer; transition: background 120ms linear, color 120ms linear, transform 120ms linear; }
.map-chip:hover { transform: translateY(var(--offset, 0)) scale(1.05); }
.map-chip.selected { background: var(--primary); color: #fff; border-color: var(--primary); }

.earnings-popover {
  display: none;
  position: absolute;
  left: 0;
  z-index: 6;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.14);
  padding: 16px 18px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--body);
  max-width: 340px;
  margin-top: 8px;
}
.earnings-popover[hidden] { display: none; }
.earnings-popover.open { display: block; }
.earnings-popover strong { display: block; font-size: 15px; color: var(--heading); margin-bottom: 6px; }
.earnings-popover p { margin: 0; }
#calcPopover { top: calc(100% + 8px); }
#daisyPopover { top: calc(100% + 8px); }

.earnings-location.invalid { border-bottom-color: #e5484d; }
.earnings-location.valid { border-bottom-color: #2f9e44; }

/* ============================================================
   BECOME-A-HOST — BAŞARI HİKAYELERİ
   ============================================================ */
.success-stories { padding: 80px 0; }

.stories-heading {
  max-width: var(--content-max);
  margin: 0 auto 40px;
  padding: 0 4%;
}
.stories-heading h2 {
  font-size: 44px;
  font-weight: 800;
  color: var(--heading);
  line-height: 1.2;
  margin: 0 0 8px;
  max-width: 700px;
}
.stories-heading p { font-size: 18px; color: var(--secondary-text); margin: 0; }

.stories-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 4px 4%;
}
.stories-track::-webkit-scrollbar { display: none; }

.story-card {
  flex: 0 0 287px;
  scroll-snap-align: start;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}


.story-card-body { padding: 18px; position: relative; }
.story-step-visual {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, #e1f6ff 0%, #cfeeff 100%);
  color: var(--primary);
}
.story-step-icon { width: 58px; height: 58px; }
.story-step-num {
  position: absolute;
  top: 14px;
  left: 16px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}
.guest-use-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--light-blue-badge);
  color: var(--primary);
  margin-bottom: 14px;
}
.guest-use-icon svg { width: 28px; height: 28px; }
.host-review-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--light-blue-badge);
  color: var(--primary);
}
.host-review-badge svg { width: 32px; height: 32px; }
.story-name { font-size: 18px; font-weight: 700; color: var(--heading); margin: 0 0 2px; }
.story-quote { font-size: 14px; line-height: 1.6; color: var(--body); margin: 10px 0 0; }

@media (max-width: 768px) {
  .stories-heading h2 { font-size: 28px; }
  .story-card { flex: 0 0 78%; }
}

/* ============================================================
   BECOME-A-HOST — KORUMA + GÖRSEL BANT
   ============================================================ */
.host-protection {
  padding: 0 4% 80px;
  display: flex;
  align-items: center;
}

.host-protection-inner {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

.host-protection-card {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  background: #00538E;
  border-radius: 999px;
  padding: 40px 64px 40px 40px;
}

.host-protection-card > .hk-shield { width: 128px; height: 128px; flex-shrink: 0; }

.protection-copy h2 {
  color: #fff;
  font-size: 32px;
  font-weight: 800;
  line-height: 1.2;
  margin: 0 0 8px;
}
.protection-copy p {
  color: #fff;
  font-size: 18px;
  line-height: 1.4;
  margin: 0;
}
.protection-copy p strong { font-weight: 700; }
.protection-copy p a { color: #fff; text-decoration: underline; }

.host-lifestyle-band img {
  display: block;
  width: 100%;
  height: 390px;
  object-fit: cover;
}

@media (max-width: 768px) {
  .host-protection { padding: 0 4% 50px; }
  .host-protection-card { flex-direction: column; align-items: flex-start; border-radius: 24px; padding: 30px 24px; }
  .host-protection-card > .hk-shield { width: 80px; height: 80px; }
  .protection-copy h2 { font-size: 24px; }
  .protection-copy p { font-size: 15px; }
  .host-lifestyle-band img { height: 240px; }
}

/* ============================================================
   BECOME-A-HOST — MİSAFİR YORUMLARI
   ============================================================ */
.guest-stories { padding: 80px 0; }

.guest-heading {
  max-width: var(--content-max);
  margin: 0 auto 40px;
  padding: 0 4%;
}
.guest-heading h2 {
  font-size: 44px;
  font-weight: 800;
  color: var(--heading);
  line-height: 1.2;
  margin: 0 0 12px;
  max-width: 700px;
}
.guest-heading p { font-size: 18px; color: var(--secondary-text); margin: 0; max-width: 640px; }

.guest-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 4px 4%;
}
.guest-track::-webkit-scrollbar { display: none; }

.guest-card {
  flex: 0 0 595px;
  scroll-snap-align: start;
  background: #fff;
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.guest-name { font-size: 18px; font-weight: 700; color: var(--heading); }
.guest-quote {
  font-size: 17px;
  line-height: 1.6;
  color: var(--body);
  margin: 12px 0 16px;
}


.guest-tag { display: flex; align-items: center; gap: 6px; font-size: 14px; }
.guest-tag .guest-tag .tag-loc { color: var(--secondary-text); }

@media (max-width: 768px) {
  .guest-heading h2 { font-size: 28px; }
  .guest-card { flex: 0 0 85%; padding: 24px; }
  .guest-quote { font-size: 15px; }
}

/* ============================================================
   BECOME-A-HOST — TOPLULUK + DESTEK
   ============================================================ */
.host-community { padding: 40px 4%; display: flex; justify-content: center; }

.community-inner {
  max-width: 1200px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
}
.community-inner h2 {
  font-size: 40px;
  font-weight: 800;
  color: var(--heading);
  text-align: center;
  max-width: 680px;
  line-height: 1.2;
  margin: 0;
}

.community-content { display: flex; flex-direction: row; align-items: center; gap: 48px; width: 100%; }

.community-features { flex: 1 1 572px; display: flex; flex-direction: column; gap: 40px; }

.feature-item { display: flex; align-items: flex-start; gap: 24px; }
.feature-item img { width: 100px; height: 100px; flex-shrink: 0; }
.feature-title { font-size: 20px; font-weight: 700; color: var(--heading); margin: 0 0 6px; }
.feature-desc { font-size: 16px; color: var(--secondary-text); line-height: 1.5; margin: 0; }

.community-image { flex: 1 1 492px; }
.community-image img { width: 100%; border-radius: 16px; display: block; }

.community-talk {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fff;
  border-radius: 32px;
  padding: 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  max-width: 900px;
  width: 100%;
}
.talk-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--light-blue-badge);
  color: var(--primary);
}
.talk-avatar svg { width: 38px; height: 38px; }
.talk-copy { flex: 1; }
.talk-title { font-size: 18px; font-weight: 700; color: var(--heading); margin: 0 0 4px; }
.talk-desc { font-size: 14px; color: var(--secondary-text); margin: 0; }
.talk-cta {
  border: none;
  background: #0AA0FA;
  color: #fff;
  border-radius: 9999px;
  padding: 0 20px;
  height: 46px;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  font-family: inherit;
  transition: filter 120ms linear;
}
.talk-cta:hover { filter: brightness(98%); }

@media (max-width: 900px) {
  .community-inner h2 { font-size: 28px; }
  .community-content { flex-direction: column; gap: 36px; }
  .community-talk { flex-wrap: wrap; justify-content: center; text-align: center; }
  .talk-copy { flex-basis: 100%; }
}

/* ============================================================
   BECOME-A-HOST — SSS
   ============================================================ */
.host-faq { background: var(--section-bg); padding: 80px 4%; }

.host-faq-inner { max-width: 1000px; margin: 0 auto; }
.host-faq-inner h2 {
  font-size: 44px;
  font-weight: 800;
  color: var(--heading);
  line-height: 1.2;
  margin: 0 0 32px;
}

.host-faq-list { display: flex; flex-direction: column; }

@media (max-width: 768px) {
  .host-faq { padding: 60px 4%; }
  .host-faq-inner h2 { font-size: 28px; }
}

/* ============================================================
   BECOME-A-HOST — İLETİŞİM FORMU
   ============================================================ */
.host-contact { padding: 0 4% 80px; }

.contact-inner { max-width: 1440px; margin: 0 auto; }

.contact-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: stretch;
}

.contact-form-col h2 {
  font-size: 28px;
  font-weight: 800;
  color: var(--heading);
  line-height: 1.3;
  margin: 0 0 8px;
}
.contact-form-col > p {
  font-size: 18px;
  color: var(--secondary-text);
  line-height: 1.5;
  margin: 0 0 28px;
}

.contact-form { display: flex; flex-direction: column; }
.contact-form input {
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  background: transparent;
  padding: 24px 0;
  font-size: 18px;
  font-family: inherit;
  color: var(--icon-color);
  outline: none;
}
.contact-form input::placeholder { color: var(--secondary-text); }
.contact-form input:focus { border-bottom-color: var(--primary); }

.contact-form button {
  align-self: flex-start;
  margin-top: 24px;
  border: none;
  background: #0AA0FA;
  color: #fff;
  border-radius: 9999px;
  padding: 0 24px;
  height: 46px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  transition: filter 120ms linear;
}
.contact-form button:hover { filter: brightness(98%); }

.contact-success {
  color: #2f9e44;
  font-size: 16px;
  margin-top: 16px;
}
.contact-success[hidden] { display: none; }

.contact-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}

@media (max-width: 900px) {
  .host-contact { padding: 0 4% 60px; }
  .contact-row { grid-template-columns: 1fr; gap: 28px; }
  .contact-image { order: -1; }
  .contact-image img { max-height: 300px; }
}
