/* ---------- style.css ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  position: relative;
  padding-top: 70px;
  background-color: #fdfdfd; /* Neredeyse beyaz arkaplan */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 40 40'%3E%3Cg fill-rule='evenodd'%3E%3Cg fill='%23e0e0e0' fill-opacity='0.08'%3E%3Cpath d='M0 38.59l2.83-2.83 1.41 1.41L1.41 40H0v-1.41zM0 1.4l2.83 2.83 1.41-1.41L1.41 0H0v1.41zM38.59 40l-2.83-2.83 1.41-1.41L40 38.59V40h-1.41zM40 1.41l-2.83 2.83-1.41-1.41L38.59 0H40v1.41zM20 18.6l2.83-2.83 1.41 1.41L21.41 20l2.83 2.83-1.41 1.41L20 21.41l-2.83 2.83-1.41-1.41L18.59 20l-2.83-2.83 1.41-1.41L20 18.59z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

/* Arka planda tow-truck ikonu özelliğini kaldırabilirsiniz */
body::before {
  display: none;
}

/* Header - Siyah-beyaz tasarım */
header {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.9); /* Siyah header */
  background-image: none;
  color: #fff;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

/* Header içeriği için iyileştirmeler */
header .container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 1rem;
}

/* Header başlık dikdörtgeni */
header h1 {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-shadow: none;
  background: rgba(255, 255, 255, 0.1); /* Hafif beyaz arka plan */
  padding: 8px 16px;
  border-radius: 8px;
  border-left: 4px solid #fff; /* Beyaz çizgi */
  box-shadow: 0 2px 10px rgba(0,0,0,0.15);
  transition: all 0.3s ease;
}

header h1:hover {
  background: rgba(230, 57, 70, 0.25);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.header-actions {
  display: flex;
  gap: 10px;
}

/* Header butonları için ikon düzenlemesi - Daha belirgin */
.action-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 3px 6px rgba(0,0,0,0.16);
}

.action-btn i.icon {
  font-size: 18px;
  margin-right: 8px;
}

/* Arama butonunu daha göze çarpıcı yapma */
.call-btn {
  background-color: #000; /* Siyah buton */
  color: white;
  border: 1px solid #fff;
  animation: none; /* Pulse animasyonunu kaldır */
  font-weight: 700;
  letter-spacing: 0.5px;
}

.whatsapp-btn {
  background-color: #333; /* Koyu gri */
  color: white;
  font-weight: 700;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(40, 167, 69, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(40, 167, 69, 0);
  }
}

/* Modal */
.modal {
  display: none;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.7);
  z-index: 2000;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modal-content {
  background: #fff;
  padding: 3rem;
  border-radius: 12px;
  text-align: center;
  max-width: 400px;
  width: 90%;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* Modal siyah-beyaz tasarım */
.modal-content .modal-icon {
  font-size: 3rem;
  color: #000;
  margin-bottom: 1rem;
}

.modal-content h2 {
  color: #333;
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
}

.modal-content p {
  color: #666;
  margin-bottom: 2rem;
}

.modal-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.modal-btn {
  padding: 12px 24px;
  border-radius: 50px;
  border: none;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}

.yes-btn {
  background-color: #000;
  color: white;
}

.no-btn {
  background-color: #f8f9fa;
  color: #000;
  border: 1px solid #000;
}

.yes-btn:hover {
  background-color: #333;
}

.no-btn:hover {
  background-color: #e2e6ea;
}

/* Hero bölümü - siyah-beyaz tasarım */
.hero {
  position: relative;
  height: 80vh;
  background-color: #000; /* Siyah arkaplan */
  background-image: none; /* Deseni kaldır */
  color: #000; /* Metin rengi siyah olacak */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* Hero overlay - gradient kaldırıldı */
.hero .overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.7); /* Sadece hafif siyah overlay */
  backdrop-filter: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
  padding: 3rem;
  background-color: #fff; /* Beyaz arkaplan */
  border-radius: 12px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
}

.hero-content h2 {
  font-size: 2.5rem;
  color: #000;
  margin-bottom: 1.5rem;
  text-shadow: none;
  letter-spacing: 1px;
  font-weight: 800;
}

.hero-content p {
  font-size: 1.2rem;
  color: #333;
  margin-bottom: 2rem;
  text-shadow: none;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.btn-primary {
  display: inline-block;
  margin-top: 1rem;
  padding: 1rem 2rem;
  background: #000; /* Siyah buton */
  color: #fff;
  border: 1px solid #000;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: #333;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

/* Hizmetler bölümü için yumuşak arkaplan */
.services {
  padding: 5rem 1rem;
  background-color: #f9f9f9;
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='20' viewBox='0 0 100 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M21.184 20c.357-.13.72-.264.888-.14 1.254.902 1.454 2.693.576 4.04-.638.973-2.357 2.253-3.134 3.1-.906.99-1.303 1.762-1.305 2.37 0 .053-.03.104-.05.153-.022.05-.05.1-.05.153 0 .608.397 1.382 1.303 2.37.777.847 2.495 2.126 3.134 3.1.878 1.347.678 3.138-.577 4.04-.168.122-.53.257-.887.387 1.306-.488 2.315-1.52 2.315-2.733 0-.366-.092-.716-.256-1.03-.163-.314-.396-.576-.655-.79l-.39-.33c-.658-.563-1.29-1.093-1.778-1.63-.76-.84-1.044-1.518-1.044-1.96 0-.442.283-1.118 1.042-1.958.49-.538 1.122-1.068 1.778-1.63l.39-.33c.26-.214.492-.476.655-.79.165-.313.257-.664.257-1.03 0-1.214-1.01-2.246-2.315-2.734z' fill='%23e4e4e4' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
  text-align: center;
}

.services h2 {
  margin-bottom: 3rem;
  font-size: 2.2rem;
  color: #333;
  position: relative;
  display: inline-block;
}

.services h2:after {
  content: '';
  position: absolute;
  width: 50px;
  height: 3px;
  background: #000; /* Siyah çizgi */
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

.services-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.service-img {
  height: 180px;
  overflow: hidden;
}

.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-img img {
  transform: scale(1.05);
}

.service-content {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.service-icon {
  font-size: 2.2rem;
  color: #000; /* Siyah ikon */
  margin-bottom: 1rem;
}

.service-card h3 {
  font-size: 1.4rem;
  margin-bottom: 0.8rem;
  color: #333;
}

.service-card p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 1rem;
  flex-grow: 1;
}

/* Footer renk şeması */
footer {
  background: #000;
  color: #fff;
  padding: 3rem 1rem 1rem;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.footer-col h3 {
  margin-bottom: 1.2rem;
  font-size: 1.3rem;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h3:after {
  content: '';
  position: absolute;
  width: 40px;
  height: 2px;
  background: #fff; /* Beyaz çizgi */
  bottom: 0;
  left: 0;
}

.footer-contact li {
  margin-bottom: 1rem;
  display: flex;
  align-items: flex-start;
}

.footer-contact i {
  margin-right: 10px;
  color: #fff; /* Beyaz ikonlar */
  font-size: 1.2rem;
  margin-top: 4px;
}

.footer-contact span {
  line-height: 1.6;
}

.footer-map {
  height: 200px;
  border-radius: 6px;
  overflow: hidden;
  margin-top: 1rem;
}

.footer-map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.footer-bottom {
  text-align: center;
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
}

/* Footer sosyal medya linkleri */
.social-links {
  margin-top: 15px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  color: #fff;
  text-decoration: none;
  padding: 8px 15px;
  background: rgba(255,255,255,0.1);
  border-radius: 50px;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.social-link i {
  margin-right: 6px;
  font-size: 1.1rem;
}

.social-link:hover {
  background: rgba(255,255,255,0.2);
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
  header h1 {
    font-size: 1.2rem;
    padding: 6px 10px;
    border-left-width: 3px;
  }
  
  .header-actions {
    gap: 8px;
  }
  
  .action-btn {
    width: 40px;
    height: 40px;
    padding: 0;
    border-radius: 50%;
    justify-content: center;
  }
  
  .action-btn span {
    display: none;
  }
  
  .action-btn i.icon {
    margin-right: 0;
    font-size: 20px;
  }

  .footer-container { flex-direction: column; }
}

/* Daha küçük ekranlar için */
@media (max-width: 320px) {
  header h1 {
    font-size: 1rem;
    padding: 4px 8px;
    border-left-width: 2px;
  }
  
  .action-btn {
    width: 35px;
    height: 35px;
  }
  
  .action-btn i.icon {
    font-size: 18px;
  }
}