/* Genel header stilleri */
.header {
    background: linear-gradient(to right, #283e51, #485563);
    color: white;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 999;
  }
  
  .container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
  }
  
  .logo a {
    font-size: 1.8rem;
    font-weight: bold;
    color: white;
    text-decoration: none;
  }
  
  .navbar {
    display: flex;
    gap: 20px;
  }
  
  .navbar a {
    color: #eee;
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 5px;
    transition: 0.3s ease;
  }
  
  .navbar a:hover,
  .navbar .active {
    background-color: #00aced;
    color: white;
  }
  
  .social-icons {
    display: flex;
    gap: 10px;
  }
  
  .social-icons a {
    color: white;
    font-size: 1.2rem;
    transition: 0.3s ease;
  }
  
  .social-icons a:hover {
    color: #00aced;
  }
  
  /* Hamburger menü */
  .menu-toggle {
    display: none;
  }
  
  .hamburger {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: white;
  }
  
  /* Mobil uyumluluk */
  @media screen and (max-width: 768px) {
    .navbar {
      flex-direction: column;
      width: 100%;
      display: none;
      margin-top: 15px;
    }
  
    .menu-toggle:checked ~ .navbar {
      display: flex;
    }
  
    .hamburger {
      display: block;
    }
  
    .social-icons {
      display: flex;
    }
  }
  

.contact-hero {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    padding: 60px 20px;
    background: linear-gradient(145deg, #f7f8fc, #d0e2f0);
    color: #333;
    font-family: 'Segoe UI', sans-serif;
    border-top: 5px solid #00aced;
  }
  
  .contact-left {
    flex: 1;
    background-color: #001f3f;
    color: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 0 15px rgba(0,0,0,0.2);
  }
  
  .contact-left h2 {
    font-size: 28px;
    margin-bottom: 15px;
  }
  
  .contact-left p {
    margin: 10px 0;
  }
  
  .contact-left a {
    color: #00aced;
    text-decoration: underline;
  }
  
  .social-icons {
    margin-top: 20px;
  }
  
  .social-icons a {
    font-size: 24px;
    margin-right: 15px;
    color: #fff;
    transition: transform 0.3s ease;
  }
  
  .social-icons a:hover {
    transform: scale(1.2);
    color: #00aced;
  }
  
  .contact-right {
    flex: 1;
    padding: 30px;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
  }
  
  .contact-right form {
    display: flex;
    flex-direction: column;
    margin-top: 20px;
  }
  
  .contact-right h3 {
    margin-bottom: 15px;
    font-size: 24px;
    color: #001f3f;
  }
  
  .contact-right input,
  .contact-right textarea {
    margin-bottom: 15px;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 16px;
  }
  
  .contact-right button {
    background-color: #00c853;
    color: white;
    padding: 12px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .contact-right button:hover {
    background-color: #009624;
  }
  
  @media (max-width: 768px) {
    .contact-hero {
      flex-direction: column;
    }
  }
  .site-footer {
    background-color: #001f3f;
    color: #fff;
    padding: 40px 20px;
    font-family: 'Segoe UI', sans-serif;
  }
  
  .footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 30px;
  }
  
  .footer-col {
    flex: 1;
    min-width: 220px;
  }
  
  .footer-logo {
    width: 60px;
    height: auto;
    margin-bottom: 10px;
  }
  
  .footer-title {
    margin: 0;
    font-size: 1.3rem;
    font-weight: bold;
  }
  
  .slogan {
    font-style: italic;
    margin-top: 5px;
    color: #ccc;
  }
  
  .footer-col h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    border-bottom: 1px solid #444;
    padding-bottom: 5px;
  }
  
  .footer-col ul {
    list-style: none;
    padding: 0;
  }
  
  .footer-col ul li {
    margin-bottom: 8px;
  }
  
  .footer-col ul li a {
    color: #ddd;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .footer-col ul li a:hover {
    color: #fff;
    text-decoration: underline;
  }
  
  .footer-contact {
    text-align: center;
    font-size: 0.95rem;
    color: #bbb;
    margin-bottom: 30px;
  }
  
  .footer-contact a {
    color: #ccc;
    text-decoration: underline;
  }
  
  .footer-map iframe {
    border-radius: 10px;
    width: 100%;
    max-width: 800px;
    display: block;
    margin: 0 auto;
  }
  
  /* Mobil uyum */
  @media (max-width: 768px) {
    .footer-top {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
  
    .footer-col {
      margin-bottom: 20px;
    }
  
    .footer-map iframe {
      height: 250px;
    }
  }  