/* ============================================================
   KÖKDUMAN OTO KURTARMA — Ana Stil Dosyası
   Tema: Premium Kurumsal (Beyaz Ağırlıklı, Kırmızı & Koyu Antrasit Vurgulu)
   Logo Renk Uyumları: Canlı Kırmızı, Derin Siyah, Parlak Gümüş
   ============================================================ */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700&display=swap');

/* ── CSS Değişkenleri ── */
:root {
  /* Birincil Renkler (Logonun premium tonları) */
  --red:           #E51A22; /* Canlı spor otomobil kırmızısı */
  --red-dark:      #B30E14; /* Koyu asil kırmızı */
  --red-light:     #FF4D52; /* Parlak kırmızı */
  --red-ultra:     #FF0007; /* En canlı kırmızı */
  --red-glow:      rgba(229, 26, 34, 0.07);
  --red-glow-str:  rgba(229, 26, 34, 0.20);
  
  --black:         #0F0F12; /* Derin obsidian siyahı */
  --dark:          #16161D; /* Koyu gri/antrasit */
  --charcoal:      #24242C; /* Kartlar ve koyu alanlar için */
  --silver:        #8E8E93; /* Gümüş / Gri */
  --silver-light:  #F3F4F6; /* Açık gümüş arka plan */

  /* Beyaz Tema Arka Planlar */
  --bg-white:      #FFFFFF;
  --bg-light:      #FAFAFC; /* Premium temiz arka plan */
  --bg-gray:       #F0F1F5;
  --bg-card:       #FFFFFF;

  /* Metin Renkleri */
  --text-primary:  #111827; /* Derin grafit siyahı */
  --text-secondary:#4B5563; /* Asil antrasit gri */
  --text-muted:    #8A8A93; /* Soluk gri */
  --text-white:    #FFFFFF;

  /* Kenarlık */
  --border:        #E5E7EB; /* Zarif açık gri çizgiler */
  --border-dark:   #D1D5DB;

  /* Gölgeler */
  --shadow-sm:     0 2px 8px rgba(0,0,0,0.04);
  --shadow-md:     0 8px 30px rgba(0,0,0,0.06);
  --shadow-lg:     0 16px 48px rgba(0,0,0,0.08);
  --shadow-red:    0 10px 30px rgba(229, 26, 34, 0.18);
  --shadow-inset:  inset 0 2px 4px rgba(0,0,0,0.06);

  /* Animasyon Easing */
  --ease:          cubic-bezier(0.16, 1, 0.3, 1);
  --trans:         0.4s var(--ease);

  /* Layout */
  --container:     1280px;
  --radius-sm:     8px;
  --radius-md:     12px;
  --radius-lg:     20px;
  --radius-xl:     28px;
  --radius-full:   9999px;

  /* Tipografi */
  --font-main:     'Outfit', 'Inter', sans-serif;
  --font-alt:      'Inter', sans-serif;
  --font-heading:  'Outfit', 'Inter', sans-serif; /* Alias for inline styles */
  
  /* Uyumluluk için Accent Eşlemeleri */
  --accent:        var(--red);
  --accent-dark:   var(--red-dark);
  --accent-light:  var(--red-light);
  --accent-glow:   var(--red-glow);
  --grad-accent:   linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-main);
  background: linear-gradient(to bottom, var(--black) 0, var(--black) 180px, var(--bg-light) 180px) no-repeat;
  background-color: var(--bg-light);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  padding-top: 38px; /* Fixed top-strip yüksekliği */
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--trans), transform var(--trans); }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Sayfa Yükleyici ── */
.page-loader {
  position: fixed; inset: 0;
  background: radial-gradient(circle at center, #ffffff 0%, #f4f5f8 100%);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  z-index: 99999;
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.page-loader.loaded, .page-loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-wrapper {
  position: relative; display: flex; flex-direction: column; align-items: center;
  margin-top: 50px; /* Logoyu hafif aşağı indirir */
}
.loader-logo { 
  height: 150px; width: auto; 
  margin-bottom: 20px; /* Bara biraz daha yakınlaştırır */
  animation: loaderPulse 1.4s cubic-bezier(0.4, 0, 0.2, 1) infinite alternate; 
  filter: drop-shadow(0 10px 20px rgba(0,0,0,0.06));
}
@keyframes loaderPulse { 
  from { transform: scale(0.96) translateY(0); } 
  to { transform: scale(1.02) translateY(-6px); filter: drop-shadow(0 15px 30px rgba(0,0,0,0.1)); } 
}
.loader-bar { 
  width: 240px; height: 6px; 
  background: rgba(0,0,0,0.04); 
  border-radius: var(--radius-full); overflow: hidden; 
  box-shadow: inset 0 1px 3px rgba(0,0,0,0.03);
}
.loader-bar-fill {
  height: 100%; width: 0%; 
  background: linear-gradient(90deg, var(--red), #ff4b55);
  border-radius: var(--radius-full);
  animation: loaderFill 1.5s cubic-bezier(0.65, 0, 0.35, 1) forwards;
}
@keyframes loaderFill { to { width: 100%; } }
.loader-text { 
  margin-top: 20px; color: var(--text-secondary); 
  font-size: 13px; letter-spacing: 4px; text-transform: uppercase; font-weight: 700;
  animation: loaderTextFade 1.2s ease-in-out infinite alternate;
}
@keyframes loaderTextFade { from { opacity: 0.4; } to { opacity: 1; } }

/* ── Üst Kırmızı Şerit ── */
.top-strip {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  background: var(--red);
  color: white;
  font-size: 13.5px;
  font-weight: 500;
  padding: 9px 0;
  border-bottom: none;
}
.top-strip .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.top-strip a { color: white; display: inline-flex; align-items: center; gap: 6px; }
.top-strip a:hover { opacity: 0.9; text-decoration: underline; }
.top-strip-left, .top-strip-right { display: flex; align-items: center; gap: 24px; }
.top-strip-left span, .top-strip-right span { display: flex; align-items: center; gap: 8px; }
.top-strip-left i, .top-strip-right i { font-size: 13px; opacity: 0.95; }

/* ── Navbar ── */
/* top-strip yüksekliği ~38px, navbar altında 16px boşlukla başlar */
.navbar {
  position: fixed;
  top: calc(38px + 16px);
  left: 24px;
  right: 24px;
  z-index: 1000;
  margin: 0 auto;
  width: auto;
  max-width: var(--container);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 2px solid var(--red);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.05), 0 1px 3px rgba(0, 0, 0, 0.02);
  border-radius: var(--radius-lg);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.navbar.scrolled {
  top: 38px;
  left: 0;
  right: 0;
  max-width: 100%;
  border-radius: 0;
  border-left: none;
  border-right: none;
  border-top: none;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08), 0 2px 10px rgba(0, 0, 0, 0.03);
}
.navbar .container { max-width: 100%; margin: 0 auto; padding: 0 24px; }
.navbar-inner { display: flex; align-items: center; justify-content: space-between; height: 104px; gap: 24px; transition: height 0.4s var(--ease); }
.navbar.scrolled .navbar-inner { height: 80px; }

/* Logo Alanı (Büyütüldü & Optimize Edildi) */
.navbar-logo { display: flex; align-items: center; text-decoration: none; flex-shrink: 0; margin-left: -20px; }
.navbar-logo img {
  height: 160px;
  width: auto;
  object-fit: contain;
  margin-top: -30px;
  margin-bottom: -30px;
  transition: all 0.4s var(--ease);
}
.navbar-logo:hover img { transform: scale(1.03); }
.navbar.scrolled .navbar-logo img {
  height: 110px;
  margin-top: -15px;
  margin-bottom: -15px;
}
.navbar-logo-text { display: none; }

/* Nav Links */
.navbar-nav { display: flex; align-items: center; gap: 4px; flex: 1; justify-content: center; }
.navbar-nav li a {
  display: block; padding: 10px 12px;
  color: var(--text-secondary);
  font-size: 14px; font-weight: 600;
  border-radius: var(--radius-sm);
  letter-spacing: 0.4px;
  text-transform: uppercase;
  transition: all var(--trans);
  position: relative;
  white-space: nowrap;
}
.navbar-nav li a::after {
  content: ''; position: absolute; bottom: 4px; left: 12px; right: 12px;
  height: 3px; background: var(--red);
  transform: scaleX(0); transition: transform var(--trans);
  border-radius: var(--radius-full);
}
.navbar-nav li a:hover { color: var(--red); background: var(--red-glow); }
.navbar-nav li a:hover::after { transform: scaleX(1); }
.navbar-nav li a.active { color: var(--red); font-weight: 700; }
.navbar-nav li a.active::after { transform: scaleX(1); }

/* Sağ Buton Alanı */
.navbar-cta { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.navbar-phone {
  display: flex; align-items: center; gap: 10px;
  background: var(--red);
  color: white;
  padding: 12px 22px;
  border-radius: var(--radius-md);
  font-weight: 700; font-size: 15px;
  box-shadow: var(--shadow-red);
  transition: all var(--trans);
  white-space: nowrap;
}
.navbar-phone:hover { background: var(--red-dark); transform: translateY(-2px); box-shadow: 0 12px 30px rgba(229, 26, 34, 0.3); color: white; }
.navbar-phone-icon { font-size: 14px; animation: phoneRing 2s ease infinite; }

@keyframes phoneRing {
  0%,100% { transform: rotate(0deg); }
  10%,30% { transform: rotate(-15deg); }
  20%,40% { transform: rotate(15deg); }
  50% { transform: rotate(0deg); }
}

/* Mobil Hamburger Menü */
.navbar-toggle {
  display: none; flex-direction: column; justify-content: center; gap: 6px;
  width: 44px; height: 44px; padding: 10px;
  background: var(--silver-light); border: none; border-radius: var(--radius-md);
  transition: all var(--trans);
  position: relative;
  z-index: 1001; /* Ensure it stays above the overlay and mobile menu */
}
.navbar-toggle span { display: block; height: 2px; width: 100%; background: var(--text-primary); border-radius: 2px; transition: all 0.3s var(--ease); }
.navbar-toggle.open span:nth-child(1), .navbar-toggle.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.navbar-toggle.open span:nth-child(2), .navbar-toggle.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.navbar-toggle.open span:nth-child(3), .navbar-toggle.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
.navbar-toggle:hover { background: var(--red-glow); }
.navbar-toggle:hover span { background: var(--red); }

/* ── Container ── */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

/* ── Bölüm Tasarımları ── */
section { padding: 90px 0; }
.section-header { text-align: center; margin-bottom: 64px; }
.section-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--red-glow); color: var(--red);
  font-size: 12px; font-weight: 800; letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px; border-radius: var(--radius-full);
  border: 1px solid var(--red-glow-str);
  margin-bottom: 20px;
}
.section-eyebrow::before { content: ''; width: 6px; height: 6px; background: var(--red); border-radius: 50%; }
.section-title { font-size: clamp(30px, 4vw, 44px); font-weight: 900; color: var(--text-primary); line-height: 1.2; margin-bottom: 18px; letter-spacing: -0.5px; }
.section-title span { color: var(--red); }
.section-desc { font-size: 17px; color: var(--text-secondary); max-width: 650px; margin: 0 auto; line-height: 1.7; }

/* ── Butonlar ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-main); font-weight: 700; font-size: 15.5px;
  padding: 15px 30px; border-radius: var(--radius-md);
  transition: all var(--trans); cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap; text-decoration: none;
  letter-spacing: 0.3px;
}
.btn-primary { background: var(--red); color: white; border-color: var(--red); box-shadow: var(--shadow-red); }
.btn-primary:hover { background: var(--red-dark); border-color: var(--red-dark); color: white; transform: translateY(-3px); box-shadow: 0 12px 35px rgba(229, 26, 34, 0.35); }
.btn-outline { background: transparent; color: var(--red); border-color: var(--red); }
.btn-outline:hover { background: var(--red); color: white; transform: translateY(-3px); box-shadow: var(--shadow-red); }
.btn-dark { background: var(--black); color: white; border-color: var(--black); }
.btn-dark:hover { background: var(--charcoal); color: white; transform: translateY(-3px); box-shadow: var(--shadow-md); }
.btn-white { background: white; color: var(--red); border-color: white; box-shadow: var(--shadow-md); }
.btn-white:hover { background: transparent; color: white; border-color: white; transform: translateY(-2px); }
.btn-whatsapp { background: #25D366; color: white; border-color: #25D366; box-shadow: 0 8px 24px rgba(37, 211, 102, 0.2); }
.btn-whatsapp:hover { background: #1ebd5a; border-color: #1ebd5a; color: white; transform: translateY(-3px); box-shadow: 0 12px 30px rgba(37, 211, 102, 0.35); }
.btn-lg { padding: 18px 38px; font-size: 16.5px; }
.btn-sm { padding: 10px 20px; font-size: 13.5px; }

/* ── HERO ALANI ── */
.hero {
  position: relative;
  background: var(--black);
  min-height: 85vh;
  display: flex; align-items: center;
  overflow: hidden;
  padding: 180px 0 100px;
}
/* Touch devices: disable hover effects that feel sticky */
@media (hover: none) {
  .service-card:hover { transform: none; }
  .blog-card:hover { transform: none; }
  .strip-item:hover { transform: none; }
  .btn-primary:hover { transform: none; }
  .float-btn:hover { transform: none; }
  .float-btn:active { transform: scale(0.95); }
  .btn:active { transform: scale(0.97); }
  .navbar-phone:hover { transform: none; }
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg-image { width: 100%; height: 100%; object-fit: cover; opacity: 0.28; filter: grayscale(20%); }
.hero-bg-overlay { position: absolute; inset: 0; background: linear-gradient(105deg, rgba(15,15,18,0.96) 50%, rgba(229,26,34,0.2) 100%); }
.hero-diagonal {
  position: absolute; right: 0; top: 0; bottom: 0; width: 45%;
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
  opacity: 0.05;
}

.hero .container { position: relative; z-index: 1; }
.hero-inner { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 80px; align-items: center; }
.hero-content { max-width: 640px; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(229, 26, 34, 0.15);
  border: 1px solid rgba(229, 26, 34, 0.4);
  color: #FF5E62; font-size: 12.5px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 8px 18px; border-radius: var(--radius-full);
  margin-bottom: 28px;
}
.hero-badge-dot { width: 8px; height: 8px; background: var(--red); border-radius: 50%; animation: blink 1.2s ease infinite; }

.hero-title {
  font-size: clamp(38px, 5vw, 58px);
  font-weight: 900; color: white; line-height: 1.15;
  margin-bottom: 24px; letter-spacing: -1.5px;
}
.hero-title-accent { display: block; color: var(--red); font-size: 0.6em; font-weight: 700; letter-spacing: 1.5px; margin-top: 10px; text-transform: uppercase; }

.hero-subtitle { font-size: 17.5px; color: rgba(255,255,255,0.72); margin-bottom: 40px; line-height: 1.75; max-width: 540px; }

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 56px; }

/* Hero İstatistik */
.hero-stats { display: flex; gap: 0; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 32px; }
.hero-stat { flex: 1; text-align: center; padding: 0 16px; border-right: 1px solid rgba(255,255,255,0.1); }
.hero-stat:first-child { padding-left: 0; }
.hero-stat:last-child { border-right: none; }
.hero-stat-num { display: block; font-size: 38px; font-weight: 900; color: var(--red); line-height: 1; margin-bottom: 6px; }
.hero-stat-label { font-size: 12px; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 1.5px; font-weight: 600; }

/* Hero Sağ Kart */
.hero-card-wrap { display: flex; justify-content: flex-end; }
.hero-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: var(--radius-lg);
  padding: 40px;
  width: 100%; max-width: 380px;
  box-shadow: 0 30px 70px rgba(0,0,0,0.5);
}
.hero-card-title { font-size: 19px; font-weight: 800; color: white; margin-bottom: 28px; display: flex; align-items: center; gap: 12px; border-bottom: 1px solid rgba(255,255,255,0.08); padding-bottom: 14px; }
.hero-card-title i { color: var(--red); }
.hero-card-item { display: flex; align-items: center; gap: 16px; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
.hero-card-item:last-child { border-bottom: none; padding-bottom: 0; }
.hero-card-icon {
  width: 44px; height: 44px; min-width: 44px;
  background: rgba(229, 26, 34, 0.12); border: 1px solid rgba(229, 26, 34, 0.3);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--red); font-size: 17px;
}
.hero-card-text strong { display: block; color: white; font-size: 14.5px; font-weight: 700; margin-bottom: 2px; }
.hero-card-text span { color: rgba(255,255,255,0.55); font-size: 12.5px; }

/* ── Hizmetler Şeridi ── */
.services-strip {
  background: var(--red);
  padding: 0;
  box-shadow: var(--shadow-red);
}
.strip-inner { display: flex; align-items: stretch; }
.strip-item {
  flex: 1; display: flex; align-items: center; gap: 16px;
  padding: 24px 32px;
  color: white;
  border-right: 1px solid rgba(255,255,255,0.15);
  text-decoration: none;
  transition: all var(--trans);
}
.strip-item:last-child { border-right: none; }
.strip-item:hover { background: var(--red-dark); transform: scale(1.02); z-index: 2; }
.strip-item i { font-size: 24px; opacity: 0.95; flex-shrink: 0; }
.strip-item strong { display: block; font-size: 15.5px; font-weight: 800; line-height: 1.2; }
.strip-item span { font-size: 11.5px; opacity: 0.85; }

/* ── Hizmet Kartları ── */
.services-section { background: var(--bg-light); position: relative; }
.services-section::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 180px;
  background: linear-gradient(180deg, var(--bg-white) 0%, transparent 100%);
  pointer-events: none;
}
.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 30px; }
.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  transition: all var(--trans);
  position: relative; overflow: hidden;
  cursor: pointer;
  text-decoration: none; color: inherit;
  display: flex; flex-direction: column; justify-content: space-between;
  box-shadow: var(--shadow-sm);
}
.service-card::before {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 4px;
  background: var(--red);
  transform: scaleX(0); transition: transform var(--trans);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }
.service-card-number {
  position: absolute; top: 24px; right: 28px;
  font-size: 56px; font-weight: 900; color: rgba(229, 26, 34, 0.04);
  line-height: 1; font-family: var(--font-main);
  transition: color var(--trans);
}
.service-card:hover .service-card-number { color: rgba(229, 26, 34, 0.08); }
.service-card-icon {
  width: 64px; height: 64px;
  background: var(--red-glow);
  border: 2px solid rgba(229, 26, 34, 0.12);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--red); font-size: 26px;
  margin-bottom: 28px;
  transition: all var(--trans);
}
.service-card:hover .service-card-icon { background: var(--red); color: white; border-color: var(--red); transform: rotate(5deg) scale(1.05); }
.service-card-title { font-size: 20px; font-weight: 800; color: var(--text-primary); margin-bottom: 12px; }
.service-card-desc { font-size: 14.5px; color: var(--text-secondary); line-height: 1.65; margin-bottom: 24px; flex-grow: 1; }
.service-card-link { font-size: 13.5px; font-weight: 700; color: var(--red); display: flex; align-items: center; gap: 8px; }
.service-card-link i { transition: transform var(--trans); font-size: 12px; }
.service-card:hover .service-card-link i { transform: translateX(6px); }

/* ── Neden Biz ── */
.why-section { background: var(--bg-white); }
.why-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 80px; align-items: center; }
.why-image-wrap { position: relative; }
.why-image-main {
  width: 100%; border-radius: var(--radius-lg);
  object-fit: cover; height: 500px;
  box-shadow: var(--shadow-lg);
  border: 4px solid white;
}
.why-image-badge {
  position: absolute; bottom: -28px; right: -28px;
  background: var(--red);
  color: white; border-radius: var(--radius-lg);
  padding: 26px 32px; text-align: center;
  box-shadow: var(--shadow-red);
  animation: badgeFloat 3s ease-in-out infinite alternate;
}
@keyframes badgeFloat { from { transform: translateY(0); } to { transform: translateY(-8px); } }
.why-badge-num { font-size: 46px; font-weight: 900; line-height: 1; display: block; }
.why-badge-label { font-size: 12px; opacity: 0.95; text-transform: uppercase; letter-spacing: 1.5px; margin-top: 6px; font-weight: 700; }
.why-content { padding-right: 20px; }
.why-items { display: flex; flex-direction: column; gap: 28px; margin-top: 40px; }
.why-item { display: flex; gap: 20px; align-items: flex-start; }
.why-item-icon {
  width: 52px; height: 52px; min-width: 52px;
  background: var(--red-glow); border: 2px solid rgba(229, 26, 34, 0.12);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--red); font-size: 22px;
}
.why-item-title { font-size: 17.5px; font-weight: 800; color: var(--text-primary); margin-bottom: 6px; }
.why-item-desc { font-size: 14.5px; color: var(--text-secondary); line-height: 1.65; }

/* ── İstatistikler ── */
.stats-section { background: var(--black); padding: 80px 0; position: relative; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.stat-item { text-align: center; padding: 48px 24px; border-right: 1px solid rgba(255,255,255,0.06); position: relative; }
.stat-item:last-child { border-right: none; }
.stat-icon { font-size: 34px; color: var(--red); margin-bottom: 20px; }
.stat-num { font-size: 54px; font-weight: 900; color: white; line-height: 1; margin-bottom: 8px; }
.stat-label { font-size: 13px; color: var(--silver); text-transform: uppercase; letter-spacing: 1.5px; font-weight: 600; }

/* ── Google Yorumları (Yeni) ── */
.google-reviews-section { background: var(--bg-light); }
.gr-header {
  display: flex; align-items: flex-start; justify-content: space-between;
  flex-wrap: wrap; gap: 24px; margin-bottom: 44px;
}
.gr-header-left { flex: 1; min-width: 260px; }
.gr-google-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: white; border: 1px solid var(--border);
  border-radius: 50px; padding: 8px 18px 8px 12px;
  font-size: 13.5px; font-weight: 700; color: #3c4043;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}
.gr-rating-summary {
  display: flex; align-items: center; gap: 16px; margin-top: 14px;
}
.gr-big-score { font-size: 52px; font-weight: 900; line-height: 1; color: var(--text-primary); }
.gr-stars { color: #FBBC04; font-size: 18px; display: flex; gap: 3px; margin-bottom: 4px; }
.gr-count { font-size: 13px; color: var(--text-muted); font-weight: 600; }
.gr-write-btn {
  display: inline-flex; align-items: center; gap: 9px;
  background: white; border: 2px solid #4285F4;
  color: #4285F4; font-weight: 700; font-size: 14px;
  padding: 12px 24px; border-radius: 50px;
  text-decoration: none; transition: all var(--trans);
  box-shadow: 0 2px 12px rgba(66,133,244,0.12);
  white-space: nowrap; align-self: center;
}
.gr-write-btn:hover { background: #4285F4; color: white; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(66,133,244,0.3); }

/* Card Track — horizontal scroll on mobile */
.gr-cards-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.gr-card {
  background: white;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 3px 16px rgba(0,0,0,0.06);
  transition: all var(--trans);
}
.gr-card:hover { transform: translateY(-5px); box-shadow: 0 12px 36px rgba(0,0,0,0.11); border-color: transparent; }
.gr-card-top { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.gr-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 17px; font-weight: 800; color: white; flex-shrink: 0;
}
.gr-user { flex: 1; min-width: 0; }
.gr-username { font-size: 14.5px; font-weight: 700; color: var(--text-primary); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.gr-user-meta { font-size: 11.5px; color: var(--text-muted); margin-top: 2px; }
.gr-g-icon { flex-shrink: 0; margin-left: auto; }
.gr-stars-row { color: #FBBC04; font-size: 12.5px; display: flex; gap: 2px; margin-bottom: 11px; }
.gr-stars-row .empty { color: #e0e0e0; }
.gr-text { font-size: 14px; color: var(--text-secondary); line-height: 1.7; }

/* ── Hizmet Bölgeleri (Sade) ── */
.regions-section { background: var(--bg-section); }
.section-header-center { text-align: center; margin-bottom: 48px; }
.regions-simple-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 680px;
  margin: 0 auto;
}
.region-simple-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px 28px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: all var(--trans);
}
.region-simple-card:hover { transform: translateY(-6px); box-shadow: 0 12px 40px rgba(229,26,34,0.1); border-color: rgba(229,26,34,0.25); }
.region-simple-icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: rgba(229,26,34,0.09);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  font-size: 24px; color: var(--red);
  transition: all var(--trans);
}
.region-simple-card:hover .region-simple-icon { background: var(--red); color: white; box-shadow: var(--shadow-red); }
.region-simple-name { font-size: 22px; font-weight: 800; color: var(--text-primary); margin-bottom: 8px; }
.region-simple-meta { font-size: 13px; color: var(--text-muted); margin-bottom: 24px; display: flex; align-items: center; justify-content: center; gap: 6px; }
.region-simple-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--red); color: white;
  font-size: 14px; font-weight: 700;
  padding: 12px 24px; border-radius: 50px;
  text-decoration: none; transition: all var(--trans);
  box-shadow: 0 4px 16px rgba(229,26,34,0.25);
}
.region-simple-btn:hover { background: var(--red-dark); transform: scale(1.04); box-shadow: var(--shadow-red); }


/* ── Acil Çağrı Bölümü (Stilize Edildi) ── */
.emergency-section {
  background: var(--black);
  padding: 88px 0;
  position: relative; overflow: hidden;
}
.emergency-section::before {
  content: ''; position: absolute; right: -120px; top: -120px;
  width: 440px; height: 440px;
  border: 70px solid rgba(229,26,34,0.06); border-radius: 50%;
}
.emergency-section::after {
  content: ''; position: absolute; left: -100px; bottom: -100px;
  width: 320px; height: 320px;
  border: 50px solid rgba(229,26,34,0.04); border-radius: 50%;
}
.emergency-inner { display: flex; align-items: center; justify-content: space-between; gap: 48px; flex-wrap: wrap; position: relative; z-index: 1; }
.emergency-icon { font-size: 80px; color: rgba(255,255,255,0.1); display: none; }
.emergency-text { flex: 1; }
.emergency-text h2 { font-size: clamp(30px, 4vw, 46px); font-weight: 900; color: white; line-height: 1.15; margin-bottom: 14px; }
.emergency-text h2 span { color: var(--red); }
.emergency-text p { color: rgba(255,255,255,0.8); font-size: 17.5px; line-height: 1.7; }
.emergency-actions { display: flex; gap: 16px; flex-wrap: wrap; flex-shrink: 0; }
.emergency-phone {
  background: white; color: var(--red);
  border: 3px solid white; border-radius: var(--radius-md);
  padding: 18px 36px;
  display: inline-flex; align-items: center; gap: 14px;
  font-weight: 900; font-size: 24px;
  box-shadow: var(--shadow-lg);
  transition: all var(--trans);
}
.emergency-phone:hover { background: transparent; color: white; transform: scale(1.03); }
.emergency-phone i { font-size: 22px; animation: phoneRing 2s ease infinite; }

/* ── Blog ── */
.blog-section { background: var(--bg-light); }
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 32px; }
.blog-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--trans);
  text-decoration: none; color: inherit; display: block;
  box-shadow: var(--shadow-sm);
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.blog-card-img { position: relative; height: 230px; overflow: hidden; background: var(--bg-gray); }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.blog-card:hover .blog-card-img img { transform: scale(1.06); }
.blog-card-cat {
  position: absolute; top: 18px; left: 18px;
  background: var(--red); color: white;
  font-size: 11px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase;
  padding: 6px 14px; border-radius: var(--radius-full);
  box-shadow: var(--shadow-red);
}
.blog-card-body { padding: 28px; }
.blog-card-meta { display: flex; gap: 16px; margin-bottom: 14px; }
.blog-card-meta span { font-size: 12.5px; color: var(--text-muted); display: flex; align-items: center; gap: 6px; }
.blog-card-title { font-size: 18.5px; font-weight: 800; color: var(--text-primary); line-height: 1.4; margin-bottom: 12px; }
.blog-card-excerpt { font-size: 14px; color: var(--text-secondary); line-height: 1.65; margin-bottom: 20px; }
.blog-card-link { font-size: 13.5px; font-weight: 700; color: var(--red); display: flex; align-items: center; gap: 6px; }

/* ── Sayfa Banner ── */
.page-banner {
  background: var(--black);
  padding: 140px 0 80px;
  position: relative; overflow: hidden;
  border-bottom: 3px solid var(--red);
}
.page-banner::after {
  content: ''; position: absolute; right: 0; top: 0; bottom: 0;
  width: 45%; background: linear-gradient(to right, transparent, rgba(229,26,34,0.06));
}
.page-banner-inner { position: relative; z-index: 1; }
.page-banner h1 { font-size: clamp(34px, 5vw, 54px); font-weight: 900; color: white; margin-bottom: 14px; letter-spacing: -1px; }
.page-banner h1 span { color: var(--red); }
.page-banner p { font-size: 17.5px; color: rgba(255,255,255,0.7); max-width: 600px; line-height: 1.6; }
.breadcrumb { display: flex; align-items: center; gap: 8px; margin-top: 24px; font-size: 13.5px; color: rgba(255,255,255,0.5); font-weight: 500; }
.breadcrumb a { color: rgba(255,255,255,0.7); transition: color var(--trans); }
.breadcrumb a:hover { color: var(--red); }
.breadcrumb-sep { color: var(--red); }

/* ── Footer ── */
.footer {
  background: linear-gradient(180deg, var(--black) 0%, #0d0d12 100%);
  color: rgba(255,255,255,0.75);
  padding-top: 96px;
  position: relative;
  border-top: 4px solid var(--red);
}
.footer::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(229,26,34,0.5), transparent);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr 0.9fr 1.1fr;
  gap: 64px;
  padding-bottom: 72px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.footer-brand-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 24px; }
.footer-brand-logo img { 
  height: 240px; width: auto; 
  filter: drop-shadow(1px 1px 0 rgba(255,255,255,0.6)) drop-shadow(-1px -1px 0 rgba(255,255,255,0.6)) drop-shadow(1px -1px 0 rgba(255,255,255,0.6)) drop-shadow(-1px 1px 0 rgba(255,255,255,0.6));
}
.footer-desc { font-size: 15px; line-height: 1.8; color: rgba(255,255,255,0.6); margin-bottom: 32px; padding-right: 20px; }
.footer-social { display: flex; gap: 14px; }
.footer-social a {
  width: 46px; height: 46px; border-radius: var(--radius-md);
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.8);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.footer-social a:hover { background: var(--red); border-color: var(--red); color: white; transform: translateY(-5px) scale(1.05); box-shadow: var(--shadow-red); }

.footer-col-title {
  font-size: 14px; font-weight: 800; color: white;
  text-transform: uppercase; letter-spacing: 2px;
  margin-bottom: 28px;
  padding-bottom: 14px;
  border-bottom: 2px solid rgba(229,26,34,0.3);
  position: relative;
  display: inline-block;
}
.footer-col-title::after {
  content: ''; position: absolute; bottom: -2px; left: 0; width: 50%; height: 2px; background: var(--red);
}
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links a {
  font-size: 14.5px; color: rgba(255,255,255,0.6);
  display: flex; align-items: center; gap: 8px;
  transition: all var(--trans);
}
.footer-links a::before { content: '›'; color: var(--red); font-size: 18px; line-height: 1; transition: transform var(--trans); }
.footer-links a:hover { color: white; padding-left: 6px; }
.footer-links a:hover::before { transform: scale(1.2); }

.footer-contact-item { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 20px; }
.footer-contact-icon {
  width: 38px; height: 38px; min-width: 38px;
  background: rgba(229,26,34,0.12); border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--red); font-size: 14px;
}
.footer-contact-text strong { display: block; color: white; font-size: 14px; font-weight: 700; margin-bottom: 4px; }
.footer-contact-text span, .footer-contact-text a { font-size: 13.5px; color: rgba(255,255,255,0.6); }
.footer-contact-text a:hover { color: var(--red); }

.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding: 24px 0; flex-wrap: wrap; gap: 16px;
}
.footer-bottom-text { font-size: 13.5px; color: rgba(255,255,255,0.45); }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { font-size: 13.5px; color: rgba(255,255,255,0.45); transition: color var(--trans); }
.footer-bottom-links a:hover { color: var(--red); }

/* ── Sabit Butonlar ── */
.floating-buttons { position: fixed; bottom: 32px; right: 32px; display: flex; flex-direction: column; gap: 14px; z-index: 900; }
.float-btn {
  width: 58px; height: 58px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; color: white;
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
  transition: all var(--trans);
  position: relative;
}
.float-btn:hover { transform: scale(1.1) translateY(-3px); color: white; }
.float-btn-whatsapp { background: #25D366; }
.float-btn-whatsapp:hover { background: #1ebd5a; }
.float-btn-phone { background: var(--red); }
.float-btn-phone:hover { background: var(--red-dark); }
.float-btn::after {
  content: attr(data-tooltip);
  position: absolute; right: 72px;
  background: var(--black); color: white;
  font-size: 12px; font-weight: 700; white-space: nowrap;
  padding: 8px 14px; border-radius: var(--radius-sm);
  opacity: 0; pointer-events: none;
  transform: translateX(10px); transition: all var(--trans);
  box-shadow: var(--shadow-md);
}
.float-btn:hover::after { opacity: 1; transform: translateX(0); }

/* ── Galeri Sayfası ── */
.gallery-filters { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; margin-bottom: 48px; }
.gallery-filter-btn {
  padding: 10px 24px; border-radius: var(--radius-full);
  font-size: 14px; font-weight: 700; color: var(--text-secondary);
  background: var(--bg-white); border: 1.5px solid var(--border);
  transition: all var(--trans); cursor: pointer;
}
.gallery-filter-btn:hover, .gallery-filter-btn.active {
  background: var(--red); color: white; border-color: var(--red);
  box-shadow: var(--shadow-red);
}
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; }
.gallery-item {
  position: relative; border-radius: var(--radius-md); overflow: hidden;
  aspect-ratio: 4/3; cursor: pointer;
  background: var(--bg-gray);
  box-shadow: var(--shadow-sm);
  transition: all var(--trans);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(15,15,18,0.9) 100%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 24px;
  opacity: 0; transition: opacity var(--trans);
}
.gallery-item-title { color: white; font-weight: 800; font-size: 15.5px; }
.gallery-zoom {
  position: absolute; top: 20px; right: 20px;
  width: 42px; height: 42px; border-radius: 50%;
  background: rgba(255,255,255,0.9); color: var(--red);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; opacity: 0; transform: scale(0.8);
  transition: all var(--trans);
}
.gallery-item:hover img { transform: scale(1.07); }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-item:hover .gallery-zoom { opacity: 1; transform: scale(1); }

/* ── Lightbox ── */
.lightbox {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(15,15,18,0.95); backdrop-filter: blur(12px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: all 0.3s var(--ease);
}
.lightbox.active { opacity: 1; visibility: visible; }
.lightbox-inner { position: relative; max-width: 90vw; max-height: 90vh; }
.lightbox-img { max-width: 100%; max-height: 85vh; border-radius: var(--radius-md); display: block; box-shadow: var(--shadow-lg); }
.lightbox-close {
  position: absolute; top: -56px; right: 0;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,0.15); color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; transition: all var(--trans);
}
.lightbox-close:hover { background: var(--red); transform: rotate(90deg); }

/* ── İletişim Form ve Kartları ── */
.contact-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 48px; }
.contact-form-card {
  background: var(--bg-white); border: 1.5px solid var(--border);
  border-radius: var(--radius-lg); padding: 48px;
  box-shadow: var(--shadow-sm);
}
.contact-info-card {
  background: var(--black); border-radius: var(--radius-lg);
  padding: 48px; color: white;
  box-shadow: var(--shadow-lg);
}
.contact-info-card h3 { font-size: 24px; font-weight: 800; margin-bottom: 12px; border-bottom: 2px solid var(--red); padding-bottom: 12px; display: inline-block; }
.contact-info-card p { color: rgba(255,255,255,0.65); font-size: 15px; margin-bottom: 36px; }

.contact-detail { display: flex; gap: 20px; margin-bottom: 28px; align-items: flex-start; }
.contact-detail-icon {
  width: 48px; height: 48px; min-width: 48px;
  background: rgba(229,26,34,0.15); border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--red); font-size: 20px;
}
.contact-detail strong { display: block; color: white; font-size: 14.5px; margin-bottom: 6px; }
.contact-detail span, .contact-detail a { font-size: 14.5px; color: rgba(255,255,255,0.65); line-height: 1.5; }
.contact-detail a:hover { color: var(--red); }

/* Formlar */
.form-group { margin-bottom: 22px; }
.form-group label { display: block; font-size: 13.5px; font-weight: 700; color: var(--text-primary); margin-bottom: 10px; text-transform: uppercase; letter-spacing: 0.5px; }
.form-control {
  width: 100%; padding: 14px 18px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  font-family: var(--font-main); font-size: 15.5px;
  color: var(--text-primary); background: var(--bg-white);
  transition: border-color var(--trans), box-shadow var(--trans);
  outline: none;
}
.form-control:focus { border-color: var(--red); box-shadow: 0 0 0 4px rgba(229,26,34,0.08); }
.form-control::placeholder { color: var(--text-muted); }
textarea.form-control { resize: vertical; min-height: 140px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-alert {
  padding: 16px 20px; border-radius: var(--radius-md);
  margin-bottom: 28px; display: flex; align-items: center; gap: 12px;
  font-weight: 600; font-size: 14.5px;
}
.form-alert.success { background: rgba(37,211,102,0.1); color: #15803d; border: 1px solid rgba(37,211,102,0.2); }
.form-alert.error { background: rgba(239,68,68,0.1); color: #b91c1c; border: 1px solid rgba(239,68,68,0.2); }

.map-wrapper {
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-md); border: 1.5px solid var(--border);
  height: 450px;
}
.map-wrapper iframe { width: 100%; height: 100%; border: none; }

/* ── Detay Sayfaları (Blog & Hizmet) ── */
.blog-detail-grid { display: grid; grid-template-columns: 1fr 340px; gap: 48px; align-items: start; }
.blog-detail-content { background: var(--bg-white); border: 1.5px solid var(--border); border-radius: var(--radius-lg); padding: 48px; box-shadow: var(--shadow-sm); }
.blog-detail-img { width: 100%; border-radius: var(--radius-md); margin-bottom: 36px; max-height: 460px; object-fit: cover; box-shadow: var(--shadow-md); }
.blog-detail-body { font-size: 16.5px; color: var(--text-secondary); line-height: 1.85; }
.blog-detail-body h2 { font-size: 26px; font-weight: 800; color: var(--text-primary); margin: 36px 0 16px; letter-spacing: -0.5px; }
.blog-detail-body p { margin-bottom: 20px; }

.service-detail-grid { display: grid; grid-template-columns: 1fr 340px; gap: 48px; align-items: start; }
.service-detail-content { background: var(--bg-white); border: 1.5px solid var(--border); border-radius: var(--radius-lg); padding: 48px; box-shadow: var(--shadow-sm); }
.service-detail-icon { width: 76px; height: 76px; background: var(--red-glow); border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; font-size: 36px; color: var(--red); margin-bottom: 28px; border: 2px solid rgba(229,26,34,0.1); }
.service-sidebar-cta {
  background: var(--black); border-radius: var(--radius-lg);
  padding: 40px; color: white; text-align: center;
  position: sticky; top: 110px;
  box-shadow: var(--shadow-lg);
}

/* ── 404 Sayfası ── */
.page-404 { min-height: 70vh; display: flex; align-items: center; justify-content: center; text-align: center; }
.page-404-num { font-size: 160px; font-weight: 900; color: var(--red); line-height: 1; opacity: 0.15; letter-spacing: -4px; }
.page-404-title { font-size: 34px; font-weight: 800; color: var(--text-primary); margin-bottom: 16px; }
.page-404-desc { color: var(--text-secondary); font-size: 17.5px; margin-bottom: 36px; max-width: 480px; margin-left: auto; margin-right: auto; }

/* ── Yardımcı Sınıflar ── */
.text-red { color: var(--red); }
.text-accent { color: var(--accent); }
.text-center { text-align: center; }
.mt-8 { margin-top: 64px; }
.d-flex { display: flex; }
.align-center { align-items: center; }
.gap-4 { gap: 16px; }
.section { padding: 90px 0; }

/* ── Animasyonlar ── */
.fade-in { opacity: 0; transform: translateY(28px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.slide-left { opacity: 0; transform: translateX(-36px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.slide-left.visible { opacity: 1; transform: translateX(0); }
.slide-right { opacity: 0; transform: translateX(36px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.slide-right.visible { opacity: 1; transform: translateX(0); }

/* reveal = alias for fade-in (JS uses .reveal classes) */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-36px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(36px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal-right.visible { opacity: 1; transform: translateX(0); }
.reveal-scale { opacity: 0; transform: scale(0.92); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal-scale.visible { opacity: 1; transform: scale(1); }

/* ── Bölüm Rozeti (section-badge) ── */
.section-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--red-glow); color: var(--red);
  font-size: 12px; font-weight: 800; letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px; border-radius: var(--radius-full);
  border: 1px solid var(--red-glow-str);
  margin-bottom: 20px;
}

/* ── Hakkımızda Grid ── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-image-wrapper { position: relative; }
.about-image-wrapper img {
  width: 100%; border-radius: var(--radius-lg);
  object-fit: cover; height: 480px;
  box-shadow: var(--shadow-lg);
  border: 4px solid white;
}
.about-badge-float {
  position: absolute; bottom: -24px; left: -24px;
  background: white;
  border-radius: var(--radius-lg); padding: 20px 28px;
  display: flex; align-items: center; gap: 16px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}
.about-check-list { display: flex; flex-direction: column; gap: 16px; margin-top: 28px; }
.about-check-item { display: flex; align-items: flex-start; gap: 14px; font-size: 15px; color: var(--text-secondary); }
.about-check-item i { color: var(--red); font-size: 18px; margin-top: 2px; flex-shrink: 0; }
.about-check-item strong { color: var(--text-primary); }

/* ── Misyon & Vizyon ── */
.mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.mv-card {
  background: white; border: 1.5px solid var(--border);
  border-radius: var(--radius-lg); padding: 48px 40px;
  transition: all var(--trans);
  box-shadow: var(--shadow-sm);
}
.mv-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--red); }
.mv-card-icon { font-size: 44px; margin-bottom: 20px; display: block; }
.mv-card-title { font-size: 22px; font-weight: 800; color: var(--text-primary); margin-bottom: 16px; }
.mv-card-text { font-size: 15.5px; color: var(--text-secondary); line-height: 1.75; }

/* ── CTA Bölümü ── */
.cta-section {
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  padding: 88px 0; text-align: center;
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; top: -100px; right: -100px;
  width: 400px; height: 400px;
  border: 80px solid rgba(255,255,255,0.05); border-radius: 50%;
}
.cta-section::after {
  content: ''; position: absolute; bottom: -100px; left: -100px;
  width: 320px; height: 320px;
  border: 60px solid rgba(255,255,255,0.04); border-radius: 50%;
}
.cta-section .container { position: relative; z-index: 1; }
.cta-title { font-size: clamp(28px, 4vw, 44px); font-weight: 900; color: white; margin-bottom: 16px; letter-spacing: -0.5px; }
.cta-title span { color: rgba(255,255,255,0.85); }
.cta-desc { font-size: 17px; color: rgba(255,255,255,0.85); max-width: 600px; margin: 0 auto 40px; line-height: 1.7; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── Hizmet Kartı İkon Aliases (about sayfası için) ── */
.service-icon {
  width: 64px; height: 64px;
  background: var(--red-glow); border: 2px solid rgba(229,26,34,0.12);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--red); font-size: 26px; margin-bottom: 24px;
  transition: all var(--trans);
}
.service-card:hover .service-icon { background: var(--red); color: white; }
.service-title { font-size: 19px; font-weight: 800; color: var(--text-primary); margin-bottom: 12px; }
.service-desc { font-size: 14.5px; color: var(--text-secondary); line-height: 1.65; }

/* ── Text-secondary utility ── */
.text-secondary { color: var(--text-secondary); }

/* ── RESPONSIVE TASARIM ── */
@media (max-width: 1200px) {
  .footer-grid { grid-template-columns: 1.2fr 1fr 1fr; gap: 40px; }
  .footer-grid > div:last-child { grid-column: span 3; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-top: 1px solid rgba(255,255,255,0.06); }
  .stat-item:nth-child(4) { border-top: 1px solid rgba(255,255,255,0.06); }
  .why-grid { grid-template-columns: 1fr; gap: 56px; }
  .why-image-main { height: 380px; }
  .why-image-badge { bottom: -16px; right: 16px; }
  .why-content { padding-right: 0; }
  .blog-detail-grid, .service-detail-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-image-wrapper img { height: 360px; }
  .mv-grid { grid-template-columns: 1fr; }
}

@media (max-width: 992px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-card-wrap { display: none; }
  .hero-content { max-width: 100%; text-align: center; }
  .hero-subtitle { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .strip-inner { flex-wrap: wrap; }
  .strip-item { flex: 1 1 calc(50% - 1px); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > div:last-child { grid-column: span 2; }
  .gr-cards-track { grid-template-columns: repeat(2, 1fr); }
  .about-badge-float { left: 0; right: 0; bottom: -32px; }
}

/* ── 768px Tablet / Büyük Mobil ── */
@media (max-width: 768px) {

  /* Genel */
  section { padding: 60px 0; }
  .section { padding: 60px 0; }
  .section-header { margin-bottom: 44px; }

  /* Navbar */
  .navbar-nav {
    position: fixed; inset: 0;
    width: 100%; max-width: none;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    flex-direction: column; justify-content: center; align-items: center;
    padding: 20px;
    gap: 16px;
    transition: all 0.4s var(--ease);
    z-index: 999;
    opacity: 0; visibility: hidden; pointer-events: none;
    right: auto; bottom: auto;
  }
  .navbar-nav.open {
    opacity: 1; visibility: visible; pointer-events: auto;
  }
  .navbar-nav li { width: 100%; text-align: center; }
  .navbar-nav li a {
    font-size: 22px; padding: 12px 20px;
    border-radius: var(--radius-sm); display: inline-block; width: auto;
    border-bottom: none;
  }
  .navbar-nav li a::after { display: none; }
  .navbar-nav li a:hover,
  .navbar-nav li a.active { background: var(--red-glow); color: var(--red); }
  .navbar-toggle { display: flex; }
  .navbar-cta { display: none !important; }
  .navbar-phone span { display: none; }
  .navbar-phone { padding: 12px 16px; border-radius: 50%; width: 44px; height: 44px; justify-content: center; }
  .navbar {
    position: fixed;
    top: calc(38px + 12px); left: 12px; right: 12px;
    margin: 0 auto;
    width: auto;
    border-radius: var(--radius-md);
  }
  .navbar.scrolled {
    position: fixed;
    top: 38px; left: 0; right: 0;
    margin: 0 auto;
    width: auto;
    max-width: 100%;
    border-radius: 0;
    border-left: none;
    border-right: none;
    border-top: none;
  }
  .navbar-inner { height: 76px; }
  .navbar.scrolled .navbar-inner { height: 68px; }
  .navbar-logo { margin-left: -8px; }
  .navbar-logo img {
    height: 90px;
    margin-top: -8px;
    margin-bottom: -8px;
  }
  .navbar.scrolled .navbar-logo img {
    height: 72px;
    margin-top: -4px;
    margin-bottom: -4px;
  }

  /* Hero */
  .hero { padding: 120px 0 60px; min-height: auto; }
  .hero-title { letter-spacing: -1px; }
  .hero-badge { font-size: 11px; }
  .hero-subtitle { font-size: 15px; }
  .hero-actions { gap: 12px; }
  .hero-actions .btn { font-size: 15px; padding: 14px 24px; }
  .hero-stat-num { font-size: 30px; }
  .hero-stat-label { font-size: 10px; }
  .hero-stat { padding: 0 10px; }

  /* Hizmet Şeridi */
  .strip-item { flex: 1 1 calc(50% - 1px); border-bottom: 1px solid rgba(255,255,255,0.1); padding: 18px 20px; gap: 12px; }
  .strip-item i { font-size: 20px; }
  .strip-item strong { font-size: 14px; }
  .strip-item span { font-size: 11px; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; gap: 20px; }
  .service-card { padding: 32px 24px; }

  /* Neden Biz */
  .why-grid { grid-template-columns: 1fr; gap: 40px; }
  .why-image-main { height: 260px; }
  .why-image-badge { position: relative; bottom: auto; right: auto; margin: -16px auto 0; width: fit-content; }
  .why-items { gap: 20px; margin-top: 28px; }

  /* Page Banner */
  .page-banner { padding: 100px 0 56px; }
  .page-banner h1 { font-size: clamp(26px, 6vw, 38px); }
  .page-banner p { font-size: 15px; }

  /* Google Yorumları */
  .gr-cards-track { grid-template-columns: 1fr; gap: 16px; }
  .gr-header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .gr-big-score { font-size: 40px; }
  .gr-write-btn { width: 100%; justify-content: center; }

  /* Hizmet Bölgeleri */
  .regions-simple-grid { grid-template-columns: 1fr; max-width: 380px; }

  /* İstatistikler */
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-num { font-size: 40px; }
  .stat-item { padding: 36px 16px; }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-top: 1px solid rgba(255,255,255,0.06); }
  .stat-item:nth-child(4) { border-top: 1px solid rgba(255,255,255,0.06); border-right: none; }

  /* Acil Çağrı */
  .emergency-inner { flex-direction: column; text-align: center; gap: 32px; }
  .emergency-text h2 { font-size: clamp(24px, 5vw, 36px); }
  .emergency-text p { font-size: 15.5px; }
  .emergency-actions { justify-content: center; flex-direction: column; width: 100%; }
  .emergency-phone { font-size: 20px; width: 100%; justify-content: center; border-radius: var(--radius-md); }
  .emergency-phone + .btn { width: 100%; justify-content: center; }

  /* Blog */
  .blog-grid { grid-template-columns: 1fr; gap: 20px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-grid > div:first-child { grid-column: span 2; }
  .footer-brand-logo img { height: 180px; width: auto; max-width: 100%; object-fit: contain; filter: drop-shadow(1px 1px 0 rgba(255,255,255,0.6)) drop-shadow(-1px -1px 0 rgba(255,255,255,0.6)) drop-shadow(1px -1px 0 rgba(255,255,255,0.6)) drop-shadow(-1px 1px 0 rgba(255,255,255,0.6)); }
  .footer { padding-top: 64px; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 10px; }

  /* İletişim */
  .contact-grid { grid-template-columns: 1fr; gap: 28px; }
  .contact-form-card, .contact-info-card { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .map-wrapper { height: 300px; }

  /* Top Strip */
  .top-strip { display: none; }

  /* Blog Detay */
  .blog-detail-grid, .service-detail-grid { grid-template-columns: 1fr; gap: 28px; }
  .blog-detail-content, .service-detail-content { padding: 28px 20px; }
  .service-sidebar-cta { position: static; padding: 28px 20px; }

  /* Hakkımızda */
  .about-grid { grid-template-columns: 1fr; gap: 60px; }
  .about-image-wrapper img { height: 280px; }
  .about-badge-float { position: relative; left: auto; bottom: auto; margin-top: -20px; }
  .mv-grid { grid-template-columns: 1fr; gap: 20px; }
  .mv-card { padding: 32px 24px; }

  /* Galeri */
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }

  /* Floating Buttons */
  .floating-buttons { bottom: 20px; right: 16px; gap: 10px; }
  .float-btn { width: 50px; height: 50px; font-size: 20px; }
  .float-btn::after { display: none; }
}

/* ── 480px Küçük Mobil ── */
@media (max-width: 480px) {

  /* Genel */
  .container { padding: 0 16px; }
  section { padding: 48px 0; }
  .section { padding: 48px 0; }

  /* Hero */
  .hero { min-height: auto; padding: 100px 0 48px; }
  .hero-title { font-size: 30px; letter-spacing: -0.5px; }
  .hero-subtitle { font-size: 14.5px; }
  .hero-badge { font-size: 10.5px; padding: 6px 14px; }
  .hero-actions { flex-direction: column; gap: 10px; }
  .hero-actions .btn { width: 100%; justify-content: center; font-size: 14.5px; padding: 14px 20px; }
  .hero-stats { flex-wrap: wrap; gap: 0; }
  .hero-stat { flex: 1 1 50%; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); padding: 16px; }
  .hero-stat:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.1); }
  .hero-stat:nth-child(3), .hero-stat:nth-child(4) { border-bottom: none; }
  .hero-stat-num { font-size: 26px; }
  .hero-stat-label { font-size: 9px; }

  /* Hizmet Şeridi */
  .strip-item { flex: 1 1 100%; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.15); }
  .strip-item:last-child { border-bottom: none; }

  /* Servisler */
  .service-card { padding: 24px 20px; }
  .service-card-icon { width: 52px; height: 52px; font-size: 22px; }
  .service-card-title { font-size: 17px; }

  /* İstatistikler */
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-num { font-size: 34px; }
  .stat-item { padding: 28px 12px; }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-top: 1px solid rgba(255,255,255,0.06); }
  .stat-item:nth-child(4) { border-top: 1px solid rgba(255,255,255,0.06); border-right: none; }

  /* Google Yorumları */
  .gr-big-score { font-size: 36px; }
  .gr-rating-summary { flex-wrap: wrap; gap: 8px; }
  .gr-card { padding: 18px; }

  /* Bölgeler */
  .regions-simple-grid { grid-template-columns: 1fr; max-width: 100%; }
  .region-simple-card { padding: 28px 20px; }

  /* Acil */
  .emergency-section { padding: 60px 0; }
  .emergency-text h2 { font-size: 22px; }
  .emergency-phone { font-size: 18px; padding: 16px 24px; }

  /* Butonlar */
  .btn { font-size: 14px; padding: 13px 22px; }
  .btn-lg { padding: 15px 26px; font-size: 15px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-grid > div:first-child { grid-column: auto; }
  .footer-brand-logo img { height: 160px; width: auto; max-width: 100%; object-fit: contain; filter: drop-shadow(1px 1px 0 rgba(255,255,255,0.6)) drop-shadow(-1px -1px 0 rgba(255,255,255,0.6)) drop-shadow(1px -1px 0 rgba(255,255,255,0.6)) drop-shadow(-1px 1px 0 rgba(255,255,255,0.6)); }

  /* Galeri */
  .gallery-grid { grid-template-columns: 1fr; gap: 12px; }
  .gallery-item { aspect-ratio: 16/10; }

  /* Page Banner */
  .page-banner { padding: 88px 0 44px; }
  .page-banner h1 { font-size: 26px; margin-bottom: 10px; }
  .breadcrumb { margin-top: 16px; font-size: 12px; }

  /* Misyon Vizyon */
  .mv-card { padding: 28px 20px; }
  .mv-card-icon { font-size: 36px; }

  /* Floating Buttons */
  .floating-buttons { bottom: 16px; right: 12px; }
  .float-btn { width: 46px; height: 46px; font-size: 18px; }

  /* Section Subtitle */
  .section-subtitle { font-size: 14.5px; }
  .section-desc { font-size: 15px; }
  .section-title { letter-spacing: -0.3px; }
}

/* ── 360px Çok Küçük Ekranlar ── */
@media (max-width: 360px) {
  .container { padding: 0 12px; }
  .hero-title { font-size: 26px; }
  .navbar-logo img { height: 76px; }
  .navbar-inner { height: 68px; }
  .hero-stats { gap: 0; }
  .btn { font-size: 13.5px; padding: 11px 18px; }
}


