:root {
  --ink: #111214;
  --ink-soft: #1b1d20;
  --surface: #ffffff;
  --surface-soft: #f5f5f6;
  --surface-warm: #faf9f8;
  --text: #17181a;
  --muted: #696b71;
  --line: #e7e7e9;
  --brand: #e53f32;
  --brand-dark: #c93228;
  --brand-soft: #fff0ee;
  --success: #20a467;
  --shadow-sm: 0 12px 35px rgba(17, 18, 20, .07);
  --shadow-lg: 0 24px 80px rgba(17, 18, 20, .11);
  --content: 1320px;
}

* { box-sizing: border-box; }
html { min-height: 100%; scroll-behavior: smooth; background: var(--surface-warm); }
body {
  margin: 0;
  min-height: 100%;
  color: var(--text);
  background: var(--surface-warm);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: inherit; }
svg { display: block; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

.booking-body { min-height: 100vh; overflow-x: hidden; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  height: 78px;
  background: rgba(255, 255, 255, .92);
  border-bottom: 1px solid rgba(17, 18, 20, .08);
  backdrop-filter: blur(18px);
}
.site-header-inner {
  width: min(var(--content), calc(100% - 40px));
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand-link {
  width: 244px;
  height: 56px;
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  text-decoration: none;
}
.brand-link img {
  width: 224px;
  height: auto;
  max-height: 46px;
  object-fit: contain;
  object-position: left center;
  display: block;
}
.header-actions { display: flex; align-items: center; gap: 10px; }
.header-booking-link,
.team-login {
  min-height: 44px;
  padding: 10px 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
  transition: transform .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
}
.header-booking-link { color: #fff; background: var(--brand); border: 1px solid var(--brand); }
.header-booking-link:hover { transform: translateY(-1px); background: var(--brand-dark); border-color: var(--brand-dark); }
.team-login { color: var(--ink); background: #fff; border: 1px solid #dcdcdf; }
.team-login svg { width: 16px; height: 16px; }
.team-login:hover { transform: translateY(-1px); color: var(--brand); border-color: #efaaa4; background: var(--brand-soft); }

.hero-section {
  position: relative;
  isolation: isolate;
  min-height: 610px;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 72% 18%, rgba(229, 63, 50, .19), transparent 31%),
    linear-gradient(125deg, #0e0f11 0%, #17191c 58%, #0d0e10 100%);
}
.hero-grid {
  position: absolute;
  inset: 0;
  z-index: -3;
  opacity: .16;
  background-image:
    linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.9), transparent 95%);
}
.hero-glow { position: absolute; z-index: -2; border-radius: 50%; filter: blur(2px); pointer-events: none; }
.hero-glow-one { width: 460px; height: 460px; right: -160px; top: -150px; background: rgba(229, 63, 50, .09); border: 1px solid rgba(229, 63, 50, .14); }
.hero-glow-two { width: 300px; height: 300px; left: -140px; bottom: -160px; background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.07); }
.hero-inner {
  width: min(var(--content), calc(100% - 40px));
  min-height: 610px;
  margin: 0 auto;
  padding: 78px 0 72px;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(360px, .75fr);
  align-items: center;
  gap: 84px;
}
.hero-copy { max-width: 790px; }
.hero-kicker {
  margin-bottom: 24px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.72);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .14em;
}
.hero-kicker-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--brand); box-shadow: 0 0 0 6px rgba(229, 63, 50, .14); }
.hero-copy h1 {
  margin: 0;
  max-width: 840px;
  color: #fff;
  font-size: clamp(46px, 5.3vw, 78px);
  line-height: .98;
  letter-spacing: -.055em;
  font-weight: 820;
}
.hero-copy h1 span { color: var(--brand); }
.hero-copy > p {
  margin: 30px 0 0;
  max-width: 710px;
  color: rgba(255,255,255,.67);
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.72;
}
.hero-actions { margin-top: 36px; display: flex; align-items: center; flex-wrap: wrap; gap: 14px; }
.primary-cta {
  min-height: 54px;
  padding: 13px 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  color: #fff;
  background: var(--brand);
  border: 1px solid var(--brand);
  border-radius: 999px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 850;
  box-shadow: 0 14px 35px rgba(229, 63, 50, .23);
  transition: transform .2s ease, background .2s ease;
}
.primary-cta svg { width: 18px; height: 18px; transition: transform .2s ease; }
.primary-cta:hover { transform: translateY(-2px); background: #ef4b3e; }
.primary-cta:hover svg { transform: translateX(3px); }
.timezone-pill {
  min-height: 54px;
  padding: 13px 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.75);
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 999px;
  background: rgba(255,255,255,.05);
  font-size: 13px;
  font-weight: 700;
}
.timezone-pill svg { width: 18px; height: 18px; color: var(--brand); }

.hero-side {
  position: relative;
  padding: 26px;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 28px;
  background: linear-gradient(160deg, rgba(255,255,255,.09), rgba(255,255,255,.035));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 30px 70px rgba(0,0,0,.22);
  backdrop-filter: blur(14px);
}
.hero-side::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 32px;
  width: 84px;
  height: 3px;
  border-radius: 999px;
  background: var(--brand);
}
.hero-side-label { margin-bottom: 20px; color: rgba(255,255,255,.48); font-size: 11px; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.process-list { display: grid; gap: 3px; }
.process-item {
  padding: 18px 8px;
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: start;
  gap: 14px;
  border-bottom: 1px solid rgba(255,255,255,.09);
}
.process-item:last-child { border-bottom: 0; }
.process-number { color: var(--brand); font-size: 13px; font-weight: 900; letter-spacing: .08em; }
.process-item div { display: grid; gap: 7px; }
.process-item strong { color: #fff; font-size: 16px; }
.process-item small { color: rgba(255,255,255,.55); font-size: 13px; line-height: 1.5; }

.marketplaces-section,
.booking-section {
  width: min(var(--content), calc(100% - 40px));
  margin: 0 auto;
}
.marketplaces-section { padding: 72px 0 66px; }
.section-heading {
  margin-bottom: 30px;
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(360px, .65fr);
  align-items: end;
  justify-content: space-between;
  gap: 70px;
}
.section-eyebrow { display: block; margin-bottom: 10px; color: var(--brand); font-size: 11px; font-weight: 900; letter-spacing: .15em; }
.section-heading h2,
.booking-section-heading h2 { margin: 0; color: var(--ink); font-size: clamp(31px, 4vw, 48px); line-height: 1.04; letter-spacing: -.04em; }
.section-heading p,
.booking-section-heading p { margin: 0; color: var(--muted); font-size: 15px; line-height: 1.75; }
.marketplace-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}
.marketplace-card {
  position: relative;
  min-width: 0;
  height: 92px;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 8px 26px rgba(17,18,20,.045);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.marketplace-card::after {
  content: "";
  position: absolute;
  left: 20%;
  right: 20%;
  bottom: -1px;
  height: 2px;
  border-radius: 999px;
  background: var(--brand);
  opacity: 0;
  transition: opacity .2s ease, left .2s ease, right .2s ease;
}
.marketplace-card:hover { transform: translateY(-4px); border-color: #e7bab6; box-shadow: 0 16px 36px rgba(17,18,20,.08); }
.marketplace-card:hover::after { left: 10%; right: 10%; opacity: 1; }
.marketplace-card span {
  max-width: 100%;
  overflow: hidden;
  color: #242528;
  font-size: clamp(14px, 1.15vw, 17px);
  font-weight: 820;
  line-height: 1;
  letter-spacing: .01em;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.booking-section { padding: 20px 0 80px; scroll-margin-top: 92px; }
.booking-section-heading {
  margin-bottom: 24px;
  padding: 0 4px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
}
.booking-section-heading p { margin-top: 12px; }
.booking-status {
  min-height: 42px;
  padding: 10px 14px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  flex: 0 0 auto;
  color: #4c5057;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  font-size: 13px;
  font-weight: 750;
  box-shadow: 0 8px 22px rgba(17,18,20,.04);
}
.status-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--success); box-shadow: 0 0 0 5px rgba(32,164,103,.11); }
.booking-frame-card {
  position: relative;
  min-height: 790px;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow-lg);
}
.booking-frame {
  width: 100%;
  height: min(920px, calc(100vh - 120px));
  min-height: 790px;
  display: block;
  border: 0;
  background: #fff;
  opacity: 0;
  transition: opacity .25s ease;
}
.booking-frame.is-ready { opacity: 1; }

/* Google ekranının solundaki boş alanda kurumsal imza; tarih satırının üstünü kapatmaz. */
.booking-google-brand-cover {
  position: absolute;
  top: 104px;
  left: 18px;
  z-index: 5;
  width: 210px;
  height: 76px;
  padding: 9px 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  background: rgba(255,255,255,.97);
  border: 1px solid #e5e5e7;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(17,18,20,.09);
}
.booking-google-brand-cover img {
  width: 150px;
  height: auto;
  max-height: 58px;
  object-fit: contain;
  display: block;
}
.booking-loading {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  color: var(--muted);
  background: #fff;
  transition: opacity .25s ease, visibility .25s ease;
}
.booking-loading.is-hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.booking-loading > div { display: grid; gap: 4px; }
.booking-loading strong { color: var(--ink); font-size: 14px; }
.booking-loading small { font-size: 12px; }
.booking-spinner { width: 27px; height: 27px; border: 3px solid #ededee; border-top-color: var(--brand); border-radius: 50%; animation: booking-spin .75s linear infinite; }
@keyframes booking-spin { to { transform: rotate(360deg); } }
.booking-fallback,
.booking-mobile-fallback { margin-top: 14px; padding: 13px 15px; border: 1px solid var(--line); border-radius: 14px; color: var(--muted); background: #fff; font-size: 13px; text-align: center; }
.booking-fallback a,
.booking-mobile-fallback a { color: var(--brand); font-weight: 800; }
.booking-mobile-fallback { display: none; }

.site-footer { padding: 0 20px 28px; background: var(--surface-warm); }
.site-footer-inner {
  width: min(var(--content), 100%);
  margin: 0 auto;
  padding: 28px 0 0;
  display: grid;
  grid-template-columns: 140px 1fr auto;
  align-items: center;
  gap: 28px;
  border-top: 1px solid var(--line);
}
.site-footer img { width: 132px; height: auto; display: block; }
.site-footer p { margin: 0; color: var(--muted); font-size: 13px; }
.site-footer span { color: #85878c; font-size: 12px; }

@media (max-width: 1100px) {
  .hero-inner { grid-template-columns: minmax(0, 1fr) 350px; gap: 46px; }
  .marketplace-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .section-heading { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 840px) {
  .site-header { height: 70px; }
  .site-header-inner { width: min(100% - 28px, var(--content)); }
  .brand-link { width: 205px; height: 50px; }
  .brand-link img { width: 188px; max-height: 40px; }
  .header-booking-link { display: none; }
  .hero-inner { min-height: auto; padding: 62px 0 58px; grid-template-columns: 1fr; gap: 42px; }
  .hero-copy h1 { font-size: clamp(42px, 9vw, 64px); }
  .hero-side { max-width: 620px; }
  .section-heading { grid-template-columns: 1fr; gap: 18px; }
  .section-heading p { max-width: 680px; }
  .booking-section-heading { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 640px) {
  .site-header-inner,
  .hero-inner,
  .marketplaces-section,
  .booking-section { width: calc(100% - 28px); }
  .site-header { height: 66px; }
  .brand-link { width: 164px; }
  .brand-link img { width: 150px; max-height: 34px; }
  .team-login { min-height: 39px; padding: 8px 13px; font-size: 12px; }
  .hero-section { min-height: auto; }
  .hero-inner { padding: 52px 0 48px; gap: 34px; }
  .hero-kicker { margin-bottom: 18px; font-size: 10px; }
  .hero-copy h1 { font-size: clamp(38px, 12vw, 54px); line-height: 1.01; }
  .hero-copy > p { margin-top: 23px; font-size: 15px; line-height: 1.65; }
  .hero-actions { margin-top: 28px; align-items: stretch; flex-direction: column; }
  .primary-cta, .timezone-pill { width: 100%; justify-content: center; }
  .hero-side { padding: 20px; border-radius: 22px; }
  .process-item { grid-template-columns: 42px 1fr; padding: 15px 4px; }
  .marketplaces-section { padding: 50px 0 48px; }
  .section-heading h2, .booking-section-heading h2 { font-size: 34px; }
  .marketplace-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .marketplace-card { height: 74px; border-radius: 15px; }
  .marketplace-card span { font-size: 14px; }
  .booking-section { padding: 10px 0 52px; scroll-margin-top: 76px; }
  .booking-status { min-height: 38px; padding: 8px 12px; }
  .booking-frame-card { min-height: 730px; border-radius: 18px; }
  .booking-frame { height: 760px; min-height: 730px; }
  .booking-google-brand-cover { display: none; }
  .booking-mobile-fallback { display: block; }
  .site-footer { padding: 0 14px 20px; }
  .site-footer-inner { padding-top: 22px; grid-template-columns: 110px 1fr; gap: 18px; }
  .site-footer img { width: 104px; }
  .site-footer p { font-size: 12px; }
  .site-footer span { grid-column: 1 / -1; }
}

@media (max-width: 380px) {
  .site-header-inner { width: calc(100% - 20px); }
  .brand-link { width: 146px; }
  .brand-link img { width: 134px; max-height: 31px; }
  .team-login svg { display: none; }
  .hero-copy h1 { font-size: 36px; }
  .marketplaces-section,
  .booking-section { width: calc(100% - 20px); }
  .marketplace-grid { grid-template-columns: 1fr; }
  .marketplace-card { height: 66px; }

}
