/* ==========================================================
   SLIMFIT Kilo Kontrol Merkezi — Alsancak / İzmir
   Tek dosya CSS
   ========================================================== */

:root {
  --fusya: #b92c8c;
  --murdum: #6f245e;
  --murdum-koyu: #40142f;
  --krem: #fff9f7;
  --beyaz: #ffffff;
  --metin: #1e1e1e;
  --metin-2: #666666;
  --altin: #d8b273;
  --cizgi: rgba(30, 30, 30, 0.1);
  --radius: 18px;
  --gecis: 400ms cubic-bezier(0.22, 1, 0.36, 1);
  --serif: "Playfair Display", Georgia, serif;
  --sans: "DM Sans", system-ui, -apple-system, sans-serif;
  --el: "Dancing Script", cursive;
  --max: 1200px;
}

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

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
  font-family: var(--sans);
  color: var(--metin);
  background: var(--beyaz);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

h1, h2, h3, .serif { font-family: var(--serif); font-weight: 600; line-height: 1.18; letter-spacing: -0.01em; }

.wrap { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; }
.center { text-align: center; }

.eyebrow {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--fusya);
  font-weight: 600;
  margin-bottom: 16px;
}
.lead { color: var(--metin-2); font-size: 17px; max-width: 640px; }
.center .lead { margin-inline: auto; }
h2.title { font-size: clamp(28px, 4vw, 44px); margin-bottom: 18px; }
.hl { color: var(--fusya); font-weight: 600; }

/* ---------- Butonlar ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 26px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  transition: transform var(--gecis), background var(--gecis), color var(--gecis), box-shadow var(--gecis);
  white-space: nowrap;
}
.btn-primary { background: var(--fusya); color: #fff; box-shadow: 0 10px 26px -12px rgba(185, 44, 140, 0.75); }
.btn-primary:hover { background: var(--murdum); transform: translateY(-2px); }
.btn-ghost { border: 1px solid rgba(255, 255, 255, 0.7); color: #fff; backdrop-filter: blur(6px); }
.btn-ghost:hover { background: rgba(255, 255, 255, 0.16); transform: translateY(-2px); }
.btn-outline { border: 1px solid var(--cizgi); color: var(--metin); }
.btn-outline:hover { border-color: var(--fusya); color: var(--fusya); transform: translateY(-2px); }
.btn-light { background: #fff; color: var(--murdum); }
.btn-light:hover { transform: translateY(-2px); box-shadow: 0 12px 30px -14px rgba(0, 0, 0, 0.5); }

/* ---------- Header ---------- */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 90;
  transition: background var(--gecis), box-shadow var(--gecis), padding var(--gecis);
  padding: 18px 0;
}
.header.scrolled { background: rgba(255, 255, 255, 0.95); box-shadow: 0 6px 30px -18px rgba(0, 0, 0, 0.45); padding: 10px 0; backdrop-filter: blur(10px); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; }

.logo { line-height: 1.1; color: #fff; transition: color var(--gecis); }
.logo b { font-family: var(--serif); font-size: 26px; letter-spacing: 0.14em; display: block; font-weight: 700; }
.logo span { font-size: 9.5px; letter-spacing: 0.24em; text-transform: uppercase; opacity: 0.85; }
.header.scrolled .logo { color: var(--murdum); }

.nav { display: flex; align-items: center; gap: 28px; }
.nav a {
  font-size: 14.5px; font-weight: 500; color: rgba(255, 255, 255, 0.92);
  position: relative; transition: color var(--gecis);
}
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: -6px; height: 1.5px; width: 100%;
  background: var(--fusya); transform: scaleX(0); transform-origin: right;
  transition: transform 300ms ease;
}
.nav a:hover::after { transform: scaleX(1); transform-origin: left; }
.header.scrolled .nav a { color: var(--metin); }
.nav a:hover { color: var(--fusya); }

.burger { display: none; width: 44px; height: 44px; align-items: center; justify-content: center; }
.burger span { display: block; width: 22px; height: 2px; background: #fff; position: relative; transition: background var(--gecis); }
.burger span::before, .burger span::after { content: ""; position: absolute; left: 0; width: 22px; height: 2px; background: inherit; transition: transform var(--gecis); }
.burger span::before { top: -7px; }
.burger span::after { top: 7px; }
.header.scrolled .burger span, .header.scrolled .burger span::before, .header.scrolled .burger span::after { background: var(--metin); }

/* Mobil menü */
.mobile-menu {
  position: fixed; inset: 0; z-index: 100; background: var(--beyaz);
  transform: translateX(100%); transition: transform 450ms cubic-bezier(0.22, 1, 0.36, 1);
  display: flex; flex-direction: column; padding: 26px 24px 40px; overflow-y: auto;
}
.mobile-menu.open { transform: translateX(0); }
.mm-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 30px; }
.mm-top .logo { color: var(--murdum); }
.mm-close { font-size: 30px; line-height: 1; width: 44px; height: 44px; color: var(--metin); }
.mobile-menu nav { display: flex; flex-direction: column; }
.mobile-menu nav a { font-family: var(--serif); font-size: 24px; padding: 14px 0; border-bottom: 1px solid var(--cizgi); }
.mm-actions { margin-top: 28px; display: grid; gap: 12px; }
.mm-actions .btn { width: 100%; }

/* ---------- Hero slider ---------- */
.hero { position: relative; height: 86vh; min-height: 560px; overflow: hidden; background: #2a0f22; }
.slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1100ms ease; }
.slide.active { opacity: 1; }
.slide img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 22%;
  transform: scale(1.02); transition: transform 7000ms ease-out;
}
.slide.active img { transform: scale(1.09); }
.slide::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(28, 8, 22, 0.72) 0%, rgba(28, 8, 22, 0.45) 38%, rgba(28, 8, 22, 0.12) 68%, rgba(28, 8, 22, 0.28) 100%);
}
.slide-content {
  position: absolute; inset: 0; z-index: 3; display: flex; align-items: center;
}
.slide-content .wrap { max-width: var(--max); }
.slide-text { max-width: 620px; color: #fff; opacity: 0; transform: translateY(26px); transition: opacity 700ms ease 250ms, transform 700ms ease 250ms; }
.slide.active .slide-text { opacity: 1; transform: none; }
.slide-text .eyebrow { color: var(--altin); }
.slide-text h1, .slide-text h2 { font-size: clamp(32px, 5.2vw, 58px); margin-bottom: 18px; text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35); }
.slide-text p { font-size: clamp(15px, 1.6vw, 18px); color: rgba(255, 255, 255, 0.92); max-width: 540px; margin-bottom: 30px; }
.slide-btns { display: flex; flex-wrap: wrap; gap: 12px; }

.hero-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 5;
  width: 48px; height: 48px; border-radius: 50%; display: grid; place-items: center;
  background: rgba(255, 255, 255, 0.14); border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff; font-size: 20px; backdrop-filter: blur(6px); transition: background var(--gecis);
}
.hero-arrow:hover { background: var(--fusya); border-color: var(--fusya); }
.hero-arrow.prev { left: 20px; }
.hero-arrow.next { right: 20px; }

.hero-dots { position: absolute; bottom: 78px; left: 50%; transform: translateX(-50%); z-index: 5; display: flex; gap: 10px; align-items: center; }
.hero-dots button { width: 9px; height: 9px; border-radius: 50%; background: rgba(255, 255, 255, 0.45); transition: all var(--gecis); }
.hero-dots button.active { width: 30px; border-radius: 999px; background: var(--fusya); }

.hero-pause {
  position: absolute; bottom: 74px; right: 24px; z-index: 5; color: #fff;
  font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.4); border-radius: 999px; padding: 8px 16px; min-height: 36px;
}
.scroll-ind {
  position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%); z-index: 5;
  color: rgba(255, 255, 255, 0.85); font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase;
  display: flex; align-items: center; gap: 8px; animation: bob 2.4s ease-in-out infinite;
}
@keyframes bob { 0%, 100% { transform: translate(-50%, 0); } 50% { transform: translate(-50%, 7px); } }

/* ---------- Güven bölümü ---------- */
.trust { background: var(--krem); }
.trust-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 54px; }
.tcard {
  padding: 30px 26px; border-radius: var(--radius); background: #fff;
  border: 1px solid var(--cizgi); transition: transform var(--gecis), box-shadow var(--gecis);
}
.tcard:hover { transform: translateY(-6px); box-shadow: 0 24px 50px -32px rgba(111, 36, 94, 0.55); }
.tcard .ico { color: var(--fusya); margin-bottom: 16px; }
.tcard h3 { font-size: 20px; margin-bottom: 8px; }
.tcard p { color: var(--metin-2); font-size: 15px; }

/* ---------- Hikaye ---------- */
.story { background: var(--krem); }
.story-grid { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 64px; align-items: center; }
.story-media { position: relative; }
.story-media img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; object-position: center 28%; border-radius: 24px; position: relative; z-index: 2; }
.story-media::before {
  content: ""; position: absolute; inset: -18px -18px 40px 30px; border-radius: 26px;
  background: linear-gradient(160deg, rgba(185, 44, 140, 0.14), rgba(216, 178, 115, 0.22)); z-index: 1;
}
.badge {
  position: absolute; z-index: 3; bottom: 22px; left: 22px; background: rgba(255, 255, 255, 0.94);
  color: var(--murdum); border-radius: 999px; padding: 9px 18px; font-size: 13px; font-weight: 600;
  letter-spacing: 0.06em; box-shadow: 0 12px 30px -18px rgba(0, 0, 0, 0.6);
}
.story-text p { color: #3a3a3a; margin-bottom: 16px; max-width: 60ch; }
.quote {
  margin-top: 26px; background: #fff; border: 1px solid var(--cizgi); border-left: 3px solid var(--fusya);
  border-radius: 16px; padding: 26px 28px; position: relative;
}
.quote span.mark { font-family: var(--serif); font-size: 62px; line-height: 0.6; color: rgba(185, 44, 140, 0.25); display: block; margin-bottom: 8px; }
.quote p { font-family: var(--serif); font-size: 19px; color: var(--murdum); margin: 0; }

/* ---------- Kurucu ---------- */
.founder-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.founder-grid img { width: 100%; aspect-ratio: 3 / 4; object-fit: cover; object-position: center 25%; border-radius: 24px; }
.founder h2 { font-size: clamp(26px, 3.4vw, 38px); margin-bottom: 20px; }
.founder p { color: var(--metin-2); margin-bottom: 16px; max-width: 56ch; }
.sign { font-family: var(--el); font-size: 30px; color: var(--fusya); margin-top: 10px; }

/* ---------- Hizmetler ---------- */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 54px; }
.scard {
  border: 1px solid var(--cizgi); border-radius: var(--radius); padding: 34px 30px;
  display: flex; flex-direction: column; transition: transform var(--gecis), box-shadow var(--gecis), border-color var(--gecis);
  background: #fff;
}
.scard:hover { transform: translateY(-6px); border-color: rgba(185, 44, 140, 0.35); box-shadow: 0 28px 54px -34px rgba(111, 36, 94, 0.5); }
.scard .num { font-family: var(--serif); color: var(--altin); font-size: 15px; letter-spacing: 0.14em; margin-bottom: 18px; }
.scard .ico { color: var(--fusya); margin-bottom: 14px; }
.scard h3 { font-size: 22px; margin-bottom: 10px; }
.scard > p { color: var(--metin-2); font-size: 15px; }
.scard ul { list-style: none; margin: 20px 0 26px; display: grid; gap: 9px; }
.scard li { font-size: 14.5px; color: #444; display: flex; gap: 10px; align-items: center; }
.scard li::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--fusya); flex: none; }
.scard .btn { margin-top: auto; align-self: flex-start; }

/* ---------- Galeri ---------- */
.gallery { background: var(--krem); }
.gal-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 200px; gap: 16px; margin-top: 50px; }
.gal-item { position: relative; overflow: hidden; border-radius: 16px; cursor: pointer; }
.gal-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 600ms ease; }
.gal-item::after { content: ""; position: absolute; inset: 0; background: rgba(64, 20, 47, 0); transition: background var(--gecis); }
.gal-item:hover img { transform: scale(1.06); }
.gal-item:hover::after { background: rgba(64, 20, 47, 0.22); }
.gal-item.big { grid-column: span 2; grid-row: span 2; }
.gal-item:nth-child(2) img { object-position: center 20%; }
.gal-item:nth-child(3) img { object-position: center 25%; }
.gal-item:nth-child(4) img { object-position: center 18%; }
.gal-item:nth-child(5) img { object-position: center 30%; }
.gal-note { margin-top: 34px; text-align: center; }
.gal-note p { font-family: var(--serif); font-size: 20px; color: var(--murdum); margin-bottom: 20px; }

.lightbox { position: fixed; inset: 0; z-index: 120; background: rgba(20, 6, 15, 0.94); display: none; place-items: center; padding: 24px; }
.lightbox.open { display: grid; }
.lightbox img { max-width: min(92vw, 720px); max-height: 86vh; border-radius: 14px; object-fit: contain; }
.lb-close { position: absolute; top: 18px; right: 22px; color: #fff; font-size: 34px; line-height: 1; width: 44px; height: 44px; }
.lb-nav { position: absolute; top: 50%; transform: translateY(-50%); color: #fff; font-size: 30px; width: 48px; height: 48px; }
.lb-nav.prev { left: 14px; }
.lb-nav.next { right: 14px; }

/* ---------- Neden ---------- */
.why { background: var(--krem); }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-top: 48px; }
.wcard { padding: 26px 22px; border-radius: var(--radius); background: #fff; border: 1px solid var(--cizgi); transition: transform var(--gecis); }
.wcard:hover { transform: translateY(-5px); }
.wcard .ico { color: var(--fusya); margin-bottom: 14px; }
.wcard h3 { font-size: 18px; margin-bottom: 8px; }
.wcard p { font-size: 14.5px; color: var(--metin-2); }

/* ---------- Timeline ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 56px; position: relative; }
.steps::before { content: ""; position: absolute; top: 26px; left: 6%; right: 6%; height: 1px; background: linear-gradient(90deg, rgba(185,44,140,0.1), rgba(185,44,140,0.45), rgba(216,178,115,0.4)); }
.step { position: relative; }
.step .dot {
  width: 52px; height: 52px; border-radius: 50%; display: grid; place-items: center;
  background: #fff; border: 1px solid rgba(185, 44, 140, 0.3); color: var(--fusya);
  font-family: var(--serif); font-size: 19px; margin-bottom: 18px; position: relative; z-index: 2;
}
.step h3 { font-size: 19px; margin-bottom: 8px; }
.step p { font-size: 14.5px; color: var(--metin-2); }

/* ---------- Motivasyon CTA ---------- */
.cta {
  background: var(--murdum-koyu); color: #fff; position: relative; overflow: hidden; text-align: center;
}
.cta::before {
  content: ""; position: absolute; inset: 0; opacity: 0.22; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
}
.cta .wrap { position: relative; z-index: 2; }
.cta h2 { font-size: clamp(30px, 4.4vw, 50px); margin-bottom: 16px; }
.cta p { color: rgba(255, 255, 255, 0.8); max-width: 560px; margin: 0 auto 32px; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- Yorumlar ---------- */
.rev-track { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 48px; }
.rcard { border: 1px dashed rgba(185, 44, 140, 0.35); border-radius: var(--radius); padding: 30px 26px; background: var(--krem); }
.rcard .stars { color: var(--altin); letter-spacing: 3px; margin-bottom: 14px; }
.rcard p { font-family: var(--serif); font-size: 18px; color: #333; margin-bottom: 18px; }
.rcard .who { font-size: 13.5px; color: var(--metin-2); letter-spacing: 0.06em; }
.rev-dots { display: none; justify-content: center; gap: 8px; margin-top: 22px; }
.rev-dots button { width: 8px; height: 8px; border-radius: 50%; background: rgba(185, 44, 140, 0.3); }
.rev-dots button.active { background: var(--fusya); width: 24px; border-radius: 999px; }

/* ---------- SSS ---------- */
.faq { background: var(--krem); }
.faq-list { max-width: 820px; margin: 46px auto 0; }
.faq-item { border-bottom: 1px solid var(--cizgi); }
.faq-q {
  width: 100%; text-align: left; display: flex; justify-content: space-between; gap: 20px; align-items: center;
  padding: 22px 0; font-size: 17px; font-weight: 600; color: var(--metin); font-family: var(--serif);
  transition: color var(--gecis); min-height: 56px;
}
.faq-q:hover { color: var(--fusya); }
.faq-q .plus { color: var(--fusya); font-size: 22px; transition: transform var(--gecis); flex: none; }
.faq-item.open .plus { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 450ms ease; }
.faq-a p { padding-bottom: 22px; color: var(--metin-2); font-size: 15.5px; max-width: 68ch; }

/* ---------- İletişim ---------- */
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 56px; margin-top: 50px; }
.info h3 { font-size: 22px; margin-bottom: 6px; }
.info .loc { color: var(--fusya); font-weight: 600; margin-bottom: 24px; }
.info ul { list-style: none; display: grid; gap: 16px; }
.info li { display: flex; gap: 14px; align-items: flex-start; font-size: 15px; }
.info li .ico { color: var(--fusya); flex: none; margin-top: 2px; }
.info li b { display: block; font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--metin-2); font-weight: 600; margin-bottom: 2px; }

form { background: var(--krem); border: 1px solid var(--cizgi); border-radius: 22px; padding: 32px; }
.frow { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 7px; color: #333; }
.field input, .field select, .field textarea {
  width: 100%; min-height: 48px; padding: 12px 14px; border-radius: 12px; border: 1px solid var(--cizgi);
  background: #fff; font-family: inherit; font-size: 15px; color: var(--metin); transition: border-color var(--gecis), box-shadow var(--gecis);
}
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--fusya); box-shadow: 0 0 0 3px rgba(185, 44, 140, 0.12);
}
.kvkk { display: flex; gap: 10px; align-items: flex-start; font-size: 13px; color: var(--metin-2); margin: 6px 0 20px; }
.kvkk input { width: 18px; height: 18px; accent-color: var(--fusya); flex: none; margin-top: 2px; }
form .btn { width: 100%; }
.form-ok { display: none; margin-top: 14px; font-size: 14px; color: var(--fusya); font-weight: 600; }
.form-ok.show { display: block; }

/* ---------- Harita ---------- */
.map-wrap { margin-top: 22px; border-radius: 22px; overflow: hidden; border: 1px solid var(--cizgi); background: var(--krem); }
.map-wrap iframe { width: 100%; height: 420px; border: 0; display: block; }

/* ---------- WhatsApp float ---------- */
.wa-float {
  position: fixed; right: 18px; bottom: 18px; z-index: 80; display: flex; align-items: center; gap: 10px;
  background: #25d366; color: #fff; border-radius: 999px; padding: 0 18px 0 14px; height: 54px;
  box-shadow: 0 16px 34px -16px rgba(0, 0, 0, 0.6); font-weight: 600; font-size: 14.5px;
  transition: transform var(--gecis);
}
.wa-float:hover { transform: translateY(-3px); }
.wa-float .lbl { display: none; }
.wa-float:hover .lbl { display: inline; }

/* ---------- Footer ---------- */
.footer { background: var(--murdum-koyu); color: rgba(255, 255, 255, 0.72); padding: 70px 0 26px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 44px; }
.footer .logo { color: #fff; margin-bottom: 16px; }
.footer p { font-size: 14.5px; max-width: 40ch; }
.footer h4 { color: #fff; font-size: 13px; letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 18px; font-weight: 600; }
.footer ul { list-style: none; display: grid; gap: 11px; font-size: 14.5px; }
.footer a:hover { color: var(--altin); }
.footer-bot {
  margin-top: 46px; padding-top: 22px; border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 13px;
}
.footer-bot .links { display: flex; gap: 18px; flex-wrap: wrap; }

/* ---------- Reveal animasyonu ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 700ms ease, transform 700ms cubic-bezier(0.22, 1, 0.36, 1); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 1020px) {
  .story-grid, .founder-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .why-grid, .steps { grid-template-columns: repeat(2, 1fr); }
  .steps::before { display: none; }
  .services-grid, .trust-cards { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 820px) {
  .nav { display: none; }
  .header .btn-primary { display: none; }
  .burger { display: flex; }
  .section { padding: 72px 0; }
  .hero { height: 76vh; min-height: 520px; }
  .slide img { object-position: 60% 18%; }
  .slide::after { background: linear-gradient(180deg, rgba(28, 8, 22, 0.45) 0%, rgba(28, 8, 22, 0.3) 40%, rgba(28, 8, 22, 0.82) 100%); }
  .slide-content { align-items: flex-end; padding-bottom: 108px; }
  .slide-text h1, .slide-text h2 { font-size: clamp(26px, 7vw, 34px); }
  .slide-btns .btn { flex: 1 1 auto; }
  .hero-arrow { display: none; }
  .hero-pause { bottom: 18px; right: 16px; }
  .hero-dots { bottom: 26px; }
  .scroll-ind { display: none; }
  .gal-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 170px; }
  .gal-item.big { grid-column: span 2; grid-row: span 1; }
  .rev-track { grid-template-columns: 1fr; }
  .rev-track .rcard { display: none; }
  .rev-track .rcard.active { display: block; }
  .rev-dots { display: flex; }
  .frow { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .wa-float .lbl { display: inline; }
  form { padding: 24px 20px; }
}
/* ==========================================
   SLIMFIT VIDEO BOLUMU
========================================== */

.slimfit-video-section {
  padding: 90px 0 100px;
  position: relative;
  overflow: hidden;
  background: #fff;
}

.slimfit-video-container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}


/* UST BASLIK */
.slimfit-video-header {
  text-align: center;
  margin-bottom: 50px;
}

.slimfit-video-header .video-eyebrow {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--fusya);
  font-weight: 600;
  margin-bottom: 16px;
}

.slimfit-video-header h2 {
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 600;
  line-height: 1.18;
  margin-bottom: 18px;
}

.slimfit-video-header > p:last-child {
  color: var(--metin-2);
  font-size: 17px;
  max-width: 640px;
  margin: 0 auto;
}


/* ==========================================
   VIDEO GRID
========================================== */

.slimfit-video-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;

  width: 100%;
  max-width: 1000px;
  margin: 0 auto;

  align-items: start;
}


/* VIDEO + BASLIK */
.slimfit-video-item {
  width: 100%;
  min-width: 0;
  text-align: center;
}


/* VIDEO BASLIGI */
.slimfit-video-title {
  display: block;
  margin: 0 0 18px;

  font-family: var(--serif);
  font-size: 25px;
  font-weight: 600;
  line-height: 1.2;

  color: var(--murdum);
}


/* VIDEO KUTUSU */
.slimfit-video-box {
  display: block;
  position: relative;

  width: 100%;
  aspect-ratio: 9 / 16;

  overflow: hidden;

  background: #111;
  border-radius: 24px;

  box-shadow:
    0 18px 50px rgba(0, 0, 0, 0.12),
    0 4px 14px rgba(0, 0, 0, 0.08);

  transition:
    transform var(--gecis),
    box-shadow var(--gecis);
}


/* VIDEO */
.slimfit-video-box video {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center;

  margin: 0;
  padding: 0;
}


/* HOVER */
.slimfit-video-box:hover {
  transform: translateY(-7px);

  box-shadow:
    0 26px 60px rgba(0, 0, 0, 0.16),
    0 8px 20px rgba(0, 0, 0, 0.08);
}


/* ORTADAKI VIDEOYU HAFIF YUKARI AL */
.slimfit-video-item:nth-child(2) {
  transform: translateY(-18px);
}


/* ==========================================
   TABLET
========================================== */

@media (max-width: 900px) {

  .slimfit-video-grid {
    gap: 18px;
  }

  .slimfit-video-title {
    font-size: 21px;
  }

  .slimfit-video-item:nth-child(2) {
    transform: translateY(-10px);
  }
}


/* ==========================================
   MOBIL
========================================== */

@media (max-width: 767px) {

  /* VIDEO BOLUMU */
  .slimfit-video-section {
    padding: 55px 0 65px;
    position: relative;
    overflow: hidden;
  }


  /* ANA CONTAINER */
  .slimfit-video-container {
    width: 100%;
    max-width: none;
    padding: 0;
    margin: 0 auto;
  }


  /* UST BASLIK ALANI */
  .slimfit-video-header {
    padding: 0 24px;
    margin-bottom: 32px;
    text-align: center;
  }


  .slimfit-video-header .video-eyebrow {
    font-size: 11px;
    margin-bottom: 12px;
  }


  .slimfit-video-header h2 {
    font-size: 32px;
    line-height: 1.15;
    margin-bottom: 16px;
  }


  .slimfit-video-header > p:last-child {
    max-width: 360px;
    margin: 0 auto;

    font-size: 15px;
    line-height: 1.65;
  }


  /* ==========================================
     YATAY VIDEO SLIDER
  ========================================== */

  .slimfit-video-grid {
    display: flex;

    width: 100%;
    max-width: none;

    gap: 18px;

    margin: 0;
    padding: 10px 24px 28px;

    overflow-x: auto;
    overflow-y: hidden;

    scroll-snap-type: x mandatory;

    -webkit-overflow-scrolling: touch;

    scrollbar-width: none;

    box-sizing: border-box;
  }


  .slimfit-video-grid::-webkit-scrollbar {
    display: none;
  }


  /* ==========================================
     VIDEO KARTLARI
  ========================================== */

  .slimfit-video-item,
  .slimfit-video-item:nth-child(2) {
    flex: 0 0 80%;

    width: 80%;
    max-width: 310px;
    min-width: 0;

    margin: 0;

    text-align: center;

    transform: none !important;

    scroll-snap-align: center;
    scroll-snap-stop: always;

    box-sizing: border-box;
  }


  /* VIDEO BASLIGI */
  .slimfit-video-title {
    display: block;

    width: 100%;

    margin: 0 0 14px;

    font-family: var(--serif);
    font-size: 22px;
    font-weight: 600;
    line-height: 1.2;

    color: var(--murdum);

    text-align: center;

    white-space: nowrap;
  }


  /* ==========================================
     VIDEO KUTUSU
  ========================================== */

  .slimfit-video-box {
    display: block;
    position: relative;

    width: 100%;
    aspect-ratio: 9 / 16;

    margin: 0;
    padding: 0;

    overflow: hidden;

    background: #111;

    border-radius: 20px;

    box-shadow:
      0 18px 40px rgba(0, 0, 0, 0.12),
      0 4px 12px rgba(0, 0, 0, 0.07);

    /*
      Android Chrome'un video ve kontrol
      katmanini ayni kutuya gore hesaplamasina
      yardimci olur.
    */
    contain: layout paint;
    isolation: isolate;

    transform: translateZ(0) !important;
    -webkit-transform: translateZ(0) !important;

    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;

    box-sizing: border-box;
  }


  /* MOBILDE HOVER HAREKETINI KAPAT */
  .slimfit-video-box:hover {
    transform: translateZ(0) !important;
    -webkit-transform: translateZ(0) !important;
  }


  /* ==========================================
     VIDEO
  ========================================== */

  .slimfit-video-box video {
    display: block;

    width: 100% !important;
    height: 100% !important;

    min-width: 100%;
    max-width: 100%;

    margin: 0 !important;
    padding: 0 !important;

    border: 0;

    object-fit: cover;
    object-position: center center;

    /*
      Chrome'un native controls katmaninin
      video boyutundan farkli hesaplanmasini
      azaltir.
    */
    transform: translateZ(0);
    -webkit-transform: translateZ(0);

    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;

    box-sizing: border-box;
  }


  /* ==========================================
     ANDROID / CHROME NATIVE VIDEO CONTROLS
  ========================================== */

  .slimfit-video-box video::-webkit-media-controls {
    width: 100% !important;
    max-width: 100% !important;
  }


  .slimfit-video-box video::-webkit-media-controls-enclosure {
    width: 100% !important;
    max-width: 100% !important;

    box-sizing: border-box;
  }


  .slimfit-video-box video::-webkit-media-controls-panel {
    width: 100% !important;
    max-width: 100% !important;

    box-sizing: border-box;
  }


  /* SURE ALANLARININ TASMASINI AZALT */
  .slimfit-video-box video::-webkit-media-controls-current-time-display,
  .slimfit-video-box video::-webkit-media-controls-time-remaining-display {
    margin-left: 2px !important;
    margin-right: 2px !important;

    padding: 0 !important;
  }


  /* PROGRESS BAR ALANI */
  .slimfit-video-box video::-webkit-media-controls-timeline {
    margin-left: 4px !important;
    margin-right: 4px !important;
  }


  /* FULLSCREEN / SES / DIGER KONTROLLER */
  .slimfit-video-box video::-webkit-media-controls-fullscreen-button,
  .slimfit-video-box video::-webkit-media-controls-mute-button {
    flex-shrink: 0;
  }

}
/* =========================
   INSTAGRAM
========================= */

.instagram-section {
  overflow: hidden;
}

.instagram-feed {
  width: 100%;
  max-width: 1200px;
  margin: 40px auto 0;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.instagram-feed iframe {
  display: block;
  margin: 0 auto !important;
  max-width: 100% !important;
}

.instagram-follow {
  margin-top: 32px;
}

@media (max-width: 767px) {
  .instagram-feed {
    margin-top: 28px;
  }
}