:root {
  --primary: #b40000;
  --bg-dark: #0f0f0f;
  --bg-light: #1b1b1b;
  --text: #ffffff;
  --transition: all 0.3s ease;
  --header-height: 75px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}

body {
  background: #f8f8f8;
}

/* HEADER */
header {
  width: 100%;
  height: var(--header-height);
  background: var(--bg-dark);
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 60px; /* Sabit yükseklik — header yüksekliğiyle orantılı */
  width: auto; /* Genişlik oranı korur */
  object-fit: contain; /* Görsel taşmadan oturur */
  transition: transform 0.3s ease;
}

.logo img:hover {
  transform: scale(1.05); /* Hafif büyüme efekti */
}

@media (max-width: 768px) {
  .logo img {
    height: 50px; /* Mobilde biraz daha küçük */
  }
}

/* NAV */
nav {
  display: flex;
  align-items: center;
  gap: 35px;
}

nav a {
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  position: relative;
  transition: var(--transition);
}

nav a:hover {
  color: var(--primary);
}

/* --- DROPDOWN --- */
.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 225%;
  left: 0;
  background: var(--bg-light);
  border-radius: 0px;
  min-width: 200px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
}

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

.dropdown-menu a {
  display: block;
  padding: 12px 18px;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--transition);
}

.dropdown-menu a:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--primary);
}

.dropdown-menu a:last-child {
  border-bottom: none;
}

/* --- WHATSAPP BUTON --- */
.whatsapp-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: #fff;
  padding: 10px 18px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
}

.whatsapp-btn img {
  width: 18px;
  height: 18px;
}

.whatsapp-btn:hover {
  background: #700000;
  transform: scale(1.03);
}

/* --- HAMBURGER --- */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  z-index: 1100;
}

.menu-toggle span {
  width: 26px;
  height: 3px;
  background: #fff;
  border-radius: 2px;
  transition: var(--transition);
}

/* --- MOBILE NAV --- */
.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: var(--bg-dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  transform: translateY(-100%);
  transition: var(--transition);
  z-index: 1000;
  padding-top: 100px;
}

.mobile-nav.active {
  transform: translateY(0);
}

.close-btn {
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 2rem;
  color: #fff;
  background: none;
  border: none;
  cursor: pointer;
}

.mobile-nav a {
  color: #fff;
  font-size: 1.2rem;
  text-decoration: none;
  font-weight: 500;
  width: 80%;
  text-align: left;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mobile-nav .submenu {
  display: none;
  flex-direction: column;
  width: 75%;
  margin-left: 20px;
  border-left: 2px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav .submenu a {
  font-size: 1rem;
  padding: 10px 0;
  border: none;
}

.mobile-nav .submenu.active {
  display: flex;
}

.plus-btn {
  font-size: 1.5rem;
  cursor: pointer;
  user-select: none;
  transition: var(--transition);
}

.plus-btn.rotate {
  transform: rotate(45deg);
  color: var(--primary);
}

.mobile-whatsapp {
  margin-top: 40px;
  background-color: var(--primary);
  color: #fff;
  padding: 6px 14px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}

.mobile-whatsapp img {
  width: 20px;
  height: 20px;
}

.mobile-whatsapp:hover {
  background: #700000;
}

.mobile-whatsapp {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  width: 80%;
}

.mobile-whatsapp button {
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 14px 24px;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  width: 90%;
  transition: background 0.3s;
}

.mobile-whatsapp button:hover {
  background: #700000;
}

/* --- RESPONSIVE --- */
@media (max-width: 992px) {
  nav,
  .whatsapp-btn {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .logo {
    margin: 0 auto;
  }
}

.hero-slider {
  position: relative;
  width: 100%;
  height: 85vh;
  overflow: hidden;
}

.slides {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover; /* görsel kırpma azalsın */
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 1s ease, transform 3s ease;
}

.slide.active {
  opacity: 1;
  transform: scale(1);
  z-index: 2;
}

/* Arka plan karartması */
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

/* İçerik */
.content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 2;
  color: #fff;
  opacity: 0;
  animation: fadeUp 1.2s ease forwards;
}

.slide.active .content {
  opacity: 1;
}

.content h2 {
  font-size: 3rem;
  font-weight: 700;
  text-shadow: 0 3px 10px rgba(0, 0, 0, 0.5);
  margin-bottom: 15px;
}

.content p {
  font-size: 1.2rem;
  margin-bottom: 25px;
}

.btn {
  display: inline-block;
  background: #b40000;
  color: #ffffff;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.btn:hover {
  background: #fff;
  color: #000;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translate(-50%, -30%);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}

/* Kontroller */
.controls span {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 40px;
  color: #fff;
  cursor: pointer;
  padding: 10px;
  transition: 0.3s;
  z-index: 10;
}

.controls .prev {
  left: 25px;
}
.controls .next {
  right: 25px;
}

.controls span:hover {
  color: #b40000;
}

/* Noktalar */
.dots {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 5;
}

.dots span {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition: 0.3s;
}

.dots span.active {
  background: #b40000;
  transform: scale(1.2);
}

/* Mobil uyum */
@media (max-width: 768px) {
  .hero-slider {
    height: 70vh;
  }
  .content h2 {
    font-size: 2rem;
  }
  .content p {
    font-size: 1rem;
  }
  .btn {
    padding: 10px 22px;
  }
}

.categories {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  padding: 80px 6%;
  background: #f9f9f9;
}

.category {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  cursor: pointer;
  aspect-ratio: 1 / 1;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease;
}

.category:hover {
  transform: translateY(-5px);
}

.category img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.6s ease;
  border-radius: 18px;
}

.category:hover img {
  transform: scale(1.1);
  filter: blur(2px) brightness(0.6);
}

.category .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.25);
  opacity: 0;
  transition: 0.4s ease;
  border-radius: 18px;
}

.category:hover .overlay {
  opacity: 1;
}

.category .overlay span {
  color: #fff;
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.1);
  padding: 8px 16px;
  border-radius: 8px;
  backdrop-filter: blur(4px);
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .categories {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 700px) {
  .categories {
    grid-template-columns: repeat(2, 1fr);
    padding: 50px 5%;
  }

  .category .overlay span {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .categories {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .category {
    border-radius: 12px;
  }
}

.stats {
    background: linear-gradient(135deg, #111111, #000000);
    padding: 80px 20px;
    color: white;
    position: relative;
    overflow: hidden;
}

.stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255,255,255,0.03) 0%, transparent 70%);
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    position: relative;
    z-index: 2;
}

.stat-box {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.stat-box:hover {
    transform: translateY(-15px);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.stat-box i {
    font-size: 3.5rem;
    margin-bottom: 25px;
    background: linear-gradient(45deg, #b40000, #ff4d4d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.4s ease;
    filter: drop-shadow(0 2px 4px rgba(180, 0, 0, 0.3));
}

.stat-box:hover i {
    transform: scale(1.15) rotate(-5deg);
    filter: drop-shadow(0 4px 8px rgba(180, 0, 0, 0.5));
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin: 20px 0;
    background: linear-gradient(45deg, #ffffff, #cccccc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    display: inline-block;
}

.stat-number::after {
    content: '+';
    font-size: 1.5rem;
    position: absolute;
    top: 0;
    right: -20px;
    background: linear-gradient(45deg, #ffffff, #cccccc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-text {
    font-size: 1.2rem;
    color: #fff;
    opacity: 0.9;
    font-weight: 500;
    letter-spacing: 0.5px;
    margin-top: 10px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stat-box {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.stat-box:nth-child(1) { animation-delay: 0.1s; }
.stat-box:nth-child(2) { animation-delay: 0.3s; }
.stat-box:nth-child(3) { animation-delay: 0.5s; }
.stat-box:nth-child(4) { animation-delay: 0.7s; }

/* Mobil Uyumluluk */
@media (max-width: 992px) {
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .stat-box {
        padding: 25px 15px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-text {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .stats-container {
        grid-template-columns: 1fr;
        max-width: 320px;
    }
    
    .stats {
        padding: 60px 15px;
    }
    
    .stat-box {
        padding: 20px 15px;
    }
}

.projects {
  padding: 72px 0;
  background: linear-gradient(135deg, #111111, #000000);
  position: relative;
  overflow: hidden;
}

.project-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  padding: 0 20px;
}

/* Slider viewport: sabit yükseklik, responsive ile değişir */
.project-slider {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  width: 100%;
  height: 560px;
  background: #111;
}

/* Her slide üst üste biner */
.project-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transform: translateX(20px) scale(0.99);
  transition: opacity 0.6s cubic-bezier(.2,.9,.2,1), transform 0.6s cubic-bezier(.2,.9,.2,1);
  pointer-events: none;
  display: flex;
  align-items: stretch;
  justify-content: center;
}

/* Aktif slide görünür */
.project-slide.active {
  opacity: 1;
  transform: translateX(0) scale(1);
  pointer-events: auto;
  z-index: 2;
}

/* Görsel konteyneri */
.project-image {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

/* Resimler tam kapla, display:block ile alt boşluk sorununu çözer */
.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

/* Hover veya aktif slide içindeki hafif zoom */
.project-slide.active .project-image img:hover {
  transform: scale(1.03);
}

/* Yorum kutusu — görselin küçük kısmında görünür */
.project-review {
  position: absolute;
  bottom: 24px;
  right: 24px;
  width: 320px;
  max-width: calc(40% - 24px);
  background: rgba(0,0,0,0.72);
  color: #fff;
  padding: 16px;
  border-radius: 10px;
  backdrop-filter: blur(6px);
  transform: translateY(12px);
  opacity: 0;
  transition: transform 0.45s cubic-bezier(.2,.9,.2,1), opacity 0.45s;
  font-size: 14px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.35);
  line-height: 1.4;
}

/* Aktif slide olduğunda yorum kutusu görünür */
.project-slide.active .project-review {
  transform: translateY(0);
  opacity: 1;
}

/* Yorum içeriği */
.review-stars {
  color: var(--primary);
  font-size: 15px;
  margin-bottom: 8px;
  letter-spacing: 1px;
}
.review-text {
  color: #fff;
  margin-bottom: 10px;
  font-style: italic;
  font-size: 14px;
}
.review-author {
  color: var(--primary);
  font-weight: 600;
  font-size: 13px;
}

/* Navigasyon butonları */
.project-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.06);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 6;
  transition: background 0.25s ease, transform 0.15s ease;
  backdrop-filter: blur(4px);
}
.project-nav:hover { background: var(--primary); transform: translateY(-50%) scale(1.03); }
.project-nav.prev { left: 18px; }
.project-nav.next { right: 18px; }
.project-nav i { font-size: 18px; color: #fff; }

/* MOBILE: aktif slide görünür kalsın, yorum kutusu görselin ALTINDA yer alsın */
@media (max-width: 576px) {
  /* slider yüksekliği içeriğe göre */
  .project-slider {
    height: auto;
    padding-bottom: 8px;
  }

  /* tüm slide'lar içinde absolute yerine relative olacak şekilde yönetiliyor,
     ama sadece .active olan gösterilecek (diğerleri gizli) */
  .project-slide {
    position: relative;
    display: none;        /* diğer slide'lar gizli kalsın */
    width: 100%;
    height: auto;
    opacity: 1;
    transform: none;
    pointer-events: auto;
    margin-bottom: 12px;
  }

  /* aktif slide blok akışında görünsün */
  .project-slide.active {
    display: block;
  }

  /* resim doğal yüksekliğinde, slider içinde tam genişlik */
  .project-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    overflow: hidden;
  }

  .project-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
  }

  /* yorum kutusunu artık overlay değil, akış içinde alt kısımda göster */
  .project-review {
    position: relative;
    bottom: auto;
    right: auto;
    left: auto;
    transform: none;
    opacity: 1;
    width: calc(100% - 32px);
    max-width: none;
    margin: 12px 16px 0;
    background: rgba(0,0,0,0.82);
    box-shadow: none;
    padding: 14px;
    border-radius: 10px;
  }

  .review-text { font-size: 14px; line-height: 1.5; }
  .review-author { display: block; margin-top: 8px; font-size: 13px; }

  /* küçük buton ayarları */
  .project-nav { width: 40px; height: 40px; }
}

/* Küçük "Tüm Projelerimizi Gör" butonu */
.projects-cta {
  max-width: 1200px;
  margin: 18px auto 48px;
  padding: 0 20px;
  display: flex;
  justify-content: center;
}

.btn-small {
  display: inline-block;
  padding: 8px 14px;
  font-size: 14px;
  color: #fff;
  background: var(--primary, #b40000);
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(180,0,0,0.12);
  transition: transform .12s ease, box-shadow .12s ease, opacity .12s;
  border: 1px solid rgba(255,255,255,0.06);
}

.btn-small:hover,
.btn-small:focus {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(180,0,0,0.16);
  opacity: 0.98;
}

/* Mobilde biraz daha küçük */
@media (max-width: 576px) {
  .projects-cta { margin: 12px auto 28px; }
  .btn-small { padding: 7px 12px; font-size: 13px; border-radius: 7px; }
}

/* ===== Hakkımızda ===== */
.about {
  background: #fff;
  padding: 80px 0 70px;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: center;
}

.about-media { position: relative; }

.about-photo.main img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
  border-radius: 16px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.15);
}

.about-photo.small {
  position: absolute;
  left: -18px;
  bottom: -24px;
  width: 40%;
  aspect-ratio: 4/3;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(0,0,0,0.18);
  border: 6px solid #fff;
}
.about-photo.small img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}

.about-badge {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,0,0,0.74);
  color: #fff;
  padding: 10px 14px;
  border-radius: 999px;
  backdrop-filter: blur(6px);
  font-size: 14px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}
.about-badge i { color: var(--primary, #b40000); }
.badge-top { top: 16px; left: 16px; }
.badge-bottom { right: 16px; bottom: 16px; }

.about-content h2 {
  font-size: 32px;
  margin: 0 0 14px;
}
.about-content p {
  color: #3c3c3c;
  line-height: 1.7;
  margin-bottom: 16px;
}

.about-list { list-style: none; padding: 0; margin: 0 0 18px; }
.about-list li {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 8px; color: #222;
}
.about-list i { color: var(--primary, #b40000); }

.about-features {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 12px;
  margin: 18px 0 8px;
}
.feature {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  padding: 14px 10px;
  border: 1px solid #eee;
  border-radius: 10px;
  background: #fafafa;
  transition: transform .15s ease, background .15s ease;
}
.feature i { color: var(--primary, #b40000); font-size: 18px; }
.feature span { font-size: 13px; color: #222; }
.feature:hover { transform: translateY(-2px); background: #fff; }

.about-cta { display: flex; align-items: center; gap: 12px; margin-top: 16px; }
.btn-link {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--primary, #b40000); text-decoration: none; font-weight: 600;
}
.btn-link:hover { text-decoration: underline; }

.about-highlights {
  max-width: 1200px;
  margin: 28px auto 0;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 16px;
}
.highlight {
  border: 1px solid #eee; border-radius: 12px; padding: 18px;
  background: #fafafa;
  display: grid; gap: 6px; justify-items: start;
}
.highlight i { color: var(--primary, #b40000); font-size: 20px; }
.highlight h4 { margin: 4px 0; font-size: 16px; }
.highlight p { margin: 0; color: #3c3c3c; font-size: 14px; }

/* Responsive */
@media (max-width: 992px) {
  .about-container { grid-template-columns: 1fr; gap: 28px; }
  .about-photo.main img { height: 420px; }
  .about-photo.small { left: 12px; bottom: -18px; width: 46%; }
  .about-features { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 576px) {
  .about { padding: 64px 0 56px; }
  .about-photo.main img { height: 300px; }
  .about-photo.small {
    position: static;
    width: 100%;
    border: none;
    border-radius: 12px;
    margin-top: 12px;
  }
  .about-badge { font-size: 13px; padding: 8px 12px; }
  .about-features { grid-template-columns: repeat(2, 1fr); }
  .about-highlights { grid-template-columns: 1fr; }
}

/* ===== FAQ (Sıkça Sorulan Sorular) ===== */
.faq { background:#fff; padding:72px 0; }
.faq-container {
  max-width:1200px; margin:0 auto; padding:0 20px;
  display:grid; grid-template-columns:1.1fr 1fr; gap:40px; align-items:center;
}

.faq-media { position:relative; }
.faq-media img {
  width:100%; height:460px; object-fit:cover; display:block;
  border-radius:16px; box-shadow:0 16px 40px rgba(0,0,0,.12);
}
.faq-badge {
  position:absolute; left:16px; top:16px; display:inline-flex; gap:8px; align-items:center;
  background:rgba(0,0,0,.72); color:#fff; padding:10px 14px; border-radius:999px; backdrop-filter:blur(6px); font-size:14px;
}
.faq-badge i { color:var(--primary, #b40000); }

.faq-content h2 { font-size:32px; margin:0 0 10px; }
.faq-intro { color:#3c3c3c; margin:0 0 18px; }

.faq-list { display:grid; gap:10px; }
.faq-item { background:#fafafa; border:1px solid #eee; border-radius:12px; overflow:hidden; }
.faq-question {
  width:100%; display:flex; align-items:center; gap:12px; justify-content:space-between;
  padding:14px 16px; background:transparent; border:none; cursor:pointer; color:#111; font-weight:600; text-align:left;
}
.faq-question i { color:var(--primary, #b40000); width:22px; }
.faq-question .chevron { margin-left:auto; color:#666; transition:transform .2s ease; }
.faq-item.open .chevron { transform:rotate(180deg); }
.faq-question:focus-visible { outline:3px solid rgba(180,0,0,.35); outline-offset:2px; border-radius:10px; }

.faq-answer {
  height:0; overflow:hidden;
  transition:height .28s ease, opacity .28s ease, transform .28s ease;
  opacity:0; transform:translateY(-4px);
}
.faq-item.open .faq-answer { opacity:1; transform:translateY(0); }
.faq-answer p { padding:0 16px 14px; margin:0; color:#333; line-height:1.6; }

.faq-cta { margin-top:16px; display:flex; gap:12px; align-items:center; }
.faq-cta .btn-link { display:inline-flex; align-items:center; gap:8px; color:var(--primary, #b40000); font-weight:600; text-decoration:none; }
.faq-cta .btn-link:hover { text-decoration:underline; }

@media (max-width: 992px) {
  .faq-container { grid-template-columns:1fr; gap:24px; }
  .faq-media img { height:360px; }
}
@media (max-width: 576px) {
  .faq { padding:56px 0; }
  .faq-media img { height:240px; }
  .faq-question { padding:12px 14px; }
  .faq-answer p { padding:0 14px 12px; }
}

/* ===== Footer (Gelişmiş Hizalama & Mobil Ortalı) ===== */
.site-footer {
  background: linear-gradient(180deg, #0d0d0d 0%, #000 100%);
  color: #ddd;
  padding: 60px 0 0;
  position: relative;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px 40px;
  display: grid;
  grid-template-columns: 1.3fr 0.9fr 1fr 1.2fr;
  gap: 36px;
  align-items: start;
}

/* Brand column */
.footer-col.brand {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-logo {
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  margin: 0;
  letter-spacing: 0.3px;
}

.footer-col.brand p {
  color: #b8b8b8;
  line-height: 1.7;
  margin: 0;
  font-size: 15px;
}

/* Sosyal medya butonları - modern glassmorphism */
.social {
  display: flex;
  gap: 12px;
  margin-top: 6px;
}

.social a {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 18px;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.social a::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--primary, #b40000), #ff4d4d);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.social a:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 8px 24px rgba(180, 0, 0, 0.35);
  border-color: transparent;
}

.social a:hover::before {
  opacity: 1;
}

/* Diğer sütunlar */
.footer-col h4 {
  color: #fff;
  font-size: 17px;
  font-weight: 600;
  margin: 0 0 16px;
  position: relative;
  padding-bottom: 8px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 2px;
  background: var(--primary, #b40000);
  border-radius: 2px;
}

/* Links */
.footer-col.links ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col.links a {
  color: #c8c8c8;
  text-decoration: none;
  font-size: 15px;
  transition: all 0.2s ease;
  display: inline-block;
}

.footer-col.links a:hover {
  color: #fff;
  padding-left: 6px;
}

/* Contact */
.footer-col.contact ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col.contact li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: #c8c8c8;
  font-size: 15px;
}

.footer-col.contact i {
  color: var(--primary, #b40000);
  font-size: 16px;
  margin-top: 3px;
  min-width: 18px;
}

.footer-col.contact a {
  color: #c8c8c8;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-col.contact a:hover {
  color: #fff;
}

/* Map */
.footer-col.map {
  display: flex;
  flex-direction: column;
}

.footer-map {
  width: 100%;
  height: 200px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.map-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  color: #fff;
  font-size: 14px;
  text-decoration: none;
  opacity: 0.85;
  transition: opacity 0.2s ease;
}

.map-link:hover {
  opacity: 1;
}

/* Footer bottom */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: #999;
  font-size: 14px;
}

.footer-bottom a {
  color: #c8c8c8;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-bottom a:hover {
  color: #fff;
}

.footer-bottom .mini-links {
  display: flex;
  gap: 16px;
}

/* Responsive - Tablet */
@media (max-width: 992px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .footer-col.brand {
    grid-column: 1 / -1;
    text-align: center;
    align-items: center;
  }

  .social {
    justify-content: center;
  }

  .footer-col h4::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-col.links,
  .footer-col.contact {
    text-align: center;
    align-items: center;
  }

  .footer-col.links ul,
  .footer-col.contact ul {
    align-items: center;
  }

  .footer-col.contact li {
    justify-content: center;
  }
}

/* Responsive - Mobile */
@media (max-width: 576px) {
  .site-footer {
    padding: 48px 0 0;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 28px;
    text-align: center;
  }

  .footer-col {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-logo {
    font-size: 20px;
  }

  .footer-col.brand p {
    font-size: 14px;
  }

  .social {
    justify-content: center;
  }

  .footer-col h4 {
    text-align: center;
  }

  .footer-col h4::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-col.links ul,
  .footer-col.contact ul {
    align-items: center;
  }

  .footer-col.contact li {
    justify-content: center;
  }

  .footer-col.links a:hover {
    padding-left: 0;
  }

  .footer-map {
    height: 180px;
  }

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

  .footer-bottom .mini-links {
    flex-wrap: wrap;
    justify-content: center;
  }
}
.social a {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 18px;
  text-decoration: none; /* Alt çizgiyi kaldırır */
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

/* Footer bottom hizalama düzeltmesi */
.footer-bottom {
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: #999;
  font-size: 14px;

  /* sayfa ile aynı genişlikte ortala */
  max-width: 1200px;
  margin: 0 auto;
}

.footer-bottom .mini-links { display: flex; gap: 16px; }
.footer-bottom a { color: #c8c8c8; text-decoration: none; }
.footer-bottom a:hover { color: #fff; }

/* Mobilde ortaya hizala */
@media (max-width: 576px) {
  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
    padding: 16px 20px;
  }
}

.footer-map-embed {
  width: 100%;
  height: 180px;
  min-height: 220px;
  border: 0;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,.4);
  background: #0f0f0f;
}

@media (max-width: 576px) {
  .footer-map-embed { height: 180px; }
}

/* ===== Projeler – Listeleme sayfası ===== */
.projects-page { padding: 64px 0 40px; background:#fff; }
.projects-wrap { max-width: 1200px; margin: 0 auto; padding: 0 20px; margin-top: 2%; }

.projects-header h1 { margin: 0 0 6px; font-size: 30px; }
.projects-header p { margin: 0 0 14px; color:#4a4a4a; }

.projects-filters { display: flex; flex-wrap: wrap; gap: 8px; margin: 10px 0 18px; }
.filter-btn {
  height: 34px; padding: 0 14px; border-radius: 999px; border:1px solid #e6e6e6;
  background:#fafafa; color:#111; cursor:pointer; font-weight:600; font-size:14px;
  transition: all .18s ease;
}
.filter-btn:hover { background:#fff; transform: translateY(-1px); }
.filter-btn.active { background: var(--primary, #b40000); border-color: var(--primary, #b40000); color:#fff; }

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
@media (max-width: 992px) {
  .projects-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 576px) {
  .projects-grid { grid-template-columns: 1fr; }
}

.project-card {
  background:#fff; border:1px solid #eee; border-radius: 14px; overflow: hidden;
  display: flex; flex-direction: column; transition: box-shadow .18s ease, transform .18s ease;
}
.project-card:hover { transform: translateY(-2px); box-shadow: 0 14px 34px rgba(0,0,0,.08); }

.project-media { position: relative; aspect-ratio: 4/3; background:#f3f3f3; }
.project-media img { width:100%; height:100%; object-fit:cover; display:block; }
.project-media .badge {
  position: absolute; left: 12px; top: 12px; padding: 6px 10px; font-size: 12px;
  background: rgba(0,0,0,.72); color:#fff; border-radius: 999px; backdrop-filter: blur(6px);
}

.project-body { padding: 14px; display: grid; gap: 8px; }
.project-body h3 { font-size: 16px; margin: 0; }
.project-body p { margin: 0; color:#444; line-height: 1.55; }
.project-body .meta { display:flex; gap:12px; color:#666; font-size:13px; }
.project-body .meta i { color: var(--primary, #b40000); }

.project-card.hidden { display: none; }

.projects-actions { display:flex; justify-content:center; margin-top: 16px; }
.btn-small.outline {
  background: transparent; color: var(--primary, #b40000);
  border:1px solid var(--primary, #b40000);
}
.btn-small.outline:hover { background: var(--primary, #b40000); color:#fff; }




