/* Genel Ayarlar */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Montserrat', sans-serif;
}

body {
  background: #f9f9f9;
  color: #222;
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header ve Logo */
header {
  background-color: #fff;
  border-bottom: 1px solid #ddd;
  padding: 20px 0;
}

.logo {
  font-size: 24px;
  font-weight: 700;
  color: #1a237e;
}

.logo span {
  color: #616161;
}

/* Menü */
.nav-links {
  display: flex;
  gap: 20px;
  list-style: none;
  justify-content: flex-end;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #1a237e;
}

/* Hero */
.hero {
  background: linear-gradient(to right, #e0f2ff, #ffffff);
  padding: 60px 20px;
  text-align: center;
}

.hero h2 {
  font-size: 32px;
  font-weight: 700;
  color: #1a237e;
  margin-bottom: 10px;
}

.hero p {
  font-size: 18px;
  color: #333;
  margin-bottom: 30px;
}

/* CTA Butonu */
.cta-button {
  padding: 12px 24px;
  background-color: #1a237e;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: #0d154c;
}

/* Form */
.form-container {
  background-color: #fff;
  padding: 40px 20px;
  max-width: 700px;
  margin: auto;
  box-shadow: 0 0 15px rgba(0,0,0,0.05);
  border-radius: 10px;
}

.form-container label {
  display: block;
  margin-bottom: 5px;
  font-weight: 600;
  text-align: left;
}

.form-container input,
.form-container select {
  width: 100%;
  padding: 10px;
  margin-bottom: 20px;
  border-radius: 6px;
  border: 1px solid #ccc;
}

.form-container button {
  padding: 12px 24px;
  background-color: #1a237e;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}

.form-container button:hover {
  background-color: #0d154c;
}

#sonuc {
  margin-top: 20px;
  font-weight: bold;
  color: #1a237e;
}

/* Promo Banner */
.promo-banner {
  background-color: #fffde7;
  padding: 30px 20px;
  margin: 30px 0;
}

.promo-content {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  justify-content: center;
}

.promo-content img {
  max-width: 300px;
  border-radius: 8px;
}

.promo-text {
  max-width: 500px;
}

.promo-text h2 {
  color: #1a237e;
  margin-bottom: 15px;
}

.promo-button {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 20px;
  background-color: #1a237e;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
}

.reklam-etiketi {
  font-size: 12px;
  color: #888;
  margin-top: 10px;
}

/* Info */
.info {
  padding: 40px 20px;
  background-color: #fff;
  text-align: center;
}

.info h3 {
  font-size: 24px;
  margin-bottom: 15px;
}

.info p {
  font-size: 16px;
}

/* Sticky Bar */
.sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  background-color: #f9fbe7;
  color: #333;
  width: 100%;
  padding: 10px 20px;
  font-size: 14px;
  border-top: 1px solid #ccc;
  z-index: 9999;
}

.sticky-bar a {
  color: #1a237e;
  font-weight: 600;
  text-decoration: underline;
  margin-left: 10px;
}

.sticky-reklam-label {
  font-size: 11px;
  color: #777;
  margin-left: 10px;
}

/* WhatsApp Butonu */
.whatsapp-button {
  position: fixed;
  bottom: 80px;
  right: 20px;
  z-index: 1000;
}

.whatsapp-button img {
  width: 60px;
  height: 60px;
}

/* Footer */
footer {
  background-color: #1a237e;
  color: #fff;
  text-align: center;
  padding: 20px 0;
  margin-top: 40px;
}

/* Responsive Menü Gereksiz Olduğundan Kaldırıldı */
@media (max-width: 768px) {
  .header {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  nav {
    width: 100%;
  }

  .nav-links {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
    display: flex !important;
  }

  .nav-links li {
    width: 100%;
    text-align: center;
  }

  .nav-links a {
    display: block;
    width: 100%;
    padding: 10px 0;
    color: #1a237e;
    background: #fff;
    border-top: 1px solid #ddd;
    font-weight: 600;
  }

  .nav-links a:hover {
    background: #e3f2fd;
  }
}
