/* Renk ve Genel Ayar Değişkenleri */
:root {
    --primary-color: #007bff;
    --secondary-color: #0056b3;
    --background-light: #f4f7fb;
    --white: #ffffff;
    --text-color: #333;
    --shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  }

  body {
    font-family: 'Roboto', sans-serif;
    background: var(--background-light);
    color: var(--text-color);
    margin: 0;
    padding: 0;
  }

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

  /* Bölüm Başlığı */
  .section-title {
    text-align: center;
    font-size: 3rem;
    margin: 60px 0 40px;
    color: var(--primary-color);
  }

  /* Grid Düzeni: İki kolon */
  .contact-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
  }

  /* İletişim Formu */
  .contact-form-container {
    flex: 1 1 500px;
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    animation: fadeInUp 0.8s ease;
  }

  .contact-form-container h2 {
    margin-bottom: 20px;
    color: var(--primary-color);
  }

  .contact-form .form-group {
    margin-bottom: 20px;
  }

  .contact-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
  }

  .contact-form input,
  .contact-form textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s;
  }

  .contact-form input:focus,
  .contact-form textarea:focus {
    border-color: var(--primary-color);
    outline: none;
  }

  .contact-form textarea {
    resize: vertical;
    min-height: 150px;
  }

  .submit-button {
    display: inline-block;
    padding: 14px 28px;
    background-color: var(--primary-color);
    border: none;
    border-radius: 6px;
    color: var(--white);
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
  }

  .submit-button:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
  }

  /* İletişim Kartları */
  .contact-info-container {
    flex: 1 1 500px;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .contact-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    animation: fadeInUp 0.8s ease;
  }

  .contact-card h2 {
    margin-bottom: 15px;
    color: var(--primary-color);
  }

  .contact-card p {
    margin: 10px 0;
    font-size: 1.1rem;
  }

  /* Büyük Harita */
  .map-container {
    margin-top: 40px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    animation: fadeInUp 0.8s ease;
  }

  /* Responsive Tasarım */
  @media (max-width: 768px) {
    .contact-grid {
      flex-direction: column;
    }
    .submit-button {
      width: 100%;
    }
  }

  /* Basit Fade-In Animasyonu */
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
