/* ==========================================================================
   DGN ASANSÖR - OTIS TARZI PREMİUM & SADE KURUMSAL STİL DOSYASI
   Renk Paleti: Saf Beyaz (#ffffff), Açık Gri (#f7f9fc), Kurumsal Mavi (#0057d9), Koyu Metin (#1a2332)
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. CSS DEĞİŞKENLERİ VE TEMEL SIFIRLAMA
   -------------------------------------------------------------------------- */
:root {
  /* Renkler - Açık & Kurumsal */
  --bg-white: #ffffff;
  --bg-light: #f7f9fc;
  --bg-card: #ffffff;
  --bg-card-hover: #ffffff;
  
  --primary: #0057d9;
  --primary-hover: #0042a8;
  --primary-dark: #003280;
  --primary-light: #eef4ff;
  --primary-glow: rgba(0, 87, 217, 0.15);
  
  --text-dark: #0f172a;
  --text-main: #1a2332;
  --text-muted: #475569;
  --text-dim: #94a3b8;
  
  --border-color: #e5e9f0;
  --border-light: #f1f5f9;
  --border-primary: rgba(0, 87, 217, 0.3);
  
  /* Fontlar ve Ölçüler */
  --font-family: 'Manrope', 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --container-width: 1240px;
  --header-height: 85px;
  
  /* Efektler */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-card: 0 4px 20px rgba(15, 23, 42, 0.05);
  --shadow-hover: 0 20px 40px rgba(0, 87, 217, 0.12);
  --shadow-header: 0 4px 25px rgba(0, 0, 0, 0.06);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-family);
  background-color: var(--bg-white);
  color: var(--text-main);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* --------------------------------------------------------------------------
   2. YARDIMCI VE ORTAK SINIFLAR (FERAH & BOŞLUKLU)
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section-padding {
  padding: 120px 0; /* Otis tarzı bol nefes alan padding */
}

@media (max-width: 768px) {
  .section-padding {
    padding: 70px 0;
  }
}

.text-center {
  text-align: center;
}

.text-primary {
  color: var(--primary) !important;
}

.section-header {
  margin-bottom: 60px;
  text-align: center;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  background-color: var(--primary-light);
  border: 1px solid var(--border-primary);
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  border-radius: 50px;
  margin-bottom: 18px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 18px;
  letter-spacing: -0.5px;
}

.section-subtitle {
  font-size: 1.08rem;
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Buton Tasarımları */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 30px;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: var(--radius-md);
  transition: all var(--transition-normal);
  cursor: pointer;
  border: none;
  text-align: center;
}

.btn-primary {
  background-color: var(--primary);
  color: #ffffff;
  box-shadow: 0 4px 18px rgba(0, 87, 217, 0.25);
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 87, 217, 0.4);
  color: #ffffff;
}

.btn-outline {
  background-color: transparent;
  color: var(--text-dark);
  border: 1px solid var(--border-color);
}

.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  background-color: var(--primary-light);
  transform: translateY(-2px);
}

.btn-block {
  width: 100%;
}

/* --------------------------------------------------------------------------
   3. SADE, FERAH & ŞEFFAF/STICKY HEADER (OTIS STİLİ)
   -------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------
   3. PREMİUM & CAM EFEKTLİ (GLASSMORPHISM) KURUMSAL HEADER
   -------------------------------------------------------------------------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background-color: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(229, 233, 240, 0.8);
}

.site-header.scrolled {
  background-color: rgba(255, 255, 255, 0.96);
  box-shadow: 0 4px 20px rgba(10, 17, 40, 0.07);
  border-bottom-color: rgba(229, 233, 240, 1);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-img {
  height: 52px;
  width: auto;
  max-width: 230px;
  object-fit: contain;
  mix-blend-mode: multiply;
  transition: transform var(--transition-fast);
}

.logo:hover .logo-img {
  transform: scale(1.02);
}

/* Menü */
.main-nav {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-link {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-main);
  padding: 8px 0;
  position: relative;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: color var(--transition-fast);
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary);
}

.nav-arrow {
  font-size: 0.68rem;
  transition: transform var(--transition-fast);
}

.has-dropdown:hover .nav-arrow {
  transform: rotate(180deg);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  border-radius: 2px;
  transition: width var(--transition-fast);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* Tek Seviyeli Açılır Menü (Dropdown) */
.has-dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  background-color: #ffffff;
  border: 1px solid var(--border-color);
  border-top: 2px solid var(--primary);
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--transition-fast);
  z-index: 100;
}

.has-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  display: block;
  padding: 11px 22px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: all var(--transition-fast);
}

.dropdown-item:hover {
  color: var(--primary);
  background-color: var(--primary-light);
  padding-left: 26px;
}

/* Header Butonları (Daha Zarif, Dengeli ve Premium) */
.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-header-contact {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.84rem;
  font-weight: 700;
  text-decoration: none;
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.btn-header-ariza {
  background: rgba(11, 25, 44, 0.04);
  border: 1px solid rgba(11, 25, 44, 0.12);
  color: #0b192c;
}

.btn-header-ariza:hover {
  background: #0b192c;
  color: #ffffff;
  border-color: #0b192c;
  box-shadow: 0 4px 14px rgba(10, 17, 40, 0.18);
  transform: translateY(-1px);
}

.btn-header-teknik {
  background: rgba(0, 87, 217, 0.06);
  border: 1px solid rgba(0, 87, 217, 0.2);
  color: var(--primary);
}

.btn-header-teknik:hover {
  background: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
  box-shadow: 0 4px 14px rgba(0, 87, 217, 0.25);
  transform: translateY(-1px);
}

.pulse-dot {
  width: 7px;
  height: 7px;
  background-color: #ef4444;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7);
  animation: pulseDot 1.8s infinite;
}

@keyframes pulseDot {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(239, 68, 68, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(239, 68, 68, 0); }
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border-color);
  color: var(--text-dark);
  font-size: 1.3rem;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  cursor: pointer;
}

/* --------------------------------------------------------------------------
   4. KOYU LACİVERT PREMİUM HERO SEKTÖRÜ (APPLE / TESLA / OTIS MÜHENDİSLİK STANDARDI)
   -------------------------------------------------------------------------- */
.hero-section {
  position: relative;
  min-height: calc(100vh - var(--header-height));
  padding-top: calc(var(--header-height) + 35px);
  padding-bottom: 40px;
  display: flex;
  align-items: center;
  background: url('../images/hero-bg.png') center center / cover no-repeat;
  overflow: hidden;
}

/* Sinematik Koyu Lacivert & Vignette Overlay */
.hero-navy-overlay {
  position: absolute;
  inset: 0;
  background: 
    linear-gradient(90deg, rgba(10, 17, 40, 0.98) 0%, rgba(11, 25, 44, 0.92) 48%, rgba(11, 25, 44, 0.35) 100%),
    radial-gradient(ellipse at center, transparent 40%, rgba(10, 17, 40, 0.85) 100%);
  pointer-events: none;
  z-index: 1;
}

/* Ambient Işık Glow Efektleri (Altın & Kurumsal Mavi Glow) */
.hero-glow-gold {
  position: absolute;
  top: 15%;
  left: 8%;
  width: 460px;
  height: 460px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.18) 0%, rgba(212, 175, 55, 0) 70%);
  filter: blur(60px);
  pointer-events: none;
  z-index: 1;
  animation: pulseGlowGold 8s ease-in-out infinite alternate;
}

.hero-glow-blue {
  position: absolute;
  bottom: 8%;
  right: 12%;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(0, 87, 217, 0.22) 0%, rgba(0, 87, 217, 0) 70%);
  filter: blur(70px);
  pointer-events: none;
  z-index: 1;
  animation: pulseGlowBlue 10s ease-in-out infinite alternate;
}

@keyframes pulseGlowGold {
  0% { opacity: 0.5; transform: scale(0.95); }
  100% { opacity: 0.9; transform: scale(1.15); }
}

@keyframes pulseGlowBlue {
  0% { opacity: 0.6; transform: scale(0.95); }
  100% { opacity: 0.95; transform: scale(1.12); }
}

.hero-container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: calc(100vh - var(--header-height) - 70px);
  width: 100%;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.22fr 0.78fr;
  gap: 55px;
  align-items: center;
  margin: auto 0;
  padding: 25px 0;
}

/* Sol Taraf İnce Tipografi & İçerik */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 18px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: #f0d075;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.6px;
  margin-bottom: 24px;
  backdrop-filter: blur(12px);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.12);
}

.badge-glow-dot {
  width: 6px;
  height: 6px;
  background-color: #d4af37;
  border-radius: 50%;
  box-shadow: 0 0 8px #d4af37;
}

.hero-badge i {
  color: #d4af37;
  font-size: 0.88rem;
}

.hero-title {
  font-size: clamp(2.5rem, 4.8vw, 3.8rem);
  font-weight: 800;
  line-height: 1.12;
  color: #ffffff;
  margin-bottom: 22px;
  letter-spacing: -0.03em;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.hero-title-highlight {
  background: linear-gradient(135deg, #fff6d6 0%, #f0d075 35%, #d4af37 70%, #b8860b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  filter: drop-shadow(0 0 25px rgba(212, 175, 55, 0.25));
}

.hero-subtitle {
  font-size: 1.12rem;
  color: #cbd5e1;
  margin-bottom: 38px;
  line-height: 1.75;
  max-width: 580px;
  font-weight: 400;
  letter-spacing: 0.2px;
}

/* Lüks CTA Butonları (Işık Geçişli Glossy Efektler) */
.hero-cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.btn-hero {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: 10px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
  cursor: pointer;
  overflow: hidden;
}

.btn-hero-primary {
  background: linear-gradient(135deg, #0057d9 0%, #003db3 100%);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 25px rgba(0, 87, 217, 0.4), inset 0 1px 1px rgba(255, 255, 255, 0.3);
}

.btn-hero-primary::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -60%;
  width: 40%;
  height: 200%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transform: rotate(30deg);
  transition: left 0.75s ease;
}

.btn-hero-primary:hover::after {
  left: 130%;
}

.btn-hero-primary:hover {
  background: linear-gradient(135deg, #0066ff 0%, #0047cc 100%);
  transform: translateY(-2px);
  box-shadow: 0 14px 35px rgba(0, 87, 217, 0.5), inset 0 1px 1px rgba(255, 255, 255, 0.4);
  color: #ffffff;
}

.btn-hero-secondary {
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(12px);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.15);
}

.btn-hero-secondary:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
  color: #ffffff;
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.3), 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Sağ Taraf: Apple/Tesla Seviyesi Lüks Cam Kart (Glassmorphism & Light Border) */
.hero-card-wrapper {
  position: relative;
}

.hero-offer-card {
  position: relative;
  background: rgba(10, 17, 40, 0.58);
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  padding: 36px 30px;
  box-shadow: 
    inset 0 1px 1px rgba(255, 255, 255, 0.2),
    0 20px 45px -10px rgba(0, 0, 0, 0.5),
    0 0 30px rgba(0, 87, 217, 0.12);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.card-border-glow {
  position: absolute;
  inset: 0;
  border-radius: 16px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.5), transparent 40%, rgba(0, 87, 217, 0.4));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0.6;
  transition: opacity 0.4s ease;
}

.hero-offer-card:hover {
  transform: translateY(-4px);
  box-shadow: 
    inset 0 1px 1px rgba(255, 255, 255, 0.3),
    0 30px 60px -12px rgba(0, 0, 0, 0.6),
    0 0 40px rgba(212, 175, 55, 0.2);
}

.hero-offer-card:hover .card-border-glow {
  opacity: 1;
}

.card-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #f0d075;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.25);
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.card-title {
  font-size: 1.45rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.card-description {
  font-size: 0.93rem;
  color: #94a3b8;
  line-height: 1.65;
  margin-bottom: 24px;
}

.card-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 20px;
  border-radius: 10px;
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.card-btn-phone {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #ffffff;
}

.card-btn-phone:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.35);
  color: #ffffff;
}

.card-btn-quote {
  background: linear-gradient(135deg, #d4af37 0%, #c59b27 100%);
  color: #0b192c;
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.card-btn-quote:hover {
  background: linear-gradient(135deg, #f0d075 0%, #d4af37 100%);
  transform: translateY(-1px);
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4);
  color: #0b192c;
}

/* Hero Alt Kısmı: 4 Adet Güven Unsuru Barı (Apple/Otis Minimalist Stil) */
.hero-trust-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 25px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.trust-item:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(212, 175, 55, 0.3);
  transform: translateY(-2px);
}

.trust-icon-box {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.28);
  color: #f0d075;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.15);
}

.trust-text-group {
  display: flex;
  flex-direction: column;
}

.trust-title {
  color: #ffffff;
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.25;
}

.trust-sub {
  color: #94a3b8;
  font-size: 0.76rem;
  font-weight: 500;
  margin-top: 2px;
}

/* Scroll Reveal Animasyon Sistemi */
.reveal-item {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-item.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* --------------------------------------------------------------------------
   5. REFERANSLAR (PREMİUM KURUMSAL KART IZGARASI)
   -------------------------------------------------------------------------- */
.referans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.ref-card {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: 14px;
  padding: 30px 26px;
  box-shadow: var(--shadow-card);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

.ref-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary);
  box-shadow: 0 18px 40px rgba(0, 87, 217, 0.12);
}

.ref-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--primary);
  background: var(--primary-light);
  border: 1px solid var(--border-primary);
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 16px;
  width: fit-content;
}

.ref-title {
  font-size: 1.22rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.ref-info {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.ref-meta {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   6. GÜVEN RAKAMLARI ŞERİDİ (ANİMASYONLU İSTATİSTİK SAYAÇLARI)
   -------------------------------------------------------------------------- */
.istatistik-wrapper {
  background-color: var(--bg-light);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 60px 0;
}

.istatistik-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.istatistik-item {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #ffffff;
  padding: 24px;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  box-shadow: 0 4px 15px rgba(0,0,0,0.03);
  transition: transform 0.3s ease;
}

.istatistik-item:hover {
  transform: translateY(-3px);
  border-color: var(--primary-dark);
}

.istatistik-ikon {
  width: 56px;
  height: 56px;
  background-color: var(--primary-light);
  border: 1px solid var(--border-primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--primary);
  flex-shrink: 0;
}

.istatistik-sayi {
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.1;
}

.istatistik-etiket {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-top: 4px;
  font-weight: 600;
}

/* --------------------------------------------------------------------------
   7. BEYAZ KART TASARIMLARI (NEDEN BİZ, HİZMETLER, ÜRÜNLER)
   -------------------------------------------------------------------------- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.feature-card {
  position: relative;
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 14px;
  padding: 38px 28px;
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.35s ease, box-shadow 0.35s ease;
}

.feature-accent-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: linear-gradient(180deg, var(--primary) 0%, #d4af37 100%);
  transition: height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 87, 217, 0.3);
  box-shadow: var(--shadow-hover);
}

.feature-card:hover .feature-accent-line {
  height: 100%;
}

.feature-icon-box {
  width: 54px;
  height: 54px;
  background-color: var(--primary-light);
  border: 1px solid var(--border-primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--primary);
  margin-bottom: 22px;
  transition: transform 0.35s ease, background-color 0.35s ease, color 0.35s ease;
}

.feature-card:hover .feature-icon-box {
  transform: scale(1.08) rotate(4deg);
  background-color: var(--primary);
  color: #ffffff;
}

.feature-card h4 {
  font-size: 1.18rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.feature-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* Hizmetlerimiz Kartları (Görsel Zoom & Slide Arrow) */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.service-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.35s ease, box-shadow 0.35s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary);
  box-shadow: var(--shadow-hover);
}

.service-img-wrapper {
  position: relative;
  width: 100%;
  height: 210px;
  overflow: hidden;
}

.service-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card:hover .service-card-img {
  transform: scale(1.08);
}

.service-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(15, 23, 42, 0.4) 100%);
  pointer-events: none;
}

.service-card-body {
  padding: 28px 24px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.service-card-body h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.service-card-body p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 22px;
}

.service-card-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  margin-top: auto;
}

.arrow-icon {
  transition: transform 0.25s ease;
}

.service-card-btn:hover .arrow-icon,
.service-card:hover .arrow-icon {
  transform: translateX(6px);
}

/* Ürün Kategori Kartları */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.product-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.35s ease, box-shadow 0.35s ease;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary);
  box-shadow: var(--shadow-hover);
}

.product-img-wrapper {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.product-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card:hover .product-card-img {
  transform: scale(1.08);
}

.product-card-content {
  padding: 28px 24px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.product-card-content h3 {
  font-size: 1.22rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.product-card-content p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 22px;
}

.product-card-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  margin-top: auto;
}

.product-card-btn:hover .arrow-icon,
.product-card:hover .arrow-icon {
  transform: translateX(6px);
}

.product-cta-box {
  padding: 35px 28px;
  background: linear-gradient(135deg, var(--primary-light) 0%, #ffffff 100%);
  border: 1px solid var(--border-primary);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.product-cta-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid var(--border-primary);
  color: var(--primary);
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

/* --------------------------------------------------------------------------
   8. MÜŞTERİ YORUMLARI (TESTIMONIALS)
   -------------------------------------------------------------------------- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.testimonial-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 14px;
  padding: 32px 26px;
  box-shadow: var(--shadow-card);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
  display: flex;
  flex-direction: column;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
  box-shadow: var(--shadow-hover);
}

.testimonial-stars {
  color: #f59e0b;
  font-size: 0.9rem;
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--text-main);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 24px;
  flex-grow: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 18px;
  border-top: 1px solid var(--border-color);
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--primary-light);
  border: 1px solid var(--border-primary);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.author-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.25;
}

.author-role {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   9. BÜYÜK ÇAĞRI BANNERI (FULL WIDTH DARK NAVY BANNER)
   -------------------------------------------------------------------------- */
.cta-navy-section {
  position: relative;
  background-color: #0b192c;
  padding: 90px 0;
  overflow: hidden;
  color: #ffffff;
}

.cta-navy-glow-gold {
  position: absolute;
  top: -20%;
  left: 10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
  filter: blur(60px);
  pointer-events: none;
}

.cta-navy-glow-blue {
  position: absolute;
  bottom: -20%;
  right: 10%;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(0, 87, 217, 0.25) 0%, transparent 70%);
  filter: blur(70px);
  pointer-events: none;
}

.cta-navy-container {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 16px;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: #f0d075;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 18px;
}

.cta-navy-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.cta-navy-description {
  font-size: 1.08rem;
  color: #cbd5e1;
  max-width: 620px;
  line-height: 1.65;
}

.cta-navy-buttons {
  display: flex;
  gap: 16px;
  flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   10. ZENGİNLEŞTİRİLMİŞ KURUMSAL FOOTER
   -------------------------------------------------------------------------- */
.site-footer {
  background-color: var(--bg-light);
  border-top: 1px solid var(--border-color);
  padding-top: 80px;
  padding-bottom: 35px;
}

.site-footer .logo-img {
  height: 56px;
  width: auto;
  max-width: 240px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.75fr 1.35fr 1fr;
  gap: 35px;
  margin-bottom: 50px;
}

.footer-block h4 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 22px;
  position: relative;
  padding-bottom: 10px;
}

.footer-block h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 35px;
  height: 3px;
  background-color: var(--primary);
  border-radius: 2px;
}

.footer-about-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 16px;
  margin-bottom: 18px;
  line-height: 1.65;
}

/* Sosyal Medya İkonları (46px Buton, ~20px İkon, Kurumsal Mavi Hover) */
.social-links {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 18px;
}

.social-icon {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  background-color: #ffffff;
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dark);
  font-size: 1.25rem; /* ~20px */
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
  text-decoration: none;
}

.social-icon:hover {
  background-color: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 8px 18px rgba(0, 87, 217, 0.25);
}

.footer-rating-box {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 10px 14px;
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 18px;
}

.rating-stars {
  color: #f59e0b;
  font-size: 0.82rem;
  display: flex;
  gap: 3px;
}

.rating-score {
  font-size: 0.8rem;
  color: var(--text-dark);
}

.footer-cert-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.cert-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-dark);
}

.cert-tag i {
  color: var(--primary);
}

.footer-links-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links-list a {
  font-size: 0.9rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  transition: all var(--transition-fast);
}

.footer-links-list a:hover {
  color: var(--primary);
  padding-left: 6px;
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.footer-contact-item i {
  color: var(--primary);
  flex-shrink: 0;
}

/* Telefon Numarası Tek Satır Hizalaması (Bölünme Engelleme) */
.footer-phone-item {
  white-space: nowrap;
}

.footer-phone-text {
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.phone-link-highlight {
  white-space: nowrap;
  color: inherit;
  text-decoration: none;
  font-weight: 700;
}

.phone-link-highlight:hover {
  color: var(--primary);
  text-decoration: underline;
}

.footer-map-card {
  width: 100%;
  height: 160px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.footer-map-card iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding-top: 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.nsoft-credit-link {
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
  transition: color var(--transition-fast);
}

.nsoft-credit-link:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

@media (max-width: 991px) {
  .referans-grid,
  .features-grid,
  .services-grid,
  .products-grid,
  .testimonials-grid,
  .istatistik-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta-navy-container {
    flex-direction: column;
    text-align: center;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .referans-grid,
  .features-grid,
  .services-grid,
  .products-grid,
  .testimonials-grid,
  .istatistik-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .cta-navy-buttons {
    flex-direction: column;
    width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}

  font-size: 0.88rem;
  color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   10. SAĞ ALTTAKİ SABİT (FLOATING) BUTONLAR (YEŞİL & MAVİ)
   -------------------------------------------------------------------------- */
.floating-actions {
  position: fixed;
  bottom: 28px;
  right: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 999;
}

.float-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.45rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.float-btn:hover {
  transform: scale(1.1);
}

.float-whatsapp {
  background-color: #25d366;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.35);
}

.float-phone {
  background-color: var(--primary);
  color: #ffffff;
  box-shadow: 0 8px 25px rgba(0, 87, 217, 0.35);
}

/* --------------------------------------------------------------------------
   11. RESPONSIVE DÜZENLEMEDER (MEDIA QUERIES)
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }
  
  .features-grid,
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .products-grid,
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .partners-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    width: 100%;
    background-color: #ffffff;
    border-bottom: 1px solid var(--border-color);
    padding: 24px;
    flex-direction: column;
    align-items: flex-start;
    display: none;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  }

  .main-nav.active {
    display: flex;
  }

  .nav-list {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }

  .nav-item {
    width: 100%;
  }

  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background-color: var(--bg-light);
    border: none;
    padding-left: 15px;
    display: none;
  }

  .has-dropdown.active .dropdown-menu {
    display: block;
  }

  .hero-title {
    font-size: 2.4rem;
  }

  .features-grid,
  .services-grid,
  .products-grid,
  .testimonials-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .partners-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
}

/* --------------------------------------------------------------------------
   REFERANS SLIDER (KESİNTİSİZ AKICI SLIDER)
   -------------------------------------------------------------------------- */
.referans-wrapper {
  width: 100%;
  overflow: hidden;
  background: #ffffff;
  padding: 45px 0;
  position: relative;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.referans-baslik {
  text-align: center;
  color: var(--text-dim);
  font-weight: 700;
  letter-spacing: 1.5px;
  font-size: 13px;
  margin-bottom: 30px;
  text-transform: uppercase;
}

.referans-track {
  display: flex;
  width: max-content;
  animation: kaydir 35s linear infinite;
}

.referans-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 45px;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--text-muted);
  white-space: nowrap;
  transition: color 0.3s ease, transform 0.3s ease;
  letter-spacing: 0.5px;
}

.referans-item:hover {
  color: var(--primary);
  transform: translateY(-2px);
}

@keyframes kaydir {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* --------------------------------------------------------------------------
   İLETİŞİM BÖLÜMÜ STİLLERİ
   -------------------------------------------------------------------------- */
.iletisim-wrapper {
  display: flex;
  gap: 25px;
  padding: 30px;
  background: #f5f7fa;
  border-radius: 16px;
  flex-wrap: wrap;
}

.iletisim-sol {
  flex: 1;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.iletisim-kart {
  background: #fff;
  border-radius: 12px;
  padding: 22px;
  display: flex;
  gap: 18px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.iletisim-kart:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.iletisim-ikon {
  width: 45px;
  height: 45px;
  background: #eaf0ff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 20px;
}

.iletisim-kart h3 {
  margin: 0 0 8px 0;
  font-size: 17px;
  color: #1a1a1a;
  font-weight: 700;
}

.iletisim-kart p {
  margin: 0;
  color: #555;
  font-size: 14px;
  line-height: 1.5;
}

.iletisim-kart a {
  color: var(--primary, #2563eb);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
}

.iletisim-sag {
  flex: 1;
  min-width: 300px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.iletisim-sag iframe {
  width: 100%;
  height: 100%;
  min-height: 450px;
  border: 0;
  display: block;
}

/* --------------------------------------------------------------------------
   İSTATİSTİK BÖLÜMÜ STİLLERİ
   -------------------------------------------------------------------------- */
.istatistik-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
  padding: 45px 20px;
  background: #ffffff;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.istatistik-item {
  display: flex;
  align-items: center;
  gap: 15px;
  transition: transform 0.2s ease;
}

.istatistik-item:hover {
  transform: translateY(-3px);
}

.istatistik-ikon {
  width: 55px;
  height: 55px;
  background: #eaf0ff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
  color: #2563eb;
}

.istatistik-sayi {
  font-size: 28px;
  font-weight: 800;
  color: var(--text-dark, #111111);
  line-height: 1;
}

.istatistik-etiket {
  font-size: 14px;
  color: var(--text-muted, #666666);
  margin-top: 5px;
  font-weight: 500;
}

/* --------------------------------------------------------------------------
   İÇ SAYFALAR (HİZMET DETAYLARI & KATEGORİLER) PREMİUM STİLLERİ
   -------------------------------------------------------------------------- */
.page-banner {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0057d9 100%);
  padding: 140px 0 70px 0;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.page-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 80% 20%, rgba(0, 87, 217, 0.25) 0%, transparent 60%);
  pointer-events: none;
}

.page-banner-content {
  position: relative;
  z-index: 2;
}

.page-banner-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #93c5fd;
  margin-bottom: 16px;
}

.page-banner-title {
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
  color: #ffffff;
}

.page-banner-subtitle {
  font-size: 1.15rem;
  color: #cbd5e1;
  max-width: 720px;
  line-height: 1.7;
  margin-bottom: 24px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: #94a3b8;
}

.breadcrumb a {
  color: #e2e8f0;
  transition: color var(--transition-fast);
}

.breadcrumb a:hover {
  color: #60a5fa;
}

.breadcrumb i.separator {
  font-size: 0.75rem;
  color: #64748b;
}

.breadcrumb span.active {
  color: #93c5fd;
  font-weight: 600;
}

/* Detay Sayfası İki Kolonlu Yapı */
.detail-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 40px;
  align-items: start;
}

@media (max-width: 992px) {
  .detail-layout {
    grid-template-columns: 1fr;
  }
}

.detail-main {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* Görsel & Kart Bloğu */
.detail-hero-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.detail-hero-img {
  width: 100%;
  height: 380px;
  object-fit: cover;
}

.detail-hero-body {
  padding: 35px;
}

.detail-hero-body h3 {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.detail-hero-body p {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 20px;
}

/* Özellikler Grid */
.detail-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.detail-feature-card {
  background: var(--bg-light);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 24px;
  transition: all var(--transition-normal);
}

.detail-feature-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
  box-shadow: var(--shadow-hover);
  background: var(--bg-white);
}

.detail-feature-icon {
  width: 50px;
  height: 50px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 16px;
}

.detail-feature-card h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.detail-feature-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Süreç Adımları (Process Steps) */
.process-box {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 35px;
  box-shadow: var(--shadow-card);
}

.process-box h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.process-box h3 i {
  color: var(--primary);
}

.process-steps-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}

.process-step-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding-bottom: 20px;
  border-bottom: 1px dashed var(--border-color);
}

.process-step-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.step-number {
  width: 42px;
  height: 42px;
  background: var(--primary);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0, 87, 217, 0.3);
}

.step-info h5 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.step-info p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* Standartlar & Teknik Liste */
.specs-card {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: #ffffff;
  border-radius: var(--radius-lg);
  padding: 35px;
}

.specs-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 10px;
}

.specs-card h3 i {
  color: #60a5fa;
}

.specs-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}

.specs-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.08);
  padding: 12px 18px;
  border-radius: var(--radius-md);
  font-size: 0.92rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.specs-item i {
  color: #34d399;
  font-size: 1.1rem;
}

/* Yan Menü (Sidebar) */
.detail-sidebar {
  display: flex;
  flex-direction: column;
  gap: 25px;
  position: sticky;
  top: 105px;
}

.sidebar-widget {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-card);
}

.sidebar-widget h4 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--primary-light);
}

.sidebar-nav-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sidebar-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  border-radius: var(--radius-md);
  background: var(--bg-light);
  color: var(--text-main);
  font-weight: 600;
  font-size: 0.92rem;
  transition: all var(--transition-fast);
}

.sidebar-nav-link:hover, .sidebar-nav-link.active {
  background: var(--primary);
  color: #ffffff;
  transform: translateX(4px);
}

.sidebar-contact-card {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #ffffff;
  border-radius: var(--radius-lg);
  padding: 30px;
  text-align: center;
}

.sidebar-contact-card i.main-icon {
  font-size: 2.8rem;
  color: #93c5fd;
  margin-bottom: 15px;
}

.sidebar-contact-card h4 {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 10px;
  color: #ffffff;
}

.sidebar-contact-card p {
  font-size: 0.9rem;
  color: #e2e8f0;
  margin-bottom: 20px;
  line-height: 1.5;
}

.sidebar-contact-card .btn-phone {
  background: #ffffff;
  color: var(--primary);
  font-weight: 800;
  width: 100%;
  padding: 12px 20px;
  border-radius: var(--radius-md);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all var(--transition-fast);
}

.sidebar-contact-card .btn-phone:hover {
  background: #f1f5f9;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* Büyük Alt CTA Kartı */
.cta-banner {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  border-radius: 20px;
  padding: 50px;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  box-shadow: 0 15px 35px rgba(15, 23, 42, 0.15);
  margin-top: 40px;
}

@media (max-width: 768px) {
  .cta-banner {
    flex-direction: column;
    text-align: center;
    padding: 35px 25px;
  }
}

.cta-banner-text h3 {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 10px;
  color: #ffffff;
}

.cta-banner-text p {
  font-size: 1.05rem;
  color: #94a3b8;
  max-width: 600px;
}

.cta-banner-btns {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

/* 7/24 Arıza Hattı ve Teknik Servis Kompakt Buton Stilleri */
.btn-ariza {
  background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
  color: #ffffff !important;
  padding: 6px 11px;
  font-size: 0.76rem;
  border-radius: 6px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(220, 38, 38, 0.25);
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn-ariza:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(220, 38, 38, 0.4);
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
}

.btn-teknik {
  background: var(--primary);
  color: #ffffff !important;
  padding: 6px 11px;
  font-size: 0.76rem;
  border-radius: 6px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(0, 87, 217, 0.25);
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn-teknik:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 87, 217, 0.4);
  background: var(--primary-hover);
}

/* --------------------------------------------------------------------------
   RESPONSİVE VE MOBİL MENÜ SİSTEMİ (EKRAN TAŞMASINI ÖNLEME & HAMBURGER MENÜ)
   -------------------------------------------------------------------------- */

html, body {
  max-width: 100%;
  overflow-x: hidden !important;
}

@media (max-width: 991px) {
  .header-actions .btn-ariza,
  .header-actions .btn-teknik {
    display: none !important;
  }

  .nav-toggle {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border: 1px solid var(--border-color);
    color: var(--text-dark);
    font-size: 1.3rem;
    padding: 8px 14px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  }

  .main-nav {
    position: fixed;
    top: var(--header-height);
    right: -100%;
    width: 85%;
    max-width: 320px;
    height: calc(100vh - var(--header-height));
    background-color: #ffffff;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15);
    padding: 25px 20px;
    flex-direction: column;
    align-items: flex-start;
    overflow-y: auto;
    transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
  }

  .main-nav.active {
    right: 0;
  }

  .nav-list {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    gap: 0;
  }

  .nav-item {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .nav-link {
    padding: 14px 8px;
    font-size: 1.05rem;
    font-weight: 700;
    width: 100%;
    justify-content: space-between;
    color: var(--text-dark);
  }

  /* Mobil Çekmecede Açılır Menü (Dropdown) */
  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    background: #f8fafc;
    border-radius: 8px;
    padding: 5px 0;
    margin: 5px 0 10px 0;
    display: none;
    width: 100%;
  }

  .has-dropdown.active .dropdown-menu {
    display: block;
  }

  .dropdown-item {
    padding: 10px 16px;
    font-size: 0.9rem;
  }
}

/* --------------------------------------------------------------------------
   DİKKAT ÇEKİCİ İLETİŞİM ETİKETLERİ (ROZET / BADGE STİLLERİ)
   -------------------------------------------------------------------------- */

.badge-ariza-tag {
  background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
  color: #ffffff !important;
  font-weight: 800;
  font-size: 0.82rem;
  padding: 4px 10px;
  border-radius: 6px;
  display: inline-block;
  margin-right: 6px;
  box-shadow: 0 2px 8px rgba(220, 38, 38, 0.35);
  letter-spacing: 0.4px;
}

.badge-teknik-tag {
  background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
  color: #ffffff !important;
  font-weight: 800;
  font-size: 0.82rem;
  padding: 4px 10px;
  border-radius: 6px;
  display: inline-block;
  margin-right: 6px;
  box-shadow: 0 2px 8px rgba(2, 132, 199, 0.35);
  letter-spacing: 0.4px;
}

.phone-link-highlight {
  color: var(--text-dark, #0f172a);
  font-weight: 800;
  font-size: 0.98rem;
  text-decoration: none;
  transition: color 0.2s ease;
}

.phone-link-highlight:hover {
  color: var(--primary);
  text-decoration: underline;
}

/* --------------------------------------------------------------------------
   SABİT (FLOATING) İLETİŞİM BUTONLARI (ŞIK, MİNİMALİST & PROFESYONEL)
   -------------------------------------------------------------------------- */
.floating-actions {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.float-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.25rem;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.22);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
}

.float-whatsapp {
  background-color: #25d366;
}

.float-whatsapp:hover {
  background-color: #20ba5a;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.35);
  color: #ffffff;
}

.float-phone {
  background-color: var(--primary);
}

.float-phone:hover {
  background-color: var(--primary-hover);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 25px rgba(0, 87, 217, 0.35);
  color: #ffffff;
}

/* --------------------------------------------------------------------------
   HERO SEKTÖRÜ EK RESPONSİVE UYARLAMALARI
   -------------------------------------------------------------------------- */
@media (max-width: 991px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-title {
    font-size: 2.8rem;
  }

  .hero-trust-bar {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .header-actions .btn-header-contact {
    display: none;
  }
}

@media (max-width: 576px) {
  .hero-section {
    min-height: auto;
    padding-top: calc(var(--header-height) + 20px);
    padding-bottom: 40px;
  }

  .hero-title {
    font-size: 2.1rem;
  }

  .hero-subtitle {
    font-size: 0.98rem;
  }

  .hero-cta-buttons {
    flex-direction: column;
    width: 100%;
  }

  .btn-hero {
    width: 100%;
  }

  .hero-trust-bar {
    grid-template-columns: 1fr;
  }
}



