
    * { box-sizing: border-box; margin: 0; padding: 0; }
    
    :root {
      --primary: #0f172a;
      --accent: #6366f1;
      --secondary: #f43f5e;
      --bg-light: #f8fafc;
      --text-main: #1e293b;
      --header-h: 80px;
    }

    body {
      font-family: 'Plus Jakarta Sans', sans-serif;
      background: #ffffff;
      color: var(--text-main);
      line-height: 1.6;
      overflow-x: hidden;
    }

    a { text-decoration: none; color: inherit; transition: 0.3s; }
    ul { list-style: none; }

    /* HEADER & NAV */
    header {
      background: rgba(255, 255, 255, 0.9);
      backdrop-filter: blur(12px);
      height: var(--header-h);
      position: sticky;
      top: 0;
      z-index: 1000;
      border-bottom: 1px solid rgba(0,0,0,0.05);
      display: flex;
      align-items: center;
    }

    .nav {
      max-width: 1280px;
      margin: 0 auto;
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 24px;
    }

    .logo {
      font-size: 1.5rem;
      font-weight: 800;
      letter-spacing: -1px;
      color: var(--primary);
    }
    .logo span { color: var(--accent); }

    .nav-links { display: flex; gap: 30px; font-weight: 600; font-size: 0.95rem; }
    .nav-links a:hover { color: var(--accent); }

    /* Mega Menu */
    .mega-wrap { position: relative; }
    .mega-menu {
      position: absolute;
      top: 50px;
      left: 50%;
      transform: translateX(-50%);
      width: 600px;
      background: white;
      border-radius: 16px;
      box-shadow: 0 20px 50px rgba(0,0,0,0.1);
      padding: 20px;
      display: none;
      grid-template-columns: 1fr 1fr;
      gap: 15px;
      border: 1px solid #eee;
    }
    .mega-wrap:hover .mega-menu { display: grid; }
    .mega-item {
      padding: 15px;
      border-radius: 12px;
      transition: 0.2s;
    }
    .mega-item:hover { background: var(--bg-light); }
    .mega-item h4 { font-size: 0.95rem; margin-bottom: 4px; color: var(--primary); }
    .mega-item p { font-size: 0.8rem; opacity: 0.7; }

    .btn-primary {
      background: var(--primary);
      color: white;
      padding: 12px 24px;
      border-radius: 12px;
      font-weight: 700;
      border: none;
      cursor: pointer;
      transition: 0.3s;
    }
    .btn-primary:hover { background: var(--accent); transform: translateY(-2px); }

    /* Ortak Kullanılan Footer Link Hover CSS */
    .footer-links a:hover {
      opacity: 1;
      text-decoration: underline;
    }
  /* ===========================
   MOBIL UYUMLULUK (RESPONSIVE)
   =========================== */

/* Tablet ve Mobil Genel Ayarlar */
@media (max-width: 1024px) {
    .nav {
        padding: 0 20px;
    }

    .nav-links {
        display: none; /* Standart menüyü gizle (Buraya bir Hamburger Menü eklenebilir) */
    }

    .btn-primary {
        padding: 10px 18px;
        font-size: 0.85rem;
    }
}

/* Küçük Telefonlar İçin */
@media (max-width: 480px) {
    :root {
        --header-h: 70px; /* Header yüksekliğini biraz daraltalım */
    }

    .logo {
        font-size: 1.2rem;
    }

    .btn-primary {
        display: none; /* Çok küçük ekranlarda butonu gizleyebilir veya hamburger içine alabilirsin */
    }

    .nav {
        justify-content: center; /* Sadece logo kalsın istiyorsan ortala */
    }
}

/* Mega Menü için Mobil Çözüm */
/* Not: Mobilde hover (üstüne gelme) etkisi sağlıklı çalışmadığı için, 
   mobilde bu menüyü genellikle bir "hamburger ikon" tetiklemelidir. */
@media (max-width: 768px) {
    .mega-menu {
        width: 90vw; /* Ekranın %90'ını kapla */
        grid-template-columns: 1fr; /* Yan yana değil alt alta sırala */
        max-height: 400px;
        overflow-y: auto;
    }
}
/* Hamburger İkonu Stili */
.menu-toggle {
  display: none; /* Masaüstünde gizli */
  flex-direction: column;
  cursor: pointer;
  z-index: 1001;
}

.menu-toggle .bar {
  width: 25px;
  height: 3px;
  background-color: var(--primary);
  margin: 4px 0;
  transition: 0.4s;
  border-radius: 3px;
}

/* Mobil Görünüm Sorgusu */
@media (max-width: 1024px) {
  .menu-toggle {
    display: flex; /* Mobilde görünür */
  }

  .nav-links {
    position: absolute;
    top: var(--header-h);
    left: -100%; /* Başlangıçta ekranın dışında */
    flex-direction: column;
    background: #fff;
    width: 100%;
    height: calc(100vh - var(--header-h));
    text-align: center;
    transition: 0.5s;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    padding: 40px 0;
    gap: 20px;
  }

  .nav-links.active {
    left: 0; /* Menü açıldığında içeri gelsin */
  }

  .hide-mobile {
    display: none; /* Mobilde butonu gizlemek istersen */
  }

  /* Hamburger Animasyonu (X şekline dönüşme) */
  .menu-toggle.is-active .bar:nth-child(2) { opacity: 0; }
  .menu-toggle.is-active .bar:nth-child(1) { transform: translateY(11px) rotate(45deg); }
  .menu-toggle.is-active .bar:nth-child(3) { transform: translateY(-11px) rotate(-45deg); }
}