.site-header {
    width: 100%;
    background: #f2f3f4;
    padding: 0;
    margin-bottom: 20px;
}

.header-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 28px 4vw 0 4vw;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 24px;
}

.logo {
    height: 68px;
    width: auto;
    object-fit: contain;
}

.site-title {
    font-size: 1.7em;
    font-weight: 600;
    color: #2e658a;
    letter-spacing: 1px;
    white-space: nowrap;
}

.contact-btn {
    background: #2e658a;
    color: #fff;
    font-weight: 600;
    font-size: 1em;
    border-radius: 24px;
    padding: 12px 34px;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(46,101,138,0.10);
    transition: background 0.18s;
}

.contact-btn:hover {
    background: #17405e;
}

.header-divider {
    border: none;
    border-top: 1.5px solid #3a4d58;
    margin: 28px 4vw 0 4vw;
    opacity: 0.65;
}

.mobile-menu-toggle {
    display: none; /* Başlangıçta gizli */
    position: relative;
    z-index: 1001; /* Menü ikonu her zaman en önde */
    background: none;
    border: none;
    font-size: 1.8em;
    color: #2C5C84;
    cursor: pointer;
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    padding: 18px 4vw 0 4vw;
    background: #f2f3f4;
    z-index: 999;
    position: relative;
}

.nav-left {
    display: flex;
    flex-wrap: wrap; /* Menü elemanları sığmazsa alt satıra geçsin */
    gap: 18px;
}

.nav-right a {
    color: #2C5C84;
    font-size: 28px;
    margin-left: 12px;
    transition: transform 0.2s ease, color 0.2s ease;
}

.nav-right a:hover {
    color: #A49C0B;
    transform: scale(1.2);
}



.main-nav { display:flex; gap:12px; align-items:center; }

.mobile-menu-toggle { display:none; }

.main-nav {
  display: flex;
}

.mobile-menu-toggle {
  display: none;
}
/* =========================
   FOOTER – FULL WIDTH (TEK OTORİTE)
========================= */

.site-footer {
    width: 100%;
    background: #f2f3f4;
    color: #1a242e;
    padding: 40px 0 20px;
    margin-top: auto;
    text-align:center;
  }
  
  .site-footer .footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  
    display: flex;
    justify-content: center;
    gap: 70px;
    flex-wrap: wrap;
  }
  
  .site-footer a {
    color: #2C5C84;
    text-decoration: none;
  }

  @media (max-width: 768px) {

    /* En üstteki büyük footer başlığı */
    .footer-title {
      font-size: 1.1rem;
      margin-bottom: 12px;
      line-height: 1.3;
      font-weight: 700;
    }
  
    /* Kolon başlıkları: Takip Et, İletişim, Adres */
    .footer-label {
      font-size: 0.90rem;
      font-weight: 700;
      margin-bottom: 6px;
    }
  
    /* Metinler */
    .site-footer div,
    .site-footer a {
      font-size: 0.8rem;
      line-height: 1.4;
    }
  
    /* Kolonlar arası boşluk biraz daralsın */
    .site-footer .footer-content {
      gap: 30px;
    }
  
    /* En alttaki copyright */
    .footer-copy {
      font-size: 0.7rem;
      margin-top: 18px;
    }
  
  }
  
