/* --- CSS DEĞİŞKENLERİ & RENK PALETİ --- */
:root {
  --bg-main: #0B132B;
  /* Space Blue */
  --bg-card: #1C2541;
  /* Deep Navy */
  --accent: #00D4FF;
  /* Neon Electric Cyan */
  --text-main: #EDF2F4;
  /* Temiz Okunaklı Beyaz/Gri */
  --status-green: #4ade80;
  /* 7/24 Durum Yeşili */
  --font-main: 'Inter', sans-serif;
  --glass-bg: rgba(11, 19, 43, 0.4);
  --glass-border: rgba(255, 255, 255, 0.05);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: var(--font-main);
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  background-color: var(--bg-main);
  color: var(--text-main);
  overflow-x: hidden;
  width: 100%;
  position: relative;
}

a {
  text-decoration: none;
  color: inherit;
  outline: none;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* --- TOP INFORMATION BAR --- */
.top-bar {
  background-color: #050914; /* Koyu lacivert/siyah */
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.85rem;
  padding: 0.6rem 0;
  width: 100%;
  position: fixed; /* Her zaman üstte sabit */
  top: 0;
  left: 0;
  z-index: 9999; /* En üstte olmak için özel istek (9999) */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.top-bar-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.top-bar-info {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.top-bar-text {
  color: var(--text-main);
  font-weight: 500;
  letter-spacing: 0.5px;
}

.top-bar-separator {
  color: rgba(255, 255, 255, 0.2);
  font-weight: 300;
}

.top-bar-link {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: #c9d1d9;
  transition: all 0.3s ease;
  font-weight: 500;
}

.top-bar-link:hover {
  color: var(--text-main);
  text-shadow: 0 0 8px rgba(0, 212, 255, 0.4);
}

.top-bar-link .neon-icon {
  color: var(--accent);
  filter: drop-shadow(0 0 5px rgba(0, 212, 255, 0.6));
}

@media (max-width: 768px) {
  /* Mobil görünümde Main Header komple sabit kalır */
  .main-header {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    z-index: 9999 !important;
    margin: 0 !important;
    padding: 0 !important;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3) !important;
    background-color: #0B132B !important;
  }

  .top-bar {
    position: relative !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: auto !important;
    padding: 0.5rem 0 !important;
    margin: 0 !important;
    z-index: 2 !important;
    background-color: #050914 !important; /* Tamamen opak */
    border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
  }

  .navbar {
    position: relative !important;
    top: 0 !important; /* override script.js inline style */
    margin: 0 !important;
    padding: 0 !important;
    background: transparent !important; /* using main-header bg */
    box-shadow: none !important;
    z-index: 1 !important;
  }

  .top-bar-container {
    justify-content: center;
    padding: 0 1rem !important;
    margin: 0 !important;
  }

  .top-bar-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.35rem;
    flex-wrap: nowrap;
    margin: 0 !important;
    padding: 0 !important;
  }

  .top-bar-separator {
    display: none;
  }

  .top-bar-link {
    font-size: 0.78rem;
    margin: 0 !important;
    padding: 0 !important;
  }

  .top-bar-text {
    font-size: 0.78rem;
    margin: 0 !important;
    padding: 0 !important;
  }
}

/* --- GLASSMORPHISM NAVBAR --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--glass-border);
  transition: all 0.4s ease;
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Sol: Logo */
.logo {
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--text-main);
  display: flex;
  align-items: center;
}

.nav-logo {
  height: 40px;
  width: auto;
  margin-right: 12px;
  vertical-align: middle;
  border-radius: 50%;
}

.volt-glow {
  color: var(--accent);
  text-shadow: 0 0 10px rgba(0, 212, 255, 0.6), 0 0 25px rgba(0, 212, 255, 0.3);
}

/* Orta: Linkler */
.nav-links {
  display: flex;
  gap: 3.5rem; /* Eskiden 2.2 idi. Silinen linklerin boşluğunu doldurmak için genişletildi */
  align-items: center;
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(237, 242, 244, 0.85);
  transition: color 0.3s ease, text-shadow 0.3s ease;
  position: relative;
  padding-bottom: 4px;
}

.nav-links a:hover {
  color: var(--accent);
  text-shadow: 0 0 10px rgba(0, 212, 255, 0.4);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s ease;
  box-shadow: 0 0 8px var(--accent);
  border-radius: 2px;
}

.nav-links a:hover::after {
  width: 100%;
}

/* Sağ: Aksiyonlar */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

/* Durum Göstergesi (7/24) */
.status-indicator {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(28, 37, 65, 0.8);
  padding: 0.45rem 1rem;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(4px);
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: var(--status-green);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.7);
  animation: pulse 2s infinite cubic-bezier(0.66, 0, 0, 1);
}

@keyframes pulse {
  to {
    box-shadow: 0 0 0 12px rgba(74, 222, 128, 0);
  }
}

.status-text {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--text-main);
}

/* Hemen Ara Butonu */
.btn-primary {
  background: transparent;
  color: var(--accent);
  border: 1.5px solid var(--accent);
  padding: 0.55rem 1.4rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 0 15px rgba(0, 212, 255, 0.15), inset 0 0 15px rgba(0, 212, 255, 0.05);
  white-space: nowrap;
}

.btn-primary:hover {
  background: var(--accent);
  color: var(--bg-main);
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.5), 0 0 40px rgba(0, 212, 255, 0.2);
  transform: translateY(-1px);
}

/* Hamburger Menü İkonu */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 28px;
  height: 18px;
  position: relative;
  z-index: 1001;
}

.hamburger span {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background: var(--accent);
  border-radius: 2px;
  transition: all 0.3s ease;
  box-shadow: 0 0 6px var(--accent);
}

.hamburger span:nth-child(1) {
  top: 0;
}

.hamburger span:nth-child(2) {
  top: 8px;
}

.hamburger span:nth-child(3) {
  top: 16px;
}

.hamburger.active span:nth-child(1) {
  top: 8px;
  transform: rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  top: 8px;
  transform: rotate(-45deg);
}

/* Mobil Menü (Glassmorphism Dropdown) */
.mobile-menu {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(11, 19, 43, 0.85);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border-bottom: 1px solid var(--glass-border);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: none;
  z-index: 999;
}

.mobile-menu.open {
  max-height: 400px;
  padding-top: 5rem;
}

.mobile-menu ul {
  padding: 1rem 2rem 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
  align-items: center;
}

.mobile-menu a {
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--text-main);
  transition: all 0.3s ease;
}

.mobile-menu a:hover {
  color: var(--accent);
  text-shadow: 0 0 10px rgba(0, 212, 255, 0.6);
}

/* --- HERO (KARŞILAMA) BÖLÜMÜ --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem 2rem; /* Body'de padding-top olacağı için boşluk azaltıldı ve orantı düzeltildi */
  overflow: hidden;
  background-color: var(--bg-main);
}

/* Teknolojik Arka Plan */
.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background: radial-gradient(circle at 50% 30%, #111D3E 0%, var(--bg-main) 70%);
}

.light-rays {
  position: absolute;
  width: 200%;
  height: 200%;
  top: -50%;
  left: -50%;
  background: conic-gradient(from 0deg at 50% 50%,
      rgba(0, 212, 255, 0) 0deg,
      rgba(0, 212, 255, 0.03) 45deg,
      rgba(0, 212, 255, 0) 90deg,
      rgba(0, 212, 255, 0.03) 135deg,
      rgba(0, 212, 255, 0) 180deg,
      rgba(0, 212, 255, 0.03) 225deg,
      rgba(0, 212, 255, 0) 270deg,
      rgba(0, 212, 255, 0.03) 315deg,
      rgba(0, 212, 255, 0) 360deg);
  animation: rotateRays 60s linear infinite;
}

@keyframes rotateRays {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.circuit-pattern {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0.15;
  background-image:
    radial-gradient(var(--accent) 1px, transparent 1px),
    linear-gradient(var(--accent) 1px, transparent 1px),
    linear-gradient(90deg, var(--accent) 1px, transparent 1px);
  background-size: 60px 60px, 60px 60px, 60px 60px;
  background-position: 0 0, 30px 30px, 30px 30px;
}

.hero-split {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
  width: 100%;
  animation: fadeInUp 1.2s ease-out forwards;
}

.hero-content-left {
  flex: 1;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
}

@media (min-width: 992px) {
  .hero-content-left {
    margin-top: -7rem; /* Masaüstünde metin bloğunu yukarı taşır */
  }
}

.hero-image-right {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-logo {
  max-width: 125%;
  height: auto;
  filter: drop-shadow(0 0 25px #00E5FF);
  animation: floatLogo 4s ease-in-out infinite;
}

@keyframes floatLogo {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
    filter: drop-shadow(0 0 35px #00E5FF);
  }

  100% {
    transform: translateY(0);
  }
}

/* Sadece Ana Sayfa Hero Alanı İçin Özel Düzenlemeler */
.index-hero {
  padding-top: 5rem; /* Mobil ve genel için korunan boşluk */
  min-height: 100vh;
}

.index-hero .hero-split {
  align-items: center;
  /* Dikey eksende ortalama */
}

/* Sadece Mobil İçin Özel Oranlar (Masaüstünde Ezilecek) */
.index-hero .hero-content-left {
  flex: 1.2;
}

.index-hero .hero-image-right {
  flex: 0.8;
}

/* Masaüstünde Tamamen Tuzla Sayfasına (Referans) Benzetme */
@media (min-width: 992px) {
  .index-hero {
    padding-top: 4rem; /* Üst boşluğu daraltır */
  }
  
  .index-hero .hero-content-left {
    flex: 1; /* Metin bloğu daralır, logo ile 50/50 oranlanır */
    margin-top: -8.5rem; /* Metin bloğunu yukarı kaldırır */
  }
  
  .index-hero .hero-image-right {
    flex: 1; /* Logonun büyümesini ve referans sayfadaki boyuta gelmesini sağlar */
  }
  
  /* Daha Kompakt ve Dengeli Tipografi */
  .index-hero .hero-title {
    font-size: 3.5rem; /* Font küçüldü (4rem -> 3.5rem) */
    line-height: 1.15;
    letter-spacing: -0.5px;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-title {
  font-size: 4rem;
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -1px;
}

.text-glow {
  color: var(--accent);
  text-shadow: 0 0 20px rgba(0, 212, 255, 0.6);
}

.hero-desc {
  font-size: 1.2rem;
  color: #A0AEC0;
  max-width: 650px;
  line-height: 1.7;
  margin-bottom: 1rem;
  font-weight: 400;
}

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--text-main);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.8rem 2.5rem;
  border-radius: 50px;
  font-weight: 500;
  font-size: 1rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
}

/* --- GENEL SECTION STİLLERİ --- */
.section {
  padding: 6rem 2rem;
  position: relative;
  z-index: 1;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 4rem;
  text-align: center;
  position: relative;
  color: var(--text-main);
  letter-spacing: -0.5px;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--accent);
  box-shadow: 0 0 12px rgba(0, 212, 255, 0.6);
  border-radius: 3px;
}

/* --- HİZMET BÖLGELERİMİZ (SEO KÖPRÜSÜ) --- */
.seo-regions {
  padding: 3rem 2rem 4rem;
  position: relative;
  z-index: 10;
}

.seo-regions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.seo-region-card {
  background: rgba(28, 37, 65, 0.6);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-main);
  transition: all 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
}

.seo-region-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.1), transparent);
  transform: skewX(-20deg);
  transition: all 0.6s ease;
}

.seo-region-card:hover {
  transform: translateY(-5px);
  background: rgba(28, 37, 65, 0.9);
  border-color: var(--accent);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4), 0 0 25px rgba(0, 212, 255, 0.2);
  color: #fff;
}

.seo-region-card:hover::before {
  left: 200%;
}

@media (max-width: 768px) {
  .seo-regions-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .seo-region-card {
    padding: 1.5rem;
    font-size: 1.2rem;
  }
}

/* Büyük Mobil Uyumlu Hero CTA */
.btn-hero-cta {
  display: inline-block;
  background: var(--accent);
  color: var(--bg-main);
  border: none;
  padding: 1.2rem 3rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.4), inset 0 0 10px rgba(255, 255, 255, 0.5);
  margin-top: 0.5rem;
  text-align: center;
}

.btn-hero-cta:hover {
  background: #00e5ff;
  box-shadow: 0 0 35px rgba(0, 212, 255, 0.6);
  transform: translateY(-3px) scale(1.02);
}

@media (max-width: 768px) {
  .btn-hero-cta {
    padding: 1.2rem 2rem;
    font-size: 1.2rem;
    width: 100%;
    margin-top: 1rem;
  }
}

/* --- HİZMETLERİMİZ BÖLÜMÜ --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}

.service-box {
  background: rgba(28, 37, 65, 0.4);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(0, 212, 255, 0.1);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.service-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.service-box:hover {
  transform: translateY(-10px);
  background: rgba(28, 37, 65, 0.8);
  border-color: rgba(0, 212, 255, 0.3);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3), 0 0 20px rgba(0, 212, 255, 0.15);
}

.service-box:hover::before {
  opacity: 1;
}

.service-icon {
  color: var(--accent);
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: rgba(0, 212, 255, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.service-box:hover .service-icon {
  transform: scale(1.1);
  box-shadow: 0 0 15px rgba(0, 212, 255, 0.3);
  color: #fff;
  background: var(--accent);
}

.service-box h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 1rem;
  letter-spacing: -0.2px;
}

.service-box p {
  color: #A0AEC0;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* --- KOMBİNE DEĞERLERİMİZ BÖLÜMÜ (PENDİK) --- */
.combined-values {
  padding: 4rem 2rem;
  position: relative;
  z-index: 1;
  background: var(--bg-dark); /* Ensure it blends with the dark grid */
}

.combined-container {
  max-width: 1200px;
  margin: 0 auto;
  background: rgba(13, 26, 48, 0.4); 
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 212, 255, 0.3); /* Subtle glowing blue border */
  border-radius: 20px;
  padding: 4rem 3rem;
  box-shadow: 0 0 30px rgba(0, 212, 255, 0.15), inset 0 0 20px rgba(0, 212, 255, 0.05); /* Outer and inner glow */
}

.combined-top-row {
  display: flex;
  justify-content: space-around;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 4rem; /* Spacing between the top icons and bottom text cards */
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(0, 212, 255, 0.1); /* Separator line between rows */
}

.combined-bottom-row {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

/* Ensure icons within the combined section share the cyan glow */
.combined-values .stat-icon,
.combined-values .taahhut-icon {
  filter: drop-shadow(0 0 8px rgba(0, 212, 255, 0.6));
  color: var(--accent);
}

/* --- GÜVEN VE TAAHHÜT ŞERİDİ --- */
.taahhut-strip {
  background: #0d1a30;
  border-top: 1px solid rgba(0, 212, 255, 0.08);
  border-bottom: 1px solid rgba(0, 212, 255, 0.08);
  padding: 3.5rem 2rem;
  position: relative;
  z-index: 1;
}

.taahhut-grid {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.taahhut-item {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  flex: 1;
  min-width: 260px;
  max-width: 380px;
}

.taahhut-icon {
  color: var(--accent);
  flex-shrink: 0;
  padding: 0.8rem;
  background: rgba(0, 212, 255, 0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 0 6px rgba(0, 212, 255, 0.4));
}

.taahhut-text h4 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 0.4rem;
  letter-spacing: -0.2px;
}

.taahhut-text p {
  color: #8899b0;
  font-size: 0.9rem;
  line-height: 1.55;
  font-weight: 400;
}

/* --- ÇÖZÜMLERİMİZ BÖLÜMÜ --- */
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.solution-card {
  background-color: var(--bg-card);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
}

.solution-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), 0 -2px 0 0 rgba(0, 212, 255, 0) inset, 0 -3px 15px rgba(0, 212, 255, 0.5);
  border-color: rgba(0, 212, 255, 0.15);
}

.card-image {
  width: 100%;
  height: 200px;
  object-fit: contain;
  /* Görselin tamamını kutuya sıkıştırarak ekler */
  background-color: #0B132B;
  /* Altta veya yanda kalan boşlukları ana arkaplan ile doldurur */
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  flex-shrink: 0;
}

/* --- KOMBİNE DEĞERLER BÖLÜMÜ MOBİL DÜZELTME --- */
@media (max-width: 768px) {
  .combined-values {
    padding-bottom: 1rem; /* Micro-adjustment: shave off another 1rem to tighten to heading */
  }

  .combined-container {
    padding: 2rem 1rem;
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
    border-radius: 12px;
    margin: 0 auto;
  }
  
  .combined-top-row,
  .combined-bottom-row {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    width: 100%;
  }

  /* Make the stat boxes take full width and handle text overflow */
  .stat-box {
    width: 100% !important;
    max-width: 100% !important;
    padding: 1.5rem 1rem !important;
    box-sizing: border-box;
  }
  
  .stat-text {
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  /* Make the detailed promise cards take full width */
  .taahhut-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    max-width: 100%;
    min-width: 100%;
    padding: 1.5rem;
    box-sizing: border-box;
    background: rgba(28, 37, 65, 0.5); /* Give them a subtle background to distinguish them */
    border-radius: 12px;
    border: 1px solid rgba(0, 212, 255, 0.05);
  }
  
  .taahhut-icon {
    margin-bottom: 1rem;
  }
  
  .taahhut-text {
    width: 100%;
    box-sizing: border-box;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
  
  .taahhut-grid {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    width: 100%;
  }
}

.card-content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.card-content h3 {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-main);
  letter-spacing: -0.3px;
}

.card-content p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #A0AEC0;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.btn-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--accent);
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  align-self: flex-start;
  margin-top: auto;
}

.btn-link:hover {
  text-shadow: 0 0 12px rgba(0, 212, 255, 0.6);
}

.btn-link span {
  transition: transform 0.3s ease;
  font-size: 1.1rem;
}

.btn-link:hover span {
  transform: translateX(5px);
}

/* --- GÜVEN & REFERANS BÖLÜMÜ --- */
.trust {
  background: linear-gradient(to bottom, var(--bg-main) 0%, rgba(28, 37, 65, 0.4) 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.02);
}

.trust-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.trust-header {
  margin-bottom: 4rem;
  text-align: center;
}

.trust-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  width: 100%;
  flex-wrap: wrap;
}

.stat-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.2rem;
  padding: 2.5rem 2rem;
  background: rgba(11, 19, 43, 0.6);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
  flex: 1;
  min-width: 250px;
  max-width: 320px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.stat-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.stat-box:hover {
  transform: translateY(-5px);
  background: rgba(28, 37, 65, 0.8);
  border-color: rgba(0, 212, 255, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.stat-box:hover::before {
  opacity: 1;
}

.stat-icon {
  color: var(--accent);
  filter: drop-shadow(0 0 8px rgba(0, 212, 255, 0.5));
  margin-bottom: 0.5rem;
}

.stat-text {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-main);
  line-height: 1.4;
  letter-spacing: 0.5px;
}

/* --- S.S.S BÖLÜMÜ --- */
.sss .container {
  max-width: 800px;
}

.accordion {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.accordion-item {
  background-color: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  transition: all 0.4s ease;
}

.accordion-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--accent);
  box-shadow: 0 0 15px rgba(0, 212, 255, 0.8);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.accordion-item.active {
  background-color: rgba(28, 37, 65, 0.9);
  border-color: rgba(0, 212, 255, 0.2);
}

.accordion-item.active::after {
  opacity: 1;
}

.accordion-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  padding: 1.5rem 2rem;
  color: var(--text-main);
  font-size: 1.15rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: all 0.3s ease;
}

.accordion-header:hover {
  color: var(--accent);
}

.accordion-header .icon {
  color: var(--accent);
  font-size: 1.5rem;
  font-weight: 400;
  transition: transform 0.4s ease, text-shadow 0.3s ease;
}

.accordion-item.active .accordion-header .icon {
  transform: rotate(45deg);
  text-shadow: 0 0 10px rgba(0, 212, 255, 0.6);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion-content p {
  padding: 0 2rem 1.5rem;
  color: #A0AEC0;
  line-height: 1.6;
  font-size: 0.95rem;
}

/* --- FOOTER BÖLÜMÜ --- */
.footer {
  background-color: #050914;
  padding: 5rem 2rem 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-top: 60px;
  margin-bottom: 3rem;
}

.footer-col {
  display: flex;
  flex-direction: column;
}

.footer-col .logo {
  margin-bottom: 1rem;
}

.mission-text {
  color: #A0AEC0;
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 300px;
}

.footer-heading {
  color: var(--text-main);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-links li {
  color: #A0AEC0;
  font-size: 0.95rem;
  transition: color 0.3s ease;
  cursor: default;
}

.footer-links li:hover {
  color: var(--accent);
  transform: translateX(3px);
  display: inline-block;
}

.btn-neon {
  margin-top: 0.5rem;
  display: inline-block;
  text-align: center;
  padding: 0.8rem 1.5rem;
  font-size: 0.95rem;
  background: rgba(0, 212, 255, 0.05);
  align-self: flex-start;
}

.footer-map {
  padding: 2rem 2rem 0;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-map iframe {
  border: 1px solid rgba(0, 212, 255, 0.15);
  border-radius: 10px;
  display: block;
}

.footer-nap {
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.nap-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: #A0AEC0;
  font-size: 0.9rem;
  line-height: 1.5;
}

.nap-item svg {
  color: var(--accent);
  flex-shrink: 0;
  filter: drop-shadow(0 0 4px rgba(0, 212, 255, 0.3));
}

.nap-item a {
  color: var(--accent);
  font-weight: 700;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.nap-item a:hover {
  color: #fff;
  text-shadow: 0 0 8px rgba(0, 212, 255, 0.5);
}

.btn-whatsapp-footer {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.3rem;
  background: #25D366;
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  align-self: flex-start;
}

.btn-whatsapp-footer:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
}

.footer-bottom {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  color: #64748b;
  font-size: 0.85rem;
}

/* --- FLOATING ACTION BUTTONS --- */
.fab-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  /* En üstte görünmesi için yüksek değer */
  display: flex;
  flex-direction: row;
  /* Dikey yerine yatay hizalama */
  gap: 15px;
  /* Aralarındaki boşluk */
  align-items: center;
}

.whatsapp-btn,
.call-fab {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
  position: relative;
  /* For the ::before pseudo-element */
}

.whatsapp-btn {
  background-color: #25D366;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.call-fab {
  background-color: var(--accent);
  box-shadow: 0 4px 15px rgba(0, 212, 255, 0.4);
}

.whatsapp-btn:hover,
.call-fab:hover {
  transform: scale(1.05);
}

.whatsapp-btn::before,
.call-fab::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  z-index: -1;
}

.whatsapp-btn::before {
  background-color: rgba(37, 211, 102, 0.6);
  animation: pulse-ring 2s infinite cubic-bezier(0.215, 0.61, 0.355, 1);
}

.call-fab::before {
  background-color: rgba(0, 212, 255, 0.6);
  animation: pulse-blue 2s infinite cubic-bezier(0.215, 0.61, 0.355, 1);
}

@keyframes pulse-ring {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

@keyframes pulse-blue {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  100% {
    transform: scale(1.8);
    opacity: 0;
  }
}


/* --- İLETİŞİM (CONTACT) FORMU --- */
.contact {
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.contact-container {
  max-width: 600px;
  background: rgba(28, 37, 65, 0.4);
  backdrop-filter: blur(12px);
  padding: 3rem;
  border-radius: 20px;
  border: 1px solid rgba(0, 212, 255, 0.1);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  margin: 0 auto;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: 0.95rem;
  color: var(--light-text);
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  background: rgba(11, 19, 43, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  color: #fff;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--neon-cyan);
  box-shadow: 0 0 10px rgba(0, 212, 255, 0.2);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.btn-submit {
  width: 100%;
  padding: 1.2rem;
  font-size: 1.1rem;
  margin-top: 1rem;
  cursor: pointer;
  border: none;
  text-align: center;
}

/* --- RESPONSIVE TASARIM (MOBİL ÖNCELİKLİ MÜHENDİSLİK) --- */

/* Tablet & Buton Optimizasyonu (992px altı) */
@media (max-width: 991.98px) {
  .nav-links {
    display: none;
    /* Orta linkleri gizle */
  }

  .hamburger {
    display: block;
    /* Menü ikonunu göster */
  }

  .mobile-menu {
    display: block;
    /* Mobil menü yapısını aktif et */
  }

  /* Fix Top Bar Overlap */
  .top-bar {
    position: relative !important;
    top: auto !important;
    z-index: 1005 !important;
    display: block !important;
    background-color: #050914 !important;
  }

  /* Adjust Navbar Stacking */
  .navbar {
    position: relative !important;
    z-index: 1000 !important;
  }

  .hero-title {
    font-size: 3rem;
  }

  /* Fix Hero Spacing */
  .hero {
    padding-top: 3rem !important;
    margin-top: 0;
    min-height: auto !important;
  }
  
  .index-hero {
    padding-top: 3rem !important;
    margin-top: 0;
    min-height: auto !important;
  }

  /* Fix Invisible Hero Text */
  .hero-split {
    flex-direction: column;
    text-align: center;
    gap: 3rem;
    animation: none !important;
    opacity: 1 !important;
    transform: translateY(0) !important;
    visibility: visible !important;
  }

  .hero-content-left {
    align-items: center;
    text-align: center;
  }

  .hero-logo {
    max-width: 100%; /* Eskiden 140%'tı, taşıyordu */
    margin: 0 auto;
  }
  
  .index-hero .hero-image-right {
    flex: 1; /* Mobilde görselin alanını tam genişlik yapıyoruz */
    width: 100%;
    margin-top: 2rem;
  }

  .solutions-grid,
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-stats {
    gap: 2rem;
  }

  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Buton Optimizasyonu (48px Tıklama Alanı) */
  .btn-primary,
  .btn-secondary,
  .btn-neon {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }

  /* Mobilde padding'i biraz daha cömert yapalım */
  .btn-primary {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

/* Cep Telefonu (576px altı) */
@media (max-width: 575.98px) {
  .nav-container {
    padding: 0.8rem 1.2rem;
  }

  /* Sağ kısım gap değerini küçült ki her şey aynı satıra sığsın */
  .nav-actions {
    gap: 0.6rem;
  }

  .status-text {
    display: none;
    /* "7/24 Sahadayız" metni gizleniyor */
  }

  .status-indicator {
    padding: 0;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    justify-content: center;
  }

  .pulse-dot {
    width: 10px;
    height: 10px;
    margin: 0;
  }

  .logo {
    font-size: 1.2rem;
    flex-shrink: 0;
    /* logonun ezilmemesi için */
  }

  .btn-primary {
    padding: 0.45rem 0.8rem;
    font-size: 0.75rem;
    letter-spacing: 0;
  }

  .hamburger {
    width: 24px;
    height: 14px;
    margin-left: 0.2rem;
  }

  .hamburger span:nth-child(2) {
    top: 6px;
  }

  .hamburger span:nth-child(3) {
    top: 12px;
  }

  .hamburger.active span:nth-child(1) {
    top: 6px;
  }

  .hamburger.active span:nth-child(3) {
    top: 6px;
  }

  /* Further reduce Hero padding on smaller mobile screens */
  .hero {
    padding-top: 2.5rem;
    margin-top: 0;
  }
  
  .index-hero {
    padding-top: 3.5rem;
    margin-top: 0;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .hero-desc {
    font-size: 1rem;
    padding: 0 1rem;
  }

  .section {
    padding: 2rem 1rem; /* Micro-adjustment: further down from 3rem to 2rem */
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
    overflow-x: hidden;
  }

  .section-title {
    font-size: 1.8rem;
    margin-bottom: 2.5rem;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
    line-height: 1.35;
  }



  .solutions-grid,
  .services-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .trust-stats {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }

  .stat-box {
    width: 100%;
    max-width: 100%;
    padding: 2rem 1.5rem;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .accordion-header {
    padding: 1.2rem 1.5rem;
    font-size: 1.05rem;
  }

  .accordion-content p {
    padding: 0 1.5rem 1.2rem;
  }
}

/* Ekstra küçük ekranlar için ince ayar (örn: iPhone SE vb. ~360px altı) */
@media (max-width: 370px) {
  .nav-container {
    padding: 0.8rem 0.8rem;
  }

  .logo {
    font-size: 1.05rem;
  }

  .nav-actions {
    gap: 0.4rem;
  }

  .btn-primary {
    padding: 0.4rem 0.6rem;
    font-size: 0.7rem;
  }

  .status-indicator {
    width: 26px;
    height: 26px;
  }

  .pulse-dot {
    width: 8px;
    height: 8px;
  }
}

/* --- KVKK COOKIE BANNER --- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(11, 19, 43, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid rgba(0, 212, 255, 0.2);
  z-index: 9999;
  padding: 1.2rem 2rem;
  box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.5);
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.cookie-content p {
  color: #A0AEC0;
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
  flex: 1;
}

.cookie-btn {
  white-space: nowrap;
  padding: 0.7rem 1.8rem;
  font-size: 0.95rem;
  border-radius: 8px;
  cursor: pointer;
}

@media (max-width: 768px) {
  .cookie-content {
    flex-direction: column;
    text-align: center;
    gap: 1.2rem;
  }

  .cookie-btn {
    width: 100%;
  }

  .cookie-banner {
    padding: 1.2rem 1.5rem;
  }
}

/* --- FOOTER İLETİŞİM BUTON RENKLERİ --- */
.btn-footer-phone,
.btn-footer-email,
.btn-footer-whatsapp {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.65rem 1rem;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  transition: all 0.3s ease;
  margin-bottom: 0.75rem;
}

/* Neon Mavi - Telefon */
.btn-footer-phone {
  background: rgba(0, 212, 255, 0.1);
  border: 1px solid rgba(0, 212, 255, 0.35);
  color: #00D4FF;
}
.btn-footer-phone:hover {
  background: rgba(0, 212, 255, 0.2);
  box-shadow: 0 0 12px rgba(0, 212, 255, 0.3);
  color: #fff;
}

/* Turuncu - E-posta */
.btn-footer-email {
  background: rgba(255, 140, 0, 0.1);
  border: 1px solid rgba(255, 140, 0, 0.35);
  color: #FF8C00;
}
.btn-footer-email:hover {
  background: rgba(255, 140, 0, 0.2);
  box-shadow: 0 0 12px rgba(255, 140, 0, 0.3);
  color: #fff;
}

/* WhatsApp Yeşili */
.btn-footer-whatsapp {
  background: rgba(37, 211, 102, 0.1);
  border: 1px solid rgba(37, 211, 102, 0.35);
  color: #25D366;
}
.btn-footer-whatsapp:hover {
  background: rgba(37, 211, 102, 0.2);
  box-shadow: 0 0 12px rgba(37, 211, 102, 0.3);
  color: #fff;
}

/* --- OPERASYON AĞIMIZ MATRİSİ --- */
.operation-network {
  background-color: var(--bg-main);
  padding: 4rem 2rem;
  position: relative;
  z-index: 1;
}

.network-title {
  text-align: center;
  color: #00E5FF;
  text-shadow: 0 0 15px rgba(0, 229, 255, 0.7);
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 3rem;
  letter-spacing: -0.5px;
}

.network-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.network-card {
  width: calc(25% - 1.125rem);
  background-color: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 1.5rem 1rem;
  text-align: center;
  color: #EDF2F4;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  cursor: default;
}

.network-card:hover {
  box-shadow: 0 0 10px #00E5FF;
  border-color: #00E5FF;
  transform: translateY(-3px);
  color: #fff;
}

@media (max-width: 992px) {
  .network-card {
    width: calc(33.333% - 1rem); /* 3 cards per row */
  }
}

@media (max-width: 768px) {
  .network-grid {
    gap: 1rem;
  }
  .network-card {
    width: calc(50% - 0.5rem); /* 2 cards per row */
  }
  .network-title {
    font-size: 1.8rem;
    margin-bottom: 2rem;
  }
  .network-card {
    font-size: 1rem;
    padding: 1.2rem 0.5rem;
  }

  /* Prevent Card Image Cropping */
  .card-image {
    height: auto !important; /* Remove the fixed 200px constraint */
    max-height: 350px; /* Prevent overly long scrolling if the image is too tall */
    object-fit: contain !important; /* Force the whole image to be visible */
    background-color: var(--bg-main); /* Ensure any empty side space blends perfectly with the site background */
  }
}

/* --- HAKKIMIZDA SAYFASI ÖZEL STİLLER --- */
.page-hero {
  min-height: 50vh;
  padding-top: 8rem;
  padding-bottom: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mx-auto { margin-left: auto; margin-right: auto; }
.text-center { text-align: center; }
.z-10 { z-index: 10; }
.mt-4 { margin-top: 2rem; }

.story-section {
  background: var(--bg-card);
  border-top: 1px solid rgba(0, 212, 255, 0.1);
  border-bottom: 1px solid rgba(0, 212, 255, 0.1);
  padding: 5rem 2rem;
}

.story-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  padding: 3rem;
  background: rgba(11, 19, 43, 0.6);
  border-radius: 20px;
  box-shadow: 0 0 30px rgba(0,0,0,0.3);
  border: 1px solid rgba(0, 212, 255, 0.15);
}

.story-text {
  font-size: 1.15rem;
  line-height: 1.8;
  color: #c9d1d9;
}

.vision-mission { padding: 5rem 2rem; }
.vm-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  max-width: 1100px;
  margin: 0 auto;
}

.vm-card {
  background: rgba(28, 37, 65, 0.5);
  backdrop-filter: blur(10px);
  padding: 3rem 2rem;
  border-radius: 16px;
  border: 1px solid rgba(0, 212, 255, 0.2);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vm-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 212, 255, 0.15);
  border-color: var(--accent);
}

.vm-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: rgba(0, 212, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.2);
}

.vm-card h3 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: var(--text-main);
}

.vm-card p {
  color: #A0AEC0;
  line-height: 1.7;
  font-size: 1.05rem;
}

.core-values { padding: 5rem 2rem; background: var(--bg-main); }
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.value-card {
  text-align: center;
  padding: 2.5rem;
  background: rgba(28, 37, 65, 0.3);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

.value-card:hover {
  background: rgba(28, 37, 65, 0.8);
  border-color: rgba(0, 212, 255, 0.3);
}

.value-icon {
  color: var(--status-green);
  margin-bottom: 1.5rem;
}

.value-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--text-main);
}

.value-card p {
  color: #A0AEC0;
  line-height: 1.5;
}

.cta-section { padding: 5rem 2rem 7rem; }
.cta-container {
  max-width: 800px;
  margin: 0 auto;
  background: linear-gradient(135deg, rgba(28, 37, 65, 0.8), rgba(11, 19, 43, 0.9));
  padding: 4rem 2rem;
  border-radius: 20px;
  border: 1px solid var(--accent);
  box-shadow: 0 0 40px rgba(0, 212, 255, 0.2);
}

.cta-text {
  font-size: 1.6rem;
  line-height: 1.5;
  margin-bottom: 2rem;
  color: #fff;
}

@media (max-width: 768px) {
  .vm-grid, .values-grid { grid-template-columns: 1fr; }
  .page-hero { padding-top: 6rem; min-height: 40vh; }
  .story-content { padding: 2rem 1.5rem; }
  .cta-text { font-size: 1.3rem; }
}

/* --- Dış Kaynaklı Yorum Widget'ı Kapsayıcı Tasarımı --- */

.customer-reviews-section {
    width: 100%;
    padding: 60px 15px;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
}

.reviews-safe-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    box-sizing: border-box;
    overflow-x: hidden; 
    overflow-y: visible;
}

.reviews-safe-container iframe,
.reviews-safe-container object,
.reviews-safe-container embed,
.reviews-safe-container div[class*="elfsight"],
.reviews-safe-container div[class*="trustindex"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    border: none !important;
    margin: 0 auto !important;
    display: block !important;
}