/* Genel */
body {
  font-family: 'Roboto', sans-serif;
  margin: 0;
  padding: 0;
  background: #f0f4f8; /* Daha profesyonel ve soft arka plan */
  color: #333;
}

/* Header */
header {
  background: linear-gradient(135deg, #0d324d, #7f5a83);
  color: #fff;
  text-align: center;
  padding: 50px 20px;
}
header h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 2.8rem;
  margin: 0;
}
header p {
  font-size: 1.2rem;
  margin: 10px 0 20px 0;
}
.header-btns .btn {
  display: inline-block;
  margin: 10px;
  padding: 14px 25px;
  background: #52588b;
  color: #ffffff;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: 0.3s;
}
.header-btns .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

/* Hizmetler */
#hizmetler {
  background: #ffffff; /* Kart ve sectionlar için kontrastlı arka plan */
  padding: 50px 20px;
}
#hizmetler h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 30px;
  color: #0d324d;
}
.services {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
.service-card {
  background: #fdfdfd;
  border-radius: 12px;
  padding: 25px;
  width: 250px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: 0.3s;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}
.service-card h3 {
  margin-top: 0;
  color: #7f5a83;
}

/* Galeri */
#galeri {
  padding: 50px 20px;
  background: #f4f4f9; /* Açık ton arka plan */
}
#galeri h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 30px;
  color: #0d324d;
}
.arac-slider {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
  justify-items: center;
}
.arac-slider img {
  width: 100%;
  max-width: 250px;
  height: 150px;
  object-fit: cover;
  border-radius: 12px;
  cursor: pointer;
  transition: 0.3s;
}
.arac-slider img:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  padding-top: 60px;
  left:0; top:0; width:100%; height:100%;
  background: rgba(0,0,0,0.9);
}
.modal-content {
  margin: auto;
  display: block;
  max-width: 90%;
  max-height: 80%;
  border-radius: 12px;
}
.close {
  position: absolute;
  top: 30px;
  right: 40px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
}

/* Konum */
#konum {
  padding: 50px 20px;
  background: #ffffff;
}
#konum h2 {
  text-align: center;
  margin: 30px 0;
  color: #0d324d;
}

/* Footer */
footer {
  background: #0d324d;
  color: #fff;
  text-align: center;
  padding: 25px 10px;
}
.footer-social {
  margin-bottom: 15px;
}
.social-btn {
  display: inline-block;
  margin: 5px;
  padding: 10px 18px;
  background: #52588b;
  color: #ffffff;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}
.social-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}
.footer-phone a {
  color: #ffd700;
  text-decoration: none;
  font-weight: bold;
}
