/* ============================================
   KILIÇ ELEKTRİK İLETİŞİM - TAM CSS
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800&family=Space+Grotesk:wght@400;500;600;700&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --bg-dark:    #0a0a0f;
  --bg-card:    #13131a;
  --bg-section: #0f0f15;
  --border:     #2a2a35;
  --primary:    #00d4ff;
  --primary-dim:#00a8cc;
  --secondary:  #ff6b35;
  --white:      #ffffff;
  --gray:       #b4b4be;
  --gray-dark:  #6c6c7d;
  --success:    #00d9a3;
  --radius:     16px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--bg-dark);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  font-weight: 500; /* Daha kalın varsayılan yazı */
}

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb { background: linear-gradient(180deg, var(--primary), var(--primary-dim)); border-radius: 4px; }

/* ============================================
   NAVBAR - DÜZELTİLMİŞ
   ============================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(10, 10, 15, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  height: 80px;
}

.nav-logo {
  font-family: 'Montserrat', sans-serif;
  font-size: 22px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: flex;
  align-items: center;
  gap: 12px;
  letter-spacing: -0.5px;
  text-decoration: none;
  flex-shrink: 0; /* Logo küçülmesin */
}

.nav-logo::before {
  content: '⚡';
  font-size: 24px;
  -webkit-text-fill-color: var(--primary);
  filter: drop-shadow(0 0 10px var(--primary));
}

.nav-links { 
  display: flex; 
  gap: 8px; 
  list-style: none; 
  align-items: center;
}

.nav-links a {
  padding: 10px 18px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600; /* Daha kalın menü yazısı */
  font-size: 15px;
  color: var(--gray);
  border-radius: 50px;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap; /* Metinler alt alta inmesin */
}

.nav-links a:hover, .nav-links a.active {
  color: var(--primary);
  background: rgba(0, 212, 255, 0.1);
}

.nav-cta {
  background: linear-gradient(135deg, var(--primary), var(--primary-dim)) !important;
  color: var(--bg-dark) !important;
  font-weight: 700 !important;
  box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
}

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1001;
}
.hamburger span {
  display: block;
  width: 28px;
  height: 3px;
  background: var(--primary);
  margin: 5px 0;
  border-radius: 2px;
  transition: 0.3s;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 80px; left: 0; right: 0;
  background: rgba(10, 10, 15, 0.98);
  backdrop-filter: blur(20px);
  padding: 30px;
  transform: translateY(-100%);
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 999;
  border-bottom: 1px solid var(--border);
}

.mobile-menu.open {
  transform: translateY(0);
  opacity: 1;
}

.mobile-menu a {
  display: block;
  padding: 14px 0;
  color: var(--white);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  font-size: 16px;
  font-weight: 600;
}

.mob-cta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 20px;
}

.mob-cta a {
  text-align: center;
  padding: 14px;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
}

.mob-call { background: var(--primary); color: var(--bg-dark); }
.mob-whatsapp { background: var(--success); color: white; }

/* ============================================
   HERO - DÜZELTİLMİŞ
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 20px 80px;
  background: radial-gradient(ellipse at center, #1a1a2e 0%, var(--bg-dark) 70%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0,212,255,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.hero-bg {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  z-index: 0;
  opacity: 0.3;
}

.hero-bg img {
  width: 100%; height: 100%; object-fit: cover;
}

.hero-grid {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: 
    linear-gradient(rgba(0, 212, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 212, 255, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(0, 212, 255, 0.1);
  border: 1px solid rgba(0, 212, 255, 0.3);
  border-radius: 50px;
  padding: 10px 28px; /* Biraz daha dolgun */
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  font-weight: 700; /* Kalın */
  color: var(--primary);
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.dot {
  width: 8px; height: 8px;
  background: var(--primary);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.hero-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(40px, 8vw, 80px);
  font-weight: 800;
  line-height: 1;
  margin-bottom: 20px;
  letter-spacing: -2px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-title span {
  background: inherit;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* SLOGAN - YANIP SÖNEN ANİMASYONLU VE KALIN */
.hero-slogan {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 26px; /* Biraz büyütüldü */
  color: var(--white); /* Beyaz daha görünür */
  margin-bottom: 16px;
  font-weight: 700; /* Kalın */
  letter-spacing: 1px;
  text-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
  animation: pulse-glow 2s infinite alternate;
}

@keyframes pulse-glow {
  0% {
    opacity: 0.9;
    text-shadow: 0 0 5px rgba(0, 212, 255, 0.3), 0 0 10px rgba(0, 212, 255, 0.2);
  }
  100% {
    opacity: 1;
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.9), 0 0 30px rgba(0, 212, 255, 0.6), 0 0 40px rgba(0, 212, 255, 0.4);
  }
}

.hero-sub {
  font-size: 20px; /* Büyütüldü */
  color: var(--primary);
  margin-bottom: 30px;
  letter-spacing: 4px;
  font-weight: 700; /* Kalın */
  text-transform: uppercase;
}

.hero-phone {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(28px, 5vw, 46px)); /* Büyütüldü */
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 40px;
  text-shadow: 0 0 30px rgba(0, 212, 255, 0.6);
}

.hero-phone a {
  color: inherit;
  text-decoration: none;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.btn-primary, .btn-secondary, .btn-instagram {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 36px; /* Dolgun butonlar */
  border-radius: 50px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700; /* Kalın yazı */
  font-size: 16px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dim));
  color: var(--bg-dark);
  box-shadow: 0 4px 20px rgba(0, 212, 255, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--border);
}

.btn-instagram {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: var(--white);
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 12px;
  font-weight: 600; /* Kalın */
  letter-spacing: 2px;
  color: var(--gray-dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 2;
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--primary), transparent);
  animation: scrollDown 1.5s infinite;
}

@keyframes scrollDown {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  50.1% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ============================================
   STATS
   ============================================ */
.stats-bar {
  background: var(--bg-section);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 40px 20px;
}

.stats-inner {
  max-width: 1000px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

.stat-item {
  padding: 20px;
  background: rgba(255,255,255,0.02);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.stat-item:hover {
  border-color: var(--primary);
  transform: translateY(-5px);
}

.stat-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 42px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
  margin-bottom: 8px;
}

.stat-label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  font-weight: 600; /* Kalın */
  color: var(--gray-dark);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ============================================
   SECTIONS
   ============================================ */
.section {
  max-width: 1200px;
  margin: auto;
  padding: 100px 20px;
}

.section-header {
  text-align: center;
  margin-bottom: 70px;
}

.section-tag {
  display: inline-block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--primary);
  text-transform: uppercase;
  margin-bottom: 16px;
  padding: 6px 16px;
  background: rgba(0, 212, 255, 0.1);
  border-radius: 50px;
}

.section-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 800;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.section-title span {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-desc {
  color: var(--gray);
  font-size: 18px;
  max-width: 600px;
  margin: auto;
  line-height: 1.7;
  font-weight: 500; /* Orta kalınlık */
}

/* ============================================
   HİZMETLER
   ============================================ */
.services-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.service-card {
  display: grid;
  grid-template-columns: 300px 1fr;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
}

.service-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: linear-gradient(to bottom, var(--primary), var(--secondary));
  opacity: 0;
  transition: opacity 0.3s;
}

.service-card:hover::before {
  opacity: 1;
}

.service-card:hover {
  transform: scale(1.01);
  border-color: rgba(0, 212, 255, 0.3);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.service-card-img {
  position: relative;
  overflow: hidden;
  height: 100%;
  min-height: 200px;
}

.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service-card:hover .service-card-img img {
  transform: scale(1.1);
}

.img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent, rgba(10,10,15,0.8));
}

.service-card-body {
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-card-body h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  font-weight: 700; /* Kalın başlık */
  margin-bottom: 12px;
  color: var(--white);
}

.short-desc {
  font-size: 16px;
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 20px;
  font-weight: 500; /* Okunabilirlik */
}

.detail-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  font-weight: 700; /* Kalın buton yazısı */
  padding: 12px 28px; /* Dolgun */
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
  width: fit-content;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.detail-toggle:hover, .detail-toggle.active {
  background: var(--primary);
  color: var(--bg-dark);
}

.toggle-icon {
  transition: transform 0.3s;
  font-style: normal;
}

.detail-toggle.active .toggle-icon {
  transform: rotate(180deg);
}

.detail-panel {
  display: none;
  padding-top: 24px;
  margin-top: 24px;
  border-top: 1px solid var(--border);
  animation: slideDown 0.3s ease;
  width: 100%;
  box-sizing: border-box;
}

.detail-panel.open {
  display: block;
}

.detail-panel p {
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 16px;
  font-size: 15px;
  font-weight: 500; /* Kalın paragraf */
  word-wrap: break-word;
}

.detail-panel ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px; /* Biraz artırıldı */
  list-style: none;
  width: 100%;
  margin: 0;
  padding: 0;
}

.detail-panel ul li {
  color: var(--gray-dark);
  padding-left: 24px;
  position: relative;
  font-size: 14px;
  font-weight: 600; /* Maddeler kalın */
  line-height: 1.5;
  word-wrap: break-word;
}

.detail-panel ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: bold;
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================
   HAKKIMIZDA
   ============================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-img-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,0.4);
}

.about-img-wrap img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.about-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 2px solid var(--primary);
  border-radius: var(--radius);
  transform: translate(20px, 20px);
  z-index: -1;
  opacity: 0.5;
}

.year-badge {
  position: absolute;
  bottom: 30px;
  right: 30px;
  background: var(--primary);
  color: var(--bg-dark);
  padding: 16px 24px;
  border-radius: 12px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 14px;
  text-align: center;
  line-height: 1.3;
}

.about-text p {
  margin-bottom: 20px;
  color: var(--gray);
  line-height: 1.8;
  font-size: 17px; /* Büyütüldü */
  font-weight: 500; /* Kalın */
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 40px;
}

.about-feat {
  display: flex;
  gap: 16px;
  padding: 20px;
  background: rgba(255,255,255,0.03);
  border-radius: 12px;
  border: 1px solid var(--border);
  transition: var(--transition);
}

.about-feat:hover {
  border-color: var(--primary);
  transform: translateX(5px);
}

.feat-icon {
  font-size: 28px;
  flex-shrink: 0;
}

.about-feat h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 17px; /* Büyütüldü */
  font-weight: 700;
  margin-bottom: 6px;
}

.about-feat p {
  font-size: 14px;
  color: var(--gray-dark);
  margin: 0;
  font-weight: 500;
}

/* ============================================
   NEDEN BİZ
   ============================================ */
.why-section {
  background: var(--bg-section);
  position: relative;
}

.why-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.why-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 30px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.why-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.why-card:hover {
  transform: translateY(-10px);
  border-color: transparent;
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.why-card:hover::after {
  transform: scaleX(1);
}

.why-icon {
  font-size: 48px;
  margin-bottom: 24px;
  display: block;
  filter: drop-shadow(0 0 20px rgba(0,212,255,0.3));
}

.why-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 22px; /* Büyütüldü */
  font-weight: 700;
  margin-bottom: 16px;
}

.why-card p {
  color: var(--gray);
  font-size: 16px; /* Büyütüldü */
  line-height: 1.7;
  font-weight: 500;
}

/* ============================================
   BÖLGELER
   ============================================ */
.area-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.area-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18px;
  font-weight: 700; /* Kalın */
  color: var(--gray);
  transition: var(--transition);
  cursor: pointer;
}

.area-item:hover {
  background: rgba(0, 212, 255, 0.1);
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-3px);
}

.area-pin {
  display: block;
  font-size: 28px;
  margin-bottom: 8px;
}

/* ============================================
   İLETİŞİM
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
}

.contact-info-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
}

.contact-info-box h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 30px;
  color: var(--primary);
}

.contact-row {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
  padding: 20px;
  background: rgba(255,255,255,0.02);
  border-radius: 12px;
  border: 1px solid transparent;
  transition: var(--transition);
}

.contact-row:hover {
  border-color: var(--primary);
  background: rgba(0, 212, 255, 0.05);
}

.contact-row-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dim));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}

.contact-row-text strong {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px; /* Biraz büyütüldü */
  font-weight: 700; /* Kalın */
  color: var(--gray-dark);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.contact-row-text span,
.contact-row-text a {
  font-size: 17px; /* Büyütüldü */
  color: var(--white);
  font-weight: 700; /* Kalın */
  text-decoration: none;
}

.contact-map-box {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
  height: 100%;
  min-height: 400px;
}

.contact-map-box iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border: 0;
}

/* ============================================
   FLOATING BUTTONS
   ============================================ */
.float-buttons {
  position: fixed;
  right: 30px;
  bottom: 30px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  z-index: 900;
}

.float-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  transition: var(--transition);
  border: 2px solid transparent;
  text-decoration: none;
}

.float-btn:hover {
  transform: scale(1.1) rotate(10deg);
  box-shadow: 0 12px 30px rgba(0,0,0,0.4);
}

.float-phone { 
  background: var(--primary); 
  color: var(--bg-dark);
}
.float-wp { 
  background: var(--success); 
  color: white;
}
.float-insta { 
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); 
  color: white;
}

/* ============================================
   FOOTER
   ============================================ */
footer {
  background: var(--bg-section);
  border-top: 1px solid var(--border);
  padding: 60px 20px 30px;
}

.footer-inner { max-width: 1200px; margin: auto; }

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 50px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
}

.footer-brand .logo {
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
}

.footer-brand p {
  color: var(--gray);
  line-height: 1.8;
  font-size: 16px; /* Büyütüldü */
  font-weight: 500;
}

.footer-col h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--primary);
  margin-bottom: 24px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  color: var(--gray);
  transition: var(--transition);
  display: inline-block;
  text-decoration: none;
  font-weight: 600; /* Kalın */
  font-size: 15px;
}

.footer-col ul li a:hover {
  color: var(--primary);
  transform: translateX(5px);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  color: var(--gray-dark);
  font-size: 14px;
  font-weight: 600; /* Kalın */
}

.footer-bottom a {
  color: var(--gray-dark);
  text-decoration: none;
}

/* ============================================
   GİZLİLİK SAYFASI STİLLERİ
   ============================================ */
.privacy-article {
  max-width: 900px;
  margin: 0 auto;
  padding: 120px 40px 80px;
}

.privacy-article h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(28px, 5vw, 42px);
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--white);
  letter-spacing: -1px;
}

.privacy-article .updated {
  color: var(--gray-dark);
  font-size: 14px;
  margin-bottom: 40px;
  display: block;
  font-weight: 600;
}

.privacy-article h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(20px, 4vw, 24px);
  font-weight: 700;
  margin: 40px 0 20px;
  color: var(--primary);
}

.privacy-article p {
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: 500; /* Kalın metin */
}

.privacy-article ul {
  padding-left: 24px;
  margin-bottom: 24px;
  color: var(--gray);
}

.privacy-article ul li {
  margin-bottom: 12px;
  line-height: 1.6;
  font-size: 15px;
  font-weight: 500; /* Kalın maddeler */
}

.privacy-article a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
}

.privacy-article strong {
  color: var(--white);
  font-weight: 700; /* Daha kalın vurgu */
}

/* ============================================
   MOBİL UYUMLULUK - DÜZELTİLMİŞ BREAKPOINT
   ============================================ */
@media (max-width: 1024px) {
  /* 1024px altında hamburger menü aktif - Çakışmayı önler */
  .nav-links { display: none; }
  .hamburger { display: block; }
  .mobile-menu { display: block; }
  
  .service-card { grid-template-columns: 250px 1fr; }
  .about-grid { gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .navbar { 
    padding: 0 20px; 
    height: 70px; 
  }
  .nav-logo { font-size: 18px; }
  
  .hero { 
    min-height: auto; 
    padding: 100px 20px 60px; 
  }
  .hero-title { 
    font-size: clamp(32px, 10vw, 48px); 
    letter-spacing: -1px;
  }
  .hero-slogan {
    font-size: 22px;
  }
  .hero-sub { 
    font-size: 16px; 
    letter-spacing: 2px; 
  }
  .hero-phone { 
    font-size: 26px; 
    margin-bottom: 24px; 
  }
  .hero-buttons { 
    flex-direction: column; 
    width: 100%; 
    gap: 12px;
  }
  .btn-primary, .btn-secondary, .btn-instagram {
    width: 100%;
    justify-content: center;
    padding: 16px 24px;
    font-size: 15px;
  }
  .hero-badge {
    font-size: 11px;
    padding: 8px 20px;
    margin-bottom: 20px;
  }
  .hero-scroll { display: none; }
  
  .stats-inner { 
    grid-template-columns: repeat(2, 1fr); 
    gap: 15px;
  }
  .stat-num { font-size: 32px; }
  .stat-label { font-size: 12px; }
  
  .section { padding: 60px 20px; }
  .section-header { margin-bottom: 40px; }
  .section-title { font-size: clamp(24px, 6vw, 32px); }
  .section-desc { font-size: 16px; }
  
  .service-card { 
    grid-template-columns: 1fr; 
    width: 100%;
  }
  .service-card-img { 
    height: 200px; 
    min-height: auto;
  }
  .service-card-body { 
    padding: 24px; 
    width: 100%;
  }
  .service-card-body h3 { 
    font-size: 20px; 
  }
  .short-desc { 
    font-size: 15px; 
  }
  
  .detail-panel {
    padding-top: 20px;
    margin-top: 20px;
    width: 100%;
  }
  .detail-panel p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 12px;
  }
  .detail-panel ul { 
    grid-template-columns: 1fr; 
    gap: 10px;
  }
  .detail-panel ul li {
    font-size: 14px;
    padding-left: 20px;
  }
  
  .detail-toggle {
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
    font-size: 13px;
  }
  
  .about-grid { grid-template-columns: 1fr; }
  .about-img-wrap img { height: 300px; }
  .about-img-wrap::after { display: none; }
  .year-badge {
    bottom: 20px;
    right: 20px;
    padding: 12px 16px;
    font-size: 12px;
  }
  .about-features { grid-template-columns: 1fr; }
  .about-text p { font-size: 16px; }
  
  .why-grid { grid-template-columns: 1fr; }
  .why-card { padding: 30px 24px; }
  .why-card h3 { font-size: 20px; }
  .why-card p { font-size: 15px; }
  
  .area-grid { grid-template-columns: repeat(2, 1fr); }
  .area-item { font-size: 15px; padding: 16px; }
  
  .contact-info-box { padding: 24px; }
  .contact-row { padding: 16px; }
  .contact-row-text a { font-size: 16px; }
  .contact-map-box { min-height: 300px; }
  .contact-map-box iframe { min-height: 300px; }
  
  .footer-top { 
    grid-template-columns: 1fr; 
    gap: 40px; 
    text-align: center;
  }
  .footer-col h4 { margin-bottom: 16px; }
  .footer-bottom { 
    flex-direction: column; 
    text-align: center; 
    gap: 10px;
  }
  
  .float-buttons {
    right: 20px;
    bottom: 20px;
    gap: 12px;
  }
  .float-btn {
    width: 50px;
    height: 50px;
    font-size: 22px;
  }
  
  .privacy-article {
    padding: 100px 20px 60px;
  }
  .privacy-article h1 {
    font-size: 28px;
  }
  .privacy-article h2 {
    font-size: 20px;
    margin: 30px 0 16px;
  }
  .privacy-article p,
  .privacy-article ul li {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .hero-title { font-size: 28px; }
  .hero-slogan { font-size: 20px; }
  .area-grid { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .section { padding: 40px 20px; }
  
  .privacy-article {
    padding: 90px 16px 40px;
  }
  .privacy-article h1 {
    font-size: 24px;
  }
  .privacy-article h2 {
    font-size: 18px;
  }
  .privacy-article p,
  .privacy-article ul li {
    font-size: 14px;
  }
}