  /* Genel */
 
  

  
    body {
      margin: 0;
      font-family: Arial, sans-serif;
      background: #111;
    }
    nav {
      width: 100%;
      background-color: #000;
      color: #fff;
      position: relative;
      z-index: 100;
    }
    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 16px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      height: 64px;
      color: #fff;
    }
    .logo img {
      height: 100px;
    }
    .links {
      display: flex;
      gap: 20px;
    }
    .links a {
      text-decoration: none;
      color: #fff;
      font-size: 14px;
      transition: opacity 0.2s;
    }
    .links a:hover {
      opacity: 0.7;
      color: #00c06e;
    }
    .actions {
      display: flex;
      gap: 12px;
      align-items: center;
    }
    .btn {
      padding: 8px 16px;
      font-size: 14px;
      border: none;
      cursor: pointer;
      border-radius: 4px;
    }
    .btn a{
      text-decoration: none;
      color: #000;
    }
    .btn-white {
      background: #fff;
      color: #000;
      font-weight: 500;
    }
    .hamburger {
      display: none;
      flex-direction: column;
      justify-content: space-between;
      width: 24px;
      height: 18px;
      cursor: pointer;
    }
    .hamburger span {
      display: block;
      height: 3px;
      background: #fff;
      border-radius: 2px;
    }
    .mobile-menu {
      display: none;
      flex-direction: column;
      background: #000;
      padding: 16px;
      color: #fff;
    }
    .mobile-menu a {
      margin: 8px 0;
      color: #fff;
    text-decoration: none;   
    }

    @media (max-width: 768px) {
      .links, .actions .btn-white {
        display: none;
      }
      .hamburger {
        display: flex;
      }
      .mobile-menu.show {
        display: flex;
      }
    }

    /* Yükleme ekranı */
    #loading-screen {
      position: fixed;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background: #000;
      display: flex;
      justify-content: center;
      align-items: center;
      z-index: 9999;
      flex-direction: column;
      color: white;
      animation: fadeOut 1s ease forwards;
      animation-delay: 2.5s; /* 2.5 saniye sonra kaybolur */
    }
    #loading-screen img {
      width: 160px;
      margin-bottom: 25px;
      opacity: 0;
      animation: fadeIn 1.5s ease forwards, glow 2s ease-in-out infinite alternate;
    }
    .spinner {
      width: 40px;
      height: 40px;
      border: 4px solid rgba(255, 255, 255, 0.2);
      border-top: 4px solid #fff;
      border-radius: 100%;
      animation: spin 1s linear infinite;
    }

    /* Animasyonlar */
    @keyframes spin {
      100% { transform: rotate(360deg); }
    }
    @keyframes fadeIn {
      to { opacity: 1; }
    }
    @keyframes glow {
      from { filter: drop-shadow(0 0 5px #fff); }
      to { filter: drop-shadow(0 0 20px #aaa); }
    }
    @keyframes fadeOut {
      to { opacity: 0; visibility: hidden; }
    }
    .contact-container {
      display: flex;
      flex-wrap: wrap;
      gap: 40px;
      max-width: 1100px;
      margin: 100px auto;
     
    }
    .contact-form, .contact-info {
      flex: 1;
      min-width: 300px;
      background: rgba(255, 255, 255, 0.2);
      color: white;
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 0 10px rgba(0,0,0,0.1);
    }
    .contact-form h2 { margin-bottom: 20px; text-align: center; }
    .contact-form label { display: block; margin-top: 15px; }
    .contact-form input, .contact-form textarea {
      width: 100%;
      padding: 10px;
      margin-top: 5px;
      border-radius: 5px;
      border: none;
      background: rgba(255, 255, 255, 0.2);
      color: white;
    }
    .contact-form button {
      margin-top: 20px;
      padding: 12px 20px;
      background: #00E785;
      border: none;
      border-radius: 50px;
      cursor: pointer;
      font-weight: bold;
      color: #000;
      width: 100%;
      font-size: 16px;
    }
    footer {
  background: #000;
  color: #fff;
  padding: 40px 20px 20px;
  margin-top: 60px;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.footer-about img {
  width: 120px;
  margin-bottom: 15px;
}

.footer-about p {
  font-size: 14px;
  line-height: 1.6;
  color: #ccc;
}

.footer-links h3,
.footer-contact h3 {
  margin-bottom: 15px;
  font-size: 16px;
  border-bottom: 2px solid #00E785;
  display: inline-block;
  padding-bottom: 5px;
}

.footer-links a {
  display: block;
  color: #ccc;
  font-size: 14px;
  text-decoration: none;
  margin: 6px 0;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: #00E785;
}

.footer-contact p {
  font-size: 14px;
  margin: 6px 0;
  color: #ccc;
}

.footer-contact a {
  display: inline-block;
  
  color: #000;
  border-radius: 20px;
  font-weight: bold;
  text-decoration: none;
}



.footer-bottom {
  margin-top: 30px;
  text-align: center;
  font-size: 13px;
  color: #777;
  border-top: 1px solid #222;
  padding-top: 15px;
}
