/* Hizmetler Bölümü Stilleri */
.hizmetler-section {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #00529b;
  margin-bottom: 15px;
}

.section-header p {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.1rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

/* Hizmetler Grid */
.hizmetler-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

/* Hizmet Kartları */
.hizmet-kart {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.hizmet-kart:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.hizmet-resim {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.hizmet-resim img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.hizmet-kart:hover .hizmet-resim img {
  transform: scale(1.05);
}

.hizmet-icerik {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.hizmet-icerik h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 15px;
  line-height: 1.3;
}

.hizmet-icerik p {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.95rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.hizmet-detay-btn {
  display: inline-block;
  padding: 12px 30px;
  background: linear-gradient(135deg, #00529b, #003466);
  color: white;
  text-decoration: none;
  border-radius: 25px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  text-align: center;
  align-self: flex-start;
}

.hizmet-detay-btn:hover {
  background: transparent;
  color: #00529b;
  border-color: #00529b;
  transform: translateY(-2px);
}

/* Responsive Tasarım */
@media (max-width: 1200px) {
  .hizmetler-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}

@media (max-width: 768px) {
  .hizmetler-section {
    padding: 60px 0;
  }
  
  .section-header h2 {
    font-size: 2rem;
  }
  
  .section-header p {
    font-size: 1rem;
  }
  
  .hizmetler-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .hizmet-resim {
    height: 200px;
  }
  
  .hizmet-icerik {
    padding: 20px;
  }
  
  .hizmet-icerik h3 {
    font-size: 1.3rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }
  
  .hizmetler-section {
    padding: 40px 0;
  }
  
  .section-header {
    margin-bottom: 40px;
  }
  
  .section-header h2 {
    font-size: 1.8rem;
  }
  
  .hizmet-resim {
    height: 180px;
  }
  
  .hizmet-icerik {
    padding: 15px;
  }
  
  .hizmet-icerik h3 {
    font-size: 1.2rem;
  }
  
  .hizmet-icerik p {
    font-size: 0.9rem;
  }
  
  .hizmet-detay-btn {
    width: 100%;
    text-align: center;
  }
}