/* ==========================================================================
   Borçalı Beauty — Ana stil dosyası
   İçindekiler:
   01. Tasarım değişkenleri      09. Hizmet kartları         17. Formlar
   02. Temel                     10. Neden biz / özellikler  18. Randevu & iletişim
   03. Butonlar                  11. Kampanya                19. Kampanyalar sayfası
   04. Duyuru bandı & üst bar    12. Videolar & modal        20. Hizmet detay
   05. Header & menü             13. Yorumlar                21. Hakkımızda / galeri
   06. Mobil menü                14. Randevu bandı (CTA)     22. KVKK / 404
   07. Masaüstü slider           15. Konum şeridi            23. Animasyonlar
   08. Mobil slider & hızlı işlem 16. Footer & alt menü
   ========================================================================== */

/* 01. Tasarım değişkenleri ------------------------------------------------ */
:root {
  --pink: #C8246A;
  --pink-600: #B01E5C;
  --pink-700: #951A4E;
  --pink-50: #FDF5F8;
  --pink-100: #FBEAF0;
  --pink-200: #F5D3E0;
  --pink-light: #F7B6CF;
  --teal: #0E4A4C;
  --teal-700: #0A3A3C;
  --teal-500: #13605F;
  --mint: #8FCFC1;
  --sky-50: #EEF8F9;
  --ink: #1B2B3A;
  --text: #4A5564;
  --muted: #7A8594;
  --line: #F0E1E8;
  --wa: #25D366;

  --font-serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-script: "Great Vibes", "Brush Script MT", cursive;
  --font-sans: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --radius: 20px;
  --radius-sm: 12px;
  --shadow: 0 10px 30px rgba(149, 26, 78, .08);
  --shadow-lg: 0 22px 50px rgba(149, 26, 78, .14);
  --container: 1200px;
  --header-h: 92px;
  --bottom-nav-h: 70px;
  --ease: cubic-bezier(.2, .8, .2, 1);
}

/* 02. Temel ---------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.65;
  color: var(--text);
  background: #fff;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
h1, h2, h3, h4 { font-family: var(--font-serif); color: var(--ink); line-height: 1.15; margin: 0 0 .5em; font-weight: 600; }
p { margin: 0 0 1em; }
ul, ol { margin: 0; padding: 0; list-style: none; }
:focus-visible { outline: 2px solid var(--pink); outline-offset: 3px; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.visually-hidden { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.skip-link { position: absolute; left: 12px; top: -60px; z-index: 999; background: var(--pink); color: #fff; padding: 10px 16px; border-radius: 10px; }
.skip-link:focus { top: 12px; }

.i { width: 1.25em; height: 1.25em; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; vertical-align: middle; }
.script { font-family: var(--font-script); color: var(--pink); font-weight: 400; line-height: 1; }

.section { padding: 90px 0; position: relative; }
.section--soft { background: var(--pink-50); }
.section--tight { padding: 60px 0; }
.section--flush-top { padding-top: 0; }
.section-head { text-align: center; max-width: 660px; margin: 0 auto 46px; }
.section-head h2 { font-size: clamp(28px, 3vw, 40px); margin-bottom: 8px; }
.section-head p { margin: 0; color: var(--muted); }
.section-head--row { display: flex; justify-content: space-between; align-items: flex-end; gap: 20px; text-align: left; max-width: none; }
.eyebrow { display: inline-block; font-size: 12px; letter-spacing: .18em; text-transform: uppercase; color: var(--pink); font-weight: 600; margin-bottom: 10px; }
.link-arrow { display: inline-flex; gap: 6px; align-items: center; color: var(--pink); font-weight: 500; font-size: 14px; white-space: nowrap; }
.link-arrow .i { width: 16px; height: 16px; transition: transform .25s; }
.link-arrow:hover .i { transform: translateX(3px); }
.deco-leaf { position: absolute; pointer-events: none; user-select: none; z-index: 0; }

/* 03. Butonlar -------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 13px 26px; border-radius: 999px; border: 1.5px solid transparent;
  font-weight: 500; font-size: 15px; line-height: 1.2; white-space: nowrap;
  transition: transform .25s var(--ease), box-shadow .25s, background .25s, color .25s, border-color .25s;
}
.btn .i { width: 18px; height: 18px; }
.btn .i-arrow { transition: transform .25s; }
.btn:hover .i-arrow { transform: translateX(4px); }
.btn--primary { background: linear-gradient(135deg, #D52F76, var(--pink-600)); color: #fff; box-shadow: 0 8px 22px rgba(200, 36, 106, .28); }
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(200, 36, 106, .36); }
.btn--outline { border-color: var(--pink); color: var(--pink); background: #fff; }
.btn--outline:hover { background: var(--pink); color: #fff; }
.btn--white { background: #fff; color: var(--pink); box-shadow: var(--shadow); }
.btn--white:hover { transform: translateY(-2px); }
.btn--ghost-light { border-color: rgba(255, 255, 255, .55); color: #fff; }
.btn--ghost-light:hover { background: #fff; color: var(--teal); }
.btn--wa { background: var(--wa); color: #fff; box-shadow: 0 8px 22px rgba(37, 211, 102, .28); }
.btn--wa:hover { background: #1EBE5A; transform: translateY(-2px); }
.btn--lg { padding: 16px 32px; font-size: 16px; }
.btn--sm { padding: 9px 18px; font-size: 13.5px; }
.btn--block { width: 100%; }
.btn-row { display: flex; gap: 12px; flex-wrap: wrap; }

/* 04. Duyuru bandı & üst bar ------------------------------------------------ */
.announce { background: linear-gradient(90deg, var(--pink-700), var(--pink)); color: #fff; font-size: 13.5px; }
.announce[hidden] { display: none; }
.announce__inner { display: flex; align-items: center; justify-content: center; gap: 10px; padding: 8px 48px; position: relative; text-align: center; min-height: 40px; }
.announce p { margin: 0; }
.announce a { text-decoration: underline; text-underline-offset: 3px; font-weight: 600; }
.announce .i { width: 16px; height: 16px; }
.announce__close { position: absolute; right: 12px; top: 50%; transform: translateY(-50%); background: none; border: 0; color: #fff; padding: 6px; display: grid; opacity: .85; }
.announce__close:hover { opacity: 1; }

.topbar { background: var(--teal); color: rgba(255, 255, 255, .9); font-size: 13px; }
.topbar__inner { display: flex; justify-content: space-between; align-items: center; min-height: 42px; gap: 20px; }
.topbar a { display: inline-flex; align-items: center; gap: 8px; }
.topbar a:hover { color: #fff; }
.topbar .i { width: 16px; height: 16px; }
.topbar__right { display: flex; align-items: center; gap: 12px; }
.topbar__social { display: flex; gap: 4px; }
.topbar__social a { width: 30px; height: 30px; justify-content: center; border-radius: 50%; transition: background .2s; }
.topbar__social a:hover { background: rgba(255, 255, 255, .12); }
.topbar__sep { width: 1px; height: 18px; background: rgba(255, 255, 255, .25); margin: 0 6px; }
.topbar__phone { font-weight: 600; letter-spacing: .02em; }

/* 05. Header & menü ------------------------------------------------------- */
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(255, 255, 255, .97); backdrop-filter: saturate(160%) blur(10px); transition: box-shadow .3s; }
.site-header.is-scrolled { box-shadow: 0 6px 24px rgba(27, 43, 58, .08); }
.site-header__inner { display: flex; align-items: center; gap: 24px; min-height: var(--header-h); }

/* Logo — PHP/Tasarım: gerçek logo dosyası gelince <img src="assets/img/logo.svg"> ile değiştirilecek */
.logo { display: inline-flex; flex-direction: column; align-items: center; line-height: 1; color: var(--ink); flex-shrink: 0; }
.logo__row { display: flex; align-items: center; }
.logo__word { font-family: var(--font-serif); font-size: 21px; letter-spacing: .06em; font-weight: 500; }
.logo__b { font-family: var(--font-serif); font-style: italic; font-weight: 700; font-size: 56px; line-height: .78; color: var(--pink); margin: 0 3px -4px; }
.logo__tag { font-size: 8.5px; letter-spacing: .42em; margin-top: 7px; font-weight: 500; padding-left: .42em; }
.logo--light { color: #fff; }
.logo--light .logo__b { color: var(--pink-light); }

.nav { margin-left: auto; }
.nav__list { display: flex; align-items: center; gap: 2px; }
.nav__link { display: inline-flex; align-items: center; gap: 4px; padding: 10px 13px; font-size: 14.5px; font-weight: 500; color: var(--ink); position: relative; transition: color .2s; }
.nav__link::after { content: ""; position: absolute; left: 13px; right: 13px; bottom: 3px; height: 2px; background: var(--pink); border-radius: 2px; transform: scaleX(0); transition: transform .25s var(--ease); }
.nav__link:hover, .nav__link.is-active { color: var(--pink); }
.nav__link:hover::after, .nav__link.is-active::after { transform: scaleX(1); }
.nav__link .i { width: 14px; height: 14px; }
.nav__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--pink); margin-left: 2px; animation: pulse 2s infinite; }
.has-dropdown { position: relative; }
.dropdown { position: absolute; top: 100%; left: -8px; min-width: 270px; background: #fff; border-radius: 16px; box-shadow: var(--shadow-lg); padding: 10px; opacity: 0; visibility: hidden; transform: translateY(8px); transition: .22s var(--ease); }
.has-dropdown:hover .dropdown, .has-dropdown:focus-within .dropdown { opacity: 1; visibility: visible; transform: none; }
.dropdown a { display: flex; gap: 12px; align-items: center; padding: 10px 12px; border-radius: 12px; color: var(--ink); transition: background .2s; }
.dropdown a:hover { background: var(--pink-50); }
.dropdown__icon { width: 40px; height: 40px; border-radius: 12px; background: var(--pink-50); color: var(--pink); display: grid; place-items: center; flex-shrink: 0; }
.dropdown strong { display: block; font-size: 14px; font-weight: 600; }
.dropdown small { display: block; font-size: 12.5px; color: var(--muted); line-height: 1.35; }
.dropdown__all { justify-content: center; font-size: 13.5px; color: var(--pink) !important; font-weight: 500; border-top: 1px solid var(--line); border-radius: 0 0 10px 10px !important; margin-top: 4px; }

.burger { display: none; background: none; border: 0; color: var(--pink); padding: 8px; margin-right: -8px; }
.burger .i { width: 30px; height: 30px; }

/* 06. Mobil menü ------------------------------------------------------------ */
.mmenu { position: fixed; inset: 0; z-index: 100; visibility: hidden; transition: visibility 0s .35s; }
.mmenu.is-open { visibility: visible; transition: none; }
.mmenu__backdrop { position: absolute; inset: 0; background: rgba(10, 58, 60, .5); opacity: 0; transition: opacity .35s; }
.mmenu.is-open .mmenu__backdrop { opacity: 1; }
.mmenu__panel { position: absolute; top: 0; right: 0; bottom: 0; width: min(88vw, 390px); background: #fff; transform: translateX(100%); transition: transform .35s var(--ease); display: flex; flex-direction: column; overflow-y: auto; }
.mmenu.is-open .mmenu__panel { transform: none; }
.mmenu__head { display: flex; justify-content: space-between; align-items: center; padding: 12px 18px; border-bottom: 1px solid var(--line); }
.mmenu__head .logo__word { font-size: 16px; }
.mmenu__head .logo__b { font-size: 42px; }
.mmenu__head .logo__tag { font-size: 6.5px; }
.mmenu__close { background: var(--pink-50); border: 0; width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; color: var(--pink); }
.mmenu__nav { padding: 6px 18px; }
.mmenu__nav a { display: flex; justify-content: space-between; align-items: center; padding: 14px 2px; border-bottom: 1px solid var(--line); font-weight: 500; color: var(--ink); }
.mmenu__nav a.is-active { color: var(--pink); }
.mmenu__nav a .i { width: 16px; height: 16px; color: var(--muted); }
.mmenu__sub a { padding-left: 18px; font-weight: 400; font-size: 14px; color: var(--text); }
.mmenu__actions { padding: 18px; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.mmenu__actions .btn--primary { grid-column: span 2; }
.mmenu__actions .btn { padding: 12px 14px; }
.mmenu__info { margin-top: auto; padding: 18px; background: var(--pink-50); font-size: 13.5px; display: grid; gap: 10px; }
.mmenu__info a, .mmenu__info div { display: flex; gap: 10px; align-items: flex-start; color: var(--ink); }
.mmenu__info .i { color: var(--pink); margin-top: 2px; }
body.menu-open { overflow: hidden; }

/* 07. Masaüstü slider ------------------------------------------------------- */
.hero--mobile { display: none; }
.slider { position: relative; overflow: hidden; }
.hero--desktop .slider { height: clamp(540px, 41.7vw, 720px); background: var(--pink-50); }
.slide { position: absolute; inset: 0; opacity: 0; visibility: hidden; transition: opacity .9s ease, visibility 0s .9s; }
.slide.is-active { opacity: 1; visibility: visible; z-index: 1; transition: opacity .9s ease; }
.slide__img, .slide picture { position: absolute; inset: 0; width: 100%; height: 100%; }
.slide__img { object-fit: cover; object-position: right center; }
.slide__overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(253, 245, 248, .97) 0%, rgba(253, 245, 248, .9) 34%, rgba(253, 245, 248, 0) 60%); }
.slide--dark .slide__overlay { background: linear-gradient(90deg, rgba(10, 58, 60, .96) 0%, rgba(14, 74, 76, .86) 36%, rgba(14, 74, 76, 0) 62%); }
.slide--rose .slide__overlay { background: linear-gradient(90deg, rgba(251, 234, 240, .97) 0%, rgba(251, 234, 240, .9) 34%, rgba(251, 234, 240, 0) 60%); }
.slide--sky .slide__overlay { background: linear-gradient(90deg, rgba(238, 248, 249, .97) 0%, rgba(238, 248, 249, .9) 34%, rgba(238, 248, 249, 0) 60%); }
.slide__content { position: relative; z-index: 2; height: 100%; display: flex; flex-direction: column; justify-content: center; padding-bottom: 20px; }
.slide__content > * { max-width: 540px; }
.slide__script { font-size: clamp(42px, 4vw, 62px); rotate: -6deg; transform-origin: left; margin: 0 0 14px; }
.slide__title { font-size: clamp(38px, 3.7vw, 58px); margin: 0 0 14px; }
.slide__title span { display: block; color: var(--pink); }
.slide__text { font-size: 17px; margin-bottom: 26px; }
.slide .checklist { margin: 0 0 28px; }
.slide--dark .slide__title, .slide--dark .slide__text, .slide--dark .checklist li { color: #fff; }
.slide--dark .slide__title span, .slide--dark .slide__script, .slide--dark .checklist .i { color: var(--pink-light); }
.slide__actions { display: flex; gap: 12px; flex-wrap: wrap; }
.mini-features { display: flex; margin-top: 36px; }
.mini-features li { display: flex; flex-direction: column; align-items: center; text-align: center; font-size: 12.5px; line-height: 1.3; color: var(--ink); padding: 0 18px; border-left: 1px solid var(--pink-200); }
.mini-features li:first-child { border-left: 0; padding-left: 0; }
.mini-features .i { width: 30px; height: 30px; color: var(--pink); margin-bottom: 6px; stroke-width: 1.4; }

.slide .slide__content > * { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s var(--ease); }
.slide.is-active .slide__content > * { opacity: 1; transform: none; }
.slide.is-active .slide__content > :nth-child(2) { transition-delay: .1s; }
.slide.is-active .slide__content > :nth-child(3) { transition-delay: .2s; }
.slide.is-active .slide__content > :nth-child(4) { transition-delay: .3s; }
.slide.is-active .slide__content > :nth-child(5) { transition-delay: .4s; }

.slider__arrow { position: absolute; top: 50%; transform: translateY(-50%); z-index: 5; width: 50px; height: 50px; border-radius: 50%; background: #fff; border: 0; box-shadow: var(--shadow); display: grid; place-items: center; color: var(--ink); transition: background .25s, color .25s; }
.slider__arrow:hover { background: var(--pink); color: #fff; }
.slider__arrow--prev { left: 22px; }
.slider__arrow--next { right: 22px; }
.slider__dots { position: absolute; left: 0; right: 0; bottom: 26px; z-index: 5; display: flex; justify-content: center; gap: 8px; }
.slider__dot { width: 10px; height: 10px; border-radius: 10px; border: 0; padding: 0; background: rgba(200, 36, 106, .28); transition: width .35s var(--ease), background .35s; }
.slider__dot.is-active { width: 30px; background: var(--pink); }

/* 08. Mobil slider & hızlı işlem -------------------------------------------- */
.mslider { aspect-ratio: 4 / 5; max-height: 70svh; width: 100%; background: var(--pink-50); }
.mslide { position: absolute; inset: 0; opacity: 0; visibility: hidden; transition: opacity .7s ease, visibility 0s .7s; }
.mslide.is-active { opacity: 1; visibility: visible; z-index: 1; transition: opacity .7s ease; }
.mslide img, .mslide picture { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.mslide__content { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: 80px 20px 58px; text-align: center; background: linear-gradient(180deg, rgba(253, 245, 248, 0), rgba(253, 245, 248, .9) 40%, rgba(253, 245, 248, .98)); }
.mslide--dark .mslide__content { background: linear-gradient(180deg, rgba(14, 74, 76, 0), rgba(14, 74, 76, .9) 40%, rgba(10, 58, 60, .98)); }
.mslide--sky .mslide__content { background: linear-gradient(180deg, rgba(238, 248, 249, 0), rgba(238, 248, 249, .9) 40%, rgba(238, 248, 249, .98)); }
.mslide__script { font-size: 34px; rotate: -5deg; margin: 0 0 6px; }
.mslide__title { font-size: 27px; margin: 0 0 14px; }
.mslide__title span { color: var(--pink); }
.mslide--dark .mslide__title { color: #fff; }
.mslide--dark .mslide__title span, .mslide--dark .mslide__script { color: var(--pink-light); }
.mslider .slider__dots { bottom: 30px; }

.mquick { display: none; }
.mquick__card { position: relative; z-index: 3; margin-top: -22px; background: #fff; border-radius: 24px 24px 0 0; padding: 18px 16px 8px; }
.mquick__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin: 12px 0; }
.qbtn { display: flex; flex-direction: column; align-items: center; gap: 6px; padding: 12px 6px; border-radius: 16px; background: var(--pink-50); color: var(--ink); font-size: 13px; font-weight: 500; border: 1px solid var(--line); transition: background .2s; }
.qbtn:active { background: var(--pink-100); }
.qbtn .i { width: 24px; height: 24px; color: var(--pink); }
.qbtn--wa .i { color: #1FAF55; }
.loc-card { display: flex; align-items: center; gap: 14px; padding: 14px; border-radius: 18px; background: linear-gradient(135deg, var(--pink-50), #fff); border: 1px solid var(--pink-200); color: var(--ink); }
.loc-card__icon { width: 46px; height: 46px; border-radius: 50%; background: var(--pink); color: #fff; display: grid; place-items: center; flex-shrink: 0; }
.loc-card__body { flex: 1; display: flex; flex-direction: column; line-height: 1.35; min-width: 0; }
.loc-card strong { font-size: 14.5px; }
.loc-card small { color: var(--muted); font-size: 12.5px; }
.loc-card > .i { color: var(--pink); }

.open-status { display: inline-flex; align-items: center; gap: 7px; font-size: 12.5px; font-weight: 500; margin-top: 4px; color: var(--muted); }
.open-status::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: #9CA3AF; flex-shrink: 0; }
.open-status.is-open { color: #15803D; }
.open-status.is-open::before { background: #22C55E; box-shadow: 0 0 0 3px rgba(34, 197, 94, .2); }
.open-status.is-closed { color: #B91C1C; }
.open-status.is-closed::before { background: #EF4444; }

/* 09. Hizmet kartları --------------------------------------------------------- */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.services-grid--2 { grid-template-columns: repeat(2, 1fr); }
.service-card { background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: transform .35s var(--ease), box-shadow .35s; display: flex; flex-direction: column; color: inherit; }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.service-card__media { aspect-ratio: 16 / 10; overflow: hidden; background: var(--pink-50); }
.service-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.service-card:hover .service-card__media img { transform: scale(1.05); }
.service-card__body { padding: 20px 22px 24px; display: flex; gap: 16px; align-items: center; flex: 1; }
.service-card__text { flex: 1; min-width: 0; }
.service-card h3 { font-size: 21px; margin: 0 0 4px; }
.service-card p { margin: 0; font-size: 14px; color: var(--muted); line-height: 1.5; }
.arrow-circle { width: 42px; height: 42px; border-radius: 50%; background: var(--pink); color: #fff; display: grid; place-items: center; flex-shrink: 0; transition: transform .3s var(--ease); }
.arrow-circle .i { width: 18px; height: 18px; }
.service-card:hover .arrow-circle { transform: translateX(4px); }

.service-row { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; padding: 50px 0; }
.service-row + .service-row { border-top: 1px solid var(--line); }
.service-row:nth-child(even) .service-row__media { order: 2; }
.service-row__media { border-radius: 26px; overflow: hidden; box-shadow: var(--shadow-lg); }
.service-row__media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.service-row h2 { font-size: clamp(28px, 3vw, 40px); }

/* 10. Neden biz / özellikler ------------------------------------------------ */
.why { display: grid; grid-template-columns: 1.05fr 1fr; gap: 64px; align-items: center; }
.why__media { position: relative; border-radius: 26px; overflow: hidden; box-shadow: var(--shadow-lg); }
.why__media img { width: 100%; aspect-ratio: 16 / 11; object-fit: cover; }
.why__content { position: relative; }
.why__content h2 { font-size: clamp(28px, 3vw, 40px); }
.why__stamp { position: absolute; right: -10px; bottom: 0; font-size: 44px; rotate: -10deg; text-align: center; line-height: 1.05; opacity: .9; }
.icon-list { display: grid; gap: 14px; margin: 24px 0 32px; }
.icon-list li { display: flex; align-items: center; gap: 14px; color: var(--ink); font-size: 15.5px; }
.icon-wrap { width: 44px; height: 44px; border-radius: 14px; background: var(--pink-50); color: var(--pink); display: grid; place-items: center; flex-shrink: 0; }
.icon-wrap .i { width: 22px; height: 22px; }

.features { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1px; background: var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.feature { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 30px 18px; gap: 10px; background: #fff; color: var(--ink); font-size: 14.5px; line-height: 1.35; font-weight: 500; }
.feature .i { width: 38px; height: 38px; color: var(--pink); stroke-width: 1.3; }
.feature p { font-size: 13px; color: var(--muted); margin: 0; font-weight: 400; line-height: 1.5; }

.checklist { display: grid; gap: 10px; margin: 22px 0 28px; }
.checklist li { display: flex; gap: 10px; align-items: flex-start; color: var(--ink); }
.checklist .i { color: var(--pink); width: 22px; height: 22px; margin-top: 1px; }

/* 11. Kampanya ------------------------------------------------------------------ */
.campaign-band { display: grid; grid-template-columns: 440px 1fr; background: linear-gradient(120deg, var(--teal), var(--teal-500)); border-radius: 26px; overflow: hidden; color: #fff; position: relative; }
.campaign-band__media img { width: 100%; height: 100%; object-fit: cover; min-height: 300px; }
.campaign-band__body { padding: 46px 52px; position: relative; z-index: 1; display: flex; flex-direction: column; justify-content: center; align-items: flex-start; }
.campaign-band h2 { color: #fff; font-size: clamp(28px, 3vw, 38px); margin: 14px 0 10px; }
.campaign-band p { color: rgba(255, 255, 255, .85); max-width: 520px; }
.campaign-band .deco-leaf { right: -30px; top: -40px; width: 160px; opacity: .25; rotate: 30deg; }
.badge { display: inline-flex; align-items: center; gap: 6px; padding: 6px 14px; border-radius: 999px; background: rgba(255, 255, 255, .14); font-size: 12.5px; font-weight: 600; letter-spacing: .04em; }
.badge .i { width: 15px; height: 15px; }
.badge--pink { background: var(--pink); color: #fff; }
.meta-line { font-size: 13.5px; display: flex; gap: 8px; align-items: center; margin-bottom: 22px; color: var(--pink-light); }
.meta-line .i { width: 16px; height: 16px; }

/* 12. Videolar & modal ---------------------------------------------------------- */
.videos-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.video-card { display: block; text-align: left; background: none; border: 0; padding: 0; width: 100%; color: var(--ink); }
.video-card__thumb { position: relative; border-radius: 18px; overflow: hidden; aspect-ratio: 16 / 10; box-shadow: var(--shadow); background: var(--pink-50); }
.video-card__thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.video-card:hover .video-card__thumb img { transform: scale(1.05); }
.video-card__thumb::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, .35)); }
.video-card__play { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 62px; height: 62px; border-radius: 50%; background: rgba(255, 255, 255, .94); display: grid; place-items: center; color: var(--pink); z-index: 2; transition: transform .3s var(--ease), background .3s, color .3s; }
.video-card__play .i { width: 22px; height: 22px; margin-left: 3px; }
.video-card:hover .video-card__play { background: var(--pink); color: #fff; transform: translate(-50%, -50%) scale(1.08); }
.video-card__time { position: absolute; right: 12px; bottom: 10px; z-index: 2; background: rgba(0, 0, 0, .6); color: #fff; font-size: 12px; padding: 2px 8px; border-radius: 6px; }
.video-card__title { display: block; margin-top: 12px; font-weight: 500; font-size: 15px; }
.video-card__cat { display: block; font-size: 12.5px; color: var(--pink); }

.filter { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; margin-bottom: 36px; }
.filter button { border: 1.5px solid var(--line); background: #fff; padding: 9px 18px; border-radius: 999px; font-size: 14px; color: var(--ink); transition: .2s; white-space: nowrap; }
.filter button:hover { border-color: var(--pink-200); }
.filter button.is-active { background: var(--pink); color: #fff; border-color: var(--pink); }
[data-category].is-hidden { display: none; }

.modal { position: fixed; inset: 0; z-index: 200; display: none; align-items: center; justify-content: center; padding: 20px; }
.modal.is-open { display: flex; animation: fadeIn .25s ease; }
.modal__backdrop { position: absolute; inset: 0; background: rgba(10, 20, 25, .8); }
.modal__dialog { position: relative; width: min(960px, 100%); max-height: calc(100svh - 40px); background: #000; border-radius: 18px; overflow: hidden; animation: popIn .35s var(--ease); }
.modal__frame { aspect-ratio: 16 / 9; }
.modal__frame iframe, .modal__frame video { width: 100%; height: 100%; border: 0; display: block; }
.modal__empty { color: #fff; display: grid; place-items: center; height: 100%; text-align: center; padding: 20px; }
.modal__close { position: absolute; top: 12px; right: 12px; z-index: 3; width: 40px; height: 40px; border-radius: 50%; background: rgba(255, 255, 255, .95); border: 0; display: grid; place-items: center; color: var(--ink); box-shadow: 0 4px 12px rgba(0, 0, 0, .15); }
.modal--video .modal__dialog { overflow: visible; background: transparent; }
.modal--video .modal__frame { background: #000; border-radius: 18px; overflow: hidden; }
.modal--video .modal__close { top: -52px; right: 0; }
body.modal-open { overflow: hidden; }

.popup .modal__dialog { background: #fff; width: min(460px, 100%); border-radius: 26px; overflow-y: auto; }
.popup__media img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; }
.popup__body { padding: 24px 26px 28px; text-align: center; }
.popup__body h2 { font-size: 26px; margin: 12px 0 8px; }
.popup__body .btn { margin-top: 6px; }
.popup__later { display: block; margin: 12px auto 0; background: none; border: 0; color: var(--muted); font-size: 13.5px; text-decoration: underline; }

/* 13. Yorumlar ------------------------------------------------------------------- */
.testimonials { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial blockquote { margin: 0; flex: 1; }
.testimonial { margin: 0; background: #fff; border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow); display: flex; flex-direction: column; }
.testimonial__quote { font-family: var(--font-serif); font-size: 64px; line-height: .6; color: var(--pink-200); height: 30px; }
.testimonial p { font-size: 14.5px; flex: 1; }
.testimonial__foot { display: flex; justify-content: space-between; align-items: center; gap: 10px; }
.stars { display: flex; gap: 2px; color: #F5A524; }
.stars .i { width: 16px; height: 16px; }
.testimonial__name { font-weight: 600; color: var(--ink); font-size: 14px; }

/* 14. Randevu bandı (CTA) -------------------------------------------------------- */
.cta-band { display: grid; grid-template-columns: 280px 1fr auto; align-items: center; gap: 40px; background: linear-gradient(100deg, var(--pink-100), #FDE7EF 55%, var(--pink-200)); border-radius: 26px; overflow: hidden; padding-right: 48px; position: relative; }
.cta-band__media { align-self: stretch; }
.cta-band__media img { width: 100%; height: 100%; object-fit: cover; min-height: 190px; }
.cta-band h2 { font-size: clamp(26px, 2.6vw, 36px); margin: 0 0 6px; }
.cta-band p { margin: 0; color: var(--pink); font-weight: 500; }
.cta-band__actions { display: flex; align-items: center; gap: 24px; }
.cta-band__icon { width: 64px; height: 64px; color: var(--pink); stroke-width: 1.2; }
.cta-band--sky { background: linear-gradient(100deg, var(--sky-50), #E1F2F4 55%, #CDE9EC); }

/* 15. Konum şeridi ---------------------------------------------------------------- */
.location { display: grid; grid-template-columns: 1fr 1fr 1.25fr; background: #fff; border-radius: 26px; box-shadow: var(--shadow); overflow: hidden; }
.location__col { padding: 32px; display: flex; flex-direction: column; justify-content: center; gap: 18px; border-right: 1px solid var(--line); }
.info-row { display: flex; gap: 14px; align-items: flex-start; color: var(--ink); }
.info-row > .i { width: 28px; height: 28px; color: var(--pink); }
.info-row strong { display: block; font-size: 17px; line-height: 1.35; font-weight: 600; }
.info-row small { display: block; color: var(--muted); font-size: 13.5px; }
.info-row--big strong { font-size: 22px; letter-spacing: .01em; }
a.info-row:hover strong { color: var(--pink); }

.map { position: relative; min-height: 240px; background:
  linear-gradient(0deg, transparent 47%, #fff 47%, #fff 53%, transparent 53%) 0 0 / 130px 95px,
  linear-gradient(90deg, transparent 47%, #fff 47%, #fff 53%, transparent 53%) 0 0 / 170px 130px,
  linear-gradient(35deg, transparent 49%, #F7F9F8 49%, #F7F9F8 51.5%, transparent 51.5%) 0 0 / 100% 100%,
  #E6ECEA; }
.map iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.map__btn { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); z-index: 1; }
.map__btn:hover { transform: translate(-50%, -52%); }
.map__btn .i { color: var(--pink); }
.map--lg { min-height: 380px; border-radius: 26px; overflow: hidden; box-shadow: var(--shadow); }

/* 16. Footer & alt menü ------------------------------------------------------------ */
.site-footer { background: var(--teal); color: rgba(255, 255, 255, .78); padding: 72px 0 0; font-size: 14.5px; position: relative; overflow: hidden; }
.site-footer .deco-leaf { right: -40px; bottom: 40px; width: 150px; opacity: .12; rotate: -20deg; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.3fr; gap: 40px; position: relative; z-index: 1; }
.footer__script { font-size: 32px; color: var(--pink-light); margin: 22px 0 8px; }
.footer__title { font-family: var(--font-sans); color: #fff; font-size: 15px; font-weight: 600; margin-bottom: 16px; }
.footer__links a { display: inline-block; padding: 4px 0; transition: color .2s, transform .2s; }
.footer__links a:hover { color: #fff; transform: translateX(4px); }
.footer__contact { display: grid; gap: 14px; }
.footer__contact li { display: flex; gap: 10px; align-items: flex-start; }
.footer__contact .i { color: var(--pink-light); margin-top: 3px; width: 18px; height: 18px; }
.footer__contact a:hover { color: #fff; }
.socials { display: flex; gap: 10px; margin-top: 18px; }
.socials a { width: 42px; height: 42px; border-radius: 50%; border: 1px solid rgba(255, 255, 255, .25); display: grid; place-items: center; color: #fff; transition: background .25s, border-color .25s; }
.socials a:hover { background: var(--pink); border-color: var(--pink); }
.footer__bottom { margin-top: 52px; border-top: 1px solid rgba(255, 255, 255, .12); padding: 20px 0; display: flex; justify-content: space-between; gap: 12px; font-size: 13px; flex-wrap: wrap; position: relative; z-index: 1; }
.footer__bottom p { margin: 0; }
.footer__bottom a:hover { color: #fff; }

.wa-float { position: fixed; right: 24px; bottom: 24px; z-index: 60; width: 60px; height: 60px; border-radius: 50%; background: var(--wa); color: #fff; display: grid; place-items: center; box-shadow: 0 10px 24px rgba(37, 211, 102, .4); transition: transform .25s var(--ease); }
.wa-float:hover { transform: scale(1.08); }
.wa-float .i { width: 30px; height: 30px; }

.bottom-nav { display: none; }

/* 17. Formlar ------------------------------------------------------------------------ */
.form { display: grid; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field label, .field__label { display: block; font-size: 13.5px; font-weight: 500; color: var(--ink); margin-bottom: 6px; }
.req { color: var(--pink); }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 16px; border: 1.5px solid #EADCE2; border-radius: 12px;
  font: inherit; font-size: 15px; color: var(--ink); background: #fff; transition: border-color .2s, box-shadow .2s;
  -webkit-appearance: none; appearance: none;
}
.field select { padding-right: 42px; background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23C8246A' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E") no-repeat right 14px center; }
.field textarea { min-height: 110px; resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: #A8AFB9; }
.field input:focus, .field select:focus, .field textarea:focus { outline: 0; border-color: var(--pink); box-shadow: 0 0 0 4px rgba(200, 36, 106, .12); }
.field__error { color: #DC2626; font-size: 12.5px; margin-top: 5px; display: none; }
.has-error input, .has-error select, .has-error textarea { border-color: #DC2626; }
.has-error .field__error { display: block; }
.check { display: flex; gap: 10px; align-items: flex-start; font-size: 13.5px; line-height: 1.5; }
.check input { width: 18px; height: 18px; accent-color: var(--pink); margin: 2px 0 0; flex-shrink: 0; }
.check a { color: var(--pink); text-decoration: underline; }
.check.has-error { color: #DC2626; }
.hp { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }
.form-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-note { font-size: 12.5px; color: var(--muted); margin: 0; text-align: center; }
.form-alert { padding: 14px 16px; border-radius: 12px; font-size: 14px; display: none; }
.form-alert.is-success { display: block; background: #ECFDF3; color: #166534; border: 1px solid #BBF7D0; }
.form-alert.is-error { display: block; background: #FEF2F2; color: #991B1B; border: 1px solid #FECACA; }
.chip-group { display: flex; flex-wrap: wrap; gap: 6px; }
.chip { position: relative; }
.chip input { position: absolute; opacity: 0; inset: 0; }
.chip span { display: inline-block; padding: 9px 14px; border-radius: 999px; border: 1.5px solid #EADCE2; font-size: 14px; cursor: pointer; transition: .2s; color: var(--ink); }
.chip input:checked + span { background: var(--pink); border-color: var(--pink); color: #fff; }
.chip input:focus-visible + span { box-shadow: 0 0 0 4px rgba(200, 36, 106, .2); }

.card { background: #fff; border-radius: 26px; box-shadow: var(--shadow); padding: 36px; }
.card h2 { font-size: 30px; margin-bottom: 6px; }

/* 18. Randevu & iletişim --------------------------------------------------------------- */
.randevu { display: grid; grid-template-columns: .85fr 1.35fr .85fr; gap: 32px; align-items: start; }
.randevu__media { border-radius: 26px; overflow: hidden; position: sticky; top: calc(var(--header-h) + 20px); box-shadow: var(--shadow); }
.randevu__media img { width: 100%; aspect-ratio: 9 / 11; object-fit: cover; }
.randevu__aside { position: sticky; top: calc(var(--header-h) + 20px); display: grid; gap: 22px; padding-top: 10px; }
.randevu__aside .script { font-size: 40px; rotate: -6deg; line-height: 1.1; margin-bottom: 8px; }
.info-list { display: grid; gap: 20px; }

.contact-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 36px; align-items: start; }
.contact-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-card { background: #fff; border-radius: 20px; box-shadow: var(--shadow); padding: 22px; display: flex; flex-direction: column; gap: 4px; color: var(--ink); transition: transform .3s var(--ease); }
a.contact-card:hover { transform: translateY(-4px); }
.contact-card__icon { width: 48px; height: 48px; border-radius: 50%; background: var(--pink-50); color: var(--pink); display: grid; place-items: center; margin-bottom: 8px; }
.contact-card__icon--wa { background: #E8F9EE; color: #1FAF55; }
.contact-card strong { font-size: 16px; }
.contact-card small { color: var(--muted); font-size: 13.5px; }
.contact-card--wide { grid-column: span 2; }
.hours { display: grid; gap: 6px; margin-top: 6px; font-size: 14px; }
.hours div { display: flex; justify-content: space-between; gap: 10px; border-bottom: 1px dashed var(--line); padding-bottom: 6px; }
.hours div:last-child { border-bottom: 0; }

/* 19. Kampanyalar sayfası ----------------------------------------------------------------- */
.campaigns { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.campaign-card { background: #fff; border-radius: 24px; overflow: hidden; box-shadow: var(--shadow); display: flex; flex-direction: column; }
.campaign-card__media { position: relative; aspect-ratio: 3 / 2; overflow: hidden; }
.campaign-card__media img { width: 100%; height: 100%; object-fit: cover; }
.campaign-card__media .badge { position: absolute; top: 16px; left: 16px; }
.campaign-card__body { padding: 24px 28px 28px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.campaign-card h2 { font-size: 26px; margin: 0; }
.campaign-card .meta-line { color: var(--muted); margin: 0 0 10px; }
.campaign-card .btn-row { margin-top: auto; }
.empty-state { text-align: center; padding: 60px 24px; background: var(--pink-50); border-radius: 24px; }
.empty-state .i { width: 48px; height: 48px; color: var(--pink); margin-bottom: 10px; }
.notice { display: flex; gap: 12px; align-items: flex-start; background: #FFF8E6; border: 1px solid #F5DFA0; color: #7A5B00; border-radius: 14px; padding: 14px 18px; font-size: 14px; }
.notice .i { margin-top: 2px; }

/* Sayfa başlığı (iç sayfalar) */
.page-hero { position: relative; overflow: hidden; background: linear-gradient(120deg, var(--pink-50), var(--pink-100)); padding: 56px 0 62px; }
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { font-size: clamp(32px, 4vw, 52px); margin: 0 0 10px; }
.page-hero p { max-width: 580px; margin: 0; font-size: 16px; }
.page-hero .page-hero__script { position: absolute; right: max(24px, calc((100% - var(--container)) / 2 + 24px)); bottom: 48px; font-size: 48px; max-width: none; rotate: -6deg; z-index: 1; }
.page-hero .deco-leaf--1 { width: 120px; left: -30px; bottom: -50px; rotate: 35deg; opacity: .7; }
.page-hero .deco-leaf--2 { width: 150px; right: 6%; top: -60px; rotate: -150deg; opacity: .5; }
.breadcrumb { display: flex; flex-wrap: wrap; gap: 8px; font-size: 13px; color: var(--muted); margin-bottom: 14px; }
.breadcrumb a:hover { color: var(--pink); }
.breadcrumb li + li::before { content: "›"; margin-right: 8px; color: var(--pink); }

/* 20. Hizmet detay ------------------------------------------------------------------ */
.sd-hero { padding: 36px 0 80px; background: linear-gradient(180deg, var(--pink-50), #fff); position: relative; overflow: hidden; }
.sd-hero--teal { background: linear-gradient(180deg, #E8F2F1, #fff); }
.sd-hero--sky { background: linear-gradient(180deg, var(--sky-50), #fff); }
.sd-hero__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; position: relative; z-index: 1; }
.sd-hero h1 { font-size: clamp(36px, 4.2vw, 56px); margin-bottom: 14px; }
.sd-hero__lead { font-size: 16.5px; }
.sd-hero__media { position: relative; border-radius: 30px; overflow: hidden; box-shadow: var(--shadow-lg); }
.sd-hero__media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.sd-hero__script { position: absolute; right: 22px; bottom: 18px; color: #fff; font-size: 46px; rotate: -8deg; text-shadow: 0 2px 14px rgba(0, 0, 0, .3); }

.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; }
.steps::before { content: ""; position: absolute; top: 28px; left: 12.5%; right: 12.5%; border-top: 2px dashed var(--pink-200); }
.step { text-align: center; position: relative; }
.step__num { width: 56px; height: 56px; border-radius: 50%; background: #fff; border: 2px solid var(--pink); color: var(--pink); font-family: var(--font-serif); font-size: 22px; font-weight: 600; display: grid; place-items: center; margin: 0 auto 14px; position: relative; z-index: 1; }
.step h3 { font-family: var(--font-sans); font-size: 16px; font-weight: 600; margin-bottom: 6px; }
.step p { font-size: 14px; color: var(--muted); margin: 0; }

.ba-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.ba { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; background: #fff; border-radius: 20px; overflow: hidden; box-shadow: var(--shadow); }
.ba figure { margin: 0; position: relative; }
.ba img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.ba figcaption { position: absolute; left: 10px; top: 10px; background: rgba(255, 255, 255, .92); padding: 3px 12px; border-radius: 999px; font-size: 12px; font-weight: 600; color: var(--ink); }
.ba figure:last-child figcaption { background: var(--pink); color: #fff; }

.icon-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 16px; }
.icon-card { background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 24px 14px; text-align: center; transition: transform .3s var(--ease), box-shadow .3s, border-color .3s; }
.icon-card:hover { border-color: var(--pink-200); box-shadow: var(--shadow); transform: translateY(-3px); }
.icon-card__icon { width: 62px; height: 62px; border-radius: 50%; background: var(--pink-50); color: var(--pink); display: grid; place-items: center; margin: 0 auto 12px; }
.icon-card__icon .i { width: 28px; height: 28px; stroke-width: 1.4; }
.icon-card h3 { font-family: var(--font-sans); font-size: 15px; font-weight: 600; margin: 0 0 4px; }
.icon-card p { font-size: 13px; color: var(--muted); margin: 0; line-height: 1.5; }

.faq { max-width: 820px; margin: 0 auto; display: grid; gap: 12px; }
.faq details { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 0 22px; transition: border-color .25s, box-shadow .25s; }
.faq details[open] { border-color: var(--pink-200); box-shadow: var(--shadow); }
.faq summary { list-style: none; cursor: pointer; padding: 18px 34px 18px 0; font-weight: 500; color: var(--ink); position: relative; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 0; top: 50%; transform: translateY(-50%); font-size: 24px; font-weight: 400; color: var(--pink); line-height: 1; }
.faq details[open] summary::after { content: "−"; }
.faq details p { padding-bottom: 18px; margin: 0; }

/* 21. Hakkımızda / galeri ------------------------------------------------------------ */
.gallery { display: grid; grid-template-columns: 2fr 1fr; grid-template-rows: 1fr 1fr; gap: 16px; }
.gallery figure { margin: 0; border-radius: 20px; overflow: hidden; }
.gallery img { width: 100%; height: 100%; object-fit: cover; }
.gallery__big { grid-row: span 2; }
.stat-note { font-size: 13px; color: var(--muted); }

/* 22. KVKK / 404 --------------------------------------------------------------------- */
.prose { max-width: 820px; margin: 0 auto; }
.prose h2 { font-size: 24px; margin: 36px 0 12px; }
.prose ul { list-style: disc; padding-left: 22px; margin: 0 0 1em; }
.prose li { margin-bottom: 6px; }
.prose a { color: var(--pink); text-decoration: underline; }
.notfound { text-align: center; padding: 100px 0 120px; }
.notfound__code { font-family: var(--font-serif); font-size: clamp(100px, 16vw, 160px); color: var(--pink-200); line-height: 1; font-weight: 700; }
.notfound .btn-row { justify-content: center; margin-top: 24px; }

/* 23. Animasyonlar -------------------------------------------------------------------- */
@keyframes pulse { 0%, 100% { box-shadow: 0 0 0 0 rgba(200, 36, 106, .45); } 50% { box-shadow: 0 0 0 6px rgba(200, 36, 106, 0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes popIn { from { opacity: 0; transform: translateY(16px) scale(.97); } to { opacity: 1; transform: none; } }
.js [data-reveal] { opacity: 0; transform: translateY(26px); transition: opacity .8s ease, transform .8s var(--ease); }
.js [data-reveal].is-visible { opacity: 1; transform: none; }

/* ==========================================================================
   Duyarlı tasarım
   ========================================================================== */
@media (max-width: 1099px) {
  .nav { display: none; }
  .header-cta { margin-left: auto; }
  .burger { display: inline-flex; }
  .randevu { grid-template-columns: 1.3fr .9fr; }
  .randevu__media { display: none; }
  .why__stamp { display: none; }
  .campaign-band { grid-template-columns: 340px 1fr; }
}

@media (max-width: 991px) {
  .section { padding: 70px 0; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .why, .sd-hero__grid, .service-row, .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .service-row:nth-child(even) .service-row__media { order: 0; }
  .features { grid-template-columns: repeat(2, 1fr); }
  .features .feature:last-child:nth-child(odd) { grid-column: span 2; }
  .campaign-band { grid-template-columns: 1fr; }
  .campaign-band__media img { min-height: 0; aspect-ratio: 16 / 9; }
  .campaign-band__body { padding: 32px 28px 36px; }
  .videos-grid, .testimonials { grid-template-columns: 1fr 1fr; }
  .cta-band { grid-template-columns: 1fr; text-align: center; padding: 0 24px 34px; gap: 22px; }
  .cta-band__media { margin: 0 -24px; }
  .cta-band__media img { aspect-ratio: 16 / 7; min-height: 0; object-position: center 30%; }
  .cta-band__actions { justify-content: center; }
  .cta-band__icon { display: none; }
  .location { grid-template-columns: 1fr 1fr; }
  .location .map { grid-column: span 2; }
  .location__col:nth-child(2) { border-right: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr 1fr; row-gap: 32px; }
  .steps::before { display: none; }
  .campaigns { grid-template-columns: 1fr; }
  .page-hero__script { display: none; }
}

@media (max-width: 767px) {
  :root { --header-h: 70px; }
  body { font-size: 14.5px; padding-bottom: calc(var(--bottom-nav-h) + env(safe-area-inset-bottom)); }
  .container { padding: 0 16px; }
  .section { padding: 54px 0; }
  .section--tight { padding: 40px 0; }
  .section-head { margin-bottom: 28px; }
  .section-head--row { align-items: center; }
  .section-head--row h2 { font-size: 26px; margin: 0; }

  .topbar, .header-cta, .wa-float { display: none; }
  .burger { margin-left: auto; }
  .logo__word { font-size: 16px; }
  .logo__b { font-size: 44px; }
  .logo__tag { font-size: 6.5px; margin-top: 5px; }
  .announce { font-size: 12.5px; }
  .announce__inner { padding: 7px 40px 7px 14px; justify-content: flex-start; text-align: left; }
  .announce__inner > .i { display: none; }

  .hero--desktop { display: none; }
  .hero--mobile { display: block; }
  .mquick { display: block; }

  .services-grid, .services-grid--2 { grid-template-columns: 1fr; gap: 12px; }
  .service-card { flex-direction: row; border-radius: 18px; }
  .service-card__media { aspect-ratio: auto; width: 116px; min-height: 100px; flex-shrink: 0; }
  .service-card__body { padding: 12px 14px; gap: 10px; }
  .service-card h3 { font-size: 17px; }
  .service-card p { font-size: 12.5px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
  .arrow-circle { width: 34px; height: 34px; }
  .service-row { padding: 36px 0; }

  .videos-grid--scroll, .testimonials {
    grid-template-columns: none; grid-auto-flow: column; grid-auto-columns: 82%;
    overflow-x: auto; scroll-snap-type: x mandatory; gap: 14px;
    margin: 0 -16px; padding: 4px 16px 18px; scrollbar-width: none;
  }
  .videos-grid--scroll::-webkit-scrollbar, .testimonials::-webkit-scrollbar { display: none; }
  .videos-grid--scroll > *, .testimonials > * { scroll-snap-align: start; }
  .videos-grid { grid-template-columns: 1fr; }
  .testimonial { padding: 22px; }

  .filter { flex-wrap: nowrap; justify-content: flex-start; overflow-x: auto; margin: 0 -16px 24px; padding: 0 16px 4px; scrollbar-width: none; }

  .location { grid-template-columns: 1fr; }
  .location__col { border-right: 0; border-bottom: 1px solid var(--line); padding: 22px; }
  .location .map { grid-column: auto; }

  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer__brand { text-align: center; display: flex; flex-direction: column; align-items: center; }
  .footer__col--links { display: none; }
  .socials { justify-content: center; }
  .footer__bottom { flex-direction: column; text-align: center; margin-top: 34px; }
  .site-footer { padding-top: 48px; }

  .bottom-nav {
    display: grid; grid-template-columns: repeat(5, 1fr); align-items: end;
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
    background: var(--teal); padding: 6px 4px calc(8px + env(safe-area-inset-bottom));
    box-shadow: 0 -6px 20px rgba(0, 0, 0, .12); border-radius: 20px 20px 0 0;
  }
  .bottom-nav a { display: flex; flex-direction: column; align-items: center; gap: 3px; color: rgba(255, 255, 255, .88); font-size: 11px; font-weight: 500; padding: 4px 0; }
  .bottom-nav .i { width: 23px; height: 23px; }
  .bottom-nav__cta { color: #fff !important; }
  .bottom-nav__circle { width: 58px; height: 58px; border-radius: 50%; background: linear-gradient(135deg, #D52F76, var(--pink-600)); display: grid; place-items: center; margin-top: -30px; border: 4px solid #fff; box-shadow: 0 6px 16px rgba(200, 36, 106, .4); }

  .form-row, .form-actions { grid-template-columns: 1fr; }
  .card { padding: 24px 18px; border-radius: 22px; }
  .card h2 { font-size: 25px; }
  .randevu { grid-template-columns: 1fr; }
  .randevu__aside { position: static; }
  .contact-cards { grid-template-columns: 1fr; }
  .contact-card--wide { grid-column: auto; }

  .page-hero { padding: 32px 0 36px; }
  .page-hero .deco-leaf { opacity: .25; }
  .btn-row .btn { flex: 1 1 auto; }
  .sd-hero { padding: 20px 0 48px; }
  .sd-hero__script { font-size: 34px; }
  .steps { grid-template-columns: 1fr; row-gap: 18px; }
  .step { display: grid; grid-template-columns: 56px 1fr; gap: 16px; text-align: left; align-items: start; }
  .step__num { margin: 0; }
  .ba-grid { grid-template-columns: 1fr; }
  .icon-cards { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .gallery { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gallery__big { grid-column: span 2; grid-row: auto; }
  .gallery figure { aspect-ratio: 4 / 3; }
  .gallery__big { aspect-ratio: 16 / 10; }
  .campaign-card__body { padding: 20px; }
  .campaign-card h2 { font-size: 22px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .js [data-reveal] { opacity: 1; transform: none; }
}
