/* ============================================================
   ipekkirpikci.com — Homepage stylesheet
   Bölümler:
   0. Design tokens & base
   1. Reusable components (buttons, badges, section heads, carousel)
   2. Top bar
   3. Navbar
   4. Hero + search panel
   5. Stats row
   6. Cities
   7. How it works
   8. Districts
   9. Services
   10. Trust strip
   11. Instagram / testimonial
   12. Newsletter
   13. Footer
   14. Responsive
============================================================= */

/* ===========================================================
   0. DESIGN TOKENS & BASE
=========================================================== */
:root {
  --pink:          #f65f86;
  --pink-strong:   #f04476;
  --pink-light:    #ff8aab;
  --pink-grad:     linear-gradient(135deg, #ff6f94 0%, #f04476 100%);
  --pink-grad-hov: linear-gradient(135deg, #fa5c84 0%, #e0356a 100%);

  /* Altın = yalnızca ÜCRETLİ/öne çıkan yerleşim (pembe marka/güven, altın premium) */
  --gold:        #c79a3b;
  --gold-line:   #ebd29a;
  --gold-grad:   linear-gradient(135deg, #f7e4a8 0%, #e0bd63 55%, #c79a3b 100%);
  --gold-bg:     #fdf7e8;

  --dark:        #171717;
  --black:       #111111;
  --text:        #151515;
  --muted:       #6f6f6f;

  --offwhite:    #fffafa;
  --pink-bg:     #fff1f4;
  --pink-bg-2:   #fff6f8;

  --border:      #f0e6e9;

  --shadow-sm:   0 6px 20px rgba(15, 15, 15, .06);
  --shadow-md:   0 10px 30px rgba(15, 15, 15, .08);
  --shadow-lg:   0 24px 60px rgba(15, 15, 15, .10);
  --shadow-pink: 0 18px 40px rgba(246, 95, 134, .28);

  --radius:      18px;
  --radius-lg:   22px;
  --radius-sm:   14px;

  --serif:  "Playfair Display", Georgia, serif;
  --sans:   "Poppins", system-ui, -apple-system, sans-serif;

  --container-max: 1200px;
}

* { box-sizing: border-box; }

/* overflow-x: clip (hidden değil) — yatay taşmayı kırpar ama position:sticky'yi bozmaz */
html { scroll-behavior: smooth; overflow-x: clip; }
/* sabit header altında kalmasın diye anchor/section hedef ofseti */
:target { scroll-margin-top: 92px; }

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--text);
  background: #ffffff;
  font-size: 15px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

a { text-decoration: none; color: inherit; transition: color .25s ease; }
img { max-width: 100%; display: block; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4 { font-family: var(--serif); color: var(--text); margin: 0; }
p { margin: 0; }

.container { max-width: var(--container-max); }

/* Section spacing */
.section-pad     { padding: 96px 0; }
.section-pad-sm  { padding: 64px 0; }

/* ===========================================================
   1. REUSABLE COMPONENTS
=========================================================== */

/* --- Buttons --- */
.btn {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 14.5px;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
}
.btn:focus-visible { outline: 3px solid rgba(246, 95, 134, .4); outline-offset: 2px; }

.btn-pink {
  background: var(--pink-grad);
  color: #fff;
  border-radius: 999px;
  padding: 13px 26px;
  box-shadow: var(--shadow-pink);
}
.btn-pink:hover {
  background: var(--pink-grad-hov);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 22px 46px rgba(240, 68, 118, .36);
}

.btn-outline-pink {
  background: #fff;
  color: var(--pink-strong);
  border: 1.6px solid rgba(246, 95, 134, .5);
  border-radius: 999px;
  padding: 12px 26px;
}
.btn-outline-pink:hover {
  background: var(--pink-grad);
  color: #fff;
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: var(--shadow-pink);
}

.btn-pill { border-radius: 999px; }

/* --- Pill badge (hero) --- */
.pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #fff;
  color: var(--pink-strong);
  font-weight: 600;
  font-size: 13px;
  padding: 8px 16px;
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 22px;
}
.pill-badge i { color: var(--pink); }

/* --- Section heads --- */
.section-head { margin-bottom: 46px; }
.section-label {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  font-size: 12px;
  font-weight: 600;
  color: var(--pink-strong);
  margin-bottom: 14px;
}
.section-title {
  font-size: 38px;
  font-weight: 700;
  line-height: 1.18;
}
.section-sub {
  color: var(--muted);
  font-size: 15px;
  margin-top: 12px;
  max-width: 560px;
}
.section-head.text-center .section-sub { margin-left: auto; margin-right: auto; }

.section-head--split {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
}
.section-head--inline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}
.section-head--inline .services__sub { margin: 0; padding-bottom: 4px; }

/* --- Carousel wrapper + arrows --- */
.carousel-wrap { position: relative; }

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 6;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  background: #fff;
  color: var(--text);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  cursor: pointer;
  transition: all .25s ease;
}
.carousel-arrow:hover {
  background: var(--pink-grad);
  color: #fff;
  border-color: transparent;
  box-shadow: var(--shadow-pink);
}
.carousel-arrow--prev { left: -22px; }
.carousel-arrow--next { right: -22px; background: var(--pink-grad); color: #fff; border-color: transparent; box-shadow: var(--shadow-pink); }
.carousel-arrow--next:hover { background: var(--pink-grad-hov); }
.carousel-arrow.swiper-button-disabled { opacity: .4; cursor: default; }

/* ===========================================================
   2. TOP BAR
=========================================================== */
.topbar {
  background: var(--black);
  color: #cfcfcf;
  font-size: 12.5px;
}
.topbar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 38px;
  padding: 6px 0;
}
.topbar__left { display: flex; align-items: center; gap: 8px; margin: 0; }
.topbar__msg--short { display: none; }
.topbar__pin { color: var(--pink); font-size: 14px; }
.topbar__right { display: flex; align-items: center; gap: 16px; }
.topbar__follow { color: #b9b9b9; }
.topbar__social { display: flex; gap: 12px; align-items: center; }
.topbar__social a { color: #cfcfcf; font-size: 14px; }
.topbar__social a:hover { color: var(--pink); }
.topbar__divider { width: 1px; height: 16px; background: rgba(255,255,255,.18); }
.topbar__phone { display: flex; align-items: center; gap: 7px; color: #fff; font-weight: 500; }
.topbar__phone i { color: var(--pink); }
.topbar__phone:hover { color: var(--pink); }

/* ===========================================================
   3. NAVBAR
=========================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  border-bottom: 1px solid var(--border);
  transition: box-shadow .3s ease;
}
.site-header.is-scrolled { box-shadow: var(--shadow-sm); }
.site-header .navbar { padding: 0; }
.site-header .navbar > .container { min-height: 80px; }

/* Brand / logo */
.brand { display: flex; align-items: center; gap: 12px; }
.brand__icon {
  display: grid;
  place-items: center;
  width: 48px; height: 48px;
  border-radius: 14px;
  background: var(--pink-bg);
}
.brand__text { display: flex; flex-direction: column; line-height: 1.1; }
.brand__name {
  font-family: var(--serif);
  font-weight: 800;
  font-size: 21px;
  color: var(--text);
  letter-spacing: -.2px;
}
.brand__name--pink { color: var(--pink-strong); }
.brand__slogan { font-size: 10.5px; color: var(--muted); font-weight: 400; letter-spacing: .3px; }

/* Menu */
.main-menu { gap: 4px; }
.main-menu .nav-link {
  font-size: 14.5px;
  font-weight: 500;
  color: #2a2a2a;
  padding: 10px 15px;
  position: relative;
  white-space: nowrap;
}
.main-menu .nav-link:hover { color: var(--pink-strong); }
/* Laptop aralığında (992–1199) başlığı tek satırda tut: aralıkları daralt */
@media (min-width: 992px) and (max-width: 1199.98px) {
  /* Bu aralıkta tam menü sığmıyor → hamburger menü + sabit alt CTA çubuğu aktif.
     Marka tam boyutta kalır (yeterli alan var). */
  body { padding-bottom: calc(82px + env(safe-area-inset-bottom, 0px)); }
  .topbar__follow, .topbar__divider { display: none; }
  .navbar-toggler {
    order: 3;
    width: 46px; height: 46px;
    display: inline-flex; align-items: center; justify-content: center;
  }
}
.main-menu .nav-link.active { color: var(--pink-strong); font-weight: 600; }
.main-menu .nav-link.active::after {
  content: "";
  position: absolute;
  left: 15px; right: 15px; bottom: 2px;
  height: 2px;
  background: var(--pink-grad);
  border-radius: 2px;
}

.btn-appointment { padding: 12px 24px; white-space: nowrap; }
/* Salon Girişi — Randevu Al ile eşleşen ikincil "outline pill" */
.header-login {
  color: var(--pink-strong); font-weight: 600; font-size: 14px;
  padding: 9px 17px; border-radius: 999px; white-space: nowrap;
  display: inline-flex; align-items: center; gap: 7px; margin-right: 9px;
  border: 1.5px solid var(--border); background: #fff;
  transition: color .2s ease, border-color .2s ease, background .2s ease, box-shadow .2s ease, transform .2s ease;
}
.header-login:hover { color: var(--pink-strong); border-color: var(--pink); background: var(--pink-bg-2); box-shadow: var(--shadow-sm); transform: translateY(-1px); }
.header-login i { font-size: 15px; color: var(--pink-strong); }

.navbar-toggler {
  border: 1px solid var(--border);
  font-size: 22px;
  color: var(--pink-strong);
  padding: 4px 10px;
  border-radius: 10px;
}
.navbar-toggler:focus { box-shadow: none; }

/* ===========================================================
   4. HERO + SEARCH PANEL
=========================================================== */
.hero {
  position: relative;
  padding-top: 56px;
  padding-bottom: 64px;
  overflow: hidden;
  background: linear-gradient(120deg, #fff6f8 0%, #fff1f4 42%, #ffeef2 100%);
}
.hero__bg {
  position: absolute;
  inset: 0 0 0 36%;
  background-image: url("https://images.unsplash.com/photo-1616683693504-3ea7e9ad6fec?auto=format&fit=crop&w=1300&q=80");
  background-size: cover;
  background-position: center 28%;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 30%);
  mask-image: linear-gradient(90deg, transparent 0, #000 30%);
  z-index: 0;
}

.hero__container { position: relative; z-index: 2; }
.hero__content { max-width: 560px; }

.hero__title {
  font-size: 60px;
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -.5px;
  margin-bottom: 22px;
}
.hero__title--pink { color: var(--pink-strong); position: relative; }
.hero__title-spark { font-size: 30px; color: var(--pink); margin-left: 6px; vertical-align: middle; }

.hero__lead {
  font-size: 16px;
  color: #4a4a4a;
  max-width: 430px;
}

/* Floating quality badge */
.hero__quality-badge {
  position: absolute;
  right: 6%;
  top: 150px;
  z-index: 3;
  width: 116px; height: 116px;
  border-radius: 50%;
  background: rgba(255,255,255,.82);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(246,95,134,.18);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.hero__quality-badge i { color: var(--pink); font-size: 18px; margin-bottom: 2px; }
.hero__quality-badge strong { font-family: var(--serif); font-size: 22px; color: var(--text); }
.hero__quality-badge span { font-size: 11px; color: var(--muted); line-height: 1.2; }

/* Search panel */
.search-panel {
  position: relative;
  z-index: 4;
  margin-top: 44px;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 14px;
  display: flex;
  align-items: stretch;
  gap: 6px;
}
.search-panel::before {
  content: "";
  position: absolute;
  left: -6px; top: 28px; bottom: 28px;
  width: 6px;
  border-radius: 6px;
  background: var(--pink-grad);
}
.search-panel__field {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  border-radius: var(--radius-sm);
  transition: background .2s ease;
}
.search-panel__field:hover { background: var(--pink-bg-2); }
.search-panel__icon {
  font-size: 20px;
  color: var(--pink);
  flex-shrink: 0;
}
.search-panel__select { display: flex; flex-direction: column; width: 100%; }
.search-panel__select label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 1px;
}
.search-panel__select select {
  border: none;
  background: transparent;
  font-family: var(--sans);
  font-size: 13px;
  color: var(--muted);
  padding: 0;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  outline: none;
  width: 100%;
}
.search-panel__sep { width: 1px; background: var(--border); margin: 14px 0; flex-shrink: 0; }
.search-panel__submit {
  flex-shrink: 0;
  padding: 0 34px;
  border-radius: var(--radius-sm);
  font-size: 15px;
}

/* ===========================================================
   5. STATS ROW
=========================================================== */
.stats {
  background: #fff;
  padding: 30px 0 38px;
}
.stats__row {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}
.stats__item {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
  min-width: 160px;
}
.stats__item i { font-size: 30px; color: var(--pink); }
.stats__text { display: flex; flex-direction: column; line-height: 1.1; }
.stats__text strong { font-family: var(--serif); font-size: 26px; font-weight: 700; color: var(--text); }
.stats__text span { font-size: 13px; color: var(--muted); }

/* ===========================================================
   6. CITIES
=========================================================== */
.cities {
  position: relative;
  background: linear-gradient(180deg, #fff 0%, #fffafb 100%);
  overflow: hidden;
}
/* soft dotted turkey map decoration */
.cities__map {
  position: absolute;
  top: 120px; left: 50%;
  transform: translateX(-50%);
  width: 760px; height: 360px;
  background-image: radial-gradient(rgba(246,95,134,.16) 1.4px, transparent 1.6px);
  background-size: 14px 14px;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 90'%3E%3Cpath d='M12 46c8-10 22-9 34-13 10-3 18-12 30-13 14-1 22 8 36 6 12-2 20-12 34-10 12 2 16 14 28 16 10 2 18-4 14 8-3 9-16 8-22 16-6 8-2 18-12 22-9 4-16-4-26-3-12 1-18 12-30 11-10-1-14-12-26-12-10 0-16 8-26 6-9-2-10-14-18-18-7-3-18 2-22-6-3-6 4-12 4-16z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 90'%3E%3Cpath d='M12 46c8-10 22-9 34-13 10-3 18-12 30-13 14-1 22 8 36 6 12-2 20-12 34-10 12 2 16 14 28 16 10 2 18-4 14 8-3 9-16 8-22 16-6 8-2 18-12 22-9 4-16-4-26-3-12 1-18 12-30 11-10-1-14-12-26-12-10 0-16 8-26 6-9-2-10-14-18-18-7-3-18 2-22-6-3-6 4-12 4-16z'/%3E%3C/svg%3E");
  -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat;
  -webkit-mask-size: contain; mask-size: contain;
  opacity: .9;
  z-index: 0;
}

.city-card {
  position: relative;
  display: block;
  height: 250px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background-image: var(--img);
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow-sm);
  transition: transform .3s ease, box-shadow .3s ease;
}
.city-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.city-card__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 38%, rgba(0,0,0,.78) 100%);
}
.city-card__body {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 16px;
  text-align: center;
  color: #fff;
}
.city-card__name { font-size: 20px; font-weight: 700; color: #fff; }
.city-card__count { font-size: 12.5px; color: rgba(255,255,255,.85); margin: 2px 0 12px; }
.city-card__btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  color: var(--text);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 999px;
  transition: all .25s ease;
}
.city-card__btn i { color: var(--pink-strong); transition: transform .25s ease; }
.city-card:hover .city-card__btn { background: var(--pink-grad); color: #fff; }
.city-card:hover .city-card__btn i { color: #fff; transform: translateX(3px); }

/* ===========================================================
   7. HOW IT WORKS
=========================================================== */
.how {
  background: linear-gradient(180deg, #fff6f8 0%, #fff1f4 100%);
}
.how__title { font-size: 40px; margin: 6px 0 14px; }
.how__sub { margin-bottom: 26px; }

.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  position: relative;
}
/* dotted connectors */
.steps::before {
  content: "";
  position: absolute;
  top: 44px; left: 16%; right: 16%;
  border-top: 2px dashed rgba(246,95,134,.4);
  z-index: 0;
}
.step {
  position: relative;
  text-align: center;
  padding: 0 8px;
  z-index: 1;
}
.step__icon {
  width: 88px; height: 88px;
  border-radius: 50%;
  margin: 0 auto 10px;
  display: grid;
  place-items: center;
  font-size: 32px;
  color: var(--pink-strong);
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.step__icon--filled {
  background: var(--pink-grad);
  color: #fff;
  border-color: transparent;
  box-shadow: var(--shadow-pink);
}
.step__num {
  display: grid;
  place-items: center;
  width: 26px; height: 26px;
  margin: -22px auto 16px;
  position: relative;
  border-radius: 50%;
  background: var(--dark);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  font-family: var(--sans);
  border: 3px solid var(--pink-bg);
}
.step__title { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.step__desc { font-size: 13.5px; color: var(--muted); }

/* ===========================================================
   8. DISTRICTS
=========================================================== */
.districts { background: #fff; }

.district-card {
  position: relative;
  display: block;
  height: 200px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background-image: var(--img);
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow-sm);
  transition: transform .3s ease, box-shadow .3s ease;
}
.district-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.district-card__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.05) 30%, rgba(0,0,0,.8) 100%);
}
.district-card__badge {
  position: absolute;
  top: 12px; left: 12px;
  z-index: 2;
  background: var(--pink-grad);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 999px;
  box-shadow: var(--shadow-pink);
}
.district-card__body {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 14px;
  text-align: center;
  color: #fff;
}
.district-card__name { font-size: 18px; font-weight: 700; color: #fff; }
.district-card__count { font-size: 12px; color: rgba(255,255,255,.85); margin: 2px 0 10px; }
.district-card__btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--pink-grad);
  color: #fff;
  font-size: 12.5px;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 999px;
  transition: all .25s ease;
}
.district-card__btn i { transition: transform .25s ease; }
.district-card:hover .district-card__btn i { transform: translateX(3px); }

/* ===========================================================
   9. SERVICES
=========================================================== */
.services { background: linear-gradient(180deg, #fffafb 0%, #fff6f8 100%); }

.service-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 26px;
  height: 100%;
  min-height: 200px;
  box-shadow: var(--shadow-sm);
  transition: transform .3s ease, box-shadow .3s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.service-card__icon {
  display: grid;
  place-items: center;
  width: 56px; height: 56px;
  border-radius: 14px;
  background: var(--pink-bg);
  color: var(--pink-strong);
  font-size: 26px;
  margin-bottom: 20px;
}
.service-card__title { font-size: 19px; font-weight: 700; margin-bottom: 10px; }
.service-card__desc { font-size: 13.5px; color: var(--muted); margin-bottom: 18px; }
.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--pink-strong);
  font-weight: 600;
  font-size: 13.5px;
}
.service-card__link i { transition: transform .25s ease; }
.service-card__link:hover { color: var(--pink-strong); }
.service-card__link:hover i { transform: translateX(4px); }

/* ===========================================================
   10. TRUST STRIP
=========================================================== */
.trust { background: #fff; }
.trust__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.trust__image img { width: 100%; height: 280px; object-fit: cover; }

.feature-card {
  background: var(--pink-bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 24px;
  height: 100%;
  text-align: center;
  transition: transform .3s ease, box-shadow .3s ease;
}
.feature-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.feature-card__icon {
  display: grid;
  place-items: center;
  width: 58px; height: 58px;
  border-radius: 50%;
  margin: 0 auto 18px;
  background: #fff;
  color: var(--pink-strong);
  font-size: 26px;
  box-shadow: var(--shadow-sm);
}
.feature-card__title { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.feature-card__desc { font-size: 13px; color: var(--muted); }

/* ===========================================================
   11. INSTAGRAM / TESTIMONIAL
=========================================================== */
.insta { background: linear-gradient(180deg, #fff6f8 0%, #fffafb 100%); }
.insta__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  height: 100%;
}
.insta__item {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 1 / 1.25;
  background-image: var(--img);
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow-sm);
  transition: transform .3s ease, box-shadow .3s ease;
}
.insta__item::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(246,95,134,0) 55%, rgba(240,68,118,.35) 100%);
  opacity: 0;
  transition: opacity .3s ease;
}
.insta__item:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.insta__item:hover::after { opacity: 1; }
.insta__icon {
  position: absolute;
  top: 10px; right: 10px;
  z-index: 2;
  width: 30px; height: 30px;
  border-radius: 9px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.9);
  color: var(--pink-strong);
  font-size: 15px;
}

.testimonial {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 28px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: var(--shadow-sm);
}
.testimonial__title { font-size: 22px; font-weight: 700; margin-bottom: 14px; }
.testimonial__rating { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.testimonial__stars { color: #ffb13d; font-size: 14px; }
.testimonial__score { font-size: 13px; font-weight: 600; color: var(--text); }
.testimonial__score em { color: var(--muted); font-weight: 400; font-style: normal; }
.testimonial__quote { font-size: 14.5px; color: #444; line-height: 1.7; margin-bottom: 14px; }
.testimonial__author { font-weight: 600; font-size: 14px; color: var(--pink-strong); }

/* ===========================================================
   12. NEWSLETTER
=========================================================== */
.newsletter { padding: 20px 0 90px; }
.newsletter__card {
  background: linear-gradient(135deg, #1c1c1c 0%, #111111 100%);
  border-radius: 24px;
  padding: 40px 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  box-shadow: 0 30px 70px rgba(15,15,15,.25);
}
.newsletter__info { display: flex; align-items: center; gap: 22px; }
.newsletter__icon {
  flex-shrink: 0;
  width: 64px; height: 64px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: var(--pink-grad);
  color: #fff;
  font-size: 28px;
  box-shadow: var(--shadow-pink);
}
.newsletter__title { color: #fff; font-size: 26px; font-weight: 700; margin-bottom: 6px; }
.newsletter__text { color: #b6b6b6; font-size: 14px; max-width: 380px; }

.newsletter__form { display: flex; gap: 10px; flex-shrink: 0; }
.newsletter__form input {
  border: none;
  border-radius: 999px;
  padding: 14px 24px;
  width: 280px;
  font-family: var(--sans);
  font-size: 14px;
  background: #fff;
  color: var(--text);
  outline: none;
}
.newsletter__form input::placeholder { color: #9a9a9a; }
.newsletter__form .btn { white-space: nowrap; }

/* ===========================================================
   13. FOOTER
=========================================================== */
.footer {
  background: var(--black);
  color: #b6b6b6;
  padding: 70px 0 0;
}
.footer__top { padding-bottom: 50px; }
.brand--footer .brand__icon { background: rgba(255,255,255,.06); }
.brand--footer .brand__name { color: #fff; }
.brand--footer .brand__slogan { color: #8c8c8c; }

.footer__about { font-size: 13.5px; color: #9a9a9a; margin: 20px 0 22px; max-width: 320px; }
.footer__social { display: flex; gap: 10px; }
.footer__social a {
  width: 38px; height: 38px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.07);
  color: #cfcfcf;
  font-size: 15px;
  transition: all .25s ease;
}
.footer__social a:hover { background: var(--pink-grad); color: #fff; transform: translateY(-3px); }

.footer__heading {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 20px;
}
.footer__links li { margin-bottom: 11px; }
.footer__links a { font-size: 13.5px; color: #9a9a9a; }
.footer__links a:hover { color: var(--pink); padding-left: 4px; }

.footer__cta-text { font-size: 13px; color: #9a9a9a; margin-bottom: 18px; }
.btn-sm-cta { padding: 11px 18px; font-size: 13px; }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 13px;
  color: #8c8c8c;
}
.footer__bottom p { margin: 0; }
.footer__made i { color: var(--pink); }

/* ===========================================================
   13b. MOBILE OFF-CANVAS DRAWER (premium slide-in menu)
=========================================================== */
.mobile-nav { --bs-offcanvas-width: min(86vw, 360px); }
.mobile-nav.offcanvas { background: #fff; box-shadow: -24px 0 70px rgba(15, 15, 15, .20); }

/* Header: logo (left) ↔ close (right), comfortable gap */
.mobile-nav__header {
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 18px;
  border-bottom: 1px solid var(--border);
}
.brand--drawer { gap: 11px; min-width: 0; }
.brand--drawer .brand__icon { width: 44px; height: 44px; flex: 0 0 auto; }
.brand--drawer .brand__name { font-size: 18px; }
.brand--drawer .brand__text { min-width: 0; }

.mobile-nav__close {
  flex: 0 0 auto;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--pink-bg);
  color: var(--pink-strong);
  font-size: 17px;
  display: grid; place-items: center;
  transition: all .2s ease;
}
.mobile-nav__close:hover,
.mobile-nav__close:active { background: var(--pink-grad); color: #fff; border-color: transparent; }

.mobile-nav__body {
  display: flex;
  flex-direction: column;
  padding: 16px 16px calc(18px + env(safe-area-inset-bottom, 0px));
}

/* Large tappable menu rows */
.mobile-nav .mobile-menu { width: 100%; gap: 2px; margin: 0; padding: 0; list-style: none; }
.mobile-nav .nav-item { width: 100%; }
.mobile-nav .nav-link {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  padding: 13px 12px;
  border-radius: 14px;
  font-size: 15.5px;
  font-weight: 500;
  color: #242424;
}
.mobile-nav .nav-link span { flex: 1; }
.mobile-nav .mnav-ico {
  width: 40px; height: 40px;
  border-radius: 12px;
  background: var(--pink-bg);
  color: var(--pink-strong);
  display: grid; place-items: center;
  font-size: 18px;
  flex: 0 0 auto;
  transition: all .2s ease;
}
.mobile-nav .mnav-chev { color: #cfc6ca; font-size: 13px; flex: 0 0 auto; }
.mobile-nav .nav-link.active,
.mobile-nav .nav-link:active { background: var(--pink-bg-2); color: var(--pink-strong); }
.mobile-nav .nav-link.active .mnav-ico { background: var(--pink-grad); color: #fff; box-shadow: var(--shadow-pink); }
.mobile-nav .nav-link.active::after { display: none; }

/* Drawer footer: CTA + contact (drawer'ın altına sabitlenir) */
.mobile-nav__footer {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.mobile-nav__cta { justify-content: center; width: 100%; padding: 14px; font-size: 15px; }
.mobile-nav__cta--ghost { box-shadow: none; }
.mobile-nav__phone {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  font-weight: 600; color: var(--text); font-size: 15px; padding: 2px;
}
.mobile-nav__phone i { color: var(--pink-strong); }
.mobile-nav__social { display: flex; justify-content: center; gap: 12px; margin-top: 2px; }
.mobile-nav__social a {
  width: 44px; height: 44px; border-radius: 13px;
  display: grid; place-items: center;
  background: var(--pink-bg); color: var(--pink-strong); font-size: 18px;
  transition: all .2s ease;
}
.mobile-nav__social a:hover,
.mobile-nav__social a:active { background: var(--pink-grad); color: #fff; }

/* ===========================================================
   13c. STICKY MOBILE CTA BAR (ikili blok)
=========================================================== */
.mobile-cta-bar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 1030;
  display: flex;
  gap: 10px;
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom, 0px));
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--border);
  box-shadow: 0 -10px 30px rgba(15, 15, 15, .10);
}
.mobile-cta-bar__btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 50px;
  border-radius: 14px;
  font-weight: 600;
  font-size: 15px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.mobile-cta-bar__btn:active { transform: scale(.97); }
.mobile-cta-bar__btn--call {
  background: #fff;
  color: var(--text);
  border: 1.6px solid rgba(246, 95, 134, .5);
}
.mobile-cta-bar__btn--call i { color: var(--pink-strong); }
.mobile-cta-bar__btn--book {
  background: var(--pink-grad);
  color: #fff;
  box-shadow: var(--shadow-pink);
}

/* ===========================================================
   14. RESPONSIVE
=========================================================== */

/* Laptop */
@media (max-width: 1199.98px) {
  .hero__title { font-size: 52px; }
  .section-title { font-size: 34px; }
  .carousel-arrow--prev { left: -10px; }
  .carousel-arrow--next { right: -10px; }
}

/* Tablet (≤ 991px) */
@media (max-width: 991.98px) {
  /* sabit alt CTA çubuğu için boşluk (çentikli cihazlarda safe-area dahil) */
  body { padding-bottom: calc(82px + env(safe-area-inset-bottom, 0px)); }

  .topbar__follow, .topbar__divider { display: none; }
  .topbar__left span { font-size: 11.5px; }

  .site-header .navbar > .container { min-height: 70px; }
  .navbar-toggler {
    order: 3;
    width: 46px; height: 46px;
    display: inline-flex; align-items: center; justify-content: center;
  }

  /* hero stacks; image moves to a soft background */
  .hero { padding-top: 40px; padding-bottom: 48px; }
  .hero__bg { inset: 0 0 0 46%; }
  .hero__title { font-size: 46px; }
  .hero__content { max-width: 100%; }
  .hero__quality-badge { top: 90px; right: 3%; width: 96px; height: 96px; }

  .search-panel { flex-wrap: wrap; }
  .search-panel__field { flex: 1 1 45%; }
  .search-panel__sep { display: none; }
  .search-panel__submit { flex: 1 1 100%; justify-content: center; padding: 14px; }

  .stats__item { flex: 1 1 30%; min-width: 140px; }

  .section-pad { padding: 72px 0; }

  .steps { gap: 28px; }
  .steps::before { display: none; }

  .how__title { font-size: 34px; }

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

  .newsletter__card { flex-direction: column; align-items: flex-start; padding: 34px; }
  .newsletter__form { width: 100%; }
  .newsletter__form input { flex: 1; width: auto; }
}

/* Mobile (≤ 767px) */
@media (max-width: 767.98px) {
  body { font-size: 14.5px; }

  /* --- Topbar: tek satır, kısa tanıtım yazısı, ortalı --- */
  .topbar__inner { justify-content: center; padding: 8px 0; }
  .topbar__left { display: flex; justify-content: center; }
  .topbar__msg--full { display: none; }
  .topbar__msg--short { display: inline; font-size: 11.5px; }
  .topbar__right { display: none; }

  /* --- Hero --- */
  .hero { padding-top: 30px; padding-bottom: 36px; }
  .hero__bg { inset: 0; opacity: .15; -webkit-mask-image: none; mask-image: none; }
  .hero__content { position: relative; max-width: 100%; }
  .pill-badge { margin-bottom: 16px; }
  .hero__title { font-size: 36px; }
  .hero__title-spark { font-size: 22px; }
  .hero__lead { font-size: 15px; max-width: 100%; }
  .hero__quality-badge { display: none; }

  /* Search panel → stacked card with block-style fields */
  .search-panel { flex-direction: column; padding: 14px; gap: 10px; margin-top: 30px; }
  .search-panel::before { left: 16px; right: 16px; top: -6px; bottom: auto; width: auto; height: 6px; }
  .search-panel__field {
    flex: 1 1 100%;
    background: var(--pink-bg-2);
    border-radius: 12px;
    padding: 12px 16px;
  }
  .search-panel__submit { width: 100%; padding: 15px; font-size: 15.5px; }

  /* --- Section rhythm --- */
  .section-pad { padding: 52px 0; }
  .section-pad-sm { padding: 44px 0; }
  .section-title { font-size: 26px; }
  .section-sub { font-size: 14px; }
  .section-head { margin-bottom: 28px; }
  .section-head--split,
  .section-head--inline { flex-direction: column; align-items: flex-start; gap: 12px; }

  /* --- Stats → 2-col blocks --- */
  .stats { padding: 22px 0; }
  .stats__row { gap: 12px; }
  .stats__item {
    flex: 1 1 44%;
    min-width: 0;
    gap: 12px;
    background: var(--pink-bg-2);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 14px;
  }
  .stats__item i { font-size: 24px; }
  .stats__text strong { font-size: 21px; }
  .stats__text span { font-size: 12px; }

  /* --- Card sliders → static 2-col grids (Swiper JS ile yok edilir) --- */
  .citySwiper .swiper-wrapper,
  .districtSwiper .swiper-wrapper,
  .serviceSwiper .swiper-wrapper {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    transform: none !important;
  }
  .citySwiper .swiper-slide,
  .districtSwiper .swiper-slide,
  .serviceSwiper .swiper-slide { width: auto !important; margin: 0 !important; }
  .swiper { padding: 0; margin: 0; overflow: visible; }
  .carousel-arrow { display: none; }

  .city-card { height: 190px; }
  .city-card__name { font-size: 17px; }
  .city-card__count { margin-bottom: 10px; }
  .district-card { height: 168px; }
  .district-card__name { font-size: 16px; }

  .service-card { padding: 20px 18px; min-height: 0; }
  .service-card__icon { width: 48px; height: 48px; font-size: 22px; margin-bottom: 14px; }
  .service-card__title { font-size: 16px; }
  .service-card__desc { font-size: 12.5px; margin-bottom: 14px; }

  /* --- How it works --- */
  .how__title { font-size: 28px; }
  .steps { grid-template-columns: 1fr; gap: 30px; }

  /* --- Trust features → horizontal compact rows --- */
  .trust__image img { height: 220px; }
  .feature-card {
    display: flex; align-items: center; gap: 16px;
    text-align: left; padding: 18px;
  }
  .feature-card__icon { margin: 0; width: 52px; height: 52px; font-size: 22px; flex: 0 0 auto; }
  .feature-card__title { margin-bottom: 3px; font-size: 16px; }
  .feature-card__desc { font-size: 12.5px; }

  /* --- Instagram 2x2 --- */
  .insta__grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }

  /* --- Newsletter --- */
  .newsletter { padding: 8px 0 52px; }
  .newsletter__card { padding: 26px 20px; border-radius: 20px; }
  .newsletter__info { flex-direction: column; align-items: flex-start; gap: 14px; }
  .newsletter__title { font-size: 21px; }
  .newsletter__text { font-size: 13.5px; }
  .newsletter__form { flex-direction: column; width: 100%; }
  .newsletter__form input { width: 100%; }
  .newsletter__form .btn { justify-content: center; padding: 14px; }

  /* --- Footer --- */
  .footer { padding-top: 48px; }
  .footer__about { max-width: 100%; }
  .footer__heading { margin-bottom: 16px; font-size: 14.5px; }
  .footer__bottom { flex-direction: column; text-align: center; gap: 6px; }
}

/* Small mobile (≤ 575px) */
@media (max-width: 575.98px) {
  .navbar-brand .brand__slogan { display: none; }
  .hero__title { font-size: 32px; }
  .section-title { font-size: 24px; }
}

/* Swiper slide auto-height fix */
.swiper { overflow: hidden; padding: 14px 6px; margin: -14px -6px; }
.swiper-wrapper { align-items: stretch; }
.swiper-slide { height: auto; }

/* Accessibility: skip-to-content link (visible only on keyboard focus) */
.skip-link{position:absolute;left:-9999px;top:0;z-index:2000;background:var(--pink-strong,#f04476);color:#fff;padding:10px 16px;border-radius:0 0 8px 0;font-weight:600;text-decoration:none}
.skip-link:focus{left:0}
main:focus{outline:none}
