/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: Arial, sans-serif;
    background: #f3f3f3;
    color: #151826;
  }
  
  /* Header Genel Stili */
  .site-header {
    display: flex;
    flex-direction: column;
    background-color: #13182b; /* Üst bölüm rengi */
    font-family: Arial, sans-serif;
    position: relative;
  }
  
  /* Üst Kısım */
  .header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
  }
  
  /* Logo */
.logo img {
    padding-left: 10px;
    height: 65px;
}
  
  /* Menü Konteyner */
  .menu-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
  }
  
  /* Menü Butonu */
  .menu-icon {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
  }
  
  .menu-icon .bar {
    width: 30px;
    height: 3px;
    background-color: white;
  }
  
  /* Açılır Menü */
  .nav-menu {
    position: absolute;
    top: 40px; /* Menü ikonunun hemen altında açılır */
    right: 5px;
    background-color: #6f78b0;
    border-radius: 5px;
    padding: 10px 0;
    width: 150px;
    display: none; /* Başlangıçta gizli */
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  }
  
  .nav-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .nav-menu ul li {
    text-align: center;
    padding: 10px 0;
  }
  
  .nav-menu ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    display: block;
  }
  
  .nav-menu ul li:hover {
    background-color: #2f354f;
  }
  
  /* Menü Açık Olduğunda */
  .nav-menu.active {
    display: block;
  }
  
  /* Alt Kısım */
.header-bottom {
  background-color: #2f354f;
  padding: 15px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap; /* Taşma durumunda alt satıra geç */
  gap: 15px; /* Öğeler arası boşluk */
  min-height: 50px; /* Minimum yükseklik */
}

.header-bottom a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  padding: 8px 15px;
  font-size: clamp(14px, 1.8vw, 20px); /* Responsive yazı boyutu */
  white-space: nowrap; /* Metni tek satırda tut */
  flex-shrink: 0; /* Küçülmeyi engelle */
}
  .contact {
    padding: 100px 0;
    background-color: #f3f3f3;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-content {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.contact-info {
    flex: 1 1 40%;
    min-width: 300px;
}

.contact-form {
    flex: 1 1 55%;
    background: #f3f3f3;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.section-title {
    font-size: 2.5em;
    color: #333;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 10px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: #4d557e;
}

.info-item {
    display: flex;
    width: 100%;
    align-items: center;
    margin-bottom: 30px;
    padding: 20px;
    background: #f3f3f3;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.info-item:hover {
    transform: translateX(10px);
}

.info-icon {
    font-size: 24px;
    color: #4d557e;
    margin-right: 20px;
    min-width: 40px;
}

.info-content h3 {
  text-decoration: none;
    color: #333;
    margin-bottom: 5px;
}

.info-content p {
  text-decoration: none;
    color: #666;
    line-height: 1.6;
}

/* Talep Formu Stilleri */
.request-form {
  background: #fff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  margin: 50px auto;
  max-width: 1500px;
}

.request-form h2 {
  text-align: center;
  color: #2c3e50;
  font-size: 2.2em;
  margin-bottom: 35px;
  position: relative;
  padding-bottom: 15px;
}

.request-form h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: #007bff;
}

.request-form .form-group {
  margin-bottom: 25px;
}

.request-form label {
  display: block;
  margin-bottom: 8px;
  color: #4a5568;
  font-weight: 600;
  font-size: 0.95em;
}

.request-form input,
.request-form textarea {
  width: 500px;
  padding: 12px 18px;
  border: 2px solid #e2e8f0;
  border-radius: 6px;
  font-size: 16px;
  transition: all 0.3s ease;
  background-color: #f8fafc;
}

.request-form input:focus,
.request-form textarea:focus {
  outline: none;
  border-color: #007bff;
  background-color: #fff;
  box-shadow: 0 0 0 3px rgba(0,123,255,0.1);
}

.request-form textarea {
  resize: vertical;
  min-height: 120px;
}

.submit-button {
  width: 100%;
  padding: 15px;
  background: #007bff;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.submit-button:hover {
  background: #0056b3;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0,123,255,0.3);
}

.response-message {
  padding: 15px;
  margin: 20px 0;
  border-radius: 5px;
  display: none;
}

.response-message.success {
  background: #d4edda;
  color: #155724;
  display: block;
}

.response-message.error {
  background: #f8d7da;
  color: #721c24;
  display: block;

}

.site-footer {
    background: #13182b; 
    color: white;
    padding: 20px 0;
    text-align: center;
    font-size: 14px;
  }
  
  .footer-container {
    display: flex;
    justify-content: space-around;
    align-items: start;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: auto;
    padding: 20px;
  }
  
  .footer-logo img {
    width: 120px; /* Logo Boyutu */
  }
  
  .footer-section {
    text-align: left;
  }
  
  .footer-section h3 {
    margin-bottom: 10px;
    font-size: 16px;
  }
  
  .footer-section p {
    margin: 5px 0;
  }
  
  .footer-section a {
    color: white;
    text-decoration: none;
  }
  
  .footer-section a:hover {
    text-decoration: underline;
  }
  
  .footer-bottom {
    margin-top: 20px;
    border-top: 1px solid gray;
    padding-top: 10px;
  }

  

  @media (max-width: 768px) {
    /* Header Adjustments */
    .header-top {
      padding: 15px;
    }
  
    .header-bottom {
    gap: 10px;
    padding: 10px;
  }
  
  .header-bottom a {
    font-size: 14px;
    padding: 6px 10px;
  }
  
    .logo img {
      height: 55px;
    }
  
    .menu-icon .bar {
      width: 25px;
      height: 2px;
    }
  
    /* Açılır Menü Mobil Pozisyon */
    .nav-menu {
      top: 50px;
      right: 0;
      width: 100%;
      border-radius: 0;
    }

    .contact {
      padding: 60px 0;
    }
  
    .container {
      padding: 0 15px;
    }
  
    .contact-content {
      flex-direction: column;
      gap: 30px;
    }
  
    .contact-info,
    .contact-form {
      flex: 1 1 100%;
      min-width: auto;
    }
  
    .contact-form {
      padding: 25px;
    }
  
    .section-title {
      font-size: 2em;
      margin-bottom: 25px;
      text-align: center;
    }
  
    .section-title::after {
      left: 50%;
      transform: translateX(-50%);
    }
  
    .info-item {
      margin-bottom: 20px;
      padding: 15px;
    }

.info-content p {
  text-decoration: none;
}
  
    .info-icon {
      font-size: 20px;
      margin-right: 15px;
    }
  
    /* Talep Formu Mobile Stilleri */
    .request-form {
      padding: 25px;
      margin: 30px 15px;
      max-width: 100%;
    }
  
    .request-form h2 {
      font-size: 1.8em;
      margin-bottom: 25px;
    }
  
    .request-form input,
    .request-form textarea {
      width: 100%;
      padding: 10px 15px;
      font-size: 14px;
    }
  
    .request-form textarea {
      min-height: 100px;
    }
  
    .submit-button {
      padding: 12px;
      font-size: 14px;
    }
  
    .response-message {
      font-size: 14px;
      padding: 10px;
      margin: 15px 0;
    }


    .footer-logo img {
        width: 50px; /* Logo Boyutu */
      }

  }

    /* Animasyonlar */
    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: translateY(20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .contact, .site-header {
        animation: fadeIn 1s ease-out;
    }