html {
  scroll-behavior: smooth; /* Menü linklerine tıklayınca yumuşak kaydırma sağlar */
}

/* Genel Sayfa Stilleri */
* {
  box-sizing: border-box; /* Tüm elementlerin kutu modelini daha öngörülebilir yapar */
}

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  background-color: #f8f9fa; /* Daha açık ve modern bir arka plan */
  color: #343a40; /* Daha koyu ve okunaklı metin rengi */
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  color: #212529; /* Başlıklar için koyu renk */
  margin-bottom: 15px;
}

h2 { font-size: 2.5em; } /* H2 başlıkları daha belirgin */

.container {
  max-width: 1280px; /* İçeriğin maksimum genişliğini sınırlar */
  width: 90%; /* Ekran küçüldükçe kenarlara olan mesafeyi azaltır */
  margin: auto;
  /* overflow: hidden; */ /* Genellikle artık gerekli değil */
  padding: 0 20px;
}

/* Top Bar */
.top-bar {
  background-color: #111827; /* Koyu Lacivert */
  padding: 8px 0;
  font-size: 14px;
}

.top-bar-contact {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap; /* Mobilde alt satıra inmesi için */
  gap: 10px 20px; /* Dikey ve yatay boşluklar */
}

.top-bar-contact a {
  color: #D1D5DB; /* Gri tonu */
  text-decoration: none;
  transition: color 0.3s ease;
}

.top-bar-contact a:hover { color: #fff; }
.top-bar-contact a i { margin-right: 6px; }

/* Header */
header {
  background: rgba(17, 24, 39, 0.85); /* Yarı saydam Koyu Lacivert */
  backdrop-filter: blur(10px); /* Buzlu cam efekti */
  -webkit-backdrop-filter: blur(10px); /* Safari uyumluluğu için */
  color: #fff;
  padding: 15px 0;
  min-height: auto;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1); /* Daha ince bir ayırıcı */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  position: sticky; /* Sayfa kaydırıldığında yapışkan olması için */
  top: 0;
  z-index: 999;
  transition: padding 0.3s ease, box-shadow 0.3s ease;
}

header.scrolled {
  padding: 10px 0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

header .logo {
  margin: 0;
}

header .logo img {
  height: 60px; /* Logonuzun yüksekliğini buradan ayarlayabilirsiniz */
  width: auto;
  display: block;
  transition: height 0.3s ease;
}

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

header.scrolled .logo img {
  height: 45px; /* Sayfa kaydırıldığında logonun yüksekliği */
}

header .main-nav ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

header .main-nav ul li {
  display: inline;
  margin-left: 25px;
}

header .main-nav a {
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 700;
  padding-bottom: 5px;
  position: relative;
  transition: color 0.3s ease;
}

header .main-nav a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background-color: #42A5F5; /* Ana Mavi */
  transition: width 0.3s ease;
}

header .main-nav a:hover::after,
header .main-nav a.active::after {
  width: 100%;
}

/* Aktif menü linki stili */
header .main-nav a.active {
  color: #42A5F5; /* Ana Mavi */
}

/* Hamburger Menu */
.hamburger-menu {
  display: none; /* Başlangıçta gizli */
  background: none;
  border: none;
  font-size: 1.8em;
  color: #fff;
  cursor: pointer;
  z-index: 1001;
}

/* Hero Slider Alanı */
#hero-slider .swiper {
  width: 100%;
  height: 600px; /* Slider yüksekliği */
}

#hero-slider .swiper-slide {
  text-align: center;
  font-size: 18px;
  background-color: #333;
  display: flex;
  justify-content: center;
  align-items: center;
  background-size: cover;
  background-position: center;
}

#hero-slider .swiper-slide::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6); /* Arka plan resmini koyulaştıran katman */
}

#hero-slider .slide-content {
  position: relative; /* Katmanın üzerinde kalması için */
  z-index: 10;
  max-width: 800px;
  color: #fff;
}

#hero-slider .slide-content h2 {
  font-size: 3.5em;
  margin-bottom: 10px;
  color: #fff;
}

#hero-slider .slide-content p {
  font-size: 1.3em;
}

/* Slider Navigasyon ve Pagination Renkleri */
:root {
  --swiper-navigation-color: #fff;
  --swiper-pagination-color: #fff;
  --swiper-pagination-bullet-inactive-color: #fff;
  --swiper-pagination-bullet-inactive-opacity: 0.5;
}

/* Harekete Geçirici Mesaj Butonu (CTA) */
.cta-button {
  display: inline-block;
  margin-top: 20px;
  padding: 15px 30px;
  background-color: #42A5F5; /* Ana Mavi */
  color: #fff;
  font-size: 1.1em;
  font-weight: 700;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}
.cta-button:hover { background-color: #1976D2; transform: scale(1.05); } /* İç Koyu Mavi */

/* Hizmetler Bölümü */
#hizmetler {
  padding: 40px 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  justify-content: center; /* Kartları ortalar ve son satırın genişlemesini engeller */
  gap: 30px; /* Boşluk artırıldı */
  margin-top: 20px;
}

.service-item, a.service-item {
  text-decoration: none; /* Link alt çizgisini kaldır */
  background: #fff;
  padding: 40px 20px; /* İç boşluk artırıldı */
  border-radius: 8px; /* Daha yuvarlak köşeler */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08); /* Daha belirgin gölge */
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease; /* Hover efekti için geçiş */
  display: block; /* a etiketinin div gibi davranmasını sağlar */
}

.service-item:hover {
  transform: translateY(-5px); /* Hafif yukarı kayma */
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15); /* Daha belirgin gölge */
}

.service-item i {
  font-size: 3em; /* İkon boyutu */
  color: #42A5F5; /* Ana Mavi */
  margin-bottom: 15px;
  transition: transform 0.3s ease-in-out; /* Animasyon için yumuşak geçiş */
}

.service-item:hover i {
  transform: scale(1.1) translateY(-5px); /* İkonu hafifçe büyüt ve yukarı kaldır */
}

.service-item h3 {
  font-size: 1.5em;
  color: #212529; /* Başlık rengi koyulaştırıldı */
  margin-top: 0;
  margin-bottom: 10px;
}

.service-item p {
  font-size: 0.95em;
  color: #757575; /* Alt Yazı Gri */
  padding: 0 15px;
}

/* Neden Biz Bölümü */
#neden-biz {
  padding: 40px 0;
  text-align: center;
}

#neden-biz p {
  font-size: 1.2em;
  margin-bottom: 10px;
}

#neden-biz i {
  color: #28a745; /* Başarı/onay rengi (yeşil) */
  margin-right: 10px;
}

/* Hizmet Bölgeleri Bölümü */
#hizmet-bolgeleri {
  padding: 60px 0;
  text-align: center;
   background-color: #fff; /* Temiz beyaz arka plan */
}

#hizmet-bolgeleri h2 {
  color: #212529;
  margin-bottom: 40px;
}

.location-tag {
  background-color: #fff;
  border: 1px solid #ECEFF1;
  color: #343a40;
  padding: 20px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.location-tag:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  border-color: #42A5F5; /* Ana Mavi */
}

#hizmet-bolgeleri .section-subtitle {
  margin-bottom: 25px;
}

/* Hakkımızda Bölümü */
#hakkimizda {
  padding: 40px 0;
  text-align: center;
  background-color: #f8f9fa; /* Arka plan rengi */
}

.vision-mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  text-align: left;
}

.vision-mission-item {
  background: #fff;
  padding: 30px;
  border-radius: 8px;
  border-left: 5px solid #42A5F5;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.vision-mission-item i {
  font-size: 2.5em;
  color: #42A5F5;
  margin-bottom: 15px;
}

.vision-mission-item h3 {
  font-size: 1.5em;
  margin-bottom: 10px;
}

.vision-mission-item p {
  color: #757575;
}

/* Avantajlar Bölümü */
#avantajlar {
  padding: 40px 0;
  text-align: center;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.feature-item {
  background: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.feature-item i {
  font-size: 2.5em;
  color: #42A5F5; /* Ana Mavi */
  margin-bottom: 15px;
  transition: transform 0.3s ease-in-out;
}

.feature-item:hover i {
  transform: scale(1.1);
}

.feature-item h3 {
  font-size: 1.4em;
  margin-bottom: 10px;
}

.feature-item p {
  color: #757575; /* Alt Yazı Gri */
}

/* Referanslar Bölümü */
#projelerimiz {
  padding: 40px 0;
  text-align: center;
  background-color: #f8f9fa; /* Arka plan rengi */
}

.references-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  justify-content: center; /* Kartları ortalar ve son satırın genişlemesini engeller */
  gap: 30px;
  align-items: center;
  margin-top: 30px;
}

.reference-item, figure.reference-item {
  margin: 0; /* figure etiketinin varsayılan margin'ini sıfırla */
  background: #fff;
  border: 1px solid #B0BEC5; /* Metalik Gümüş/Gri */
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 200px; /* Kutucuklara sabit bir yükseklik vererek kare görünümü sağlar */
  padding: 15px;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.reference-item:hover {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  border-color: #fff;
}

.reference-item img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain; /* Görüntüyü bozmadan kutuya sığdırır */
  filter: grayscale(100%); /* Logoları siyah-beyaz yapar */
  opacity: 0.7;
  transition: filter 0.3s ease, opacity 0.3s ease;
  cursor: pointer; /* Tıklanabilir olduğunu belirtir */
}

.reference-item img:hover {
  filter: grayscale(0%); /* Hover'da orijinal renklere döner */
  opacity: 1;
}

/* Lightbox (Modal) Stilleri */
.lightbox {
  display: none; /* Başlangıçta gizli */
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.85);
  justify-content: center;
  align-items: center;
  animation: fadeIn 0.4s;
}

.lightbox-content {
  max-width: 90%;
  max-height: 80%;
  animation: zoomIn 0.4s;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 35px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
  cursor: pointer;
}

.lightbox-close:hover {
  color: #bbb;
}

@keyframes fadeIn { from {opacity: 0;} to {opacity: 1;} }
@keyframes zoomIn {
  from {transform: scale(0.8);}
  to {transform: scale(1);}
}

/* SSS (FAQ) Bölümü */
#sss {
  padding: 40px 0;
}

#sss h2 {
  text-align: center;
  margin-bottom: 30px;
}

.faq-accordion {
  max-width: 800px;
  margin: auto;
}

.faq-item {
  background: #fff;
  margin-bottom: 10px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.2em;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question::after {
  content: '\f067'; /* Font Awesome plus icon */
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  transition: transform 0.3s ease;
}

.faq-question.active::after {
  transform: rotate(135deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
  padding: 0 20px;
}
.faq-answer p { padding-bottom: 20px; }

/* İletişim Bölümü */
#iletisim {
  padding: 40px 0;
  text-align: center;
  background: #f8f9fa; /* Arka plan rengi */
  border-top: 1px solid #CFD8DC; /* Metalik Gri'nin daha açığı */
}

.section-subtitle {
  font-size: 1.1em;
  color: #757575; /* Alt Yazı Gri */
  max-width: 700px;
  margin: 0 auto 40px auto;
}

.contact-wrapper {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.contact-person-row {
  background: #fff;
  padding: 20px 30px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 700px; /* Satırların çok fazla genişlemesini engeller */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-person-row:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.contact-person-details {
  text-align: left;
}

.contact-person-row h3 {
  font-size: 1.5em;
  margin-top: 0;
  margin-bottom: 5px;
  color: #212529;
}

.contact-person-row p {
  font-size: 1.2em;
  color: #757575; /* Alt Yazı Gri */
  margin-top: 0;
  margin-bottom: 0;
}

.whatsapp-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 25px;
  background-color: #25d366;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 700;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.whatsapp-button:hover {
  background-color: #1da851;
  transform: scale(1.05);
}

.whatsapp-button i {
  font-size: 1.4em;
  margin-right: 10px;
}
@media (max-width: 768px) {
  .contact-person-row {
    flex-direction: column;
    text-align: center;
  }
  .contact-person-details { margin-bottom: 20px; }
}

/* Scroll Animasyon Stilleri */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
/* Gecikmeli animasyonlar için sınıflar */
.animate-on-scroll.delay-1 { transition-delay: 0.1s; }
.animate-on-scroll.delay-2 { transition-delay: 0.2s; }
.animate-on-scroll.delay-3 { transition-delay: 0.3s; }
.animate-on-scroll.delay-4 { transition-delay: 0.4s; }
.animate-on-scroll.delay-5 { transition-delay: 0.5s; }

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Menü açıkken sayfanın geri kalanını karartmak için overlay */
body.menu-open::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 999; /* Menünün arkasında, sayfanın önünde */
  opacity: 1;
  transition: opacity 0.4s ease;
}



/* Footer */
footer {
  background-color: #263238; /* Yeni Koyu Renk (Mavi Gri) */
  color: #B0BEC5; /* Metalik Gümüş/Gri */
  padding: 25px 0;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.footer-content p {
  margin: 0;
}

.social-links a {
  color: #B0BEC5; /* Metalik Gümüş/Gri */
  font-size: 1.3em;
  text-decoration: none;
  margin-left: 15px;
  transition: color 0.3s ease, transform 0.3s ease;
  display: inline-block;
}

.social-links a:hover {
  color: #fff;
  transform: scale(1.2);
}

/* CTA Banner */
#cta-banner {
  background: #263238;
  color: #fff;
  padding: 60px 0;
  text-align: center;
}

#cta-banner h2 {
  color: #fff;
  font-size: 2.5em;
  margin-bottom: 10px;
}

#cta-banner p {
  font-size: 1.2em;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 25px;
}



/* Yukarı Çık Butonu */
.back-to-top {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background-color: #42A5F5; /* Ana Mavi */
  color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5em;
  text-decoration: none;
  opacity: 0; /* Başlangıçta gizli */
  visibility: hidden;
  transition: opacity 0.4s, visibility 0.4s, background-color 0.3s;
  z-index: 998;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background-color: #1976D2; /* İç Koyu Mavi */
}

/* İç Sayfa Stilleri */
.page-header {
  background: linear-gradient(rgba(38, 50, 56, 0.7), rgba(38, 50, 56, 0.7)), url('https://images.pexels.com/photos/7172633/pexels-photo-7172633.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=2') no-repeat center center/cover;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 20px;
}

.page-header h1 {
  font-size: 3em;
  color: #fff;
  margin-bottom: 10px;
}

.page-header p {
  font-size: 1.2em;
  color: rgba(255, 255, 255, 0.8);
}

.page-content { padding: 60px 0; }
.page-content h2 { font-size: 2.2em; border-bottom: 2px solid #42A5F5; padding-bottom: 10px; margin-top: 40px; }
.page-content p { color: #757575; font-size: 1.1em; line-height: 1.8; }

.location-pills { display: flex; flex-wrap: wrap; gap: 10px; padding: 15px 0; }
.location-pills span { background: #ECEFF1; padding: 8px 15px; border-radius: 20px; font-size: 0.9em; font-weight: 600; }

.service-list { list-style: none; padding: 0; }
.service-list li { background: #fff; margin-bottom: 10px; padding: 15px; border-left: 5px solid #42A5F5; border-radius: 5px; font-size: 1.1em; box-shadow: 0 2px 5px rgba(0,0,0,0.05); }
.service-list li i { margin-right: 10px; color: #42A5F5; }

.intro-section {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 40px;
}

.intro-image img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.camera-solutions .feature-item {
  text-align: center;
}




/* Responsive Ayarlamalar */
@media (max-width: 768px) {
  .container {
    width: 95%;
  }

  .hamburger-menu {
    display: block;
  }

  header .main-nav {
    position: fixed;
    top: 0;
    right: 0;
    transform: translateX(100%); /* Başlangıçta ekranın dışında */
    width: 80%;
    max-width: 320px; /* Menünün çok geniş olmasını engelle */
    height: 100vh;
    background-color: #111827; /* Koyu Lacivert (Header ile uyumlu) */
    padding-top: 100px;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94); /* Daha yumuşak bir geçiş */
    box-shadow: -5px 0 15px rgba(0,0,0,0.2);
    z-index: 1000; /* Hamburger menüden (1001) hemen sonra gelmeli */
  }

  header .main-nav.open {
    transform: translateX(0); /* Açıldığında ekranın içine gelir */
  }

  header .main-nav ul {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  header .main-nav ul li {
    margin: 0;
    width: 100%;
    text-align: center;
    opacity: 0; /* Başlangıçta gizli */
    transform: translateY(15px); /* Aşağıdan gelecek */
    transition: opacity 0.3s ease-out 0.2s, transform 0.3s ease-out 0.2s; /* Gecikmeli animasyon */
  }

  header .main-nav.open ul li {
    opacity: 1; /* Menü açılınca görünür yap */
    transform: translateY(0); /* Orijinal pozisyonuna getir */
  }

  header .main-nav a {
    color: #fff;
    display: block;
    padding: 20px;
    transition: background-color 0.2s ease;
  }

  #hero-slider .swiper { height: 400px; }
  #hero-slider .slide-content h2 { font-size: 2.2em; }
  #hero-slider .slide-content p { font-size: 1em; margin-bottom: 15px; }
  .services-grid {
    grid-template-columns: 1fr; /* Mobilde tek sütun */
  }

  /* Genel başlık ve metin boyutları */
  h2 { font-size: 2em; }
  .section-subtitle { font-size: 1em; }

  /* Header ve Navigasyon */
  header .logo img { height: 45px; } /* Mobil logoyu biraz küçült */
  header.scrolled .logo img { height: 35px; } /* Kaydırıldığında daha da küçült */
  header .main-nav { padding-top: 80px; } /* Mobil menü padding'i */
  header .main-nav a { padding: 15px; font-size: 15px; } /* Mobil menü linkleri */

  /* Hero Slider */
  #hero-slider .swiper { height: 350px; }
  #hero-slider .slide-content h2 { font-size: 1.8em; }
  #hero-slider .slide-content p { font-size: 0.9em; }
  .cta-button { padding: 12px 25px; font-size: 1em; }

  /* Hizmetler */
  .service-item { padding: 30px 15px; }
  .service-item h3 { font-size: 1.3em; }
  .service-item p { font-size: 0.9em; }

  /* Hizmet Bölgeleri */
  .location-tag { padding: 15px; font-size: 1em; }

  /* Hakkımızda */
  .vision-mission-grid { grid-template-columns: 1fr; }
  .vision-mission-item { padding: 25px; }
  .vision-mission-item h3 { font-size: 1.3em; }

  /* Avantajlar */
  .features-grid { grid-template-columns: 1fr; }
  .feature-item { padding: 25px; }
  .feature-item h3 { font-size: 1.3em; }

  /* Projelerimiz */
  .references-grid { grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); }
  .reference-item { height: 150px; }

  /* SSS */
  .faq-question { font-size: 1em; padding: 15px; }
  .faq-answer p { font-size: 0.95em; padding-bottom: 15px; }

  /* İletişim */
  .contact-person-row { flex-direction: column; text-align: center; padding: 20px; }
  .contact-person-details { margin-bottom: 15px; }
  .contact-person-row h3 { font-size: 1.3em; }
  .contact-person-row p { font-size: 1.1em; }
  .whatsapp-button { font-size: 1em; padding: 10px 20px; }

  /* CTA Banner */
  #cta-banner h2 { font-size: 2em; }
  #cta-banner p { font-size: 1em; }

  /* Footer */
  .footer-content { flex-direction: column; text-align: center; }
  .footer-content p { margin-bottom: 10px; }
  .social-links { margin-top: 10px; }
  .social-links a { margin: 0 8px; }

  /* İç Sayfalar */
  .page-header h1 {
    font-size: 2.2em;
  }
  .page-content {
    padding: 40px 0;
  }
  .intro-section {
    grid-template-columns: 1fr;
  }
  .pricing-cta-section {
    text-align: center;
  }
  .vision-mission-grid {
    grid-template-columns: 1fr;
  }
  .service-list li {
    font-size: 1em;
    padding: 12px;
  }
}