/* ================================================================
   SOCIAL SAVY — Modern Design System
   Eskişehir Dijital Pazarlama Ajansı
   Dosya: css/savy-modern.css  (style.css ve responsive.css sonrası yükle)
   ================================================================ */

/* ── 0. Design Tokens ─────────────────────────────────────────── */
:root {
  /* Brand renkleri */
  --ss-accent:       #e8a317;
  --ss-accent-dark:  #c48810;
  --ss-accent-glow:  rgba(232, 163, 23, .18);
  --ss-accent-deep:  rgba(232, 163, 23, .08);

  /* Dark palet */
  --ss-navy:         #0a0e1a;
  --ss-navy-mid:     #0f1341;
  --ss-ink:          #1a1d23;
  --ss-ink-soft:     #3d4251;

  /* Light palet */
  --ss-bg:           #f7f8fc;
  --ss-card:         #ffffff;
  --ss-border:       rgba(0, 0, 0, .08);

  /* Metin */
  --ss-body:         #555666;
  --ss-muted:        #888a99;
  --ss-on-dark:      rgba(255, 255, 255, .85);
  --ss-on-dark-muted:rgba(255, 255, 255, .55);

  /* Radius */
  --r-xs:  4px;
  --r-sm:  8px;
  --r-md:  14px;
  --r-lg:  22px;
  --r-xl:  36px;
  --r-pill:999px;

  /* Gölgeler */
  --shadow-xs:    0 1px 4px rgba(0,0,0,.06);
  --shadow-sm:    0 2px 10px rgba(0,0,0,.08);
  --shadow-md:    0 8px 28px rgba(0,0,0,.10);
  --shadow-lg:    0 20px 50px rgba(0,0,0,.14);
  --shadow-accent:0 8px 24px rgba(232,163,23,.30);

  /* Geçişler */
  --t-fast:  160ms ease;
  --t-base:  300ms cubic-bezier(.4,0,.2,1);
  --t-slow:  500ms cubic-bezier(.4,0,.2,1);
}

/* ── 1. Temel Reset & Tipografi ───────────────────────────────── */
html { scroll-behavior: smooth; }

body {
  font-family: 'Hind', sans-serif;
  color: var(--ss-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  line-height: 1.25;
  letter-spacing: -.02em;
}

/* Section title override */
.sec-title h2 {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  color: var(--ss-ink);
  letter-spacing: -.025em;
}

.sec-title.light h2 {
  color: #fff;
}

/* Turuncu separator çizgi */
.sec-title::after {
  content: '';
  display: block;
  width: 46px;
  height: 3px;
  background: var(--ss-accent);
  border-radius: 2px;
  margin-top: 14px;
}
.sec-title.centered::after { margin: 14px auto 0; }
.sec-title.left-align::after,
.sec-title:not(.centered)::after { margin-left: 0; }
.sec-title.light::after { background: rgba(255,255,255,.6); }

/* ── 2. Header ────────────────────────────────────────────────── */
.main-header {
  transition: box-shadow var(--t-base);
}

.main-header .main-box {
  background: #fff !important;
  box-shadow: 0 1px 0 var(--ss-border), 0 2px 12px rgba(0,0,0,.04) !important;
  transition: box-shadow var(--t-base);
}

.main-header.scrolled .main-box {
  box-shadow: 0 2px 24px rgba(0,0,0,.10) !important;
}

/* Logo */
.main-header .logo-box .logo img,
.main-header .sticky-header .logo img,
img.site-logo {
  height: 58px !important;
  width: auto;
  display: block;
  filter: none !important;
  -webkit-filter: none !important;
}

/* Masaüstü nav linkleri */
.main-menu .navigation > li > a {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: .02em;
  color: var(--ss-ink) !important;
  position: relative;
  transition: color var(--t-fast);
}

/* Çizgi alttan büyüyen underline efekti */
.main-menu .navigation > li > a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--ss-accent);
  border-radius: 2px;
  transition: width var(--t-base);
}

.main-menu .navigation > li:hover > a::after,
.main-menu .navigation > li.current > a::after { width: 100%; }

.main-menu .navigation > li:hover > a,
.main-menu .navigation > li.current > a { color: var(--ss-accent) !important; }

/* Header CTA butonu */
.main-header .outer-box .theme-btn.btn-style-one {
  background: var(--ss-accent) !important;
  border-color: var(--ss-accent) !important;
  color: #fff !important;
  border-radius: var(--r-sm) !important;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .04em;
  padding: 10px 22px;
  box-shadow: var(--shadow-accent);
  transition: all var(--t-base) !important;
}

.main-header .outer-box .theme-btn.btn-style-one:hover {
  background: var(--ss-accent-dark) !important;
  border-color: var(--ss-accent-dark) !important;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(232,163,23,.45) !important;
}

/* ── 3. Butonlar ──────────────────────────────────────────────── */
.theme-btn {
  font-family: 'Poppins', sans-serif !important;
  font-weight: 600 !important;
  letter-spacing: .04em !important;
  border-radius: var(--r-sm) !important;
  transition: all var(--t-base) !important;
}

.theme-btn.btn-style-one {
  background: var(--ss-accent) !important;
  border: 2px solid var(--ss-accent) !important;
  color: #fff !important;
  box-shadow: var(--shadow-accent);
}

.theme-btn.btn-style-one:hover {
  background: var(--ss-accent-dark) !important;
  border-color: var(--ss-accent-dark) !important;
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(232,163,23,.42) !important;
}

.theme-btn.btn-style-two {
  background: transparent !important;
  border: 2px solid var(--ss-accent) !important;
  color: var(--ss-accent) !important;
}

.theme-btn.btn-style-two:hover {
  background: var(--ss-accent) !important;
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: var(--shadow-accent) !important;
}

/* ── 4. Bölümler — Arka Plan Ritmi ───────────────────────────── */
.featured-section-two,
.price-section {
  background: var(--ss-bg) !important;
}

.marketing-section {
  background: #fff !important;
}

.partners-section {
  background: var(--ss-bg) !important;
}

/* ── 5. Featured Block Two (Uzmanlık Alanları) ───────────────── */
.featured-block-two .inner-box {
  background: #fff;
  border-radius: var(--r-md);
  padding: 28px 24px 24px;
  box-shadow: var(--shadow-xs);
  border: 1.5px solid var(--ss-border);
  transition: all var(--t-base);
  height: 100%;
}

.featured-block-two .inner-box:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--ss-accent-glow);
  transform: translateY(-5px);
}

.featured-block-two .inner-box h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--ss-ink);
  margin: 14px 0 10px;
}

.featured-block-two .inner-box .text {
  color: var(--ss-body);
  font-size: 14px;
  line-height: 1.7;
}

/* ── 6. Marketing Section ─────────────────────────────────────── */
.marketing-section .content-column h2 {
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 700;
  color: var(--ss-navy-mid);
  letter-spacing: -.02em;
}

.market-content .content-inner .content-number {
  color: rgba(232, 163, 23, .13);
  font-size: 88px;
  font-weight: 800;
  font-family: 'Poppins', sans-serif;
  line-height: 1;
  user-select: none;
}

.market-content .content-inner h3 {
  color: var(--ss-accent);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 18px;
}

.featured-block-three .featured-inner {
  border-radius: var(--r-sm);
  padding-top: 8px;
  transition: background var(--t-fast);
}

.featured-block-three .featured-inner:hover {
  background: var(--ss-bg);
}

.featured-block-three .featured-inner h4 {
  font-family: 'Poppins', sans-serif;
  color: var(--ss-ink);
  font-size: 16px;
  font-weight: 600;
}

/* ── 7. Score (SEO Skoru) Bölümü ─────────────────────────────── */
.score-section {
  position: relative;
  overflow: hidden;
}

.score-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(10, 14, 26, .84) 0%,
    rgba(15, 19, 65, .80) 100%);
  z-index: 1;
  pointer-events: none;
}

.score-section .auto-container {
  position: relative;
  z-index: 2;
}

.score-section .sec-title.light h2 {
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
}

/* Score form */
.score-section .score-form input {
  background: rgba(255, 255, 255, .12);
  border: 1.5px solid rgba(255, 255, 255, .25) !important;
  color: #fff;
  border-radius: var(--r-sm);
  transition: all var(--t-fast);
}

.score-section .score-form input::placeholder { color: rgba(255,255,255,.50); }
.score-section .score-form input:focus {
  background: rgba(255, 255, 255, .18);
  border-color: var(--ss-accent) !important;
  box-shadow: 0 0 0 3px var(--ss-accent-glow);
  outline: none;
}

/* ── 8. İstatistik Bölümü (yeni) ─────────────────────────────── */
.savy-stats-section {
  background: var(--ss-accent);
  padding: 52px 0;
  position: relative;
  overflow: hidden;
}

.savy-stats-section::before {
  content: '';
  position: absolute;
  top: -60%;
  right: -10%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .06);
  pointer-events: none;
}

.savy-stats-section::after {
  content: '';
  position: absolute;
  bottom: -40%;
  left: -5%;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .06);
  pointer-events: none;
}

.savy-stats-section .stat-item {
  text-align: center;
  padding: 16px 20px;
  position: relative;
  z-index: 1;
}

.savy-stats-section .stat-item + .stat-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: rgba(255, 255, 255, .22);
}

.savy-stats-section .stat-number {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: clamp(36px, 4.5vw, 52px);
  color: #fff;
  line-height: 1;
  display: block;
  letter-spacing: -.03em;
}

.savy-stats-section .stat-suffix {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 3.5vw, 40px);
  color: #fff;
  vertical-align: super;
}

.savy-stats-section .stat-label {
  font-size: 14px;
  color: rgba(255, 255, 255, .80);
  font-weight: 500;
  margin-top: 8px;
  display: block;
  letter-spacing: .02em;
}

/* ── 9. Testimonial Bölümü ────────────────────────────────────── */
.testimonial-section {
  position: relative;
  overflow: hidden;
}

.testimonial-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(10, 14, 26, .90) 0%,
    rgba(15, 19, 65, .87) 100%);
  z-index: 1;
  pointer-events: none;
}

.testimonial-section .auto-container {
  position: relative;
  z-index: 2;
}

.testimonial-section .title-column h2 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  color: #fff;
  font-size: clamp(24px, 2.8vw, 34px);
  line-height: 1.2;
}

.testimonial-block .inner-box {
  background: rgba(255, 255, 255, .07);
  border: 1.5px solid rgba(255, 255, 255, .12);
  border-radius: var(--r-md);
  padding: 30px 28px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: all var(--t-base);
}

.testimonial-block .inner-box:hover {
  background: rgba(255, 255, 255, .12);
  border-color: rgba(232, 163, 23, .45);
  transform: translateY(-3px);
}

.testimonial-block .inner-box .quote-icon span {
  color: var(--ss-accent) !important;
  font-size: 32px;
  line-height: 1;
  display: block;
  margin-bottom: 8px;
}

.testimonial-block .inner-box .text {
  color: rgba(255, 255, 255, .85);
  font-size: 15px;
  line-height: 1.75;
  font-style: italic;
}

.testimonial-block .inner-box .author-info {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, .10);
}

.testimonial-block .inner-box .author-info .author-inner .image img {
  border-radius: 50%;
  border: 2px solid var(--ss-accent);
  width: 52px !important;
  height: 52px !important;
  object-fit: cover;
}

.testimonial-block .inner-box .author-info .author-inner h3 {
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 15px;
}

.testimonial-block .inner-box .author-info .author-inner .designation {
  color: var(--ss-accent);
  font-size: 13px;
  font-weight: 500;
}

/* ── 10. Fiyat Bölümü ─────────────────────────────────────────── */
.price-block .inner-box {
  border-radius: var(--r-md);
  border: 1.5px solid var(--ss-border);
  box-shadow: var(--shadow-sm);
  transition: all var(--t-base);
  overflow: hidden;
  background: #fff;
}

.price-block .inner-box:hover,
.price-block.active .inner-box {
  border-color: var(--ss-accent);
  box-shadow: 0 14px 40px rgba(232, 163, 23, .22);
  transform: translateY(-7px);
}

.price-block .inner-box h2 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: var(--ss-ink);
  letter-spacing: .06em;
}

.price-block .inner-box .ribbon {
  background: var(--ss-accent) !important;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

/* ✓ işaretli liste */
.price-block .inner-box > ul > li {
  padding: 8px 0;
  border-bottom: 1px solid var(--ss-bg);
  font-size: 14px;
  color: var(--ss-body);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.price-block .inner-box > ul > li::before {
  content: '✓';
  color: var(--ss-accent);
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ── 11. Footer ───────────────────────────────────────────────── */
.main-footer {
  background: var(--ss-navy) !important;
  position: relative;
}

/* Üst aksan çizgisi */
.main-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--ss-accent) 0%, var(--ss-accent-dark) 100%);
}

.main-footer .footer-title h2 {
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: .06em;
}

.main-footer .footer-title h2::after {
  background: var(--ss-accent) !important;
}

/* Footer linkler: hover'da sola kayan ok efekti */
.main-footer .footer-list li a {
  color: rgba(255, 255, 255, .60);
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 0;
  transition: all var(--t-fast);
  padding-left: 0;
}

.main-footer .footer-list li a:hover {
  color: #fff;
  padding-left: 8px;
  gap: 6px;
}

/* Copyright bar */
.main-footer .copyright {
  background: rgba(0, 0, 0, .28) !important;
  border-top: 1px solid rgba(255, 255, 255, .06);
  color: rgba(255, 255, 255, .45);
  font-size: 13px;
}

.main-footer .copyright a {
  color: var(--ss-accent);
  font-weight: 600;
}

/* Sosyal medya ikonları */
.main-footer .social-icon-one li a {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, .08);
  border-radius: 50%;
  color: rgba(255, 255, 255, .65) !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all var(--t-fast);
  font-size: 14px;
  border: none !important;
}

.main-footer .social-icon-one li a:hover {
  background: var(--ss-accent);
  color: #fff !important;
  transform: translateY(-3px);
}

/* Bülten formu */
.main-footer .subscribe-form input {
  background: rgba(255, 255, 255, .08) !important;
  border: 1px solid rgba(255, 255, 255, .14) !important;
  border-radius: var(--r-sm) !important;
  color: #fff !important;
  transition: border-color var(--t-fast) !important;
}

.main-footer .subscribe-form input:focus {
  border-color: var(--ss-accent) !important;
  box-shadow: 0 0 0 3px var(--ss-accent-glow) !important;
  outline: none;
}

.main-footer .subscribe-form input::placeholder { color: rgba(255,255,255,.35) !important; }

.main-footer .subscribe-form .theme-btn {
  background: var(--ss-accent) !important;
  border-color: var(--ss-accent) !important;
  transition: background var(--t-fast) !important;
}

.main-footer .subscribe-form .theme-btn:hover {
  background: var(--ss-accent-dark) !important;
  border-color: var(--ss-accent-dark) !important;
}

/* ── 12. Page Title (İç sayfalar) ─────────────────────────────── */
.page-title {
  position: relative;
  overflow: hidden;
}

.page-title::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(10, 14, 26, .86) 0%,
    rgba(15, 19, 65, .82) 100%);
  z-index: 1;
  pointer-events: none;
}

.page-title .auto-container {
  position: relative;
  z-index: 2;
}

.page-title h1 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  color: #fff;
  font-size: clamp(26px, 4vw, 44px);
  letter-spacing: -.02em;
  text-shadow: 0 2px 20px rgba(0,0,0,.28);
}

.page-title .bread-crumb li {
  color: rgba(255, 255, 255, .60);
  font-size: 13px;
}

.page-title .bread-crumb li a { color: var(--ss-accent); }
.page-title .bread-crumb li.active { color: #fff; }

/* ── 13. İletişim & Formlar ───────────────────────────────────── */
.default-form input,
.default-form select,
.default-form textarea,
.contact-form input,
.contact-form select,
.contact-form textarea,
.contact-section input,
.contact-section select,
.contact-section textarea,
.score-section .score-form input {
  font-family: 'Hind', sans-serif;
  font-size: 15px;
  color: var(--ss-ink);
  border-radius: var(--r-sm) !important;
  transition: border-color var(--t-fast), box-shadow var(--t-fast) !important;
}

.default-form input:not([type="submit"]):not([type="checkbox"]):not([type="radio"]):focus,
.default-form textarea:focus,
.contact-form input:focus,
.contact-form textarea:focus,
.contact-section input:focus,
.contact-section textarea:focus {
  border-color: var(--ss-accent) !important;
  box-shadow: 0 0 0 3px var(--ss-accent-glow) !important;
  outline: none !important;
}

/* Hata/başarı mesajları */
.form-error,
span.form-error {
  display: block;
  color: #d93025;
  font-size: 12px;
  font-weight: 500;
  margin-top: 4px;
  padding-left: 2px;
}

input.error, textarea.error, select.error {
  border-color: #d93025 !important;
  box-shadow: 0 0 0 3px rgba(217,48,37,.14) !important;
}

input.valid, textarea.valid {
  border-color: #2ecc71 !important;
}

/* ── 14. Scroll-to-top ────────────────────────────────────────── */
.scroll-to-top {
  background: var(--ss-accent) !important;
  border-radius: var(--r-sm) !important;
  box-shadow: var(--shadow-accent) !important;
  transition: all var(--t-base) !important;
  width: 44px !important;
  height: 44px !important;
}

.scroll-to-top:hover {
  background: var(--ss-accent-dark) !important;
  transform: translateY(-3px) !important;
}

/* ── 15. WhatsApp Yüzen Butonu ────────────────────────────────── */
.wa-float-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9998;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: #fff !important;
  text-decoration: none !important;
  border-radius: var(--r-pill);
  padding: 13px 20px 13px 16px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 13.5px;
  box-shadow: 0 6px 22px rgba(37, 211, 102, .42);
  transition: all var(--t-base);
  animation: wa-glow 3s ease-in-out infinite;
  max-width: 220px;
  overflow: hidden;
  white-space: nowrap;
}

.wa-float-btn .wa-icon-wrap {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  line-height: 1;
}

.wa-float-btn .wa-label {
  overflow: hidden;
  max-width: 0;
  opacity: 0;
  transition: max-width 320ms cubic-bezier(.4,0,.2,1),
              opacity 280ms ease;
}

.wa-float-btn:hover {
  background: #1eb858;
  box-shadow: 0 10px 32px rgba(37, 211, 102, .55);
  transform: translateY(-3px);
  color: #fff !important;
}

.wa-float-btn:hover .wa-label {
  max-width: 160px;
  opacity: 1;
}

@keyframes wa-glow {
  0%, 100% { box-shadow: 0 6px 22px rgba(37,211,102,.42); }
  50%       { box-shadow: 0 6px 30px rgba(37,211,102,.65), 0 0 0 8px rgba(37,211,102,.12); }
}

/* ── 16. Scroll Reveal Animasyonları ──────────────────────────── */
.ss-reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 600ms ease, transform 600ms ease;
  will-change: opacity, transform;
}

.ss-reveal.ss-visible {
  opacity: 1;
  transform: translateY(0);
}

.ss-reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 580ms ease, transform 580ms ease;
  will-change: opacity, transform;
}

.ss-reveal-left.ss-visible {
  opacity: 1;
  transform: translateX(0);
}

.ss-reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 580ms ease, transform 580ms ease;
  will-change: opacity, transform;
}

.ss-reveal-right.ss-visible {
  opacity: 1;
  transform: translateX(0);
}

/* Kademeli çocuk animasyonu */
.ss-stagger.ss-visible > *:nth-child(1) { transition-delay:   0ms !important; opacity: 1 !important; transform: none !important; }
.ss-stagger.ss-visible > *:nth-child(2) { transition-delay:  80ms !important; opacity: 1 !important; transform: none !important; }
.ss-stagger.ss-visible > *:nth-child(3) { transition-delay: 160ms !important; opacity: 1 !important; transform: none !important; }
.ss-stagger.ss-visible > *:nth-child(4) { transition-delay: 240ms !important; opacity: 1 !important; transform: none !important; }
.ss-stagger.ss-visible > *:nth-child(5) { transition-delay: 320ms !important; opacity: 1 !important; transform: none !important; }
.ss-stagger.ss-visible > *:nth-child(6) { transition-delay: 400ms !important; opacity: 1 !important; transform: none !important; }

.ss-stagger > * {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 450ms ease, transform 450ms ease;
}

/* ── 17. Video Box ─────────────────────────────────────────────── */
.video-box {
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.video-box figure.image img { display: block; width: 100%; }

/* ── 18. Services (Hizmetler) ─────────────────────────────────── */
.services-block .inner-box {
  border-radius: var(--r-md);
  border: 1.5px solid var(--ss-border);
  overflow: hidden;
  transition: all var(--t-base);
  background: #fff;
}

.services-block .inner-box:hover {
  border-color: var(--ss-accent-glow);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.services-block .inner-box .icon-box {
  background: var(--ss-accent-deep);
  transition: background var(--t-fast);
}

.services-block .inner-box:hover .icon-box {
  background: var(--ss-accent);
}

/* ── 19. Partners / Logo bar ──────────────────────────────────── */
.partners-section .partner-block .inner-box {
  border-radius: var(--r-sm);
  background: #fff;
  box-shadow: var(--shadow-xs);
  border: 1px solid var(--ss-border);
  transition: all var(--t-base);
}

.partners-section .partner-block .inner-box:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.partners-section .client-img img {
  max-height: 52px;
  width: auto;
  object-fit: contain;
  filter: grayscale(30%);
  opacity: .75;
  transition: all var(--t-base);
}

.partners-section .client-img img:hover {
  filter: none;
  opacity: 1;
}

/* ── 20. Preloader ─────────────────────────────────────────────── */
.preloader {
  background: var(--ss-navy) !important;
}

/* ── 21. Responsive ─────────────────────────────────────────────── */
@media (max-width: 991px) {
  .savy-stats-section .stat-item + .stat-item::before { display: none; }
  .savy-stats-section .stat-item { border-bottom: 1px solid rgba(255,255,255,.16); padding: 20px; }
  .savy-stats-section .stat-item:last-child { border-bottom: none; }
}

@media (max-width: 767px) {
  /* Küçük ekranda WhatsApp sadece ikon */
  .wa-float-btn {
    bottom: 18px;
    right: 16px;
    padding: 14px;
    border-radius: 50%;
    max-width: 54px;
    width: 54px;
    height: 54px;
    justify-content: center;
  }

  .wa-float-btn .wa-label {
    display: none;
  }

  .wa-float-btn:hover .wa-label {
    display: none;
  }

  /* İstatistik */
  .savy-stats-section { padding: 36px 0; }
  .savy-stats-section .stat-number { font-size: 36px; }

  /* Buton boyutu */
  .theme-btn.btn-style-one,
  .theme-btn.btn-style-two {
    font-size: 13px !important;
    padding: 12px 22px !important;
  }
}

@media (min-width: 768px) {
  .wa-float-btn { bottom: 32px; right: 32px; }
}

/* ── 22. İnce detaylar ─────────────────────────────────────────── */

/* Owl carousel nav butonları */
.owl-nav .owl-prev,
.owl-nav .owl-next {
  transition: all var(--t-fast) !important;
}

.owl-nav .owl-prev:hover,
.owl-nav .owl-next:hover {
  color: var(--ss-accent) !important;
  background: var(--ss-accent-deep) !important;
}

/* Preloader spinner rengi */
.preloader:after {
  border-bottom-color: var(--ss-accent) !important;
}

/* İletişim bilgi kutusu */
.contact-info-box .icon-box {
  background: var(--ss-accent-deep);
  border-radius: var(--r-sm);
  transition: background var(--t-fast);
}

.contact-info-box:hover .icon-box {
  background: var(--ss-accent);
}
