/* Genel stil */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #000; /* Arka plan rengini siyah yap */
    color: #fff; /* Varsayılan metin rengi beyaz */
  }
  
  .section {
    padding-top: 160px;

    padding-bottom: 60px;
    background-color: #000;
  }
  
  .contact-title {
    text-align: center;
    font-size: 36px;
    font-weight: bold;
    color: #fff; /* Başlık beyaz */
    margin-bottom: 30px;
    margin-top: 30px;
  }
  
  /* Sol Bölüm - İletişim Bilgileri */
  .contact-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
    margin-bottom: 20px;
  }
  
  .contact-info li {
    font-size: 18px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #444; /* Alt çizgi */
    padding-bottom: 10px;
  }
  
  .contact-info i {
    font-size: 24px;
    margin-right: 10px;
    color: #fff; /* İkonlar beyaz */
  }
  
  .contact-info span {
    font-weight: bold;
    color: #aaa;
  }
  
  .social-icons {
    margin-top: 20px;
  }
  
  .social-icons a {
    font-size: 30px;
    color: #fff;
    margin-right: 15px;
    transition: color 0.3s ease;
  }
  
  .social-icons a:hover {
    color: #1e90ff; /* Hover renk efekti */
  }
  
  /* Sağ Bölüm - İletişim Formu */
  .contact-form {
    background-color: #2c2c54;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
  }
  
  .contact-form .form-group label {
    font-size: 14px;
    font-weight: bold;
    color: #fff;
  }
  
  .contact-form .form-control {
    border-radius: 5px;
    border: 1px solid #555;
    background-color: rgb(139, 134, 134);
    color: #fff;
    padding: 10px;
    font-size: 14px;
    margin-bottom: 20px;
  }
  
  .contact-form .form-control::placeholder {
    color: #aaa;
  }
  
  .contact-form .btn-submit {
    background-color: #32cd32;
    color: #fff;
    font-size: 16px;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .contact-form .btn-submit:hover {
    background-color: #228b22; /* Buton hover rengi */
  }
  
  /* Harita */
  .map-container iframe {
    border-radius: 8px;
    margin-top: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .contact-info, .contact-form {
      margin-bottom: 30px;
    }
  
    .contact-title {
      font-size: 28px;
      margin-top: 25px;
    }
  }
  
  .social-icons {
    margin-top: 20px;
  }
  
  .social-icons ul {
    margin: 0;
    padding: 0;
    list-style: none;
  }
  
  .social-icons ul li {
    display: inline;
  }
  
  .social-icons ul li a {
    display: inline-block;
    margin-right: 5px;
    margin-bottom: 15px;
    border-radius: 50%;
    line-height: 40px;
    width: 40px;
    height: 40px;
    text-align: center;
    background: #ddd;
    font-size: 16px;
  }
  
  .social-icons ul li a:hover {
    color: #fff;
  }
  
  .facebook a {
    color: #4867AA;
  }
  
  .facebook a:hover {
    background: #4867AA;
  }
  
  .twitter a {
    color: #1DA1F2;
  }
  
  .twitter a:hover {
    background: #1DA1F2;
  }
  
  .google-plus a {
    color: #DD4D42;
  }
  
  .google-plus a:hover {
    background: #DD4D42;
  }
  
  .youtube a {
    color: #DF2926;
  }
  
  .youtube a:hover {
    background: #DF2926;
  }
  
  .linkedin a {
    color: #007BB6;
  }
  
  .linkedin a:hover {
    background: #007BB6;
  }
  
  .pinterest a {
    color: #BD081C;
  }
  
  .pinterest a:hover {
    background: #BD081C;
  }
  
  .dribbble a {
    color: #EA4C89;
  }
  
  .dribbble a:hover {
    background: #EA4C89;
  }
  
  .behance a {
    color: #0B7CFF;
  }
  
  .behance a:hover {
    background: #0B7CFF;
  }


  #contact {
    background-color: #343a40; /* Açık gri bir arka plan */
    padding: 60px 0; /* Üst ve alt boşluk */
  }
  .contact-form {
    background-color: #343a40; /* İçerik arka planı beyaz */
    border-radius: 8px; /* Hafif yuvarlak köşeler */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Hafif gölge efekti */
    padding: 30px;
  }


  