/* ============================================================
   Nailist Exclusive — Frontend CSS (premium, mobile-first)
   ============================================================ */

/* ===== CSS VARIABLES ===== */
:root {
  /* Ana renk — sıcak şampanya / rose gold (admin'den override edilebilir) */
  --color-primary:       #b8926c;
  --color-primary-dark:  #9a7555;
  --color-primary-light: #e8d5bf;
  --color-primary-pale:  #f7f0e8;
  --color-primary-rgb:   184,146,108;

  /* Accent — desteklemek için lavender taupe */
  --color-accent:        #c89b7b;

  /* Koyu tonlar — sıcak siyah */
  --color-dark:    #1a1715;
  --color-dark-2:  #2b2622;
  --color-dark-3:  #3e3833;

  /* Zemin tonları */
  --color-white:   #ffffff;
  --color-cream:   #fdfaf6;
  --color-light:   #f5ede2;
  --color-light-2: #ebe0d3;
  --color-border:  #ece1d4;

  /* Metin */
  --color-text:       #3a3530;
  --color-text-light: #9a8a7a;
  --color-text-muted: #b3a596;

  /* Fontlar */
  --font-primary:   'Oranienbaum', serif;
  --font-secondary: 'Montserrat', sans-serif;

  /* Hareket */
  --easing-smooth: cubic-bezier(.22,.8,.22,1);
  --easing-bounce: cubic-bezier(.34,1.56,.64,1);
  --transition: all 0.35s var(--easing-smooth);

  /* Gölgeler */
  --shadow-sm:   0 2px 12px rgba(58,53,48,0.06);
  --shadow:      0 4px 24px rgba(58,53,48,0.09);
  --shadow-md:   0 12px 44px rgba(58,53,48,0.14);
  --shadow-lg:   0 24px 70px rgba(58,53,48,0.18);
  --shadow-xl:   0 36px 100px rgba(58,53,48,0.22);
  --shadow-gold: 0 14px 38px rgba(var(--color-primary-rgb), 0.30);

  /* Yarıçaplar */
  --radius:    8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 28px;
  --radius-pill: 999px;

  /* Z-index */
  --z-header: 999;
  --z-mobile-menu: 1000;
  --z-float: 998;
}

/* picture etiketi — modern tarayıcılarda contents (transparent layout)
   Eski tarayıcılarda da img stilleri korunsun */
picture { display: contents; }
@supports not (display: contents) {
  picture {
    display: block;
    width: 100%;
    height: 100%;
  }
  picture > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 88px; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-secondary);
  color: var(--color-text);
  background: var(--color-white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
  /* EXIF orientation'a saygı göster (telefon resimleri yan dönmesin) */
  image-orientation: from-image;
}

/* Hero swiper resimlerinin doğru oranı korunsun */
.hero-slide img,
.hero-slide-media img {
  width: 100% !important;
  height: 100% !important;
}
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
button { font-family: inherit; }

/* Erişilebilir focus halkası */
:focus-visible { outline: 2px solid var(--color-primary); outline-offset: 3px; border-radius: 4px; }
button:focus-visible, .btn:focus-visible { outline-offset: 4px; }

/* Skip link (a11y) */
.skip-link {
  position: absolute;
  top: -100px; left: 0;
  background: var(--color-dark);
  color: #fff;
  padding: 12px 22px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  z-index: 9999;
  transition: top 0.2s;
  border-radius: 0 0 8px 0;
}
.skip-link:focus { top: 0; }

/* Selection */
::selection { background: var(--color-primary); color: #fff; }

/* Custom scrollbar (desktop only) */
@media (min-width: 768px) {
  ::-webkit-scrollbar { width: 10px; height: 10px; }
  ::-webkit-scrollbar-track { background: var(--color-cream); }
  ::-webkit-scrollbar-thumb { background: var(--color-light-2); border-radius: 5px; border: 2px solid var(--color-cream); }
  ::-webkit-scrollbar-thumb:hover { background: var(--color-primary-light); }
}

.container { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 32px; }
.section-padding { padding: 112px 0; }
.section-header { text-align: center; margin-bottom: 72px; }

/* ===== SECTION TYPOGRAPHY ===== */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--color-primary-dark);
  margin-bottom: 18px;
}
.section-label::before,
.section-label::after {
  content: '';
  display: inline-block;
  width: 22px;
  height: 1px;
  background: var(--color-primary);
}
.section-label.light { color: var(--color-primary-light); }
.section-label.light::before,
.section-label.light::after { background: var(--color-primary); opacity: 0.6; }

.section-title {
  font-family: var(--font-primary);
  font-size: clamp(34px, 4.5vw, 58px);
  font-weight: 400;
  color: var(--color-dark);
  line-height: 1.08;
  letter-spacing: 0.005em;
  margin-bottom: 18px;
}
.section-title.light { color: #fff; }

.section-desc { font-size: 15px; color: var(--color-text-light); max-width: 540px; margin: 0 auto; line-height: 1.85; }
.section-desc.light { color: rgba(255,255,255,0.55); }

.divider {
  width: 44px;
  height: 1.5px;
  background: var(--color-primary);
  margin: 22px auto 0;
  border-radius: 2px;
  opacity: 0.7;
}
.divider.left { margin-left: 0; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 14px 30px;
  font-family: var(--font-secondary);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  border-radius: var(--radius);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn-lg { padding: 17px 36px; font-size: 11px; }
.btn-primary {
  background: var(--color-dark);
  color: #fff;
  border-color: var(--color-dark);
  box-shadow: 0 6px 18px rgba(0,0,0,0.14);
}
.btn-primary:hover {
  background: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}
.btn-outline {
  background: rgba(255,255,255,0.08);
  color: #fff;
  border-color: rgba(255,255,255,0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.85);
  color: #fff;
  transform: translateY(-2px);
}
.btn-outline-dark {
  background: transparent;
  color: var(--color-dark);
  border-color: var(--color-dark-3);
}
.btn-outline-dark:hover {
  background: var(--color-dark);
  color: #fff;
}
.btn-gold {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
}
.btn-gold:hover {
  background: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}
.btn-whatsapp {
  background: #25d366;
  color: #fff;
  border-color: #25d366;
  box-shadow: 0 6px 18px rgba(37,211,102,0.30);
}
.btn-whatsapp:hover {
  background: #1bb855;
  border-color: #1bb855;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(37,211,102,0.40);
}

/* ===== ANNOUNCEMENT BAR ===== */
.announcement-bar {
  background: linear-gradient(90deg, var(--color-primary-pale) 0%, var(--color-light) 100%);
  color: var(--color-dark-2);
  text-align: center;
  padding: 11px 24px;
  font-size: 11.5px;
  letter-spacing: 0.04em;
  font-weight: 500;
  border-bottom: 1px solid var(--color-border);
}
.announcement-bar a { color: var(--color-primary-dark); font-weight: 700; }
.announcement-bar a:hover { color: var(--color-dark); }

/* ===== HEADER ===== */
.header {
  position: sticky;
  top: 0;
  z-index: var(--z-header);
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom: 1px solid var(--color-border);
  transition: box-shadow 0.3s ease, background 0.3s ease, height 0.3s ease;
}
.header.scrolled {
  background: rgba(255,255,255,0.98);
  box-shadow: 0 8px 32px rgba(58,53,48,0.10);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 76px; gap: 24px; }
.logo {
  font-family: var(--font-primary);
  font-size: 24px;
  font-weight: 400;
  color: var(--color-dark);
  letter-spacing: 0.06em;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.logo span { color: var(--color-primary-dark); }
.nav { display: flex; align-items: center; gap: 36px; flex: 1; justify-content: center; }
.nav a {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-dark-3);
  position: relative;
  padding-bottom: 2px;
}
.nav a::after { content: ''; position: absolute; bottom: -3px; left: 0; width: 0; height: 1.5px; background: var(--color-primary); transition: width 0.35s var(--easing-smooth); }
.nav a:hover, .nav a.active { color: var(--color-primary-dark); }
.nav a:hover::after, .nav a.active::after { width: 100%; }

.header-cta { display: flex; align-items: center; gap: 16px; flex-shrink: 0; }
.header-phone { font-size: 12px; font-weight: 700; color: var(--color-dark); display: flex; align-items: center; gap: 7px; }
.header-phone i { color: var(--color-primary-dark); font-size: 11px; }

/* ===== HAMBURGER ===== */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: rgba(255,255,255,0.6);
  border: 1px solid var(--color-border);
  padding: 10px;
  border-radius: 10px;
  transition: var(--transition);
}
.hamburger:hover { background: var(--color-primary-pale); }
.hamburger span { display: block; width: 22px; height: 1.5px; background: var(--color-dark); transition: var(--transition); border-radius: 2px; }
.hamburger.active { background: var(--color-dark); border-color: var(--color-dark); }
.hamburger.active span { background: #fff; }
.hamburger.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ===== MOBILE MENU ===== */
.mobile-menu {
  display: flex;
  position: fixed;
  inset: 0;
  background: linear-gradient(180deg, var(--color-cream) 0%, var(--color-light) 100%);
  z-index: var(--z-mobile-menu);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 22px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
  padding: 80px 28px 40px;
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-menu a:not(.btn) {
  font-family: var(--font-primary);
  font-size: clamp(28px, 7vw, 38px);
  color: var(--color-dark);
  letter-spacing: 0.04em;
  position: relative;
  transform: translateY(20px);
  opacity: 0;
  transition: opacity 0.4s, transform 0.4s, color 0.2s;
}
.mobile-menu.open a:not(.btn) { opacity: 1; transform: translateY(0); }
.mobile-menu.open a:nth-of-type(1) { transition-delay: 0.10s; }
.mobile-menu.open a:nth-of-type(2) { transition-delay: 0.16s; }
.mobile-menu.open a:nth-of-type(3) { transition-delay: 0.22s; }
.mobile-menu.open a:nth-of-type(4) { transition-delay: 0.28s; }
.mobile-menu.open a:nth-of-type(5) { transition-delay: 0.34s; }
.mobile-menu.open .btn       { transition-delay: 0.40s; }
.mobile-menu a:not(.btn):hover { color: var(--color-primary-dark); }
.mobile-menu .btn { margin-top: 18px; padding: 16px 36px; }
.mobile-menu-close {
  position: absolute;
  top: 22px; right: 24px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  width: 44px; height: 44px;
  border-radius: 50%;
  font-size: 18px; cursor: pointer; color: var(--color-dark);
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.mobile-menu-close:hover { background: var(--color-dark); color: #fff; transform: rotate(90deg); }
.mobile-menu-phone { font-size: 13px; font-weight: 600; color: var(--color-text-light); letter-spacing: 0.04em; margin-top: 8px; }

/* ===== HERO ===== */
.hero {
  position: relative;
  height: 100vh;
  height: 100svh;
  min-height: 620px;
  max-height: 920px;
  overflow: hidden;
  background: var(--color-dark);
}

/* Swiper container fills hero */
.hero-swiper { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-slide { position: relative; width: 100%; height: 100%; overflow: hidden; }
.hero-slide-media { position: absolute; inset: 0; }
.hero-slide-img,
.hero-slide-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transform: scale(1.06);
  transition: transform 8s ease-out;
  will-change: transform;
}
.hero-slide.is-animating .hero-slide-img,
.hero-slide.is-animating .hero-slide-media img { transform: scale(1.18); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(110deg, rgba(15,12,10,0.78) 0%, rgba(15,12,10,0.55) 45%, rgba(15,12,10,0.18) 100%),
    linear-gradient(0deg, rgba(15,12,10,0.45) 0%, transparent 50%);
  pointer-events: none;
}

/* Hero content */
.hero-content {
  position: absolute; inset: 0; z-index: 5;
  display: flex; align-items: center;
  pointer-events: none;
}
.hero-content > .container { pointer-events: auto; }
.hero-text { max-width: 720px; color: #fff; }
.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--color-primary-light);
  margin-bottom: 28px;
  padding: 8px 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(var(--color-primary-rgb), 0.4);
  border-radius: var(--radius-pill);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  transform: translateY(14px);
  animation: fadeUp 0.8s var(--easing-smooth) 0.2s forwards;
}
.hero-label-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--color-primary-light);
  box-shadow: 0 0 0 4px rgba(var(--color-primary-rgb), 0.25);
  animation: pulseDot 2s ease-in-out infinite;
}
@keyframes pulseDot {
  0%, 100% { box-shadow: 0 0 0 4px rgba(var(--color-primary-rgb), 0.25); }
  50%      { box-shadow: 0 0 0 8px rgba(var(--color-primary-rgb), 0.0); }
}

.hero-title {
  font-family: var(--font-primary);
  font-size: clamp(44px, 7.5vw, 96px);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: 0.005em;
  margin-bottom: 24px;
  color: #fff;
  text-shadow: 0 2px 30px rgba(0,0,0,0.25);
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.95s var(--easing-smooth) 0.4s forwards;
}
.hero-subtitle {
  font-size: clamp(14px, 1.6vw, 16px);
  line-height: 1.85;
  color: rgba(255,255,255,0.78);
  margin-bottom: 40px;
  max-width: 480px;
  opacity: 0;
  transform: translateY(18px);
  animation: fadeUp 0.95s var(--easing-smooth) 0.6s forwards;
}
.hero-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 44px;
  opacity: 0;
  transform: translateY(18px);
  animation: fadeUp 0.95s var(--easing-smooth) 0.8s forwards;
}

/* Hero trust indicators */
.hero-trust {
  display: inline-flex;
  align-items: center;
  gap: 22px;
  padding: 14px 22px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-pill);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  opacity: 0;
  transform: translateY(18px);
  animation: fadeUp 0.95s var(--easing-smooth) 1.0s forwards;
}
.hero-trust-item { display: flex; flex-direction: column; align-items: flex-start; line-height: 1.2; }
.hero-trust-item strong {
  font-family: var(--font-primary);
  font-size: 19px;
  color: var(--color-primary-light);
  font-weight: 400;
}
.hero-trust-item span {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-top: 2px;
}
.hero-trust-divider { width: 1px; height: 28px; background: rgba(255,255,255,0.15); }

/* Hero pagination (custom) */
.hero-pagination {
  position: absolute;
  bottom: 105px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  z-index: 10;
}
.hero .swiper-pagination { position: static; display: flex; gap: 10px; justify-content: center; width: auto; }
.hero .swiper-pagination-bullet {
  width: 28px; height: 3px;
  background: rgba(255,255,255,0.25);
  border-radius: 2px;
  opacity: 1;
  transition: all 0.35s var(--easing-smooth);
  position: relative;
  overflow: hidden;
  margin: 0 !important;
}
.hero .swiper-pagination-bullet .bullet-progress {
  position: absolute; left: 0; top: 0;
  width: 0; height: 100%;
  background: var(--color-primary-light);
  border-radius: 2px;
}
.hero .swiper-pagination-bullet-active { width: 56px; background: rgba(255,255,255,0.20); }
.hero .swiper-pagination-bullet-active .bullet-progress {
  animation: bulletProgress 6s linear forwards;
}
@keyframes bulletProgress {
  from { width: 0; }
  to   { width: 100%; }
}

/* Hero nav arrows */
.hero-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.20);
  color: #fff;
  font-size: 14px;
  cursor: pointer;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: var(--transition);
  opacity: 0;
}
.hero-swiper:hover .hero-nav { opacity: 1; }
.hero-nav:hover { background: rgba(255,255,255,0.20); border-color: rgba(255,255,255,0.4); transform: translateY(-50%) scale(1.08); }
.hero-nav-prev { left: 28px; }
.hero-nav-next { right: 28px; }

/* Hero scroll indicator */
.hero-scroll {
  position: absolute;
  right: 32px;
  bottom: 110px;
  z-index: 5;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  color: rgba(255,255,255,0.6);
  writing-mode: vertical-rl;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.3s;
  opacity: 0;
  animation: fadeIn 1s var(--easing-smooth) 1.2s forwards;
}
.hero-scroll:hover { color: var(--color-primary-light); }
.hero-scroll-line {
  display: block;
  width: 1px; height: 50px;
  background: linear-gradient(180deg, transparent, rgba(255,255,255,0.6));
  position: relative;
  overflow: hidden;
}
.hero-scroll-line::after {
  content: '';
  position: absolute; top: -100%; left: 0;
  width: 100%; height: 100%;
  background: var(--color-primary-light);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0% { top: -100%; } 100% { top: 100%; }
}
.hero-scroll-text { writing-mode: vertical-rl; }

/* Hero bottom info bar */
.hero-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: rgba(15,12,10,0.50);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-top: 1px solid rgba(255,255,255,0.10);
}
.hero-bar-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 28px;
  border-right: 1px solid rgba(255,255,255,0.08);
  color: #fff;
  transition: background 0.3s;
}
.hero-bar-item:last-child { border-right: none; }
.hero-bar-item:hover { background: rgba(255,255,255,0.04); }
.hero-bar-item i { font-size: 20px; color: var(--color-primary-light); flex-shrink: 0; }
.hero-bar-item strong { font-size: 12.5px; font-weight: 700; display: block; margin-bottom: 2px; }
.hero-bar-item span { font-size: 11.5px; color: rgba(255,255,255,0.56); }

@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { to { opacity: 1; } }

/* ===== SERVICES ===== */
.services { background: var(--color-cream); position: relative; }
.services::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-light-2), transparent);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 0 32px;
  max-width: 1280px;
  margin: 0 auto;
}

.service-card {
  position: relative;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid transparent;
  transition: transform 0.5s var(--easing-smooth), box-shadow 0.5s var(--easing-smooth), border-color 0.3s;
  display: flex;
  flex-direction: column;
  isolation: isolate;
}
.service-card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(var(--color-primary-rgb),0.06) 0%, transparent 60%);
  opacity: 0; transition: opacity 0.45s; pointer-events: none; z-index: 1;
}
.service-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); border-color: var(--color-primary-light); }
.service-card:hover::before { opacity: 1; }

.service-card-image {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 75%; /* 4:3 fallback */
  overflow: hidden;
  background: var(--color-light);
}
@supports (aspect-ratio: 4/3) {
  .service-card-image {
    height: auto;
    padding-top: 0;
    aspect-ratio: 4/3;
  }
}
.service-card-image > picture,
.service-card-image > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.service-card-image picture > img,
.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s var(--easing-smooth);
}
.service-card:hover .service-card-image img { transform: scale(1.08); }
.service-card-image::after {
  content: '';
  position: absolute; inset: auto 0 0; height: 60%;
  background: linear-gradient(180deg, transparent, rgba(20,17,14,0.55));
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s;
}
.service-card:hover .service-card-image::after { opacity: 1; }

.service-card > .service-icon-wrap {
  margin: 36px 36px 0;
  width: 56px; height: 56px;
  border: 1px solid var(--color-border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--color-primary-pale);
  transition: var(--transition);
}
.service-card > .service-icon-wrap i { font-size: 22px; color: var(--color-primary-dark); transition: color 0.3s; }
.service-card:hover > .service-icon-wrap { background: var(--color-primary); border-color: var(--color-primary); }
.service-card:hover > .service-icon-wrap i { color: #fff; }

.service-card-number {
  font-family: var(--font-primary);
  font-size: 56px;
  line-height: 1;
  color: rgba(255,255,255,0.65);
  position: absolute;
  top: 18px; right: 24px;
  user-select: none; pointer-events: none; z-index: 2;
  text-shadow: 0 4px 18px rgba(0,0,0,0.28);
}
.service-card:not(:has(.service-card-image)) .service-card-number {
  color: var(--color-light); text-shadow: none;
}

.service-card-body { padding: 28px 30px 32px; display: flex; flex-direction: column; flex: 1; position: relative; z-index: 2; }
.service-card-title {
  font-family: var(--font-primary);
  font-size: 26px;
  font-weight: 400;
  color: var(--color-dark);
  margin-bottom: 12px;
  line-height: 1.2;
}
.service-card-desc {
  font-size: 13.5px;
  line-height: 1.8;
  color: var(--color-text-light);
  margin-bottom: 22px;
  flex: 1;
}
.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-primary-dark);
  border-bottom: 1px solid var(--color-primary-light);
  padding-bottom: 4px;
  align-self: flex-start;
  transition: all 0.3s ease;
}
.service-card-link i { transition: transform 0.3s; }
.service-card-link:hover { color: var(--color-dark); border-color: var(--color-dark); gap: 14px; }
.service-card-link:hover i { transform: translateX(4px); }

/* ===== ABOUT ===== */
.about { background: var(--color-light); position: relative; overflow: hidden; }
.about::before {
  content: '';
  position: absolute; top: 0; right: 0;
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(var(--color-primary-rgb), 0.08), transparent 65%);
  pointer-events: none;
}
.about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 88px; align-items: center; position: relative; z-index: 1; }
.about-image { position: relative; }
.about-image-main {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: block;
}
/* Fallback için about-image konteynerine min-height ver */
.about-image {
  min-height: 360px;
}
@supports not (aspect-ratio: 4/5) {
  .about-image-main {
    height: auto;
    max-height: 600px;
  }
}
.about-image::after {
  content: '';
  position: absolute;
  top: 30px; left: 30px;
  width: 100%; height: 100%;
  border: 2px solid var(--color-primary);
  border-radius: var(--radius-lg);
  z-index: -1;
  opacity: 0.3;
}
.about-image-badge {
  position: absolute;
  bottom: 44px;
  right: -28px;
  background: linear-gradient(135deg, var(--color-dark) 0%, var(--color-dark-2) 100%);
  color: #fff;
  padding: 26px 30px;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-lg);
  transition: transform 0.4s var(--easing-smooth);
}
.about-image:hover .about-image-badge { transform: translateY(-5px); }
.about-image-badge .number {
  font-family: var(--font-primary);
  font-size: 44px;
  color: var(--color-primary-light);
  line-height: 1; display: block;
}
.about-image-badge .label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  display: block; margin-top: 6px;
}
.about-content .section-header { text-align: left; margin-bottom: 32px; }
.about-content .section-header .divider { margin: 20px 0 0; }
.about-content .section-label::before { display: none; }
.about-text { font-size: 15px; line-height: 1.95; color: var(--color-text); margin-bottom: 18px; }
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 40px 0;
  padding: 32px 0;
  border-top: 1px solid var(--color-light-2);
  border-bottom: 1px solid var(--color-light-2);
}
.stat-item { text-align: center; padding: 0 12px; border-right: 1px solid var(--color-light-2); }
.stat-item:last-child { border-right: none; }
.stat-number { font-family: var(--font-primary); font-size: 38px; color: var(--color-dark); line-height: 1; display: block; }
.stat-label { font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--color-text-light); display: block; margin-top: 8px; }

/* ===== WORKING HOURS ===== */
.hours { position: relative; padding: 112px 0; overflow: hidden; }
.hours-bg { position: absolute; inset: 0; z-index: 0; }
.hours-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 35%; }
.hours-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(15,12,10,0.92) 0%, rgba(15,12,10,0.85) 50%, rgba(15,12,10,0.72) 100%);
}
.hours-content { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.hours-left { color: #fff; }
.hours-left .section-header { text-align: left; margin-bottom: 28px; }
.hours-left .section-header .divider { margin: 20px 0 0; }
.hours-left .section-label::before { display: none; }
.hours-left .section-title { color: #fff; }
.hours-desc { font-size: 15px; line-height: 1.85; color: rgba(255,255,255,0.55); margin-bottom: 36px; }
.hours-cta { display: flex; gap: 12px; flex-wrap: wrap; }

.hours-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-xl);
  overflow: hidden;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
}
.hours-card-header {
  padding: 24px 30px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(var(--color-primary-rgb), 0.10);
}
.hours-card-header i { font-size: 20px; color: var(--color-primary-light); }
.hours-card-header h3 { font-family: var(--font-primary); font-size: 21px; color: #fff; font-weight: 400; letter-spacing: 0.05em; }
.hours-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 30px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: background 0.2s;
}
.hours-row:last-child { border-bottom: none; }
.hours-row:hover { background: rgba(255,255,255,0.04); }
.hours-row.today { background: rgba(var(--color-primary-rgb), 0.16); border-left: 3px solid var(--color-primary); }
.hours-day { font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.78); display: flex; align-items: center; gap: 10px; }
.hours-day .today-badge { font-size: 9px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; background: var(--color-primary); color: #fff; padding: 3px 9px; border-radius: var(--radius-pill); }
.hours-time { font-family: var(--font-primary); font-size: 18px; color: var(--color-primary-light); }
.hours-time.closed { font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.25); font-family: var(--font-secondary); }

/* ===== HIGHLIGHT BANNER ===== */
.highlight-banner { background: var(--color-white); border-top: 1px solid var(--color-border); border-bottom: 1px solid var(--color-border); }
.highlight-inner { display: grid; grid-template-columns: repeat(4, 1fr); }
.highlight-item {
  text-align: center;
  padding: 56px 28px;
  border-right: 1px solid var(--color-border);
  transition: background 0.3s, transform 0.3s;
  position: relative;
}
.highlight-item:last-child { border-right: none; }
.highlight-item:hover { background: var(--color-cream); transform: translateY(-4px); }
.highlight-item i {
  font-size: 28px;
  color: var(--color-primary);
  margin-bottom: 18px;
  display: inline-block;
  transition: transform 0.5s var(--easing-bounce), color 0.3s;
}
.highlight-item:hover i { transform: scale(1.18) rotate(-6deg); color: var(--color-primary-dark); }
.highlight-item h4 { font-family: var(--font-primary); font-size: 20px; color: var(--color-dark); margin-bottom: 8px; font-weight: 400; }
.highlight-item p { font-size: 13px; color: var(--color-text-light); line-height: 1.7; }

/* ===== GALLERY ===== */
.gallery { background: var(--color-dark); }
.gallery .section-label.light::before,
.gallery .section-label.light::after { background: var(--color-primary); opacity: 0.5; }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 240px; gap: 6px; }
.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.20);
  transition: box-shadow 0.4s, transform 0.4s var(--easing-smooth);
}
.gallery-item:hover { box-shadow: 0 16px 44px rgba(0,0,0,0.55); transform: translateY(-4px); }
.gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery-item:nth-child(7) { grid-column: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--easing-smooth); }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(20,17,14,0) 0%, rgba(20,17,14,0) 100%);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.35s;
}
.gallery-item-overlay i { font-size: 22px; color: #fff; opacity: 0; transform: scale(0.7); transition: all 0.35s var(--easing-bounce); }
.gallery-item:hover .gallery-item-overlay { background: linear-gradient(135deg, rgba(20,17,14,0.45), rgba(var(--color-primary-rgb),0.30)); }
.gallery-item:hover .gallery-item-overlay i { opacity: 1; transform: scale(1); }
.gallery-footer { text-align: center; margin-top: 56px; }

/* ===== CONTACT ===== */
.contact { background: var(--color-cream); position: relative; }
.contact::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-light-2), transparent);
}
.contact-inner { display: grid; grid-template-columns: 1fr 1.4fr; gap: 72px; align-items: start; }
.contact-info .section-header { text-align: left; margin-bottom: 40px; }
.contact-info .section-header .divider { margin: 20px 0 0; }
.contact-info .section-label::before { display: none; }
.contact-items { display: flex; flex-direction: column; gap: 26px; margin-bottom: 36px; }
.contact-item { display: flex; gap: 18px; align-items: flex-start; }
.contact-item-icon {
  width: 50px; height: 50px;
  background: var(--color-white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
  border: 1px solid var(--color-border);
  transition: var(--transition);
}
.contact-item:hover .contact-item-icon {
  transform: scale(1.08);
  background: var(--color-primary-pale);
  border-color: var(--color-primary-light);
}
.contact-item-icon i { font-size: 17px; color: var(--color-primary-dark); }
.contact-item-text h4 { font-size: 10.5px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--color-dark); margin-bottom: 4px; }
.contact-item-text p, .contact-item-text a { font-size: 14.5px; color: var(--color-text); line-height: 1.65; }
.contact-item-text a:hover { color: var(--color-primary-dark); }
.contact-social { display: flex; gap: 10px; margin-bottom: 36px; }
.social-link {
  width: 44px; height: 44px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; color: var(--color-dark);
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.social-link:hover { background: var(--color-dark); color: #fff; border-color: var(--color-dark); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.contact-map { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); height: 500px; }
.contact-map iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ===== FLOATING WHATSAPP ===== */
.whatsapp-float {
  position: fixed;
  bottom: 26px; right: 26px;
  z-index: var(--z-float);
  display: flex; align-items: center; gap: 10px;
  background: #25d366;
  color: #fff;
  padding: 14px 22px;
  border-radius: var(--radius-pill);
  box-shadow: 0 8px 30px rgba(37,211,102,0.40);
  font-size: 12px; font-weight: 700; letter-spacing: 0.05em;
  transition: var(--transition);
  animation: waPulse 2.6s ease-in-out infinite;
}
.whatsapp-float:hover {
  background: #1bb855;
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(37,211,102,0.50);
  color: #fff;
  animation: none;
}
.whatsapp-float i { font-size: 20px; }
@keyframes waPulse {
  0%, 100% { box-shadow: 0 8px 30px rgba(37,211,102,0.40); }
  50%      { box-shadow: 0 8px 30px rgba(37,211,102,0.55), 0 0 0 10px rgba(37,211,102,0.10); }
}

/* ===== FOOTER ===== */
.footer { background: var(--color-dark); color: #fff; padding: 96px 0 0; position: relative; }
.footer::before {
  content: '';
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 60px; height: 3px;
  background: var(--color-primary);
  border-radius: 0 0 3px 3px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
  gap: 52px;
  padding-bottom: 76px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-logo { font-family: var(--font-primary); font-size: 28px; color: #fff; letter-spacing: 0.05em; margin-bottom: 16px; }
.footer-logo span { color: var(--color-primary); }
.footer-about-text { font-size: 13.5px; line-height: 1.85; color: rgba(255,255,255,0.45); margin-bottom: 28px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; color: rgba(255,255,255,0.55);
  transition: var(--transition);
}
.footer-social a:hover { background: var(--color-primary); color: #fff; border-color: var(--color-primary); transform: translateY(-3px); }
.footer-heading { font-size: 10.5px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--color-primary-light); margin-bottom: 24px; }
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links a { font-size: 13.5px; color: rgba(255,255,255,0.45); transition: var(--transition); position: relative; padding-left: 0; }
.footer-links a::before {
  content: '→';
  position: absolute; left: -16px; top: 0;
  opacity: 0; transition: opacity 0.25s, left 0.25s;
  color: var(--color-primary);
}
.footer-links a:hover { color: #fff; padding-left: 8px; }
.footer-links a:hover::before { opacity: 1; left: -8px; }
.footer-contact-item { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 16px; }
.footer-contact-item i { font-size: 14px; color: var(--color-primary); margin-top: 3px; flex-shrink: 0; }
.footer-contact-item span, .footer-contact-item a { font-size: 13.5px; color: rgba(255,255,255,0.45); line-height: 1.7; }
.footer-bottom { padding: 24px 0; display: flex; align-items: center; justify-content: space-between; font-size: 11.5px; color: rgba(255,255,255,0.28); }

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed;
  bottom: 26px; left: 26px;
  width: 44px; height: 44px;
  background: var(--color-white);
  color: var(--color-dark);
  border: 1px solid var(--color-border);
  border-radius: 50%;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px;
  opacity: 0; transform: translateY(14px);
  transition: var(--transition);
  z-index: var(--z-float);
  box-shadow: var(--shadow);
}
.back-to-top.visible { opacity: 1; transform: translateY(0); }
.back-to-top:hover { background: var(--color-dark); color: #fff; border-color: var(--color-dark); transform: translateY(-3px); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .hours-content { grid-template-columns: 1fr; gap: 48px; }
  .about-inner { gap: 56px; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 44px; }
  .hero-nav { display: none; }
  .hero-scroll { display: none; }
}

@media (max-width: 900px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; padding: 0 24px; }
  .highlight-inner { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 200px; }
  .gallery-item:nth-child(1) { grid-column: span 1; grid-row: span 1; }
  .gallery-item:nth-child(7) { grid-column: span 1; }
  .contact-inner { grid-template-columns: 1fr; gap: 48px; }
  .contact-map { height: 360px; }
}

/* ===== MOBILE OPTIMIZATIONS ===== */
@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .section-padding { padding: 80px 0; }
  .section-header { margin-bottom: 52px; }

  /* Header */
  .nav, .header-phone { display: none; }
  .hamburger { display: flex; }
  .header-inner { height: 64px; }
  .logo { font-size: 21px; }
  .header-cta .btn {
    padding: 10px 16px;
    font-size: 9.5px;
    letter-spacing: 0.12em;
  }

  /* HERO MOBILE — kompakt + okunabilir */
  .hero {
    height: auto;
    min-height: 600px;
    max-height: none;
  }
  .hero-swiper { height: 100vh; min-height: 600px; max-height: 760px; position: relative; }
  .hero-content { padding: 100px 0 200px; align-items: center; }
  .hero-text { padding: 0; }
  .hero-label {
    font-size: 9.5px;
    letter-spacing: 0.28em;
    padding: 7px 14px;
    margin-bottom: 22px;
  }
  .hero-title {
    font-size: clamp(38px, 11vw, 60px);
    line-height: 1.05;
    margin-bottom: 20px;
  }
  .hero-subtitle {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 28px;
    color: rgba(255,255,255,0.85);
  }
  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    margin-bottom: 28px;
  }
  .hero-buttons .btn {
    width: 100%;
    justify-content: center;
    padding: 16px 20px;
    font-size: 11px;
  }
  .hero-trust {
    width: 100%;
    justify-content: space-between;
    gap: 8px;
    padding: 14px 16px;
  }
  .hero-trust-item strong { font-size: 17px; }
  .hero-trust-item span { font-size: 9px; letter-spacing: 0.06em; }
  .hero-trust-divider { height: 24px; }

  /* Hero pagination — mobilde alta sabit */
  .hero-pagination {
    bottom: 32px;
  }
  .hero .swiper-pagination-bullet { width: 22px; }
  .hero .swiper-pagination-bullet-active { width: 44px; }

  /* Hero bottom bar — mobilde gizle (yer kapamasın) */
  .hero-bar { display: none; }

  /* Mobile menu hamburger button positioning */
  .hamburger { z-index: 1001; position: relative; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; gap: 16px; padding: 0 20px; }
  .service-card-body { padding: 24px 24px 28px; }
  .service-card-title { font-size: 24px; }
  .service-card-number { font-size: 48px; top: 14px; right: 18px; }

  /* About */
  .about-inner { grid-template-columns: 1fr; gap: 56px; }
  .about-image::after { display: none; }
  .about-image-badge { right: 0; bottom: 20px; padding: 22px 26px; }
  .about-image-badge .number { font-size: 36px; }
  .about-stats { grid-template-columns: repeat(3, 1fr); gap: 0; }
  .stat-number { font-size: 30px; }

  /* Hours */
  .hours { padding: 80px 0; }
  .hours-content { grid-template-columns: 1fr; gap: 36px; }
  .hours-cta { flex-direction: column; }
  .hours-cta .btn { width: 100%; justify-content: center; }
  .hours-card-header { padding: 20px 24px; }
  .hours-row { padding: 14px 24px; }
  .hours-time { font-size: 16px; }

  /* Highlight */
  .highlight-inner { grid-template-columns: repeat(2, 1fr); }
  .highlight-item { padding: 36px 20px; border-bottom: 1px solid var(--color-border); }
  .highlight-item:nth-child(2n) { border-right: none; }
  .highlight-item:nth-last-child(-n+2) { border-bottom: none; }
  .highlight-item i { font-size: 24px; margin-bottom: 14px; }
  .highlight-item h4 { font-size: 17px; }
  .highlight-item p { font-size: 12px; }

  /* Gallery */
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; gap: 5px; }
  .gallery-item:nth-child(1) { grid-column: span 2; }
  .gallery-item:nth-child(7) { grid-column: span 2; }

  /* Contact */
  .contact-map { height: 320px; }

  /* Footer */
  .footer { padding-top: 72px; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; padding-bottom: 56px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; padding: 20px 0; }

  /* Floating buttons - mobilde küçült */
  .whatsapp-float {
    padding: 0;
    width: 56px; height: 56px;
    border-radius: 50%;
    justify-content: center;
    bottom: 20px; right: 20px;
  }
  .whatsapp-float span { display: none; }
  .back-to-top {
    width: 42px; height: 42px;
    bottom: 20px; left: 20px;
  }
}

@media (max-width: 520px) {
  .section-padding { padding: 64px 0; }
  .section-header { margin-bottom: 40px; }
  .about-stats { grid-template-columns: 1fr; }
  .stat-item { border-right: none !important; border-bottom: 1px solid var(--color-light-2); padding-bottom: 18px; padding-top: 6px; }
  .stat-item:first-child { padding-top: 0; }
  .stat-item:last-child { border-bottom: none; padding-bottom: 0; }
  .gallery-grid { grid-auto-rows: 150px; }
  .highlight-inner { grid-template-columns: 1fr; }
  .highlight-item { border-right: none !important; border-bottom: 1px solid var(--color-border); padding: 30px 18px; }
  .highlight-item:last-child { border-bottom: none; }
  .hero-trust { flex-direction: row; gap: 4px; padding: 12px 12px; }
  .hero-trust-item strong { font-size: 16px; }
  .hero-trust-item span { font-size: 8.5px; }
  .hero-buttons .btn { padding: 14px 18px; font-size: 10.5px; }
}

/* ============================================================
   ===== TESTIMONIALS — PREMIUM TASARIM =====
   ============================================================ */
section.testimonials {
  background: linear-gradient(180deg, var(--color-cream) 0%, var(--color-light) 100%);
  position: relative;
  overflow: hidden;
}
section.testimonials::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 360px; height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--color-primary-rgb), 0.12) 0%, transparent 70%);
  pointer-events: none;
}
section.testimonials::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -120px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--color-primary-rgb), 0.08) 0%, transparent 70%);
  pointer-events: none;
}
section.testimonials > .container { position: relative; z-index: 1; }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  margin-top: 32px;
}

article.testimonial-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 44px 32px 32px;
  box-shadow: 0 4px 24px rgba(58,53,48,0.06);
  border: 1px solid rgba(var(--color-primary-rgb), 0.08);
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform 0.45s cubic-bezier(.22,.8,.22,1), box-shadow 0.45s ease, border-color 0.3s ease;
  isolation: isolate;
  overflow: visible;
}
article.testimonial-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(var(--color-primary-rgb), 0.04) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: -1;
}
article.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(58,53,48,0.16);
  border-color: rgba(var(--color-primary-rgb), 0.30);
}
article.testimonial-card:hover::before { opacity: 1; }

.testimonial-quote-icon {
  position: absolute;
  top: -22px;
  left: 28px;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: 0 10px 24px rgba(var(--color-primary-rgb), 0.40);
  z-index: 2;
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 18px;
  font-size: 14px;
  margin-top: 6px;
}
.testimonial-stars .on  { color: #fbbf24; }
.testimonial-stars .off { color: #e2e1de; }

.testimonial-text {
  font-size: 15px;
  line-height: 1.85;
  color: var(--color-text);
  margin-bottom: 28px;
  flex: 1 1 auto;
  font-style: italic;
  position: relative;
  padding-left: 4px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid rgba(var(--color-primary-rgb), 0.12);
}
.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-primary);
  font-size: 20px;
  font-weight: 400;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(var(--color-primary-rgb), 0.30);
}
.testimonial-author-info {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
  min-width: 0;
}
.testimonial-author-info strong {
  font-size: 14.5px;
  color: var(--color-dark);
  font-weight: 700;
  letter-spacing: 0.01em;
}
.testimonial-author-info span {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-primary-dark);
  margin-top: 4px;
}

@media (max-width: 900px) {
  .testimonials-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
}
@media (max-width: 640px) {
  .testimonials-grid { grid-template-columns: 1fr; gap: 32px; }
  article.testimonial-card { padding: 38px 26px 26px; }
  .testimonial-text { font-size: 14.5px; }
}

/* ============================================================
   ===== FAQ — PREMIUM TASARIM =====
   ============================================================ */
section.faq {
  background: #ffffff;
  position: relative;
  overflow: hidden;
}
section.faq::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 80%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-light-2), transparent);
}

.faq-list {
  max-width: 860px;
  margin: 32px auto 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

details.faq-item {
  background: #ffffff;
  border: 1.5px solid var(--color-border);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  position: relative;
}
details.faq-item:hover {
  border-color: rgba(var(--color-primary-rgb), 0.40);
  box-shadow: 0 6px 20px rgba(var(--color-primary-rgb), 0.08);
}
details.faq-item[open] {
  border-color: var(--color-primary);
  background: linear-gradient(180deg, var(--color-primary-pale) 0%, #ffffff 60%);
  box-shadow: 0 10px 30px rgba(var(--color-primary-rgb), 0.12);
}

summary.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 28px;
  font-size: 15.5px;
  font-weight: 600;
  color: var(--color-dark);
  cursor: pointer;
  list-style: none;
  user-select: none;
  transition: color 0.2s ease;
  font-family: var(--font-secondary);
}
summary.faq-question::-webkit-details-marker { display: none; }
summary.faq-question::marker { display: none; content: ''; }
summary.faq-question:hover { color: var(--color-primary-dark); }
summary.faq-question > span {
  flex: 1 1 auto;
  line-height: 1.4;
}

.faq-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--color-primary-pale);
  color: var(--color-primary-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  transition: transform 0.4s cubic-bezier(.22,.8,.22,1), background 0.3s ease, color 0.3s ease;
}
details.faq-item[open] .faq-icon {
  transform: rotate(45deg);
  background: var(--color-primary);
  color: #ffffff;
  box-shadow: 0 6px 14px rgba(var(--color-primary-rgb), 0.35);
}

.faq-answer {
  padding: 4px 28px 26px;
  font-size: 14.5px;
  line-height: 1.85;
  color: var(--color-text);
  animation: faqOpen 0.4s cubic-bezier(.22,.8,.22,1);
}
@keyframes faqOpen {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

.faq-cta {
  text-align: center;
  max-width: 600px;
  margin: 56px auto 0;
  padding: 36px 32px;
  background: linear-gradient(135deg, var(--color-primary-pale) 0%, var(--color-light) 100%);
  border-radius: 20px;
  border: 1px solid rgba(var(--color-primary-rgb), 0.20);
  position: relative;
  overflow: hidden;
}
.faq-cta::before {
  content: '?';
  position: absolute;
  top: -30px;
  right: -10px;
  font-family: var(--font-primary);
  font-size: 200px;
  color: rgba(var(--color-primary-rgb), 0.10);
  line-height: 1;
  pointer-events: none;
  z-index: 0;
}
.faq-cta > * { position: relative; z-index: 1; }
.faq-cta p {
  font-size: 16px;
  color: var(--color-dark);
  margin-bottom: 18px;
  font-weight: 600;
}

@media (max-width: 768px) {
  summary.faq-question { padding: 18px 20px; font-size: 14.5px; gap: 14px; }
  .faq-icon { width: 32px; height: 32px; font-size: 12px; }
  .faq-answer { padding: 2px 20px 22px; font-size: 14px; }
  .faq-cta { padding: 28px 22px; }
  .faq-cta p { font-size: 14.5px; }
}

/* ===== BLOG ===== */
.blog { background: var(--color-cream); }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}
.blog-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid transparent;
  transition: transform 0.45s var(--easing-smooth), box-shadow 0.45s var(--easing-smooth), border-color 0.3s;
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-primary-light);
}
/* Aspect-ratio için padding-hack fallback (eski Safari/Chrome için) */
.blog-card-image {
  display: block;
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 62.5%; /* 16:10 aspect ratio */
  overflow: hidden;
  background: var(--color-light);
}
@supports (aspect-ratio: 16/10) {
  .blog-card-image {
    height: auto;
    padding-top: 0;
    aspect-ratio: 16/10;
  }
}
.blog-card-image > picture,
.blog-card-image > img,
.blog-card-image > .blog-card-placeholder {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.blog-card-image picture > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--easing-smooth);
}
.blog-card:hover .blog-card-image img { transform: scale(1.08); }
.blog-card-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--color-light) 0%, var(--color-primary-pale) 100%);
  color: var(--color-primary-light);
  font-size: 56px;
}
.blog-card-cat {
  position: absolute;
  top: 14px; left: 14px;
  background: rgba(255,255,255,0.95);
  color: var(--color-primary-dark);
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}
.blog-card-body { padding: 24px 26px 26px; display: flex; flex-direction: column; flex: 1; }
.blog-card-meta {
  display: flex; gap: 16px;
  font-size: 11.5px;
  color: var(--color-text-light);
  margin-bottom: 12px;
}
.blog-card-meta i { margin-right: 5px; color: var(--color-primary); }
.blog-card-title {
  font-family: var(--font-primary);
  font-size: 22px;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 12px;
  color: var(--color-dark);
}
.blog-card-title a { color: inherit; transition: color 0.25s; }
.blog-card-title a:hover { color: var(--color-primary-dark); }
.blog-card-excerpt {
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--color-text-light);
  margin-bottom: 18px;
  flex: 1;
}
.blog-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-primary-dark);
  border-bottom: 1px solid var(--color-primary-light);
  padding-bottom: 4px;
  align-self: flex-start;
  transition: all 0.3s;
}
.blog-card-link i { transition: transform 0.3s; }
.blog-card-link:hover { color: var(--color-dark); border-color: var(--color-dark); gap: 14px; }
.blog-card-link:hover i { transform: translateX(4px); }

.blog-footer { text-align: center; margin-top: 56px; }

/* === BLOG INDEX (blog.php) === */
.blog-hero {
  background: linear-gradient(135deg, var(--color-dark) 0%, var(--color-dark-2) 100%);
  color: #fff;
  padding: 100px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.blog-hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(var(--color-primary-rgb),0.25), transparent 70%);
}
.blog-hero::after {
  content: '';
  position: absolute;
  bottom: -150px; left: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(var(--color-primary-rgb),0.18), transparent 70%);
}
.blog-hero > .container { position: relative; z-index: 1; }
.blog-hero-title {
  font-family: var(--font-primary);
  font-size: clamp(40px, 6vw, 68px);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 16px;
  color: #fff;
}
.blog-hero-desc {
  font-size: 16px;
  line-height: 1.85;
  color: rgba(255,255,255,0.65);
  max-width: 580px;
  margin: 0 auto 36px;
}
.blog-search {
  max-width: 560px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius-pill);
  padding: 5px 6px 5px 22px;
  backdrop-filter: blur(10px);
}
.blog-search i { color: rgba(255,255,255,0.55); font-size: 14px; }
.blog-search input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: #fff;
  padding: 14px 16px;
  font-size: 14px;
  font-family: inherit;
}
.blog-search input::placeholder { color: rgba(255,255,255,0.45); }
.blog-search .btn { padding: 12px 24px; }

.blog-cats {
  background: #fff;
  border-bottom: 1px solid var(--color-border);
  position: sticky;
  top: 76px;
  z-index: 50;
}
.blog-cats > .container {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  padding: 14px 32px;
  scrollbar-width: none;
}
.blog-cats > .container::-webkit-scrollbar { display: none; }
.blog-cat {
  white-space: nowrap;
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--color-text-light);
  border: 1px solid var(--color-border);
  background: var(--color-cream);
  transition: all 0.3s;
}
.blog-cat:hover { background: var(--color-primary-pale); border-color: var(--color-primary-light); color: var(--color-primary-dark); }
.blog-cat.active { background: var(--color-dark); border-color: var(--color-dark); color: #fff; }

.blog-pagination {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 56px;
}
.page-link {
  min-width: 42px; height: 42px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--color-border);
  color: var(--color-text);
  font-size: 13px;
  font-weight: 600;
  padding: 0 14px;
  transition: all 0.25s;
}
.page-link:hover { background: var(--color-primary-pale); border-color: var(--color-primary-light); color: var(--color-primary-dark); }
.page-link.active { background: var(--color-dark); border-color: var(--color-dark); color: #fff; }

/* === SINGLE POST === */
.post-hero {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: flex-end;
  color: #fff;
  padding: 0;
  background: var(--color-dark);
  overflow: hidden;
}
.post-hero-bg { position: absolute; inset: 0; z-index: 0; }
.post-hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.post-hero-bg--placeholder {
  background:
    radial-gradient(circle at 30% 20%, rgba(var(--color-primary-rgb),0.30), transparent 60%),
    linear-gradient(135deg, var(--color-dark) 0%, var(--color-dark-2) 100%);
}
.post-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(15,12,10,0.40) 0%, rgba(15,12,10,0.85) 100%);
}
.post-hero-content {
  position: relative;
  z-index: 1;
  padding: 100px 32px 60px;
}
.post-back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 26px;
  transition: color 0.25s, gap 0.25s;
}
.post-back-link:hover { color: #fff; gap: 14px; }
.post-cat-badge {
  display: inline-block;
  padding: 6px 14px;
  background: var(--color-primary);
  color: #fff;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: var(--radius-pill);
  margin-bottom: 18px;
}
.post-title {
  font-family: var(--font-primary);
  font-size: clamp(32px, 5.5vw, 60px);
  font-weight: 400;
  line-height: 1.08;
  margin-bottom: 22px;
  color: #fff;
  max-width: 920px;
  text-shadow: 0 2px 30px rgba(0,0,0,0.30);
}
.post-meta {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  font-size: 12.5px;
  color: rgba(255,255,255,0.65);
}
.post-meta i { margin-right: 6px; color: var(--color-primary-light); }

.post-body { background: #fff; }
.post-content {
  max-width: 760px;
  margin: 0 auto;
  font-size: 17px;
  line-height: 1.9;
  color: var(--color-text);
}
.post-content h1, .post-content h2, .post-content h3, .post-content h4 {
  font-family: var(--font-primary);
  font-weight: 400;
  color: var(--color-dark);
  margin: 1.6em 0 0.6em;
  line-height: 1.2;
}
.post-content h1 { font-size: 36px; }
.post-content h2 { font-size: 30px; }
.post-content h3 { font-size: 24px; }
.post-content h4 { font-size: 20px; }
.post-content p { margin-bottom: 1.2em; }
.post-content a { color: var(--color-primary-dark); border-bottom: 1px solid currentColor; }
.post-content a:hover { color: var(--color-dark); }
.post-content strong { color: var(--color-dark); font-weight: 700; }
.post-content em { color: var(--color-primary-dark); }
.post-content blockquote {
  margin: 1.6em 0;
  padding: 22px 28px;
  background: var(--color-primary-pale);
  border-left: 4px solid var(--color-primary);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-style: italic;
  color: var(--color-text);
}
.post-content ul, .post-content ol { margin: 1em 0 1.4em 1.4em; padding-left: 0.4em; }
.post-content li { margin-bottom: 0.5em; }
.post-content ul li::marker { color: var(--color-primary); }
.post-content img { width: 100%; max-width: 100%; height: auto; margin: 1.6em 0; border-radius: var(--radius-md); box-shadow: var(--shadow); }
.post-content code {
  background: var(--color-light);
  color: var(--color-primary-dark);
  padding: 2px 7px;
  border-radius: 4px;
  font-size: 0.92em;
}
.post-content pre {
  background: var(--color-dark);
  color: #fff;
  padding: 20px;
  border-radius: var(--radius-md);
  overflow-x: auto;
  margin: 1.4em 0;
}
.post-content hr {
  border: none;
  height: 1px;
  background: var(--color-border);
  margin: 2.5em 0;
}

.post-share {
  max-width: 760px;
  margin: 56px auto 0;
  padding-top: 32px;
  border-top: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.post-share strong {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-text-light);
}
.post-share a {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--color-cream);
  border: 1px solid var(--color-border);
  color: var(--color-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: var(--transition);
}
.post-share a:hover { background: var(--color-dark); color: #fff; border-color: var(--color-dark); transform: translateY(-3px); }

.post-cta {
  max-width: 760px;
  margin: 56px auto 0;
  padding: 32px 36px;
  background: linear-gradient(135deg, var(--color-primary-pale) 0%, var(--color-light) 100%);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.post-cta-label {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-primary-dark);
  display: block;
  margin-bottom: 6px;
}
.post-cta-title {
  font-family: var(--font-primary);
  font-size: 24px;
  font-weight: 400;
  color: var(--color-dark);
  margin: 0;
}

/* Blog mobile */
@media (max-width: 900px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); gap: 22px; }
}
@media (max-width: 768px) {
  .blog-grid { grid-template-columns: 1fr; gap: 20px; }
  .blog-cats { top: 64px; }
  .blog-cats > .container { padding: 12px 20px; }
  .blog-cat { font-size: 11.5px; padding: 8px 16px; }
  .blog-search { padding: 4px 4px 4px 18px; }
  .blog-search input { padding: 12px 12px; font-size: 13px; }
  .blog-search .btn { padding: 10px 18px; font-size: 10px; }
  .post-hero { min-height: 380px; }
  .post-hero-content { padding: 80px 20px 44px; }
  .post-content { font-size: 15.5px; }
  .post-content h1 { font-size: 28px; }
  .post-content h2 { font-size: 24px; }
  .post-content h3 { font-size: 20px; }
  .post-cta { flex-direction: column; align-items: flex-start; padding: 24px 22px; }
  .post-cta-title { font-size: 20px; }
  .post-cta .btn { width: 100%; justify-content: center; }
}

/* ===== PERFORMANCE ===== */
img[loading="lazy"] {
  background: linear-gradient(90deg, var(--color-light) 0%, var(--color-cream) 50%, var(--color-light) 100%);
  background-size: 200% 100%;
}
img:not([src=""]) { background: transparent; }

/* Slider yüklenmediğinde de ilk slide görünsün - flash önle */
.hero-swiper .swiper-wrapper { opacity: 1; transition: opacity 0.4s; }
.hero-swiper:not(.swiper-initialized) .swiper-slide:not(:first-child) { display: none; }

button, a, input, select, textarea { -webkit-tap-highlight-color: transparent; }

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
