/* --- MODERN CSS RESET & TEMA DEĞİŞKENLERİ --- */
:root {
  --bg-main: #050507;
  --bg-surface: #0B0B0F;
  --bg-surface-hover: #12121A;
  --border-color: rgba(255, 255, 255, 0.06);
  --border-hover: rgba(225, 29, 72, 0.3);
  --text-primary: #F3F4F6;
  --text-secondary: #9CA3AF;
  --brand-color: #E11D48;
  --brand-glow: rgba(225, 29, 72, 0.15);
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background-color: var(--bg-main);
}

body {
  background-color: var(--bg-main);
  color: var(--text-primary);
  font-family: var(--font-sans);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-padding {
  padding: 140px 0;
}

.text-center {
  text-align: center;
}

/* --- TİPOGRAFİ --- */
h1, h2, h3 {
  font-weight: 700;
  letter-spacing: -0.02em;
}

.gradient-text {
  background: linear-gradient(135deg, #FFF 30%, var(--brand-color) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* --- BUTONLAR --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.2s ease;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background-color: var(--text-primary);
  color: var(--bg-main);
}

.btn-primary:hover {
  background-color: #FFF;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255, 255, 255, 0.1);
}

.btn-secondary {
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
}

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
}

/* --- Modern Navbar Tasarımı --- */
.navbar {
  position: fixed; /* Sayfa kaydıkça yukarıda sabit kalır */
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 16px 0;
  /* Glassmorphism (Cam) Efekti */
  background: rgba(10, 15, 30, 0.7); /* Koyu lacivert yarı saydam arka plan */
  backdrop-filter: blur(12px); /* Arkadaki içeriği bulandırır */
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08); /* İnce şık bir alt sınır çizgisi */
  transition: all 0.3s ease;
}

/* Sayfa aşağı kaydırıldığında navbarı daraltmak için (Opsiyonel JS ile tetiklenir) */
.navbar.scrolled {
  padding: 10px 0;
  background: rgba(10, 15, 30, 0.9);
}

.navbar-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Logo Alanı Düzenlemesi */
/* Logo ve yazıyı kapsayan alan */
.logo-wrapper {
  display: flex;
  align-items: center; /* Logoyu ve yazıyı dikeyde tam ortalar */
  gap: 12px;
  text-decoration: none;
}

/* Logo görselinin stili */
.navbar-logo-img {
  height: 70px; /* Görünürlüğü artırmak için yüksekliği 50px yaptık (isteğe göre 55px de yapabilirsin) */
  width: auto;  /* Genişliği otomatik bırakıyoruz ki logo basıklaşmasın, orijinal oranını korusun */
  object-fit: contain; /* Görselin sünmesini veya taşmasını engeller, çerçeveye sığdırır */
  display: block;
}

.logo-text {
  font-size: 22px;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 1px;
}

.logo-text span {
  color: #00f2fe; /* AI kısmına yakışacak neon cyan rengi */
}

/* Menü Linkleri ve Hover Animasyonları */
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-item {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  position: relative;
  padding: 6px 0;
  transition: color 0.3s ease;
}

/* Linklerin altına gelen modern çizgi animasyonu */
.nav-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #8a2be2, #ff007f);
  transition: width 0.3s ease;
}

.nav-item:hover {
  color: #ffffff;
}

.nav-item:hover::after {
  width: 100%; /* Üzerine gelindiğinde çizgi soldan sağa uzar */
}

/* Canlı Durum Göstergesi (AI Status) */
.nav-status {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 242, 254, 0.05);
  padding: 6px 12px;
  border-radius: 20px;
  border: 1px solid rgba(0, 242, 254, 0.15);
}

.status-pulse {
  width: 8px;
  height: 8px;
  background-color: #00ff88; /* Canlı yeşil */
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(0, 255, 136, 0.7);
  animation: pulse-animation 2s infinite;
}

.status-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* "İletişime Geç" Butonu Geliştirmesi */
.nav-btn {
  background: linear-gradient(135deg, #00f2fe 0%, #4facfe 100%);
  color: #0a0f1e;
  padding: 10px 24px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  font-size: 14px;
  box-shadow: 0 4px 15px rgba(0, 242, 254, 0.3);
  transition: all 0.3s ease;
}

.nav-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 242, 254, 0.5);
}

/* Durum Noktası Animasyonu */
@keyframes pulse-animation {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(0, 255, 136, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 6px rgba(0, 255, 136, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(0, 255, 136, 0);
  }
}

/* --- HERO BÖLÜMÜ --- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 120px;
  background: 
    radial-gradient(circle at 50% -20%, rgba(225, 29, 72, 0.12), transparent 50%),
    var(--bg-main);
  position: relative;
}

.hero-content {
  text-align: center;
  max-width: 900px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 32px;
}

.badge-dot {
  width: 6px;
  height: 6px;
  background-color: var(--brand-color);
  border-radius: 50%;
  display: inline-block;
}

.hero h1 {
  font-size: clamp(36px, 6vw, 68px);
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.03em;
}

.hero p {
  font-size: clamp(16px, 2.5vw, 19px);
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto 40px;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 80px;
}

.device-mockup {
  max-width: 760px;
  margin: 0 auto;
  background: linear-gradient(180deg, #16161F 0%, #0B0B0F 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.05);
}

.device-inner {
  border: 1px dashed rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.device-logo {
  font-size: 14px;
  letter-spacing: 6px;
  color: rgba(255,255,255,0.2);
}

.status-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,0,0,0.3);
  padding: 6px 12px;
  border-radius: 4px;
  border: 1px solid var(--border-color);
}

.status-led {
  width: 8px;
  height: 8px;
  background-color: #10B981;
  border-radius: 50%;
  box-shadow: 0 0 10px #10B981;
}

.status-text {
  font-size: 11px;
  font-weight: 600;
  color: #10B981;
  letter-spacing: 0.5px;
}

/* --- BAŞLIKLAR --- */
.section-title {
  margin-bottom: 64px;
  max-width: 650px;
}

.section-title h2 {
  font-size: clamp(28px, 4vw, 42px);
  margin-top: 12px;
  margin-bottom: 16px;
}

.section-title p {
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.6;
}

.section-tag {
  font-size: 12px;
  font-weight: 700;
  color: var(--brand-color);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* --- KARTLAR --- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.feature-card {
  background-color: var(--bg-surface);
  border: 1px solid var(--border-color);
  padding: 32px;
  border-radius: 12px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  text-align: left;
}

.feature-card:hover {
  background-color: var(--bg-surface-hover);
  border-color: var(--border-hover);
  transform: translateY(-4px);
}

.card-icon {
  font-size: 28px;
  margin-bottom: 20px;
  background: rgba(255, 255, 255, 0.03);
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  border: 1px solid var(--border-color);
}

.feature-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
}

.feature-card p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.6;
}

/* --- SESLİ KOMUT ALANI --- */
.voice-section {
  background: linear-gradient(180deg, var(--bg-main) 0%, #09090D 100%);
}

.voice-box {
  background-color: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 60px 40px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  cursor: pointer;
  transition: border-color 0.3s ease;
}

.voice-box:hover {
  border-color: rgba(225, 29, 72, 0.2);
}

.voice-badge {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--brand-color);
  margin-bottom: 20px;
  transition: color 0.3s ease;
}

.voice-text {
  font-size: clamp(22px, 3.5vw, 36px);
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 20px;
}

.voice-text span {
  color: var(--brand-color);
}

.voice-box p {
  color: var(--text-secondary);
  font-size: 15px;
  max-width: 500px;
  margin: 0 auto 32px;
}

.audio-wave {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  height: 40px;
}

.audio-wave span {
  width: 4px;
  height: 15px;
  background-color: var(--brand-color);
  border-radius: 2px;
  animation: modernWave 1.2s infinite ease-in-out;
  transition: all 0.3s ease;
}

.audio-wave span:nth-child(2) { animation-delay: 0.1s; height: 25px; }
.audio-wave span:nth-child(3) { animation-delay: 0.2s; height: 35px; }
.audio-wave span:nth-child(4) { animation-delay: 0.3s; height: 20px; }
.audio-wave span:nth-child(5) { animation-delay: 0.4s; height: 30px; }

@keyframes modernWave {
  0%, 100% { transform: scaleY(0.4); opacity: 0.5; }
  50% { transform: scaleY(1); opacity: 1; }
}

/* Pasif durum için dalgaları durdur ve şeffaflaştır */
.audio-wave.paused span {
  animation-play-state: paused !important;
  transform: scaleY(0.3);
  opacity: 0.2;
}

/* --- CANLI DASHBOARD --- */
.dashboard-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 24px;
  margin-top: 40px;
}

.panel-box {
  background-color: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 24px;
  display: flex;
  flex-direction: column;
}

.panel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border-color);
}

.panel-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
}

.live-pulse {
  font-size: 11px;
  font-weight: 700;
  color: var(--brand-color);
  display: flex;
  align-items: center;
  gap: 6px;
}

.live-pulse::before {
  content: '';
  width: 6px;
  height: 6px;
  background-color: var(--brand-color);
  border-radius: 50%;
  animation: blink 1s infinite;
}

@keyframes blink { 50% { opacity: 0; } }

.ai-badge {
  font-size: 11px;
  font-weight: 600;
  background-color: rgba(255,255,255,0.05);
  padding: 4px 8px;
  border-radius: 4px;
}

.map-mockup {
  height: 380px;
  background-color: #09090D;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.02);
}

.grid-overlay {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(255,255,255,0.01) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.01) 1px, transparent 1px);
  background-size: 20px 20px;
}

.map-pin {
  position: absolute;
  width: 10px;
  height: 10px;
  background-color: var(--brand-color);
  border-radius: 50%;
}

.pin-1 { top: 30%; left: 40%; }
.pin-2 { top: 65%; left: 70%; }
.pin-3 { top: 50%; left: 25%; }

.ping {
  position: absolute;
  width: 10px;
  height: 10px;
  border: 2px solid var(--brand-color);
  border-radius: 50%;
  animation: mapPing 1.5s infinite ease-out;
}

@keyframes mapPing {
  100% { transform: scale(4); opacity: 0; }
}

.alert-stream {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.alert-item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  padding: 16px;
  border-radius: 8px;
  transition: all 0.4s ease;
}

.alert-meta {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  margin-bottom: 4px;
}

.alert-item p {
  font-size: 12px;
  color: var(--text-secondary);
}

.high-risk .alert-meta strong { color: #F43F5E; }
.medium-risk .alert-meta strong { color: #FBBF24; }
.low-risk .alert-meta strong { color: #3B82F6; }

/* --- ENTEGRASYON --- */
.integration-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.integration-text h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.integration-text p {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 30px;
}

.check-list {
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  margin-bottom: 14px;
  color: var(--text-primary);
}

.icon-check {
  color: #10B981;
  font-weight: bold;
}

.tech-card {
  width: 100%;
  max-width: 400px;
  height: 300px;
  background: linear-gradient(135deg, #10101A 0%, #050507 100%);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  margin: 0 auto;
}

.scan-bar {
  position: absolute;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--brand-color), transparent);
  animation: scanning 3s infinite linear;
}

@keyframes scanning {
  0% { top: 0; }
  100% { top: 100%; }
}

.tech-center {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  letter-spacing: 4px;
  color: rgba(255,255,255,0.2);
}

/* --- FOOTER --- */
/* --- MODERN VE ŞIK FOOTER STİLLERİ --- */
.footer {
  background-color: #030305;
  border-top: 1px solid var(--border-color);
  padding: 120px 0 40px;
  position: relative;
  overflow: hidden;
}

/* Üst Taraftan Sızan Neon Kırmızı/Gül Parıltısı Efekti */
.footer-glow {
  position: absolute;
  top: -150px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(circle, rgba(225, 29, 72, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

/* CTA Bölümü (Harekete Geçirici Alan) */
.footer-top-cta {
  max-width: 700px;
  margin: 0 auto 80px auto;
  position: relative;
  z-index: 2;
}

.footer-top-cta h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #FFF 40%, var(--text-secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer-top-cta p {
  color: var(--text-secondary);
  font-size: 16px;
  margin-bottom: 32px;
}

/* Özel Parlayan İletişim Butonu */
.footer-cta-btn {
  background: linear-gradient(135deg, var(--brand-color) 0%, #B91C1C 100%);
  color: #FFF;
  border-radius: 30px;
  padding: 14px 36px;
  font-weight: 600;
  box-shadow: 0 4px 20px rgba(225, 29, 72, 0.25);
  transition: all 0.3s ease;
}

.footer-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(225, 29, 72, 0.45);
  background: linear-gradient(135deg, #FF2E5B 0%, var(--brand-color) 100%);
}

/* Sütunlu Link Izgarası */
.footer-grid-links {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--border-color);
  position: relative;
  z-index: 2;
}

.footer-brand-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-logo img {
  height: 50px;
  width: auto;
  object-fit: contain;
}

.footer-brand-desc {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.6;
  max-width: 340px;
}

.footer-links-col h3 {
  color: var(--text-primary);
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 24px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.footer-links-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links-col ul li a {
  color: var(--text-secondary);
  font-size: 14px;
  transition: color 0.2s ease, transform 0.2s ease;
  display: inline-block;
}

.footer-links-col ul li a:hover {
  color: var(--brand-color);
  transform: translateX(4px); /* Hover durumunda şık sağa kayma hareketi */
}

/* En Alt Çizgi ve Telif Alanı */
.footer-bottom-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.3);
  position: relative;
  z-index: 2;
}

.footer-status-indicator {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(16, 185, 129, 0.04);
  padding: 4px 12px;
  border-radius: 20px;
  border: 1px solid rgba(16, 185, 129, 0.15);
  color: #10B981;
  font-weight: 500;
}

.footer-status-indicator .status-dot {
  width: 6px;
  height: 6px;
  background-color: #10B981;
  border-radius: 50%;
  box-shadow: 0 0 8px #10B981;
}

/* Mobil Cihazlar İçin Responsive Düzenleme */
@media (max-width: 768px) {
  .footer {
    padding: 80px 0 30px;
  }
  .footer-grid-links {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-bottom: 40px;
  }
  .footer-bottom-bar {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

/* --- TEMA DEĞİŞKENLERİ VE TEMEL RESET --- */
:root {
  --bg-main: #050507;
  --bg-surface: #0B0B0F;
  --bg-surface-hover: #12121A;
  --border-color: rgba(255, 255, 255, 0.06);
  --border-hover: rgba(225, 29, 72, 0.3);
  --text-primary: #F3F4F6;
  --text-secondary: #9CA3AF;
  --brand-color: #E11D48;
  --font-sans: 'Inter', -apple-system, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; background-color: var(--bg-main); }
body { background-color: var(--bg-main); color: var(--text-primary); font-family: var(--font-sans); overflow-x: hidden; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-padding { padding: 140px 0; }
.text-center { text-align: center; }
h1, h2, h3 { font-weight: 700; letter-spacing: -0.02em; }
.gradient-text { background: linear-gradient(135deg, #FFF 30%, var(--brand-color) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }

/* --- BUTONLAR --- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 14px 28px; border-radius: 8px; font-size: 14px; font-weight: 600; transition: all 0.2s ease; cursor: pointer; border: none; }
.btn-primary { background-color: var(--text-primary); color: var(--bg-main); }
.btn-primary:hover { background-color: #FFF; transform: translateY(-2px); box-shadow: 0 10px 25px rgba(255, 255, 255, 0.1); }
.btn-secondary { background-color: rgba(255, 255, 255, 0.03); border: 1px solid var(--border-color); color: var(--text-primary); }
.btn-secondary:hover { background-color: rgba(255, 255, 255, 0.08); border-color: rgba(255, 255, 255, 0.2); }
.btn-full { width: 100%; }

/* --- NAVBAR --- */
.navbar { position: fixed; top: 0; width: 100%; height: 72px; z-index: 1000; background: rgba(5, 5, 7, 0.7); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border-bottom: 1px solid var(--border-color); }
.navbar-container { max-width: 1300px; height: 100%; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; }
.logo { font-size: 20px; font-weight: 800; letter-spacing: 2px; }
.logo span { color: var(--brand-color); }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a { font-size: 14px; font-weight: 500; color: var(--text-secondary); transition: color 0.2s ease; }
.nav-links a:hover { color: var(--text-primary); }
.nav-links a.nav-btn { background: rgba(225, 29, 72, 0.1); border: 1px solid rgba(225, 29, 72, 0.2); color: var(--brand-color); padding: 8px 16px; border-radius: 6px; }

/* --- HERO --- */
.hero { min-height: 100vh; display: flex; align-items: center; justify-content: center; padding-top: 120px; background: radial-gradient(circle at 50% -20%, rgba(225, 29, 72, 0.12), transparent 50%), var(--bg-main); position: relative; }
.hero-content { text-align: center; max-width: 900px; }
.badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(255, 255, 255, 0.03); border: 1px solid var(--border-color); padding: 6px 14px; border-radius: 100px; font-size: 13px; color: var(--text-secondary); margin-bottom: 32px; }
.badge-dot { width: 6px; height: 6px; background-color: var(--brand-color); border-radius: 50%; display: inline-block; }
.hero h1 { font-size: clamp(36px, 6vw, 68px); line-height: 1.1; margin-bottom: 24px; letter-spacing: -0.03em; }
.hero p { font-size: clamp(16px, 2.5vw, 19px); color: var(--text-secondary); line-height: 1.6; max-width: 700px; margin: 0 auto 40px; }
.hero-buttons { display: flex; justify-content: center; gap: 16px; margin-bottom: 80px; }
.device-mockup { max-width: 760px; margin: 0 auto; background: linear-gradient(180deg, #16161F 0%, #0B0B0F 100%); border: 1px solid rgba(255, 255, 255, 0.08); border-radius: 16px; padding: 40px; box-shadow: 0 30px 60px rgba(0,0,0,0.4); }
.device-inner { border: 1px dashed rgba(255, 255, 255, 0.1); border-radius: 8px; padding: 30px; display: flex; justify-content: space-between; align-items: center; }
.device-logo { font-size: 14px; letter-spacing: 6px; color: rgba(255,255,255,0.2); }
.status-bar { display: flex; align-items: center; gap: 8px; background: rgba(0,0,0,0.3); padding: 6px 12px; border-radius: 4px; border: 1px solid var(--border-color); }
.status-led { width: 8px; height: 8px; background-color: #10B981; border-radius: 50%; box-shadow: 0 0 10px #10B981; }
.status-text { font-size: 11px; font-weight: 600; color: #10B981; }

/* --- FEATURES --- */
.section-title { margin-bottom: 64px; max-width: 650px; }
.section-title h2 { font-size: clamp(28px, 4vw, 42px); margin-top: 12px; margin-bottom: 16px; }
.section-title p { color: var(--text-secondary); font-size: 16px; line-height: 1.6; }
.section-tag { font-size: 12px; font-weight: 700; color: var(--brand-color); letter-spacing: 1.5px; text-transform: uppercase; }
.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 24px; }
.feature-card { background-color: var(--bg-surface); border: 1px solid var(--border-color); padding: 32px; border-radius: 12px; transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1); }
.feature-card:hover { background-color: var(--bg-surface-hover); border-color: var(--border-hover); transform: translateY(-4px); }
.card-icon { font-size: 28px; margin-bottom: 20px; background: rgba(255, 255, 255, 0.03); width: 54px; height: 54px; display: flex; align-items: center; justify-content: center; border-radius: 8px; border: 1px solid var(--border-color); }
.feature-card h3 { font-size: 20px; font-weight: 600; margin-bottom: 12px; }
.feature-card p { color: var(--text-secondary); font-size: 14px; line-height: 1.6; }

/* --- Gelişmiş Telefon Simülatör Alanı --- */
.phone-section { background: linear-gradient(180deg, var(--bg-main) 0%, #09090D 100%); }
.phone-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; max-width: 1000px; margin: 0 auto; }
.phone-wrapper { display: flex; justify-content: center; }

/* CSS ile Telefon Gövdesi */
.smartphone { position: relative; width: 300px; height: 600px; background: #22252C; border-radius: 40px; border: 12px solid #1C1E24; box-shadow: 0 40px 100px rgba(0,0,0,0.8), inset 0 0 4px rgba(255,255,255,0.2); overflow: hidden; }
.notch { position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 140px; height: 25px; background: #1C1E24; border-bottom-left-radius: 18px; border-bottom-right-radius: 18px; z-index: 10; }
.screen { position: relative; width: 100%; height: 100%; background: #000; overflow: hidden; display: flex; flex-direction: column; }
.screen-content { position: absolute; inset: 0; width: 100%; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 40px 20px; opacity: 0; pointer-events: none; transition: opacity 0.4s ease; z-index: 2; }
.screen-content.active { opacity: 1; pointer-events: auto; }

/* Ekran Temaları */
#screen-idle { background: radial-gradient(circle at center, #1E1B4B 0%, #000 100%); }
.lock-icon { font-size: 32px; margin-bottom: 12px; opacity: 0.7; }
.screen-time { font-size: 18px; font-weight: 700; letter-spacing: 2px; margin-bottom: 8px; color: var(--brand-color); }
.screen-hint { font-size: 12px; color: var(--text-secondary); text-align: center; }

#screen-listening { background: #07070A; }
.mic-animated { font-size: 48px; margin-bottom: 20px; animation: pulseMic 1.5s infinite ease-in-out; }
@keyframes pulseMic { 0%, 100% { transform: scale(1); opacity: 0.7; } 50% { transform: scale(1.15); opacity: 1; color: var(--brand-color); } }
.listening-text { font-size: 14px; font-weight: 600; color: #10B981; letter-spacing: 1px; margin-bottom: 16px; }
.spoken-bubble { background: rgba(255,255,255,0.05); border: 1px solid var(--border-color); padding: 12px 16px; border-radius: 12px; font-size: 13px; text-align: center; color: var(--text-primary); max-width: 90%; font-style: italic; }

/* Video Ekranı */
#screen-video { padding: 0; justify-content: flex-start; background: #000; }
#phone-video { width: 100%; height: 100%; object-fit: cover; }
.video-overlay-info { position: absolute; top: 35px; left: 16px; font-size: 10px; font-weight: 700; background: rgba(0,0,0,0.6); padding: 4px 8px; border-radius: 4px; letter-spacing: 1px; z-index: 5; color: #10B981; }
.video-alert-banner { position: absolute; bottom: 24px; left: 12px; right: 12px; background: #F43F5E; padding: 10px; border-radius: 8px; font-size: 11px; font-weight: 700; text-align: center; letter-spacing: 0.5px; animation: pulseAlert 1s infinite alternate; z-index: 5; }
@keyframes pulseAlert { from { box-shadow: 0 0 0px rgba(244,63,94,0); } to { box-shadow: 0 0 15px rgba(244,63,94,0.6); } }

/* Küçük Dalgacıklar */
.small-wave { display: flex; gap: 4px; margin-top: 30px; }
.small-wave span { width: 3px; height: 12px; background: #10B981; border-radius: 2px; animation: swave 1s infinite alternate; }
.small-wave span:nth-child(2) { animation-delay: 0.1s; height: 20px; }
.small-wave span:nth-child(3) { animation-delay: 0.2s; height: 28px; }
.small-wave span:nth-child(4) { animation-delay: 0.3s; height: 16px; }
@keyframes swave { from { transform: scaleY(0.4); } to { transform: scaleY(1); } }

/* Menü Sağ Sütun */
.phone-controls h2 { font-size: 36px; margin: 12px 0 16px; }
.phone-controls p { color: var(--text-secondary); line-height: 1.6; margin-bottom: 32px; }
.control-box { background: var(--bg-surface); border: 1px solid var(--border-color); padding: 24px; border-radius: 12px; margin-bottom: 24px; }
.simulator-status { font-size: 13px; font-weight: 600; text-align: center; margin-top: 12px; color: var(--text-secondary); }
.hint-box { background: rgba(255,255,255,0.02); border-left: 3px solid var(--brand-color); padding: 16px; border-radius: 0 8px 8px 0; }
.hint-box h4 { font-size: 14px; margin-bottom: 8px; }
.hint-box ul { list-style: none; font-size: 13px; color: var(--text-secondary); }
.hint-box li { margin-bottom: 4px; }

/* --- DASHBOARD PANEL --- */
.dashboard-grid { display: grid; grid-template-columns: 1.4fr 0.8fr; gap: 24px; margin-top: 40px; }
.panel-box { background-color: var(--bg-surface); border: 1px solid var(--border-color); border-radius: 12px; padding: 24px; display: flex; flex-direction: column; }
.panel-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; padding-bottom: 14px; border-bottom: 1px solid var(--border-color); }
.panel-title { font-size: 14px; font-weight: 600; }
.live-pulse { font-size: 11px; font-weight: 700; color: var(--brand-color); display: flex; align-items: center; gap: 6px; }
.live-pulse::before { content: ''; width: 6px; height: 6px; background-color: var(--brand-color); border-radius: 50%; animation: blink 1s infinite; }
@keyframes blink { 50% { opacity: 0; } }
.ai-badge { font-size: 11px; font-weight: 600; background-color: rgba(255,255,255,0.05); padding: 4px 8px; border-radius: 4px; }
.map-mockup { height: 380px; background-color: #09090D; border-radius: 8px; position: relative; overflow: hidden; }
.grid-overlay { position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,0.01) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.01) 1px, transparent 1px); background-size: 20px 20px; }
.map-pin { position: absolute; width: 10px; height: 10px; background-color: var(--brand-color); border-radius: 50%; }
.pin-1 { top: 30%; left: 40%; } .pin-2 { top: 65%; left: 70%; } .pin-3 { top: 50%; left: 25%; }
.ping { position: absolute; width: 10px; height: 10px; border: 2px solid var(--brand-color); border-radius: 50%; animation: mapPing 1.5s infinite ease-out; }
@keyframes mapPing { 100% { transform: scale(4); opacity: 0; } }
.alert-stream { display: flex; flex-direction: column; gap: 12px; }
.alert-item { background: rgba(255, 255, 255, 0.02); border: 1px solid var(--border-color); padding: 16px; border-radius: 8px; transition: all 0.4s ease; }
.alert-meta { display: flex; justify-content: space-between; font-size: 14px; margin-bottom: 4px; }
.alert-item p { font-size: 12px; color: var(--text-secondary); }
.high-risk .alert-meta strong { color: #F43F5E; }
.medium-risk .alert-meta strong { color: #FBBF24; }
.low-risk .alert-meta strong { color: #3B82F6; }

/* --- INTEGRATION & FOOTER --- */
.integration-split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.integration-text h2 { font-size: 36px; margin-bottom: 20px; }
.integration-text p { color: var(--text-secondary); line-height: 1.7; margin-bottom: 30px; }
.check-list { list-style: none; }
.check-list li { display: flex; align-items: center; gap: 12px; font-size: 15px; margin-bottom: 14px; }
.icon-check { color: #10B981; font-weight: bold; }
.tech-card { width: 100%; max-width: 400px; height: 300px; background: linear-gradient(135deg, #10101A 0%, #050507 100%); border: 1px solid var(--border-color); border-radius: 16px; position: relative; overflow: hidden; margin: 0 auto; }
.scan-bar { position: absolute; width: 100%; height: 2px; background: linear-gradient(90deg, transparent, var(--brand-color), transparent); animation: scanning 3s infinite linear; }
@keyframes scanning { 0% { top: 0; } 100% { top: 100%; } }
.tech-center { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-size: 12px; letter-spacing: 4px; color: rgba(255,255,255,0.2); }
.footer { background-color: #030305; border-top: 1px solid var(--border-color); padding: 100px 0 40px; }
.footer h2 { font-size: 36px; margin-bottom: 16px; }
.footer p { color: var(--text-secondary); margin-bottom: 32px; }
.footer-bottom { margin-top: 80px; padding-top: 24px; border-top: 1px solid var(--border-color); font-size: 13px; color: rgba(255,255,255,0.3); }

@media (max-width: 968px) {
  .section-padding { padding: 90px 0; }
  .dashboard-grid, .integration-split, .phone-layout { grid-template-columns: 1fr; gap: 40px; }
  .nav-links { display: none; }
  .hero h1 { font-size: 42px; }
  .device-mockup { padding: 20px; }
}

/* --- TELEFON YATAY MODU (LANDSCAPE) SİHİRLİ KODLARI --- */

/* Telefonun ilk dikey hali için yumuşak geçiş efekti ekliyoruz */
.smartphone {
  transition: transform 0.8s cubic-bezier(0.68, -0.6, 0.32, 1.6), width 0.5s ease, height 0.5s ease;
  transform-origin: center center;
}

/* Telefon sağa yattığında devreye girecek olan sınıf */
.smartphone.landscape {
  transform: rotate(90deg); /* Sağa 90 derece döndür */
}

/* --- SİHİRLİ VİDEO DÜZELTME KODU --- */
.smartphone.landscape #phone-video {
  /* 1. Videoyu, telefonun dönüşünün tam tersine (saat yönünün tersine) 90 derece döndür */
  transform: rotate(-90deg); 
  
  /* 2. Dönen video için genişlik ve yükseklik değerlerini takas et */
  /* Telefon yatayken ekranın 'genişliği' aslında videonun 'yüksekliği' olmalı */
  width: 100vh; /* Ekranın o anki görünür yüksekliğine sığdır */
  height: 100vw; /* Ekranın o anki görünür genişliğine sığdır */
  
  /* 3. Döndükten sonra siyah boşluk kalmaması için tam sığdır */
  object-fit: cover; 
  
  /* 4. Dönüşün yumuşak olması için telefonla aynı zamanlamayı ver */
  transition: transform 0.8s cubic-bezier(0.68, -0.6, 0.32, 1.6);
}

/* Yatay moddayken üstteki çentiği (notch) gizleyelim ki videoyu kapatmasın */
.smartphone.landscape .notch {
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* Yatay modda uyarı banner'ını alta sabitleyelim */
.smartphone.landscape .video-alert-banner {
  bottom: 12px;
  font-size: 10px;
  padding: 6px;
}

/* --- SİMÜLATÖR PANEL METİN KAYDIRMA KODU (KESİN ÇÖZÜM) --- */

/* 1. Sağ panelin hareketini yumuşatmak için transition ekliyoruz */
.phone-controls {
  transition: transform 0.8s cubic-bezier(0.68, -0.6, 0.32, 1.6);
  will-change: transform;
}

/* 2. Telefon döndüğünde, onun kapsayıcısı olan .phone-wrapper'ın sağındaki boşluğu (margin) açıyoruz */
.phone-wrapper:has(.smartphone.landscape) {
  margin-right: 160px; /* Telefonun sağ tarafına fazladan 160px boşluk ekler */
  transition: margin-right 0.8s cubic-bezier(0.68, -0.6, 0.32, 1.6);
}

/* 3. Alternatif koruma: Eğer tarayıcı üstteki :has özelliğini desteklemiyorsa, doğrudan gövdeye margin verelim */
.smartphone.landscape {
  margin-right: 140px !important;
}

/* --- AIVEX KAPSAMLI ÖZELLİKLER SLIDER STİLLERİ --- */
.features-slider-container {
  background-color: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.slider-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  min-height: 450px;
}

/* Sol Görsel Alanı */
.slider-visual-side {
  background: linear-gradient(135deg, #0d0d15 0%, #050507 100%);
  border-right: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.slider-effect-glow {
  position: absolute;
  width: 250px;
  height: 250px;
  background: var(--brand-color);
  filter: blur(100px);
  opacity: 0.15;
  border-radius: 50%;
  animation: floatGlow 6s infinite alternate ease-in-out;
}

@keyframes floatGlow {
  0% { transform: translate(-10px, -10px) scale(1); }
  100% { transform: translate(10px, 10px) scale(1.2); }
}

.slider-big-icon {
  font-size: 100px;
  z-index: 2;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
}

/* Sağ İçerik Alanı */
.slider-content-side {
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.slider-step {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-secondary);
  letter-spacing: 2px;
  margin-bottom: 16px;
}

#slider-title {
  font-size: 32px;
  color: var(--text-primary);
  margin-bottom: 20px;
  transition: opacity 0.3s ease;
}

#slider-description {
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 40px;
  min-height: 80px; /* Geçişlerde zıplama yapmaması için sabit minimum yükseklik */
  transition: opacity 0.3s ease;
}

/* Kontroller ve Oklar */
.slider-controls-row {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-top: auto;
}

.slider-nav {
  display: flex;
  gap: 12px;
}

.slider-arrow-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.slider-arrow-btn:hover {
  background: var(--brand-color);
  border-color: var(--brand-color);
  color: #fff;
  transform: translateY(-2px);
}

/* Küçük Noktalar (Dots) */
.slider-dots {
  display: flex;
  gap: 8px;
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  cursor: pointer;
  transition: all 0.3s ease;
}

.slider-dot.active {
  background: var(--brand-color);
  width: 24px;
  border-radius: 4px;
}

/* Animasyon Sınıfları */
.fade-out {
  opacity: 0 !important;
  transform: scale(0.95);
}

/* Responsive Uyumluluk */
@media (max-width: 768px) {
  .slider-wrapper {
    grid-template-columns: 1fr;
  }
  .slider-visual-side {
    height: 200px;
    border-right: none;
    border-bottom: 1px solid var(--border-color);
  }
  .slider-big-icon {
    font-size: 70px;
  }
  .slider-content-side {
    padding: 32px 24px;
  }
  #slider-title {
    font-size: 24px;
  }
  .slider-controls-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}

/* --- HERO (ANA SAYFA EN ÜST ALAN) ARKA PLAN RESMİ --- */
.hero {
  position: relative;
  overflow: hidden;
  
  /* Arka plan resmi ve yazının okunması için üzerine koyu katman */
  background-image: linear-gradient(rgba(5, 5, 7, 0.8), rgba(5, 5, 7, 0.9)), url('../img/aivexhero.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* --- SADECE BÜYÜK EKRANDAKİ SLIDER İÇİN ARKA PLAN RESMİ --- */
.slider-content-side.slider-bg-image {
  position: relative;
  overflow: hidden;
  background-image: linear-gradient(rgba(11, 11, 15, 0.88), rgba(11, 11, 15, 0.88)), url('../img/aivex-device.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* --- MOBİL İÇİN HAMBURGER MENÜ AYARLARI --- */
@media (max-width: 768px) {
  /* 3 Çizgi Butonunun Tasarımı */
  .menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1100;
  }

  .menu-toggle .bar {
    width: 100%;
    height: 3px;
    background-color: var(--text-primary);
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
  }

  /* 3 Çizgiyi X İşaretine Çeviren Animasyon */
  .menu-toggle.is-active .bar:nth-child(2) { opacity: 0; }
  .menu-toggle.is-active .bar:nth-child(1) { transform: translateY(7.5px) rotate(45deg); background-color: var(--brand-color); }
  .menu-toggle.is-active .bar:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); background-color: var(--brand-color); }

  /* Mobilde Menü Linklerinin Sağdan Kayarak Gelmesi */
  .navbar-container .nav-links {
    position: fixed;
    top: 0;
    right: -100%; /* Başlangıçta sağda gizli */
    width: 75%;
    height: 100vh;
    background: rgba(11, 11, 15, 0.96); /* Temandaki yüzey rengi */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-left: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 35px;
    transition: right 0.4s cubic-bezier(0.1, 0.7, 0.1, 1);
    z-index: 1050;
  }

  /* Butona basılınca bu sınıf tetiklenecek ve menü içeri kayacak */
  .navbar-container .nav-links.is-active {
    right: 0;
  }

  .nav-btn { width: auto; text-align: center; }
}

/* Masaüstünde 3 çizgiyi gizle */
@media (min-width: 769px) {
  .menu-toggle { display: none; }
}

/* İletişim Sayfası Özel Grid Yapısı */
    .contact-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 140px 20px 80px 20px;
    }

    .contact-heading {
      text-align: left;
      margin-bottom: 40px;
    }

    .contact-heading h1 {
      font-size: 2.8rem;
      font-weight: 700;
      color: var(--text-primary);
      margin-bottom: 15px;
    }

    /* Sol: Metin + Bilgiler | Sağ: Harita */
    .contact-main-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 50px;
      align-items: start;
    }

    /* Sol Sütun Elemanlarının Alt Alta Dizilimi */
    .contact-left-col {
      display: flex;
      flex-direction: column;
      gap: 30px;
    }

    /* Sol Üstteki Metin Kutusu Bloğu */
    .contact-intro-box {
      background: var(--bg-surface);
      border: 1px solid var(--border-color);
      padding: 35px;
      border-radius: 12px;
    }

    .contact-intro-box h2 {
      font-size: 1.6rem;
      color: var(--text-primary);
      margin-bottom: 15px;
    }

    .contact-intro-box p {
      color: var(--text-secondary);
      line-height: 1.6;
      font-size: 1rem;
    }

    /* Sol Alttaki İletişim Bilgileri Kutusu */
    .contact-details-box {
      background: var(--bg-surface);
      border: 1px solid var(--border-color);
      padding: 35px;
      border-radius: 12px;
      display: flex;
      flex-direction: column;
      gap: 25px;
    }

    .detail-item {
      display: flex;
      align-items: flex-start;
      gap: 20px;
    }

    .detail-icon {
      color: var(--brand-color);
      font-size: 1.4rem;
      font-weight: bold;
      line-height: 1;
    }

    .detail-content h3 {
      font-size: 1.1rem;
      color: var(--text-primary);
      margin-bottom: 6px;
      font-weight: 600;
    }

    .detail-content p, .detail-content a {
      color: var(--text-secondary);
      font-size: 1rem;
      text-decoration: none;
      line-height: 1.5;
    }

    .detail-content a:hover {
      color: var(--brand-color);
    }

    /* Sağ Sütun: Google Maps Alanı */
    .contact-map-holder {
      border: 1px solid var(--border-color);
      border-radius: 12px;
      overflow: hidden;
      height: 520px; /* Sol tarafla dengelensin diye yüksekliği artırdım */
    }

    .contact-map-holder iframe {
      width: 100%;
      height: 100%;
      border: 0;
    }

    @keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.1); opacity: 0.6; }
  100% { transform: scale(1); opacity: 1; }
}

    /* Mobil Ekran Uyumluluğu (Responsive) */
    @media (max-width: 968px) {
      .contact-main-grid {
        grid-template-columns: 1fr;
        gap: 40px;
      }
      .contact-map-holder {
        height: 380px;
      }
      .contact-heading {
        text-align: center;
      }
    }

    