* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background-color: #ffffff;
}

.container {
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 20px;
  padding-right: 20px;
  padding-bottom: 1px;
  padding-left: 20px;
  position: relative;
}

/* Üst kısımdaki kırmızı bölge */
.top-red-area {
  width: 100%;
  height: 80px;
  background-color: #ff0000;
  border-bottom-left-radius: 50%;
  border-bottom-right-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: -1;
}

/* Geri butonu */
.back-button {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 10;
}

.back-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: white;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  color: #ff0000;
  transition: all 0.3s ease;
}

.back-link:hover {
  background-color: #ff0000;
  color: white;
}

/* Logo ve başlık bölümü */
.logo-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin-top: 20px;
  margin-bottom: 30px;
}

.logo {
  width: 250px;
  margin-bottom: 10px;
}

.subtitle {
  font-size: 12px;
  letter-spacing: 3px;
  color: #000;
  margin-bottom: 8px;
  font-weight: 500;
}

.services {
  font-size: 18px;
  color: #333;
  text-align: center;
  line-height: 1.5;
  max-width: 340px;
  font-weight: 600;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
}

.title {
  font-weight: bold;
  font-size: 28px;
  margin-bottom: 30px;
}

/* Butonlar bölümü */
.buttons-section {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 12px;
}

.btn-link {
  text-decoration: none;
  width: 100%;
}

.btn {
  width: 100%;
  padding: 12px;
  border-radius: 50px;
  border: 1px solid #000;
  background-color: transparent;
  color: #000;

  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn:hover {
  border-color: #ff0000;
  background-color: rgba(255, 0, 0, 0.05);
}

/* İçerik bölümü */
.content-section {
  width: 100%;
  margin-bottom: 30px;
}

/* Hizmet ve fiyatlar sayfası */
.service-item {
  margin-bottom: 30px;
  border-bottom: 1px solid #eee;
  padding-bottom: 20px;
}

.service-item h2 {
  color: #ff0000;
  margin-bottom: 15px;
  font-size: 22px;
}

.price-list {
  list-style: none;
  padding: 0;
}

.price-list li {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  padding: 8px 0;
  border-bottom: 1px dashed #eee;
}

/* İletişim sayfası */
.contact-info {
  margin-bottom: 30px;
}

.contact-info h2,
.contact-form h2,
.map-section h2 {
  color: #ff0000;
  margin-bottom: 15px;
  font-size: 22px;
}

.contact-info p {
  margin-bottom: 10px;
  line-height: 1.6;
}

.phone-link,
.email-link {
  color: #ff0000;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s;
}

.phone-link:hover,
.email-link:hover {
  color: #cc0000;
  text-decoration: underline;
}

.form-group {
  margin-bottom: 15px;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: inherit;
}

.submit-btn {
  background-color: #ff0000;
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 50px;
  cursor: pointer;
  font-weight: bold;
  margin-top: 10px;
}

.submit-btn:hover {
  background-color: #cc0000;
}

.map-section {
  margin-bottom: 30px;
}

.map-container {
  width: 100%;
  height: 300px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  margin-top: 10px;
}

/* Mobil uyumluluk için */
@media (max-width: 600px) {
  .container {

    padding-top: 15px;
    padding-right: 15px;
    padding-bottom: 1px;
    padding-left: 15px;
  }

  .logo {
    width: 250px;
  }

  .title {
    font-size: 24px;
  }

  .btn {
    padding: 10px;
    font-size: 14px;
  }

  .service-item h2,
  .contact-info h2,
  .contact-form h2,
  .map-section h2 {
    font-size: 20px;
  }
}

/* WhatsApp Float Icon */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 20px;
  left: 20px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px #999;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.whatsapp-float:hover {
  background-color: #128C7E;
  transform: scale(1.1);
}

.whatsapp-float svg {
  width: 35px;
  height: 35px;
  fill: white;
}