/* === Genel Ayarlar === */
body {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    background-color: #f9f9f9;
    color: #222;
  }
  
  header {
    background-color: #111;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
  }
  
  .logo-wrapper {
    display: flex;
    align-items: center;
  }
  
  .logo {
    display: flex;
    align-items: center;
    text-decoration: none;
  }
  
  .logo-img {
    height: 90px;
    width: auto;
    margin-right: 10px;
    border-radius: 30px;
  }
  
  .logo-text {
    font-weight: 700;
    font-size: 1.2em;
    color: #dbad68;
    text-transform: uppercase;
    line-height: 1.2;
  }
  
  .burger-btn {
    display: none;
    font-size: 28px;
    background: none;
    border: none;
    color: #dbad68;
    cursor: pointer;
  }
  
  nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
  }
  
  nav ul li a {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    transition: color 0.3s ease;
  }
  
  nav ul li a:hover {
    color: #dbad68;
  }
  
  /* === Mobil Menü === */
  @media (max-width: 768px) {
    .burger-btn {
      display: block;
      margin-left: auto;
    }
  
    nav {
      width: 100%;
      display: none;
    }
  
    nav.open {
      display: block;
      margin-top: 10px;
    }
  
    nav ul {
      flex-direction: column;
      gap: 10px;
      background-color: #060606;
      padding: 15px;
    }
  
    nav ul li a {
      padding: 10px;
      display: block;
    }
    .logo-img {
      height: 60px;
      border-radius: 30px;
    }
  }
  
  /* === İletişim Bölümü === */
  .contact-form-section {
    background-color: #f9f9f9;
    padding: 40px 20px;
    display: flex;
    justify-content: center;
  }
  
  .form-container {
    background: #fff;
    border: 1px solid #ddd;
    padding: 30px 20px;
    max-width: 400px;
    width: 100%;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
  }
  
  .form-container h2 {
    font-size: 1.5em;
    text-transform: uppercase;
    margin-bottom: 10px;
    font-weight: 700;
  }
  
  .form-container p {
    margin-bottom: 30px;
    font-size: 1em;
    color: #333;
  }
  
  .form-container input,
  .form-container textarea {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 15px;
    border: 1px solid #aaa;
    font-size: 1em;
    box-sizing: border-box;
  }
  
  .phone-wrapper {
    display: flex;
    align-items: center;
    border: 1px solid #aaa;
    margin-bottom: 15px;
    padding-left: 10px;
  }
  
  .phone-wrapper img {
    width: 24px;
    margin-right: 8px;
  }
  
  .phone-wrapper input {
    flex: 1;
    border: none;
    padding: 12px 10px;
    font-size: 1em;
  }
  
  .phone-wrapper input:focus {
    outline: none;
  }
  
  .form-container button {
    width: 100%;
    background-color: #a67c52;
    color: white;
    padding: 14px;
    border: none;
    font-weight: 600;
    font-size: 1em;
    cursor: pointer;
    transition: 0.3s ease;
  }
  
  .form-container button:hover {
    background-color: #8c6239;
  }
  
  
  /* === Footer === */
  footer {
    background-color: #111;
    color: #fff;
    text-align: center;
    padding: 30px 20px 10px;
    margin-top: 40px;
  }
  
  .footer-sub {
    font-size: 0.9em;
    margin-top: 10px;
    color: #aaa;
  }
  