body {
  font-family: Arial, sans-serif;
  background: #ffffff;
  margin: 0;
  padding: 0;
}

.wrapper {
  display: flex;
  min-height: 100vh;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.info-box, .form-container {
  flex: 1;
  padding: 2rem;
  background: #ffffff;
  border-radius: 8px;
  margin: 1rem;
  border: 1px solid #f0f0f0;
}

.info-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.info-box h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.info-box p {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
}

form {
  display: flex;
  flex-direction: column;
}

input, textarea, button {
  margin-bottom: 1rem;
  padding: 0.75rem;
  border-radius: 5px;
  border: 1px solid #ccc;
  font-size: 1rem;
  background: #fff;
}

input[readonly] {
  background-color: #f5f5f5;
}

button {
  background-color: #b31217;
  color: white;
  border: none;
  cursor: pointer;
}

button:hover {
  background-color: #7f0e12;
}

.status-message {
  padding: 0.75rem;
  border-radius: 5px;
  margin-bottom: 1rem;
  text-align: center;
  font-weight: bold;
}

.success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.error {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

@media (max-width: 768px) {
  .wrapper {
    flex-direction: column;
    padding: 1rem;
  }
}

/* === WHATSAPP BUTONU: Sade, sadece ikon === */
.whatsapp-button {
  position: fixed;
  bottom: 25px;
  left: 25px;
  background-color: #25D366;
  color: white;
  border-radius: 50%;
  padding: 20px;
  font-size: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  z-index: 9999;
  transition: all 0.3s ease;
  text-decoration: none;
}

.whatsapp-button:hover {
  background-color: #1eb15d;
}

.whatsapp-button i {
  font-size: 28px;
  line-height: 1;
}

/* Hover bounce efekti */
@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

.whatsapp-button:hover i {
  animation: bounce 0.5s ease;
}

/* === SABİT HEADER === */
.site-header {
  position: sticky;
  top: 0;
  background: white;
  border-bottom: 2px solid #ddd;
  padding: 1rem 0;
  text-align: center;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.site-title {
  font-size: 2rem;
  font-weight: bold;
  color: #b31217; /* kirmizi */
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  letter-spacing: 0.5px;
}

.site-title i {
  margin-right: 0.5rem;
}

.site-subtitle {
  font-size: 1rem;
  font-weight: normal;
  margin-top: 0.25rem;
  color: #555;
  letter-spacing: 0.2px;
}




.site-footer {
  text-align: center;
  font-size: 0.85rem;
  color: #555;
  padding: 0.75rem 1rem; /* Yüksekliği azaltıyoruz */
  background-color: #fff;
  border-top: 1px solid #ddd;
  box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.03);
  line-height: 1.4;
}


.site-footer a {
  color: #b31217; /* Gerger Fırat ile aynı kirmizi */
  text-decoration: none;
  font-weight: normal;
}

.site-footer a:hover {
  font-weight: bold;
  text-decoration: none; /* underline'ı devre dışı bırak */
}



