/* ===== index.html ===== */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --green-dark:   #1b5e35;
      --green-mid:    #2d8653;
      --green-bright: #3aad68;
      --green-light:  #d4f0e0;
      --green-pale:   #eaf6ef;
      --red:          #e63946;
      --white:        #ffffff;
      --gray-bg:      #f4f7f5;
      --text-dark:    #1a2a1f;
      --text-mid:     #3b5040;
      --text-light:   #7a9080;
      --border:       #ddeee5;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Outfit', sans-serif;
      color: var(--text-dark);
      background: #fff;
      overflow-x: hidden;
    }

    a { text-decoration: none; color: inherit; }
    img { display: block; max-width: 100%; }

    /* ═══════════════════════════════
       STICKY HEADER
    ═══════════════════════════════ */
    .site-header {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 9999;
      background: #fff;
      box-shadow: 0 2px 10px rgba(0,0,0,0.06);
      height: 70px;
      display: flex;
      align-items: center;
    }
    .header-wrap {
      flex: 1;
      padding: 0 40px;
      display: flex;
      align-items: center;
      gap: 0;
    }
    .logo {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 2px;
      margin-right: 48px;
      text-decoration: none;
    }
    .logo-badge {
      width: 44px; height: 44px;
      background: linear-gradient(135deg, #3aad68, #1b5e35);
      border-radius: 10px;
      display: flex; align-items: center; justify-content: center;
    }
    .logo-badge svg { width: 26px; height: 26px; }
    .logo-name {
      font-size: 0.8rem;
      font-weight: 700;
      color: var(--green-dark);
      letter-spacing: 1px;
      text-transform: lowercase;
    }

    .main-nav {
      display: flex;
      align-items: center;
      gap: 12px;
      flex: 1;
      justify-content: center;
    }
    .main-nav > .nav-item {
      position: relative;
    }
    .main-nav a {
      font-size: 1.1rem;
      font-weight: 500;
      color: #222;
      padding: 10px 16px;
      border-radius: 7px;
      display: flex; align-items: center; gap: 6px;
      transition: color .18s;
      white-space: nowrap;
    }
    .main-nav a:hover { color: var(--green-dark); }
    .main-nav .chevron {
      font-size: 1rem;
      opacity: 0.6;
      display: flex;
      align-items: center;
    }

    /* Dropdown menü */
    .dropdown-menu {
      position: absolute;
      top: 100%;
      left: 0;
      background: #fff;
      border-radius: 12px;
      box-shadow: 0 8px 32px rgba(0,0,0,0.12);
      padding: 16px 0;
      min-width: 260px;
      opacity: 0;
      visibility: hidden;
      transform: translateY(-10px);
      transition: opacity .25s, transform .25s, visibility .25s;
      z-index: 100;
      margin-top: 8px;
    }
    .nav-item:hover .dropdown-menu {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }
    .dropdown-menu a {
      display: block;
      padding: 12px 24px;
      font-size: 1rem;
      font-weight: 500;
      color: var(--green-dark);
      transition: background .15s;
      border-radius: 0;
    }
    .dropdown-menu a:hover {
      background: #f7fbf8;
    }

    /* "Kaza Destek" — kırmızı, tam köşeye yapışık */
    .btn-kaza {
      position: fixed;
      top: 0; right: 0;
      height: 70px;
      background: #f04452;
      color: #fff;
      font-weight: 700;
      font-size: 0.95rem;
      padding: 0 32px;
      display: flex; align-items: center;
      white-space: nowrap;
      z-index: 10000;
      transition: background .18s;
      letter-spacing: 0.3px;
    }
    .btn-kaza:hover { background: #d63340; }

    /* ═══════════════════════════════
       HERO
    ═══════════════════════════════ */
    .hero {
      margin-top: 70px;
      height: calc(100vh - 70px);
      min-height: 560px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      overflow: hidden;
    }

    /* Sol — yeşil gradyan */
    .hero-left {
      background: linear-gradient(145deg, #5ed68a 0%, #3aad68 30%, #2d8653 60%, #1b5e35 100%);
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 60px 56px;
      position: relative;
      overflow: hidden;
    }
    .hero-left::after {
      content: '';
      position: absolute;
      bottom: -80px; right: -80px;
      width: 280px; height: 280px;
      border-radius: 50%;
      background: rgba(255,255,255,0.06);
      pointer-events: none;
    }

    .hero-title {
      font-size: 2.6rem;
      font-weight: 800;
      color: #fff;
      line-height: 1.18;
      margin-bottom: 18px;
      transition: opacity .35s, transform .35s;
    }
    .hero-desc {
      font-size: 0.95rem;
      color: rgba(255,255,255,0.88);
      line-height: 1.7;
      margin-bottom: 36px;
      max-width: 380px;
      transition: opacity .35s, transform .35s;
    }
    .hero-btn {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: var(--green-dark);
      color: #fff;
      padding: 14px 28px;
      border-radius: 10px;
      font-weight: 700;
      font-size: 0.95rem;
      width: fit-content;
      box-shadow: 0 6px 20px rgba(0,0,0,0.2);
      transition: background .18s, transform .18s;
    }
    .hero-btn:hover { background: #0f3a20; transform: translateY(-2px); }
    .hero-btn i {
      transition: transform .2s;
    }
    .hero-btn:hover i {
      transform: translate(2px, -2px);
    }

    /* Sağ — beyaz, maskot */
    .hero-right {
      background: #fff;
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }

    /* ── Dönen çark sistemi ── */
    .orbit-system {
      position: relative;
      width: 700px;
      height: 700px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    /* Maskot — ortada sabit */
    .mascot-center {
      position: absolute;
      top: 50%; left: 50%;
      transform: translate(-50%, -50%);
      z-index: 3;
      width: 450px;
      animation: mascotBob 5s ease-in-out infinite;
    }
    .mascot-center img {
      width: 100%;
      height: auto;
      display: block;
    }
    @keyframes mascotBob {
      0%,100% { transform: translate(-50%,-50%) translateY(0); }
      50%      { transform: translate(-50%,-50%) translateY(-10px); }
    }

    /* Dönen halka — 6 ikon bu div'in içinde, hep çarkı döner */
    .orbit-ring {
      position: absolute;
      top: 50%; left: 50%;
      width: 620px; height: 620px;
      margin-left: -310px;
      margin-top: -310px;
      border-radius: 50%;
      /* İnce yardımcı çizgi (isteğe bağlı) */
      /* border: 1px dashed rgba(27,94,53,0.12); */
      animation: orbitSpin 12s linear infinite;
      transform-origin: center center;
      z-index: 15;
    }
    .orbit-ring.paused {
      animation-play-state: paused;
    }

    @keyframes orbitSpin {
      from { transform: rotate(0deg); }
      to   { transform: rotate(360deg); }
    }

    /* Her ikon — halkanın üzerinde konumlandırılmış */
    .o-icon {
      position: absolute;
      width: 100px; height: 100px;
      border-radius: 50%;
      background: #1b5e35;
      display: flex; align-items: center; justify-content: center;
      cursor: pointer;
      box-shadow: 0 4px 16px rgba(27,94,53,0.35);
      transition: background .2s, box-shadow .2s;
      z-index: 20;
      /* İkon kendi etrafında ters döner — böylece içerik hep dik durur */
      animation: counterSpin 12s linear infinite;
    }
    .orbit-ring.paused .o-icon {
      animation-play-state: paused;
    }
    @keyframes counterSpin {
      from { transform: rotate(0deg); }
      to   { transform: rotate(-360deg); }
    }

    .o-icon:hover {
      background: #0f3a1e;
      box-shadow: 0 6px 24px rgba(27,94,53,0.55);
    }

    /* Aktif (son hover'da kalınan) ikon — farklı renk */
    .o-icon--active {
      background: #3aad68 !important;
      box-shadow: 0 6px 28px rgba(58,173,104,0.55) !important;
      outline: 3px solid rgba(58,173,104,0.35);
    }

    .o-icon i {
      font-size: 2.5rem;
      line-height: 1;
      display: block;
      color: #fff;
    }

    /* 6 ikonun yerleşimi — JS tarafından hesaplanacak */
    .o-icon {
      position: absolute;
      /* top/left JS ile set edilecek */
    }

    /* Yazı geçiş animasyonu */
    .hero-title, .hero-desc {
      transition: opacity .3s ease, transform .3s ease;
    }
    .hero-title.fading, .hero-desc.fading {
      opacity: 0;
      transform: translateY(6px);
    }

    /* ═══════════════════════════════
       FİX HESAPLAMA SECTION
    ═══════════════════════════════ */
    .fix-section {
      padding: 70px 0 80px;
      background: #fff;
    }
    .fix-title-row {
      text-align: center;
      margin-bottom: 48px;
    }
    .section-eyebrow {
      display: inline-block;
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      color: var(--green-mid);
      padding: 5px 16px;
      border: 1px solid #c8e6d4;
      border-radius: 20px;
      margin-bottom: 18px;
    }
    .fix-title-row h2 {
      font-size: 2rem;
      font-weight: 800;
      color: var(--text-dark);
      line-height: 1.25;
    }

    .fix-grid {
      max-width: 1100px;
      margin: 0 auto;
      padding: 0 28px;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }
    .fix-grid-2 {
      max-width: 1100px;
      margin: 20px auto 0;
      padding: 0 28px;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }

    /* Kart */
    .fix-card {
      border: 1.5px solid #e2ede8;
      border-radius: 18px;
      padding: 32px 28px 28px;
      background: #fff;
      cursor: pointer;
      position: relative;
      height: 280px;
      display: flex;
      flex-direction: column;
      transition: background .25s, border-color .25s, box-shadow .25s;
    }
    .fix-card:hover {
      background: #eaf6f0;
      border-color: #a8d5bc;
      box-shadow: 0 6px 28px rgba(27,94,53,0.10);
    }

    /* İkon */
    .fix-card-icon {
      width: 56px; height: 56px;
      margin-bottom: 18px;
      flex-shrink: 0;
    }
    .fix-card-icon svg {
      width: 56px; height: 56px;
    }

    /* Başlık */
    .fix-card h3 {
      font-size: 1rem;
      font-weight: 700;
      color: var(--text-dark);
    }

    /* Açıklama — normalde gizli, hover'da görünür */
    .fix-card-desc {
      font-size: 0.8rem;
      color: var(--text-light);
      line-height: 1.65;
      opacity: 0;
      overflow: hidden;
      max-height: 0;
      transition: opacity .3s ease, max-height .3s ease, margin-top .3s ease;
      margin-top: 0;
    }
    .fix-card:hover .fix-card-desc {
      opacity: 1;
      max-height: 100px;
      margin-top: 10px;
    }

    /* Alt satır: numara + ok butonu */
    .fix-card-bottom {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-top: auto;
      padding-top: 16px;
    }
    .fix-card-num {
      font-size: 1.1rem;
      font-weight: 700;
      color: #c8dfd2;
      letter-spacing: 0.5px;
    }
    .fix-card-btn {
      width: 38px; height: 38px;
      background: var(--green-mid);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      color: #fff;
      font-size: 1rem;
      font-weight: 700;
      flex-shrink: 0;
      transition: background .2s, transform .2s;
      text-decoration: none;
    }
    .fix-card:hover .fix-card-btn {
      background: var(--green-dark);
      transform: scale(1.08);
    }

    /* ═══════════════════════════════
       STATS STRIP
    ═══════════════════════════════ */
    .stats-strip {
      display: grid;
      grid-template-columns: 1fr 1fr;
      min-height: 280px;
    }

    /* Sol — koyu yeşil */
    .stats-left {
      background: #1b5e35;
      padding: 60px 56px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
    .stats-left .big-num {
      font-size: 6rem;
      font-weight: 900;
      color: #7de8a8;
      line-height: 1;
      letter-spacing: -2px;
    }
    .stats-left .big-label {
      font-size: 1.5rem;
      font-weight: 800;
      color: #fff;
      line-height: 1.3;
      margin-top: 8px;
    }

    /* Sağ — açık krem/bej */
    .stats-right {
      background: #f0f5f1;
      padding: 60px 64px;
      display: flex;
      align-items: center;
      gap: 56px;
    }
    .stat-circle-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 14px;
    }
    .stat-circle {
      width: 110px; height: 110px;
      border-radius: 50%;
      border: 2.5px solid #1b5e35;
      display: flex;
      align-items: center;
      justify-content: center;
      background: transparent;
    }
    .stat-circle span {
      font-size: 1.4rem;
      font-weight: 800;
      color: #1b5e35;
    }
    .stat-circle-label {
      font-size: 0.88rem;
      font-weight: 500;
      color: #3b5040;
      text-align: center;
    }

    /* ═══════════════════════════════
       TAZMİO GÜVENCESİ / ADIMLAR
    ═══════════════════════════════ */
    .guvence-section {
      background: #f7fbf8;
      padding: 60px 0 80px;
    }
    .guvence-wrap {
      max-width: 1100px;
      margin: 0 auto;
      padding: 0 40px;
      display: grid;
      grid-template-columns: 300px 1fr;
      gap: 56px;
      align-items: start;
    }
    .guvence-left h2 {
      font-size: 2rem;
      font-weight: 800;
      line-height: 1.25;
      color: #1b5e35;
      margin-bottom: 44px;
    }
    /* Mühür */
    .muhur-wrap {
      display: flex;
      justify-content: center;
    }
    .muhur {
      width: 175px; height: 175px;
      position: relative;
      display: flex; align-items: center; justify-content: center;
    }
    .muhur-bg {
      position: absolute;
      top: 0; left: 0;
      width: 100%; height: 100%;
    }
    .muhur-inner {
      position: relative;
      z-index: 2;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 1px;
    }
    .muhur-inner .mz-icon {
      width: 36px; height: 36px;
      background: #7de8a8;
      border-radius: 8px;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.1rem;
      font-weight: 900;
      color: #1b5e35;
      margin-bottom: 4px;
    }
    .muhur-inner .mname {
      font-size: 0.9rem;
      font-weight: 700;
      color: #fff;
      letter-spacing: 0.5px;
    }
    .muhur-inner .mlabel {
      font-size: 0.72rem;
      font-weight: 600;
      color: #7de8a8;
      letter-spacing: 0.3px;
    }

    /* Sağ — adım bloğu */
    .steps-wrap {
      padding-top: 0;
      position: relative;
    }

    .steps-mascot {
      position: absolute;
      top: -70px;
      left: -30px;
      width: 100px;
      height: 100px;
      transition: left 1.2s cubic-bezier(0.4, 0, 0.2, 1), top 1.2s cubic-bezier(0.4, 0, 0.2, 1);
      z-index: 10;
    }
    .steps-mascot img {
      width: 100%;
      height: 100%;
      display: block;
      object-fit: contain;
    }

    /* Numara + çizgi satırı */
    .step-nums {
      display: flex;
      align-items: center;
      margin-bottom: 20px;
    }
    .snum {
      width: 32px; height: 32px;
      border-radius: 50%;
      border: 1.5px solid #c0d9ca;
      background: #fff;
      display: flex; align-items: center; justify-content: center;
      font-size: 0.72rem;
      font-weight: 700;
      color: #5a7a68;
      flex-shrink: 0;
      z-index: 2;
      transition: background 0.4s ease, color 0.4s ease, border-color 0.4s ease, transform 0.3s ease;
    }
    .snum.active {
      background: #3aad68;
      color: #fff;
      border-color: #3aad68;
      transform: scale(1.15);
      box-shadow: 0 4px 12px rgba(58, 173, 104, 0.35);
    }
    .step-line {
      flex: 1;
      height: 2px;
      margin: 0 2px;
      background-image: linear-gradient(to right, #c0d9ca 50%, transparent 50%);
      background-size: 20px 2px;
      background-repeat: repeat-x;
      animation: lineFlow 1.5s linear infinite;
    }
    @keyframes lineFlow {
      0% { background-position: 0 0; }
      100% { background-position: 20px 0; }
    }

    /* 3 kolon içerik */
    .step-cols {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      margin-bottom: 36px;
    }
    .step-col h4 {
      font-size: 0.88rem;
      font-weight: 800;
      color: #1a2a1f;
      margin-bottom: 8px;
      line-height: 1.35;
    }
    .step-col p {
      font-size: 0.78rem;
      color: #7a9080;
      line-height: 1.7;
    }
    .step-divider {
      border: none;
      margin: 0 0 32px;
    }

    /* ═══════════════════════════════
       FAQ — ZAYFIX YANITLAR
    ═══════════════════════════════ */
    .faq-section {
      background: linear-gradient(135deg, #5a9e7e 0%, #2d6b4e 30%, #1a4833 60%, #0d2d1e 100%);
      padding: 80px 28px;
      color: #fff;
      position: relative;
      overflow: hidden;
    }
    .faq-wrap {
      max-width: 1240px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 400px 1fr;
      gap: 64px;
      position: relative;
      z-index: 1;
    }
    .faq-left h2 {
      font-size: 2.2rem;
      font-weight: 800;
      margin-bottom: 32px;
      line-height: 1.25;
      color: #fff;
    }
    .faq-counter {
      background: #fff;
      border: none;
      border-radius: 16px;
      padding: 32px 28px;
      display: block;
      width: 100%;
      color: var(--text-dark);
    }
    .faq-counter .badge {
      font-size: 0.7rem;
      letter-spacing: 1.8px;
      text-transform: uppercase;
      color: #fff;
      background: #7dd895;
      padding: 8px 16px;
      border-radius: 6px;
      display: inline-block;
      margin-bottom: 24px;
      font-weight: 700;
    }
    .faq-counter .count-num {
      font-size: 5rem;
      font-weight: 900;
      color: #1b5e35;
      line-height: 1;
      display: block;
    }
    .faq-counter .count-lbl {
      font-size: 0.85rem;
      font-weight: 700;
      color: #1b5e35;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      display: block;
      margin-top: 4px;
      background: none;
      padding: 0;
      border-radius: 0;
    }

    .faq-list { display: flex; flex-direction: column; gap: 12px; }
    .faq-item {
      background: #dce3df;
      border: none;
      border-radius: 14px;
      padding: 20px 24px;
      cursor: pointer;
      transition: background .18s, transform .15s;
      overflow: hidden;
    }
    .faq-item:hover {
      background: #d0d9d4;
      transform: translateY(-1px);
    }
    .faq-item.active {
      background: #1b5e35;
    }
    .faq-item-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
    }
    .faq-item-header span {
      font-size: 0.92rem;
      font-weight: 700;
      color: #1a2a1f;
    }
    .faq-item.active .faq-item-header span {
      color: #fff;
    }
    .faq-btn {
      flex-shrink: 0;
      width: 36px; height: 36px;
      border-radius: 50%;
      border: none;
      background: #3aad68;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.4rem;
      font-weight: 300;
      color: #fff;
      transition: background .2s, transform .3s;
    }
    .faq-item.active .faq-btn {
      background: #fff;
      color: #1b5e35;
    }
    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s ease, margin-top 0.3s ease;
      margin-top: 0;
    }
    .faq-item.active .faq-answer {
      max-height: 250px;
      margin-top: 16px;
    }
    .faq-answer p {
      font-size: 0.85rem;
      color: rgba(255,255,255,0.88);
      line-height: 1.7;
    }

    /* ═══════════════════════════════
       YORUMLAR
    ═══════════════════════════════ */
    .reviews-section {
      margin: 80px 0;
      padding: 0;
      background: linear-gradient(135deg, #7dd895 0%, #5ec77e 30%, #3aad68 60%, #2d8653 100%);
      overflow: hidden;
      position: relative;
    }
    .reviews-container {
      padding: 60px 0;
    }
    .review-row {
      display: flex;
      gap: 16px;
      margin-bottom: 16px;
      animation: slideRight 40s linear infinite;
    }
    .review-row:last-child {
      animation: slideLeft 45s linear infinite;
    }
    .review-row.paused {
      animation-play-state: paused;
    }

    @keyframes slideRight {
      from { transform: translateX(-50%); }
      to { transform: translateX(0%); }
    }
    @keyframes slideLeft {
      from { transform: translateX(0%); }
      to { transform: translateX(-50%); }
    }

    .review-card {
      min-width: 320px;
      max-width: 320px;
      border: none;
      border-radius: 16px;
      padding: 24px;
      background: rgba(255, 255, 255, 0.15);
      backdrop-filter: blur(10px);
      flex-shrink: 0;
    }
    .rv-top {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 14px;
    }
    .rv-avatar {
      width: 44px; height: 44px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.3);
      display: flex; align-items: center; justify-content: center;
      color: #fff;
      font-weight: 700;
      font-size: 1.1rem;
      flex-shrink: 0;
    }
    .rv-name {
      font-size: 1rem;
      font-weight: 700;
      color: #fff;
    }
    .rv-stars {
      color: #ffa500;
      font-size: 0.85rem;
      margin-top: 4px;
    }
    .rv-text {
      font-size: 0.85rem;
      color: rgba(255, 255, 255, 0.95);
      line-height: 1.65;
    }

    /* ═══════════════════════════════
       FOOTER
    ═══════════════════════════════ */
    .site-footer {
      background: #2d7857;
      color: #fff;
      padding: 60px 28px 28px;
    }
    .footer-wrap {
      max-width: 1280px;
      margin: 0 auto;
    }
    .footer-cols {
      display: grid;
      grid-template-columns: 1.4fr 1fr 1fr 1.4fr;
      gap: 60px;
      margin-bottom: 50px;
    }

    /* Sol kolon - İletişim */
    .ft-contact-col h4 {
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      margin-bottom: 12px;
      opacity: 0.9;
    }
    .ft-contact-col .email {
      font-size: 1.1rem;
      font-weight: 600;
      margin-bottom: 24px;
      color: #fff;
    }
    .ft-contact-col .phone-label {
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      margin-bottom: 8px;
      opacity: 0.9;
    }
    .ft-contact-col .phone {
      font-size: 1.35rem;
      font-weight: 700;
      margin-bottom: 24px;
      color: #fff;
    }
    .ft-contact-col .address-label {
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      margin-bottom: 8px;
      opacity: 0.9;
    }
    .ft-contact-col .address {
      font-size: 0.9rem;
      line-height: 1.6;
      color: #fff;
    }

    /* Orta kolonlar - Linkler */
    .ft-col h4 {
      font-size: 1.05rem;
      font-weight: 700;
      color: #fff;
      margin-bottom: 20px;
    }
    .ft-col ul {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }
    .ft-col ul li a {
      font-size: 0.88rem;
      color: #fff;
      transition: opacity .18s;
      opacity: 0.9;
    }
    .ft-col ul li a:hover { opacity: 1; }

    /* Sağ kolon - Newsletter */
    .ft-newsletter-col {
      background: rgba(0,0,0,0.15);
      padding: 32px 28px;
      border-radius: 12px;
    }
    .ft-newsletter-col p {
      font-size: 0.88rem;
      line-height: 1.6;
      margin-bottom: 20px;
      color: #fff;
    }
    .ft-newsletter-col .nl-input-wrap {
      position: relative;
      margin-bottom: 16px;
    }
    .ft-newsletter-col input {
      width: 100%;
      padding: 13px 50px 13px 16px;
      border-radius: 50px;
      border: none;
      background: #fff;
      color: #333;
      font-family: inherit;
      font-size: 0.85rem;
      outline: none;
    }
    .ft-newsletter-col input::placeholder { color: #999; }
    .ft-newsletter-col .nl-btn {
      position: absolute;
      right: 6px;
      top: 50%;
      transform: translateY(-50%);
      width: 36px;
      height: 36px;
      background: #7dd895;
      border: none;
      border-radius: 50%;
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      font-size: 1.1rem;
      transition: background .18s;
    }
    .ft-newsletter-col .nl-btn:hover { background: #5ec77e; }
    .ft-newsletter-col .checkbox-wrap {
      display: flex;
      align-items: flex-start;
      gap: 8px;
    }
    .ft-newsletter-col .checkbox-wrap input[type="checkbox"] {
      width: 16px;
      height: 16px;
      margin-top: 2px;
      cursor: pointer;
      flex-shrink: 0;
      padding: 0;
    }
    .ft-newsletter-col .checkbox-wrap label {
      font-size: 0.8rem;
      color: #fff;
      cursor: pointer;
      line-height: 1.4;
    }

    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.15);
      padding-top: 20px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 0.8rem;
      color: rgba(255,255,255,0.7);
      gap: 16px;
      flex-wrap: wrap;
    }
    .footer-bottom-links {
      display: flex;
      gap: 24px;
    }
    .footer-bottom-links a {
      color: rgba(255,255,255,0.7);
      transition: color .18s;
    }
    .footer-bottom-links a:hover { color: #fff; }

    /* ═══════════════════════════════
       KAZA DESTEK SIDEBAR
    ═══════════════════════════════ */
    .kaza-overlay {
      position: fixed;
      top: 0; left: 0; right: 0; bottom: 0;
      background: rgba(0, 0, 0, 0.5);
      z-index: 10000;
      opacity: 0;
      visibility: hidden;
      transition: opacity .3s, visibility .3s;
    }
    .kaza-overlay.active {
      opacity: 1;
      visibility: visible;
    }

    .kaza-sidebar {
      position: fixed;
      top: 0;
      right: 0;
      width: 100%;
      max-width: 483px;
      height: 100vh;
      background: #fff;
      z-index: 10001;
      transform: translateX(100%);
      transition: transform .4s cubic-bezier(0.4, 0, 0.2, 1);
      overflow-y: auto;
      box-shadow: -4px 0 24px rgba(0,0,0,0.15);
    }
    .kaza-sidebar.active {
      transform: translateX(0);
    }

    /* Header */
    .kaza-header {
      background: linear-gradient(135deg, #3aad68, #2d8653);
      padding: 24px 32px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .kaza-logo {
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .kaza-logo-icon {
      width: 52px;
      height: 52px;
    }
    .kaza-logo-text {
      font-size: 1.6rem;
      font-weight: 700;
      color: #7de8a8;
      letter-spacing: 0.5px;
    }
    .kaza-close {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      border: 2px solid rgba(255,255,255,0.5);
      background: transparent;
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.4rem;
      cursor: pointer;
      transition: background .2s, border-color .2s;
    }
    .kaza-close:hover {
      background: rgba(255,255,255,0.1);
      border-color: #fff;
    }

    /* Content */
    .kaza-content {
      padding: 32px;
    }

    /* Title card */
    .kaza-title-card {
      background: linear-gradient(135deg, #ff6b7a, #f04452);
      border-radius: 16px;
      padding: 24px 28px;
      text-align: center;
      margin-bottom: 32px;
    }
    .kaza-title-card h2 {
      font-size: 1.5rem;
      font-weight: 800;
      color: #fff;
      margin-bottom: 8px;
    }
    .kaza-title-card p {
      font-size: 0.9rem;
      color: rgba(255,255,255,0.95);
    }

    /* Section */
    .kaza-section {
      margin-bottom: 32px;
    }
    .kaza-section-header {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 20px;
    }
    .kaza-section-num {
      width: 32px;
      height: 32px;
      border-radius: 50%;
      background: #f04452;
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      font-size: 0.95rem;
      flex-shrink: 0;
    }
    .kaza-section-title {
      font-size: 1.15rem;
      font-weight: 800;
      color: #1a2a1f;
    }

    /* Form */
    .kaza-form-group {
      margin-bottom: 16px;
    }
    .kaza-input,
    .kaza-select,
    .kaza-textarea {
      width: 100%;
      padding: 14px 16px;
      border: 1.5px solid #e5e5e5;
      border-radius: 10px;
      font-family: inherit;
      font-size: 0.9rem;
      color: #333;
      outline: none;
      transition: border-color .2s;
    }
    .kaza-input:focus,
    .kaza-select:focus,
    .kaza-textarea:focus {
      border-color: #3aad68;
    }
    .kaza-input::placeholder,
    .kaza-textarea::placeholder {
      color: #999;
    }

    /* Phone input */
    .kaza-phone-group {
      display: flex;
      gap: 8px;
    }
    .kaza-phone-prefix {
      width: 80px;
      flex-shrink: 0;
      padding: 14px 16px;
      border: 1.5px solid #e5e5e5;
      border-radius: 10px;
      font-size: 0.9rem;
      color: #333;
      background: #f9f9f9;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 600;
    }
    .kaza-phone-input {
      flex: 1;
    }

    /* Textarea */
    .kaza-textarea {
      min-height: 120px;
      resize: vertical;
    }

    /* Icons in inputs */
    .kaza-input-wrap {
      position: relative;
    }
    .kaza-input-icon {
      position: absolute;
      left: 16px;
      top: 50%;
      transform: translateY(-50%);
      color: #999;
      font-size: 1.2rem;
      pointer-events: none;
      z-index: 1;
    }
    .kaza-input-wrap .kaza-input,
    .kaza-input-wrap .kaza-select,
    .kaza-input-wrap .kaza-textarea {
      padding-left: 44px;
    }
    .kaza-input-wrap .kaza-phone-input {
      padding-left: 44px;
    }

    /* Submit button */
    .kaza-submit {
      width: 100%;
      padding: 16px 24px;
      background: #1b5e35;
      border: none;
      border-radius: 12px;
      color: #fff;
      font-weight: 700;
      font-size: 1rem;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      margin-bottom: 24px;
      transition: background .2s;
    }
    .kaza-submit:hover {
      background: #0f3a20;
    }

    /* Info box */
    .kaza-info-box {
      background: #f0f7ff;
      border-left: 3px solid #3a9bd6;
      border-radius: 10px;
      padding: 16px 20px;
      margin-bottom: 32px;
    }
    .kaza-info-header {
      display: flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 6px;
    }
    .kaza-info-icon {
      width: 20px;
      height: 20px;
      border-radius: 50%;
      background: #3a9bd6;
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.75rem;
      font-weight: 700;
    }
    .kaza-info-text {
      font-size: 0.88rem;
      color: #1a2a1f;
    }
    .kaza-info-text strong {
      color: #f04452;
      font-weight: 700;
    }
    .kaza-info-sub {
      font-size: 0.82rem;
      color: #666;
      margin-top: 4px;
    }

    /* Contact section */
    .kaza-contact-section {
      margin-bottom: 24px;
    }
    .kaza-contact-section h3 {
      font-size: 0.85rem;
      font-weight: 700;
      color: #1b5e35;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      margin-bottom: 8px;
    }
    .kaza-contact-section p {
      font-size: 0.9rem;
      color: #3b5040;
      line-height: 1.6;
    }

    /* ═══════════════════════════════
       WHATSAPP FLOAT
    ═══════════════════════════════ */
    .wa-float {
      position: fixed;
      bottom: 24px; right: 24px;
      z-index: 9999;
      width: 52px; height: 52px;
      background: #25d366;
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.6rem;
      box-shadow: 0 4px 18px rgba(37,211,102,0.45);
      transition: transform .2s;
      animation: waPulse 2.8s ease-in-out infinite;
    }
    .wa-float:hover { transform: scale(1.1); }
    @keyframes waPulse {
      0%,100% { box-shadow: 0 4px 18px rgba(37,211,102,0.45); }
      50%      { box-shadow: 0 4px 30px rgba(37,211,102,0.7); }
    }

/* ═══════════════════════════════
   GLOBAL RESPONSIVE (FINAL OVERRIDE)
═══════════════════════════════ */

@media (max-width: 1200px) {
  .fix-grid,
  .fix-grid-2,
  .blog-grid,
  .related-grid,
  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .footer-cols {
    grid-template-columns: 1fr 1fr !important;
    gap: 28px !important;
  }

  .guvence-wrap,
  .faq-wrap,
  .about-upper-wrap,
  .about-lower-wrap {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }

  .article-header,
  .article-content,
  .article-footer,
  .form-card {
    padding-left: 28px !important;
    padding-right: 28px !important;
  }
}

@media (max-width: 992px) {
  .site-header {
    position: relative !important;
    height: auto !important;
    padding: 10px 0 !important;
  }

  .header-wrap {
    padding: 0 16px !important;
    flex-wrap: wrap !important;
    gap: 10px !important;
  }

  .logo {
    margin-right: 0 !important;
  }

  .main-nav {
    width: 100% !important;
    justify-content: flex-start !important;
    overflow-x: auto !important;
    gap: 6px !important;
    padding-bottom: 4px !important;
  }

  .main-nav a {
    font-size: 0.95rem !important;
    padding: 8px 10px !important;
    white-space: nowrap !important;
  }

  .btn-kaza {
    position: static !important;
    margin-left: auto !important;
    height: 42px !important;
    padding: 0 14px !important;
    border-radius: 10px !important;
    font-size: 0.85rem !important;
  }

  .hero,
  .blog-top,
  .blog-detail,
  .fix-main,
  .about-upper,
  .services-top {
    margin-top: 0 !important;
  }

  .hero {
    grid-template-columns: 1fr !important;
    height: auto !important;
    min-height: unset !important;
  }

  .hero-left {
    padding: 36px 20px !important;
  }

  .hero-right {
    min-height: 460px !important;
  }

  .hero-title {
    font-size: 2rem !important;
  }

  .orbit-system {
    transform: scale(0.82) !important;
    transform-origin: center center !important;
  }

  .stats-strip {
    grid-template-columns: 1fr !important;
  }

  .stats-left,
  .stats-right {
    padding: 28px 20px !important;
  }

  .stats-left .big-num {
    font-size: 4rem !important;
  }

  .stats-right {
    justify-content: flex-start !important;
    flex-wrap: wrap !important;
    gap: 18px !important;
  }

  .reviews-section {
    margin: 40px 0 !important;
  }

  .review-card {
    min-width: 280px !important;
    max-width: 280px !important;
  }

  .kaza-sidebar {
    max-width: 420px !important;
  }
}

@media (max-width: 768px) {
  .fix-grid,
  .fix-grid-2,
  .blog-grid,
  .related-grid,
  .services-grid,
  .form-row,
  .features-grid,
  .step-cols {
    grid-template-columns: 1fr !important;
  }

  .fix-section,
  .blog-list,
  .blog-top,
  .blog-detail,
  .services-top,
  .services-cards,
  .faq-section,
  .guvence-section {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  .fix-grid,
  .fix-grid-2,
  .blog-list-wrap,
  .services-cards-wrap,
  .guvence-wrap,
  .faq-wrap,
  .about-upper-wrap,
  .about-lower-wrap,
  .fix-container {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .fix-header h1,
  .blog-top h1,
  .related-header h2,
  .services-top h1,
  .services-header h2,
  .about-left h1,
  .about-lower-right h2,
  .faq-left h2,
  .article-title {
    font-size: 1.7rem !important;
    line-height: 1.3 !important;
  }

  .article-image {
    height: 260px !important;
  }

  .article-header,
  .article-content,
  .article-footer,
  .form-card,
  .kaza-content,
  .kaza-header {
    padding: 18px !important;
  }

  .article-footer {
    flex-direction: column !important;
    align-items: flex-start !important;
  }

  .faq-counter .count-num {
    font-size: 3.2rem !important;
  }

  .snum {
    width: 28px !important;
    height: 28px !important;
    font-size: 0.65rem !important;
  }

  .steps-mascot {
    width: 72px !important;
    height: 72px !important;
  }

  .service-card,
  .fix-card {
    height: auto !important;
    min-height: 220px !important;
  }

  .footer-cols {
    grid-template-columns: 1fr !important;
  }

  .footer-bottom {
    flex-direction: column !important;
    align-items: flex-start !important;
  }

  .kaza-sidebar {
    max-width: 100% !important;
  }

  .wa-float {
    width: 46px !important;
    height: 46px !important;
    right: 14px !important;
    bottom: 14px !important;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.55rem !important;
  }

  .hero-desc,
  .about-left p,
  .about-lower-right > p,
  .blog-top p,
  .services-top p,
  .article-content,
  .fix-header p,
  .fix-card-desc,
  .rv-text {
    font-size: 0.9rem !important;
  }

  .hero-right {
    min-height: 390px !important;
  }

  .orbit-system {
    transform: scale(0.66) !important;
  }

  .stats-left .big-num {
    font-size: 3.2rem !important;
  }

  .stat-circle {
    width: 86px !important;
    height: 86px !important;
  }

  .stat-circle span {
    font-size: 1rem !important;
  }

  .review-card {
    min-width: 240px !important;
    max-width: 240px !important;
    padding: 16px !important;
  }

  .kaza-title-card h2 {
    font-size: 1.2rem !important;
  }

  .kaza-submit,
  .submit-btn {
    font-size: 0.92rem !important;
    padding: 13px 14px !important;
  }
}

/* ═══════════════════════════════
   GLOBAL RESPONSIVE
═══════════════════════════════ */

@media (max-width: 1200px) {
  .fix-grid,
  .fix-grid-2,
  .blog-grid,
  .related-grid,
  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .footer-cols {
    grid-template-columns: 1fr 1fr !important;
    gap: 28px !important;
  }

  .guvence-wrap,
  .faq-wrap,
  .about-upper-wrap,
  .about-lower-wrap {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }

  .article-header,
  .article-content,
  .article-footer,
  .form-card {
    padding-left: 28px !important;
    padding-right: 28px !important;
  }
}

@media (max-width: 992px) {
  .site-header {
    position: relative !important;
    height: auto !important;
    padding: 10px 0 !important;
  }

  .header-wrap {
    padding: 0 16px !important;
    flex-wrap: wrap !important;
    gap: 10px !important;
  }

  .logo {
    margin-right: 0 !important;
  }

  .main-nav {
    width: 100% !important;
    justify-content: flex-start !important;
    overflow-x: auto !important;
    gap: 6px !important;
    padding-bottom: 4px !important;
  }

  .main-nav a {
    font-size: 0.95rem !important;
    padding: 8px 10px !important;
    white-space: nowrap !important;
  }

  .btn-kaza {
    position: static !important;
    margin-left: auto !important;
    height: 42px !important;
    padding: 0 14px !important;
    border-radius: 10px !important;
    font-size: 0.85rem !important;
  }

  .hero,
  .blog-top,
  .blog-detail,
  .fix-main,
  .about-upper,
  .services-top {
    margin-top: 0 !important;
  }

  .hero {
    grid-template-columns: 1fr !important;
    height: auto !important;
    min-height: unset !important;
  }

  .hero-left {
    padding: 36px 20px !important;
  }

  .hero-right {
    min-height: 460px !important;
  }

  .hero-title {
    font-size: 2rem !important;
  }

  .orbit-system {
    transform: scale(0.82) !important;
    transform-origin: center center !important;
  }

  .stats-strip {
    grid-template-columns: 1fr !important;
  }

  .stats-left,
  .stats-right {
    padding: 28px 20px !important;
  }

  .stats-left .big-num {
    font-size: 4rem !important;
  }

  .stats-right {
    justify-content: flex-start !important;
    flex-wrap: wrap !important;
    gap: 18px !important;
  }

  .reviews-section {
    margin: 40px 0 !important;
  }

  .review-card {
    min-width: 280px !important;
    max-width: 280px !important;
  }

  .kaza-sidebar {
    max-width: 420px !important;
  }
}

@media (max-width: 768px) {
  .fix-grid,
  .fix-grid-2,
  .blog-grid,
  .related-grid,
  .services-grid,
  .form-row,
  .features-grid,
  .step-cols {
    grid-template-columns: 1fr !important;
  }

  .fix-section,
  .blog-list,
  .blog-top,
  .blog-detail,
  .services-top,
  .services-cards,
  .faq-section,
  .guvence-section {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  .fix-grid,
  .fix-grid-2,
  .blog-list-wrap,
  .services-cards-wrap,
  .guvence-wrap,
  .faq-wrap,
  .about-upper-wrap,
  .about-lower-wrap,
  .fix-container {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .fix-header h1,
  .blog-top h1,
  .related-header h2,
  .services-top h1,
  .services-header h2,
  .about-left h1,
  .about-lower-right h2,
  .faq-left h2,
  .article-title {
    font-size: 1.7rem !important;
    line-height: 1.3 !important;
  }

  .article-image {
    height: 260px !important;
  }

  .article-header,
  .article-content,
  .article-footer,
  .form-card,
  .kaza-content,
  .kaza-header {
    padding: 18px !important;
  }

  .article-footer {
    flex-direction: column !important;
    align-items: flex-start !important;
  }

  .faq-counter .count-num {
    font-size: 3.2rem !important;
  }

  .step-nums {
    gap: 0 !important;
  }

  .snum {
    width: 28px !important;
    height: 28px !important;
    font-size: 0.65rem !important;
  }

  .steps-mascot {
    width: 72px !important;
    height: 72px !important;
  }

  .service-card,
  .fix-card {
    height: auto !important;
    min-height: 220px !important;
  }

  .footer-cols {
    grid-template-columns: 1fr !important;
  }

  .footer-bottom {
    flex-direction: column !important;
    align-items: flex-start !important;
  }

  .kaza-sidebar {
    max-width: 100% !important;
  }

  .wa-float {
    width: 46px !important;
    height: 46px !important;
    right: 14px !important;
    bottom: 14px !important;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.55rem !important;
  }

  .hero-desc,
  .about-left p,
  .about-lower-right > p,
  .blog-top p,
  .services-top p,
  .article-content,
  .fix-header p,
  .fix-card-desc,
  .rv-text {
    font-size: 0.9rem !important;
  }

  .hero-right {
    min-height: 390px !important;
  }

  .orbit-system {
    transform: scale(0.66) !important;
  }

  .stats-left .big-num {
    font-size: 3.2rem !important;
  }

  .stat-circle {
    width: 86px !important;
    height: 86px !important;
  }

  .stat-circle span {
    font-size: 1rem !important;
  }

  .review-card {
    min-width: 240px !important;
    max-width: 240px !important;
    padding: 16px !important;
  }

  .kaza-title-card h2 {
    font-size: 1.2rem !important;
  }

  .kaza-submit,
  .submit-btn {
    font-size: 0.92rem !important;
    padding: 13px 14px !important;
  }
}
  


/* ===== blog.html ===== */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --green-dark:   #1b5e35;
      --green-mid:    #2d8653;
      --green-bright: #3aad68;
      --green-light:  #d4f0e0;
      --green-pale:   #eaf6ef;
      --red:          #e63946;
      --white:        #ffffff;
      --gray-bg:      #f4f7f5;
      --text-dark:    #1a2a1f;
      --text-mid:     #3b5040;
      --text-light:   #7a9080;
      --border:       #ddeee5;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Outfit', sans-serif;
      color: var(--text-dark);
      background: #fff;
      overflow-x: hidden;
    }

    a { text-decoration: none; color: inherit; }
    img { display: block; max-width: 100%; }

    /* ═══════════════════════════════
       STICKY HEADER
    ═══════════════════════════════ */
    .site-header {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 9999;
      background: #fff;
      box-shadow: 0 2px 10px rgba(0,0,0,0.06);
      height: 70px;
      display: flex;
      align-items: center;
    }
    .header-wrap {
      flex: 1;
      padding: 0 40px;
      display: flex;
      align-items: center;
      gap: 0;
    }
    .logo {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 2px;
      margin-right: 48px;
      text-decoration: none;
    }
    .logo-badge {
      width: 44px; height: 44px;
      background: linear-gradient(135deg, #3aad68, #1b5e35);
      border-radius: 10px;
      display: flex; align-items: center; justify-content: center;
    }
    .logo-badge svg { width: 26px; height: 26px; }
    .logo-name {
      font-size: 0.8rem;
      font-weight: 700;
      color: var(--green-dark);
      letter-spacing: 1px;
      text-transform: lowercase;
    }

    .main-nav {
      display: flex;
      align-items: center;
      gap: 12px;
      flex: 1;
      justify-content: center;
    }
    .main-nav > .nav-item {
      position: relative;
    }
    .main-nav a {
      font-size: 1.1rem;
      font-weight: 500;
      color: #222;
      padding: 10px 16px;
      border-radius: 7px;
      display: flex; align-items: center; gap: 6px;
      transition: color .18s;
      white-space: nowrap;
    }
    .main-nav a:hover { color: var(--green-dark); }
    .main-nav .chevron {
      font-size: 1rem;
      opacity: 0.6;
      display: flex;
      align-items: center;
    }

    /* Dropdown menü */
    .dropdown-menu {
      position: absolute;
      top: 100%;
      left: 0;
      background: #fff;
      border-radius: 12px;
      box-shadow: 0 8px 32px rgba(0,0,0,0.12);
      padding: 16px 0;
      min-width: 260px;
      opacity: 0;
      visibility: hidden;
      transform: translateY(-10px);
      transition: opacity .25s, transform .25s, visibility .25s;
      z-index: 100;
      margin-top: 8px;
    }
    .nav-item:hover .dropdown-menu {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }
    .dropdown-menu a {
      display: block;
      padding: 12px 24px;
      font-size: 1rem;
      font-weight: 500;
      color: var(--green-dark);
      transition: background .15s;
      border-radius: 0;
    }
    .dropdown-menu a:hover {
      background: #f7fbf8;
    }

    /* "Kaza Destek" — kırmızı, tam köşeye yapışık */
    .btn-kaza {
      position: fixed;
      top: 0; right: 0;
      height: 70px;
      background: #f04452;
      color: #fff;
      font-weight: 700;
      font-size: 0.95rem;
      padding: 0 32px;
      display: flex; align-items: center;
      white-space: nowrap;
      z-index: 10000;
      transition: background .18s;
      letter-spacing: 0.3px;
    }
    .btn-kaza:hover { background: #d63340; }

    /* ═══════════════════════════════
       BLOG TOP SECTION
    ═══════════════════════════════ */
    .blog-top {
      margin-top: 70px;
      padding: 80px 40px;
      background: linear-gradient(135deg, #5ed68a 0%, #3aad68 30%, #2d8653 60%, #1b5e35 100%);
      color: #fff;
      position: relative;
      overflow: hidden;
    }
    .blog-top::after {
      content: '';
      position: absolute;
      bottom: -100px; right: -100px;
      width: 400px; height: 400px;
      border-radius: 50%;
      background: rgba(255,255,255,0.05);
      pointer-events: none;
    }
    .blog-top-wrap {
      max-width: 900px;
      margin: 0 auto;
      position: relative;
      z-index: 1;
    }
    .blog-top .section-eyebrow {
      display: inline-block;
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      color: #7de8a8;
      padding: 5px 16px;
      border: 1px solid rgba(125, 232, 168, 0.3);
      border-radius: 20px;
      margin-bottom: 24px;
    }
    .blog-top h1 {
      font-size: 2.8rem;
      font-weight: 800;
      color: #fff;
      line-height: 1.2;
      margin-bottom: 24px;
    }
    .blog-top p {
      font-size: 1rem;
      color: rgba(255, 255, 255, 0.9);
      line-height: 1.8;
    }

    /* ═══════════════════════════════
       BLOG LIST SECTION
    ═══════════════════════════════ */
    .blog-list {
      padding: 80px 40px 100px;
      background: #f9faf9;
    }
    .blog-list-wrap {
      max-width: 1200px;
      margin: 0 auto;
    }

    /* Blog Grid */
    .blog-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 32px;
    }

    /* Blog Card */
    .blog-card {
      background: #fff;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 4px 20px rgba(0,0,0,0.06);
      transition: transform .3s ease, box-shadow .3s ease;
      cursor: pointer;
      display: flex;
      flex-direction: column;
    }
    .blog-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 12px 40px rgba(0,0,0,0.12);
    }

    .blog-card-image {
      width: 100%;
      height: 240px;
      object-fit: cover;
      position: relative;
    }

    .blog-card-content {
      padding: 28px;
      display: flex;
      flex-direction: column;
      flex: 1;
    }

    .blog-card-meta {
      display: flex;
      align-items: center;
      gap: 16px;
      margin-bottom: 16px;
    }

    .blog-card-date {
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: 0.85rem;
      color: var(--text-light);
    }
    .blog-card-date i {
      font-size: 1rem;
    }

    .blog-card-category {
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 1px;
      text-transform: uppercase;
      color: var(--green-bright);
      background: var(--green-pale);
      padding: 4px 12px;
      border-radius: 20px;
    }

    .blog-card-title {
      font-size: 1.35rem;
      font-weight: 700;
      color: var(--text-dark);
      line-height: 1.4;
      margin-bottom: 12px;
      transition: color .2s;
    }
    .blog-card:hover .blog-card-title {
      color: var(--green-dark);
    }

    .blog-card-excerpt {
      font-size: 0.9rem;
      color: var(--text-mid);
      line-height: 1.7;
      margin-bottom: 20px;
      flex: 1;
    }

    .blog-card-footer {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding-top: 16px;
      border-top: 1px solid var(--border);
    }

    .blog-card-author {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .blog-card-avatar {
      width: 32px;
      height: 32px;
      border-radius: 50%;
      background: var(--green-light);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--green-dark);
      font-weight: 700;
      font-size: 0.85rem;
    }

    .blog-card-author-name {
      font-size: 0.85rem;
      font-weight: 600;
      color: var(--text-dark);
    }

    .blog-card-read-more {
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: 0.85rem;
      font-weight: 600;
      color: var(--green-bright);
      transition: gap .2s;
    }
    .blog-card:hover .blog-card-read-more {
      gap: 10px;
    }
    .blog-card-read-more i {
      font-size: 1rem;
    }

    /* ═══════════════════════════════
       FOOTER
    ═══════════════════════════════ */
    .site-footer {
      background: #2d7857;
      color: #fff;
      padding: 60px 28px 28px;
    }
    .footer-wrap {
      max-width: 1280px;
      margin: 0 auto;
    }
    .footer-cols {
      display: grid;
      grid-template-columns: 1.4fr 1fr 1fr 1.4fr;
      gap: 60px;
      margin-bottom: 50px;
    }

    /* Sol kolon - İletişim */
    .ft-contact-col h4 {
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      margin-bottom: 12px;
      opacity: 0.9;
    }
    .ft-contact-col .email {
      font-size: 1.1rem;
      font-weight: 600;
      margin-bottom: 24px;
      color: #fff;
    }
    .ft-contact-col .phone-label {
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      margin-bottom: 8px;
      opacity: 0.9;
    }
    .ft-contact-col .phone {
      font-size: 1.35rem;
      font-weight: 700;
      margin-bottom: 24px;
      color: #fff;
    }
    .ft-contact-col .address-label {
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      margin-bottom: 8px;
      opacity: 0.9;
    }
    .ft-contact-col .address {
      font-size: 0.9rem;
      line-height: 1.6;
      color: #fff;
    }

    /* Orta kolonlar - Linkler */
    .ft-col h4 {
      font-size: 1.05rem;
      font-weight: 700;
      color: #fff;
      margin-bottom: 20px;
    }
    .ft-col ul {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }
    .ft-col ul li a {
      font-size: 0.88rem;
      color: #fff;
      transition: opacity .18s;
      opacity: 0.9;
    }
    .ft-col ul li a:hover { opacity: 1; }

    /* Sağ kolon - Newsletter */
    .ft-newsletter-col {
      background: rgba(0,0,0,0.15);
      padding: 32px 28px;
      border-radius: 12px;
    }
    .ft-newsletter-col p {
      font-size: 0.88rem;
      line-height: 1.6;
      margin-bottom: 20px;
      color: #fff;
    }
    .ft-newsletter-col .nl-input-wrap {
      position: relative;
      margin-bottom: 16px;
    }
    .ft-newsletter-col input {
      width: 100%;
      padding: 13px 50px 13px 16px;
      border-radius: 50px;
      border: none;
      background: #fff;
      color: #333;
      font-family: inherit;
      font-size: 0.85rem;
      outline: none;
    }
    .ft-newsletter-col input::placeholder { color: #999; }
    .ft-newsletter-col .nl-btn {
      position: absolute;
      right: 6px;
      top: 50%;
      transform: translateY(-50%);
      width: 36px;
      height: 36px;
      background: #7dd895;
      border: none;
      border-radius: 50%;
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      font-size: 1.1rem;
      transition: background .18s;
    }
    .ft-newsletter-col .nl-btn:hover { background: #5ec77e; }
    .ft-newsletter-col .checkbox-wrap {
      display: flex;
      align-items: flex-start;
      gap: 8px;
    }
    .ft-newsletter-col .checkbox-wrap input[type="checkbox"] {
      width: 16px;
      height: 16px;
      margin-top: 2px;
      cursor: pointer;
      flex-shrink: 0;
      padding: 0;
    }
    .ft-newsletter-col .checkbox-wrap label {
      font-size: 0.8rem;
      color: #fff;
      cursor: pointer;
      line-height: 1.4;
    }

    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.15);
      padding-top: 20px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 0.8rem;
      color: rgba(255,255,255,0.7);
      gap: 16px;
      flex-wrap: wrap;
    }
    .footer-bottom-links {
      display: flex;
      gap: 24px;
    }
    .footer-bottom-links a {
      color: rgba(255,255,255,0.7);
      transition: color .18s;
    }
    .footer-bottom-links a:hover { color: #fff; }

    /* ═══════════════════════════════
       KAZA DESTEK SIDEBAR
    ═══════════════════════════════ */
    .kaza-overlay {
      position: fixed;
      top: 0; left: 0; right: 0; bottom: 0;
      background: rgba(0, 0, 0, 0.5);
      z-index: 10000;
      opacity: 0;
      visibility: hidden;
      transition: opacity .3s, visibility .3s;
    }
    .kaza-overlay.active {
      opacity: 1;
      visibility: visible;
    }

    .kaza-sidebar {
      position: fixed;
      top: 0;
      right: 0;
      width: 100%;
      max-width: 483px;
      height: 100vh;
      background: #fff;
      z-index: 10001;
      transform: translateX(100%);
      transition: transform .4s cubic-bezier(0.4, 0, 0.2, 1);
      overflow-y: auto;
      box-shadow: -4px 0 24px rgba(0,0,0,0.15);
    }
    .kaza-sidebar.active {
      transform: translateX(0);
    }

    /* Header */
    .kaza-header {
      background: linear-gradient(135deg, #3aad68, #2d8653);
      padding: 24px 32px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .kaza-logo {
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .kaza-logo-icon {
      width: 52px;
      height: 52px;
    }
    .kaza-logo-text {
      font-size: 1.6rem;
      font-weight: 700;
      color: #7de8a8;
      letter-spacing: 0.5px;
    }
    .kaza-close {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      border: 2px solid rgba(255,255,255,0.5);
      background: transparent;
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.4rem;
      cursor: pointer;
      transition: background .2s, border-color .2s;
    }
    .kaza-close:hover {
      background: rgba(255,255,255,0.1);
      border-color: #fff;
    }

    /* Content */
    .kaza-content {
      padding: 32px;
    }

    /* Title card */
    .kaza-title-card {
      background: linear-gradient(135deg, #ff6b7a, #f04452);
      border-radius: 16px;
      padding: 24px 28px;
      text-align: center;
      margin-bottom: 32px;
    }
    .kaza-title-card h2 {
      font-size: 1.5rem;
      font-weight: 800;
      color: #fff;
      margin-bottom: 8px;
    }
    .kaza-title-card p {
      font-size: 0.9rem;
      color: rgba(255,255,255,0.95);
    }

    /* Section */
    .kaza-section {
      margin-bottom: 32px;
    }
    .kaza-section-header {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 20px;
    }
    .kaza-section-num {
      width: 32px;
      height: 32px;
      border-radius: 50%;
      background: #f04452;
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      font-size: 0.95rem;
      flex-shrink: 0;
    }
    .kaza-section-title {
      font-size: 1.15rem;
      font-weight: 800;
      color: #1a2a1f;
    }

    /* Form */
    .kaza-form-group {
      margin-bottom: 16px;
    }
    .kaza-input,
    .kaza-select,
    .kaza-textarea {
      width: 100%;
      padding: 14px 16px;
      border: 1.5px solid #e5e5e5;
      border-radius: 10px;
      font-family: inherit;
      font-size: 0.9rem;
      color: #333;
      outline: none;
      transition: border-color .2s;
    }
    .kaza-input:focus,
    .kaza-select:focus,
    .kaza-textarea:focus {
      border-color: #3aad68;
    }
    .kaza-input::placeholder,
    .kaza-textarea::placeholder {
      color: #999;
    }

    /* Phone input */
    .kaza-phone-group {
      display: flex;
      gap: 8px;
    }
    .kaza-phone-prefix {
      width: 80px;
      flex-shrink: 0;
      padding: 14px 16px;
      border: 1.5px solid #e5e5e5;
      border-radius: 10px;
      font-size: 0.9rem;
      color: #333;
      background: #f9f9f9;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 600;
    }
    .kaza-phone-input {
      flex: 1;
    }

    /* Textarea */
    .kaza-textarea {
      min-height: 120px;
      resize: vertical;
    }

    /* Icons in inputs */
    .kaza-input-wrap {
      position: relative;
    }
    .kaza-input-icon {
      position: absolute;
      left: 16px;
      top: 50%;
      transform: translateY(-50%);
      color: #999;
      font-size: 1.2rem;
      pointer-events: none;
      z-index: 1;
    }
    .kaza-input-wrap .kaza-input,
    .kaza-input-wrap .kaza-select,
    .kaza-input-wrap .kaza-textarea {
      padding-left: 44px;
    }
    .kaza-input-wrap .kaza-phone-input {
      padding-left: 44px;
    }

    /* Submit button */
    .kaza-submit {
      width: 100%;
      padding: 16px 24px;
      background: #1b5e35;
      border: none;
      border-radius: 12px;
      color: #fff;
      font-weight: 700;
      font-size: 1rem;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      margin-bottom: 24px;
      transition: background .2s;
    }
    .kaza-submit:hover {
      background: #0f3a20;
    }

    /* Info box */
    .kaza-info-box {
      background: #f0f7ff;
      border-left: 3px solid #3a9bd6;
      border-radius: 10px;
      padding: 16px 20px;
      margin-bottom: 32px;
    }
    .kaza-info-header {
      display: flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 6px;
    }
    .kaza-info-icon {
      width: 20px;
      height: 20px;
      border-radius: 50%;
      background: #3a9bd6;
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.75rem;
      font-weight: 700;
    }
    .kaza-info-text {
      font-size: 0.88rem;
      color: #1a2a1f;
    }
    .kaza-info-text strong {
      color: #f04452;
      font-weight: 700;
    }
    .kaza-info-sub {
      font-size: 0.82rem;
      color: #666;
      margin-top: 4px;
    }

    /* Contact section */
    .kaza-contact-section {
      margin-bottom: 24px;
    }
    .kaza-contact-section h3 {
      font-size: 0.85rem;
      font-weight: 700;
      color: #1b5e35;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      margin-bottom: 8px;
    }
    .kaza-contact-section p {
      font-size: 0.9rem;
      color: #3b5040;
      line-height: 1.6;
    }

    /* ═══════════════════════════════
       WHATSAPP FLOAT
    ═══════════════════════════════ */
    .wa-float {
      position: fixed;
      bottom: 24px; right: 24px;
      z-index: 9999;
      width: 52px; height: 52px;
      background: #25d366;
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.6rem;
      box-shadow: 0 4px 18px rgba(37,211,102,0.45);
      transition: transform .2s;
      animation: waPulse 2.8s ease-in-out infinite;
    }
    .wa-float:hover { transform: scale(1.1); }
    @keyframes waPulse {
      0%,100% { box-shadow: 0 4px 18px rgba(37,211,102,0.45); }
      50%      { box-shadow: 0 4px 30px rgba(37,211,102,0.7); }
    }
  


/* ===== blogdetay.html ===== */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --green-dark:   #1b5e35;
      --green-mid:    #2d8653;
      --green-bright: #3aad68;
      --green-light:  #d4f0e0;
      --green-pale:   #eaf6ef;
      --red:          #e63946;
      --white:        #ffffff;
      --gray-bg:      #f4f7f5;
      --text-dark:    #1a2a1f;
      --text-mid:     #3b5040;
      --text-light:   #7a9080;
      --border:       #ddeee5;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Outfit', sans-serif;
      color: var(--text-dark);
      background: #fff;
      overflow-x: hidden;
    }

    a { text-decoration: none; color: inherit; }
    img { display: block; max-width: 100%; }

    /* ═══════════════════════════════
       STICKY HEADER
    ═══════════════════════════════ */
    .site-header {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 9999;
      background: #fff;
      box-shadow: 0 2px 10px rgba(0,0,0,0.06);
      height: 70px;
      display: flex;
      align-items: center;
    }
    .header-wrap {
      flex: 1;
      padding: 0 40px;
      display: flex;
      align-items: center;
      gap: 0;
    }
    .logo {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 2px;
      margin-right: 48px;
      text-decoration: none;
    }
    .logo-badge {
      width: 44px; height: 44px;
      background: linear-gradient(135deg, #3aad68, #1b5e35);
      border-radius: 10px;
      display: flex; align-items: center; justify-content: center;
    }
    .logo-badge svg { width: 26px; height: 26px; }
    .logo-name {
      font-size: 0.8rem;
      font-weight: 700;
      color: var(--green-dark);
      letter-spacing: 1px;
      text-transform: lowercase;
    }

    .main-nav {
      display: flex;
      align-items: center;
      gap: 12px;
      flex: 1;
      justify-content: center;
    }
    .main-nav > .nav-item {
      position: relative;
    }
    .main-nav a {
      font-size: 1.1rem;
      font-weight: 500;
      color: #222;
      padding: 10px 16px;
      border-radius: 7px;
      display: flex; align-items: center; gap: 6px;
      transition: color .18s;
      white-space: nowrap;
    }
    .main-nav a:hover { color: var(--green-dark); }
    .main-nav .chevron {
      font-size: 1rem;
      opacity: 0.6;
      display: flex;
      align-items: center;
    }

    /* Dropdown menü */
    .dropdown-menu {
      position: absolute;
      top: 100%;
      left: 0;
      background: #fff;
      border-radius: 12px;
      box-shadow: 0 8px 32px rgba(0,0,0,0.12);
      padding: 16px 0;
      min-width: 260px;
      opacity: 0;
      visibility: hidden;
      transform: translateY(-10px);
      transition: opacity .25s, transform .25s, visibility .25s;
      z-index: 100;
      margin-top: 8px;
    }
    .nav-item:hover .dropdown-menu {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }
    .dropdown-menu a {
      display: block;
      padding: 12px 24px;
      font-size: 1rem;
      font-weight: 500;
      color: var(--green-dark);
      transition: background .15s;
      border-radius: 0;
    }
    .dropdown-menu a:hover {
      background: #f7fbf8;
    }

    /* "Kaza Destek" — kırmızı, tam köşeye yapışık */
    .btn-kaza {
      position: fixed;
      top: 0; right: 0;
      height: 70px;
      background: #f04452;
      color: #fff;
      font-weight: 700;
      font-size: 0.95rem;
      padding: 0 32px;
      display: flex; align-items: center;
      white-space: nowrap;
      z-index: 10000;
      transition: background .18s;
      letter-spacing: 0.3px;
    }
    .btn-kaza:hover { background: #d63340; }

    /* ═══════════════════════════════
       BLOG DETAIL MAIN
    ═══════════════════════════════ */
    .blog-detail {
      margin-top: 70px;
      padding: 60px 40px 100px;
      background: #f9faf9;
    }
    .blog-detail-wrap {
      max-width: 900px;
      margin: 0 auto;
    }

    /* Breadcrumb */
    .breadcrumb {
      display: flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 32px;
      font-size: 0.85rem;
      color: var(--text-light);
    }
    .breadcrumb a {
      color: var(--green-mid);
      transition: color .2s;
    }
    .breadcrumb a:hover {
      color: var(--green-dark);
    }
    .breadcrumb i {
      font-size: 0.75rem;
    }

    /* Article Container */
    .article-container {
      background: #fff;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 4px 24px rgba(0,0,0,0.06);
    }

    /* Article Header */
    .article-header {
      padding: 48px 56px 32px;
    }
    .article-category {
      display: inline-block;
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 1px;
      text-transform: uppercase;
      color: var(--green-bright);
      background: var(--green-pale);
      padding: 6px 16px;
      border-radius: 20px;
      margin-bottom: 20px;
    }
    .article-title {
      font-size: 2.4rem;
      font-weight: 800;
      color: var(--green-dark);
      line-height: 1.3;
      margin-bottom: 24px;
    }
    .article-meta {
      display: flex;
      align-items: center;
      gap: 24px;
      padding-top: 20px;
      border-top: 1px solid var(--border);
    }
    .article-author {
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .article-avatar {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: var(--green-light);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--green-dark);
      font-weight: 700;
      font-size: 1rem;
    }
    .article-author-info {
      display: flex;
      flex-direction: column;
      gap: 2px;
    }
    .article-author-name {
      font-size: 0.95rem;
      font-weight: 600;
      color: var(--text-dark);
    }
    .article-date {
      font-size: 0.8rem;
      color: var(--text-light);
      display: flex;
      align-items: center;
      gap: 6px;
    }
    .article-date i {
      font-size: 0.85rem;
    }

    /* Featured Image */
    .article-image {
      width: 100%;
      height: 480px;
      object-fit: cover;
    }

    /* Article Content */
    .article-content {
      padding: 48px 56px;
      font-size: 1.05rem;
      line-height: 1.8;
      color: var(--text-mid);
    }
    .article-content h2 {
      font-size: 1.8rem;
      font-weight: 700;
      color: var(--green-dark);
      margin-top: 40px;
      margin-bottom: 20px;
      line-height: 1.3;
    }
    .article-content h3 {
      font-size: 1.4rem;
      font-weight: 700;
      color: var(--text-dark);
      margin-top: 32px;
      margin-bottom: 16px;
      line-height: 1.3;
    }
    .article-content p {
      margin-bottom: 20px;
    }
    .article-content ul, .article-content ol {
      margin: 24px 0;
      padding-left: 28px;
    }
    .article-content li {
      margin-bottom: 12px;
      line-height: 1.7;
    }
    .article-content strong {
      font-weight: 700;
      color: var(--text-dark);
    }
    .article-content blockquote {
      margin: 32px 0;
      padding: 24px 28px;
      border-left: 4px solid var(--green-bright);
      background: var(--green-pale);
      border-radius: 8px;
    }
    .article-content blockquote p {
      margin: 0;
      font-style: italic;
      color: var(--text-dark);
    }

    /* Info Box */
    .info-box {
      background: #f0f7ff;
      border-left: 4px solid #3a9bd6;
      border-radius: 10px;
      padding: 20px 24px;
      margin: 32px 0;
    }
    .info-box-header {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 12px;
    }
    .info-box-icon {
      width: 24px;
      height: 24px;
      border-radius: 50%;
      background: #3a9bd6;
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.85rem;
      font-weight: 700;
    }
    .info-box-title {
      font-size: 1rem;
      font-weight: 700;
      color: var(--text-dark);
    }
    .info-box p {
      margin: 0;
      font-size: 0.95rem;
      line-height: 1.7;
    }

    /* Article Footer */
    .article-footer {
      padding: 32px 56px;
      border-top: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }
    .article-tags {
      display: flex;
      align-items: center;
      gap: 12px;
      flex-wrap: wrap;
    }
    .article-tags span {
      font-size: 0.85rem;
      font-weight: 600;
      color: var(--text-light);
    }
    .tag {
      font-size: 0.8rem;
      font-weight: 500;
      color: var(--green-dark);
      background: var(--green-pale);
      padding: 6px 14px;
      border-radius: 20px;
      transition: background .2s;
    }
    .tag:hover {
      background: var(--green-light);
    }
    .article-share {
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .article-share span {
      font-size: 0.85rem;
      font-weight: 600;
      color: var(--text-light);
    }
    .share-btn {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: var(--green-pale);
      color: var(--green-dark);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.1rem;
      transition: background .2s, transform .2s;
      cursor: pointer;
    }
    .share-btn:hover {
      background: var(--green-bright);
      color: #fff;
      transform: translateY(-2px);
    }

    /* Related Articles */
    .related-articles {
      margin-top: 60px;
    }
    .related-header {
      text-align: center;
      margin-bottom: 40px;
    }
    .related-header h2 {
      font-size: 2rem;
      font-weight: 800;
      color: var(--green-dark);
      margin-bottom: 12px;
    }
    .related-header p {
      font-size: 1rem;
      color: var(--text-mid);
    }
    .related-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }
    .related-card {
      background: #fff;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 4px 20px rgba(0,0,0,0.06);
      transition: transform .3s ease, box-shadow .3s ease;
      cursor: pointer;
      display: flex;
      flex-direction: column;
    }
    .related-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 12px 40px rgba(0,0,0,0.12);
    }
    .related-card-image {
      width: 100%;
      height: 180px;
      object-fit: cover;
    }
    .related-card-content {
      padding: 20px;
      display: flex;
      flex-direction: column;
      flex: 1;
    }
    .related-card-category {
      font-size: 0.7rem;
      font-weight: 600;
      letter-spacing: 1px;
      text-transform: uppercase;
      color: var(--green-bright);
      margin-bottom: 10px;
    }
    .related-card-title {
      font-size: 1.1rem;
      font-weight: 700;
      color: var(--text-dark);
      line-height: 1.4;
      margin-bottom: 10px;
      transition: color .2s;
    }
    .related-card:hover .related-card-title {
      color: var(--green-dark);
    }
    .related-card-date {
      font-size: 0.8rem;
      color: var(--text-light);
      display: flex;
      align-items: center;
      gap: 6px;
      margin-top: auto;
    }

    /* ═══════════════════════════════
       FOOTER
    ═══════════════════════════════ */
    .site-footer {
      background: #2d7857;
      color: #fff;
      padding: 60px 28px 28px;
    }
    .footer-wrap {
      max-width: 1280px;
      margin: 0 auto;
    }
    .footer-cols {
      display: grid;
      grid-template-columns: 1.4fr 1fr 1fr 1.4fr;
      gap: 60px;
      margin-bottom: 50px;
    }

    /* Sol kolon - İletişim */
    .ft-contact-col h4 {
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      margin-bottom: 12px;
      opacity: 0.9;
    }
    .ft-contact-col .email {
      font-size: 1.1rem;
      font-weight: 600;
      margin-bottom: 24px;
      color: #fff;
    }
    .ft-contact-col .phone-label {
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      margin-bottom: 8px;
      opacity: 0.9;
    }
    .ft-contact-col .phone {
      font-size: 1.35rem;
      font-weight: 700;
      margin-bottom: 24px;
      color: #fff;
    }
    .ft-contact-col .address-label {
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      margin-bottom: 8px;
      opacity: 0.9;
    }
    .ft-contact-col .address {
      font-size: 0.9rem;
      line-height: 1.6;
      color: #fff;
    }

    /* Orta kolonlar - Linkler */
    .ft-col h4 {
      font-size: 1.05rem;
      font-weight: 700;
      color: #fff;
      margin-bottom: 20px;
    }
    .ft-col ul {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }
    .ft-col ul li a {
      font-size: 0.88rem;
      color: #fff;
      transition: opacity .18s;
      opacity: 0.9;
    }
    .ft-col ul li a:hover { opacity: 1; }

    /* Sağ kolon - Newsletter */
    .ft-newsletter-col {
      background: rgba(0,0,0,0.15);
      padding: 32px 28px;
      border-radius: 12px;
    }
    .ft-newsletter-col p {
      font-size: 0.88rem;
      line-height: 1.6;
      margin-bottom: 20px;
      color: #fff;
    }
    .ft-newsletter-col .nl-input-wrap {
      position: relative;
      margin-bottom: 16px;
    }
    .ft-newsletter-col input {
      width: 100%;
      padding: 13px 50px 13px 16px;
      border-radius: 50px;
      border: none;
      background: #fff;
      color: #333;
      font-family: inherit;
      font-size: 0.85rem;
      outline: none;
    }
    .ft-newsletter-col input::placeholder { color: #999; }
    .ft-newsletter-col .nl-btn {
      position: absolute;
      right: 6px;
      top: 50%;
      transform: translateY(-50%);
      width: 36px;
      height: 36px;
      background: #7dd895;
      border: none;
      border-radius: 50%;
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      font-size: 1.1rem;
      transition: background .18s;
    }
    .ft-newsletter-col .nl-btn:hover { background: #5ec77e; }
    .ft-newsletter-col .checkbox-wrap {
      display: flex;
      align-items: flex-start;
      gap: 8px;
    }
    .ft-newsletter-col .checkbox-wrap input[type="checkbox"] {
      width: 16px;
      height: 16px;
      margin-top: 2px;
      cursor: pointer;
      flex-shrink: 0;
      padding: 0;
    }
    .ft-newsletter-col .checkbox-wrap label {
      font-size: 0.8rem;
      color: #fff;
      cursor: pointer;
      line-height: 1.4;
    }

    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.15);
      padding-top: 20px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 0.8rem;
      color: rgba(255,255,255,0.7);
      gap: 16px;
      flex-wrap: wrap;
    }
    .footer-bottom-links {
      display: flex;
      gap: 24px;
    }
    .footer-bottom-links a {
      color: rgba(255,255,255,0.7);
      transition: color .18s;
    }
    .footer-bottom-links a:hover { color: #fff; }

    /* ═══════════════════════════════
       KAZA DESTEK SIDEBAR
    ═══════════════════════════════ */
    .kaza-overlay {
      position: fixed;
      top: 0; left: 0; right: 0; bottom: 0;
      background: rgba(0, 0, 0, 0.5);
      z-index: 10000;
      opacity: 0;
      visibility: hidden;
      transition: opacity .3s, visibility .3s;
    }
    .kaza-overlay.active {
      opacity: 1;
      visibility: visible;
    }

    .kaza-sidebar {
      position: fixed;
      top: 0;
      right: 0;
      width: 100%;
      max-width: 483px;
      height: 100vh;
      background: #fff;
      z-index: 10001;
      transform: translateX(100%);
      transition: transform .4s cubic-bezier(0.4, 0, 0.2, 1);
      overflow-y: auto;
      box-shadow: -4px 0 24px rgba(0,0,0,0.15);
    }
    .kaza-sidebar.active {
      transform: translateX(0);
    }

    /* Header */
    .kaza-header {
      background: linear-gradient(135deg, #3aad68, #2d8653);
      padding: 24px 32px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .kaza-logo {
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .kaza-logo-icon {
      width: 52px;
      height: 52px;
    }
    .kaza-logo-text {
      font-size: 1.6rem;
      font-weight: 700;
      color: #7de8a8;
      letter-spacing: 0.5px;
    }
    .kaza-close {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      border: 2px solid rgba(255,255,255,0.5);
      background: transparent;
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.4rem;
      cursor: pointer;
      transition: background .2s, border-color .2s;
    }
    .kaza-close:hover {
      background: rgba(255,255,255,0.1);
      border-color: #fff;
    }

    /* Content */
    .kaza-content {
      padding: 32px;
    }

    /* Title card */
    .kaza-title-card {
      background: linear-gradient(135deg, #ff6b7a, #f04452);
      border-radius: 16px;
      padding: 24px 28px;
      text-align: center;
      margin-bottom: 32px;
    }
    .kaza-title-card h2 {
      font-size: 1.5rem;
      font-weight: 800;
      color: #fff;
      margin-bottom: 8px;
    }
    .kaza-title-card p {
      font-size: 0.9rem;
      color: rgba(255,255,255,0.95);
    }

    /* Section */
    .kaza-section {
      margin-bottom: 32px;
    }
    .kaza-section-header {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 20px;
    }
    .kaza-section-num {
      width: 32px;
      height: 32px;
      border-radius: 50%;
      background: #f04452;
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      font-size: 0.95rem;
      flex-shrink: 0;
    }
    .kaza-section-title {
      font-size: 1.15rem;
      font-weight: 800;
      color: #1a2a1f;
    }

    /* Form */
    .kaza-form-group {
      margin-bottom: 16px;
    }
    .kaza-input,
    .kaza-select,
    .kaza-textarea {
      width: 100%;
      padding: 14px 16px;
      border: 1.5px solid #e5e5e5;
      border-radius: 10px;
      font-family: inherit;
      font-size: 0.9rem;
      color: #333;
      outline: none;
      transition: border-color .2s;
    }
    .kaza-input:focus,
    .kaza-select:focus,
    .kaza-textarea:focus {
      border-color: #3aad68;
    }
    .kaza-input::placeholder,
    .kaza-textarea::placeholder {
      color: #999;
    }

    /* Phone input */
    .kaza-phone-group {
      display: flex;
      gap: 8px;
    }
    .kaza-phone-prefix {
      width: 80px;
      flex-shrink: 0;
      padding: 14px 16px;
      border: 1.5px solid #e5e5e5;
      border-radius: 10px;
      font-size: 0.9rem;
      color: #333;
      background: #f9f9f9;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 600;
    }
    .kaza-phone-input {
      flex: 1;
    }

    /* Textarea */
    .kaza-textarea {
      min-height: 120px;
      resize: vertical;
    }

    /* Icons in inputs */
    .kaza-input-wrap {
      position: relative;
    }
    .kaza-input-icon {
      position: absolute;
      left: 16px;
      top: 50%;
      transform: translateY(-50%);
      color: #999;
      font-size: 1.2rem;
      pointer-events: none;
      z-index: 1;
    }
    .kaza-input-wrap .kaza-input,
    .kaza-input-wrap .kaza-select,
    .kaza-input-wrap .kaza-textarea {
      padding-left: 44px;
    }
    .kaza-input-wrap .kaza-phone-input {
      padding-left: 44px;
    }

    /* Submit button */
    .kaza-submit {
      width: 100%;
      padding: 16px 24px;
      background: #1b5e35;
      border: none;
      border-radius: 12px;
      color: #fff;
      font-weight: 700;
      font-size: 1rem;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      margin-bottom: 24px;
      transition: background .2s;
    }
    .kaza-submit:hover {
      background: #0f3a20;
    }

    /* Info box */
    .kaza-info-box {
      background: #f0f7ff;
      border-left: 3px solid #3a9bd6;
      border-radius: 10px;
      padding: 16px 20px;
      margin-bottom: 32px;
    }
    .kaza-info-header {
      display: flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 6px;
    }
    .kaza-info-icon {
      width: 20px;
      height: 20px;
      border-radius: 50%;
      background: #3a9bd6;
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.75rem;
      font-weight: 700;
    }
    .kaza-info-text {
      font-size: 0.88rem;
      color: #1a2a1f;
    }
    .kaza-info-text strong {
      color: #f04452;
      font-weight: 700;
    }
    .kaza-info-sub {
      font-size: 0.82rem;
      color: #666;
      margin-top: 4px;
    }

    /* Contact section */
    .kaza-contact-section {
      margin-bottom: 24px;
    }
    .kaza-contact-section h3 {
      font-size: 0.85rem;
      font-weight: 700;
      color: #1b5e35;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      margin-bottom: 8px;
    }
    .kaza-contact-section p {
      font-size: 0.9rem;
      color: #3b5040;
      line-height: 1.6;
    }

    /* ═══════════════════════════════
       WHATSAPP FLOAT
    ═══════════════════════════════ */
    .wa-float {
      position: fixed;
      bottom: 24px; right: 24px;
      z-index: 9999;
      width: 52px; height: 52px;
      background: #25d366;
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.6rem;
      box-shadow: 0 4px 18px rgba(37,211,102,0.45);
      transition: transform .2s;
      animation: waPulse 2.8s ease-in-out infinite;
    }
    .wa-float:hover { transform: scale(1.1); }
    @keyframes waPulse {
      0%,100% { box-shadow: 0 4px 18px rgba(37,211,102,0.45); }
      50%      { box-shadow: 0 4px 30px rgba(37,211,102,0.7); }
    }
  


/* ===== fixhesapla.html ===== */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --green-dark:   #1b5e35;
      --green-mid:    #2d8653;
      --green-bright: #3aad68;
      --green-light:  #d4f0e0;
      --green-pale:   #eaf6ef;
      --red:          #e63946;
      --white:        #ffffff;
      --gray-bg:      #f4f7f5;
      --text-dark:    #1a2a1f;
      --text-mid:     #3b5040;
      --text-light:   #7a9080;
      --border:       #ddeee5;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Outfit', sans-serif;
      color: var(--text-dark);
      background: #f9faf9;
      overflow-x: hidden;
    }

    a { text-decoration: none; color: inherit; }
    img { display: block; max-width: 100%; }

    /* ═══════════════════════════════
       STICKY HEADER
    ═══════════════════════════════ */
    .site-header {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 9999;
      background: #fff;
      box-shadow: 0 2px 10px rgba(0,0,0,0.06);
      height: 70px;
      display: flex;
      align-items: center;
    }
    .header-wrap {
      flex: 1;
      padding: 0 40px;
      display: flex;
      align-items: center;
      gap: 0;
    }
    .logo {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 2px;
      margin-right: 48px;
      text-decoration: none;
    }
    .logo-badge {
      width: 44px; height: 44px;
      background: linear-gradient(135deg, #3aad68, #1b5e35);
      border-radius: 10px;
      display: flex; align-items: center; justify-content: center;
    }
    .logo-badge svg { width: 26px; height: 26px; }
    .logo-name {
      font-size: 0.8rem;
      font-weight: 700;
      color: var(--green-dark);
      letter-spacing: 1px;
      text-transform: lowercase;
    }

    .main-nav {
      display: flex;
      align-items: center;
      gap: 12px;
      flex: 1;
      justify-content: center;
    }
    .main-nav > .nav-item {
      position: relative;
    }
    .main-nav a {
      font-size: 1.1rem;
      font-weight: 500;
      color: #222;
      padding: 10px 16px;
      border-radius: 7px;
      display: flex; align-items: center; gap: 6px;
      transition: color .18s;
      white-space: nowrap;
    }
    .main-nav a:hover { color: var(--green-dark); }
    .main-nav .chevron {
      font-size: 1rem;
      opacity: 0.6;
      display: flex;
      align-items: center;
    }

    /* Dropdown menü */
    .dropdown-menu {
      position: absolute;
      top: 100%;
      left: 0;
      background: #fff;
      border-radius: 12px;
      box-shadow: 0 8px 32px rgba(0,0,0,0.12);
      padding: 16px 0;
      min-width: 260px;
      opacity: 0;
      visibility: hidden;
      transform: translateY(-10px);
      transition: opacity .25s, transform .25s, visibility .25s;
      z-index: 100;
      margin-top: 8px;
    }
    .nav-item:hover .dropdown-menu {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }
    .dropdown-menu a {
      display: block;
      padding: 12px 24px;
      font-size: 1rem;
      font-weight: 500;
      color: var(--green-dark);
      transition: background .15s;
      border-radius: 0;
    }
    .dropdown-menu a:hover {
      background: #f7fbf8;
    }

    /* "Kaza Destek" — kırmızı, tam köşeye yapışık */
    .btn-kaza {
      position: fixed;
      top: 0; right: 0;
      height: 70px;
      background: #f04452;
      color: #fff;
      font-weight: 700;
      font-size: 0.95rem;
      padding: 0 32px;
      display: flex; align-items: center;
      white-space: nowrap;
      z-index: 10000;
      transition: background .18s;
      letter-spacing: 0.3px;
    }
    .btn-kaza:hover { background: #d63340; }

    /* ═══════════════════════════════
       FIX HESAPLA MAIN SECTION
    ═══════════════════════════════ */
    .fix-main {
      margin-top: 70px;
      padding: 80px 28px 100px;
      background: #f9faf9;
      min-height: calc(100vh - 70px);
    }
    .fix-container {
      max-width: 850px;
      margin: 0 auto;
    }

    .fix-header {
      text-align: center;
      margin-bottom: 48px;
    }
    .fix-header .section-eyebrow {
      display: inline-block;
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      color: var(--green-mid);
      padding: 5px 16px;
      border: 1px solid #c8e6d4;
      border-radius: 20px;
      margin-bottom: 20px;
    }
    .fix-header h1 {
      font-size: 2.6rem;
      font-weight: 800;
      color: var(--green-dark);
      line-height: 1.2;
      margin-bottom: 16px;
    }
    .fix-header p {
      font-size: 1rem;
      color: var(--text-mid);
      line-height: 1.7;
      max-width: 700px;
      margin: 0 auto;
    }

    /* Form Card */
    .form-card {
      background: #fff;
      border-radius: 20px;
      padding: 48px 56px;
      box-shadow: 0 4px 24px rgba(0,0,0,0.06);
    }
    .form-card h2 {
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--green-dark);
      margin-bottom: 36px;
    }

    /* Form Group */
    .form-group {
      margin-bottom: 24px;
    }
    .form-label {
      display: block;
      font-size: 0.9rem;
      font-weight: 600;
      color: var(--text-dark);
      margin-bottom: 10px;
    }
    .form-input,
    .form-select {
      width: 100%;
      padding: 14px 18px;
      border: 1.5px solid #e5e5e5;
      border-radius: 10px;
      font-family: inherit;
      font-size: 0.95rem;
      color: #333;
      outline: none;
      transition: border-color .2s, box-shadow .2s;
      background: #fff;
    }
    .form-input:focus,
    .form-select:focus {
      border-color: var(--green-bright);
      box-shadow: 0 0 0 3px rgba(58, 173, 104, 0.1);
    }
    .form-input::placeholder {
      color: #999;
    }

    /* Date input special styling */
    .form-input[type="date"] {
      position: relative;
    }
    .form-input[type="date"]::-webkit-calendar-picker-indicator {
      cursor: pointer;
      opacity: 0.6;
    }

    /* Phone input with prefix */
    .phone-group {
      display: flex;
      gap: 10px;
    }
    .phone-prefix {
      width: 90px;
      flex-shrink: 0;
      padding: 14px 18px;
      border: 1.5px solid #e5e5e5;
      border-radius: 10px;
      font-size: 0.95rem;
      color: #333;
      background: #f9f9f9;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 600;
    }
    .phone-input {
      flex: 1;
    }

    /* Submit Button */
    .submit-btn {
      width: 100%;
      padding: 16px 28px;
      background: var(--green-bright);
      border: none;
      border-radius: 12px;
      color: #fff;
      font-weight: 700;
      font-size: 1.05rem;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      margin-top: 36px;
      transition: background .2s, transform .2s;
    }
    .submit-btn:hover {
      background: var(--green-dark);
      transform: translateY(-2px);
    }
    .submit-btn i {
      font-size: 1.2rem;
    }

    /* Grid for two columns */
    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
    }

    /* ═══════════════════════════════
       FOOTER
    ═══════════════════════════════ */
    .site-footer {
      background: #2d7857;
      color: #fff;
      padding: 60px 28px 28px;
    }
    .footer-wrap {
      max-width: 1280px;
      margin: 0 auto;
    }
    .footer-cols {
      display: grid;
      grid-template-columns: 1.4fr 1fr 1fr 1.4fr;
      gap: 60px;
      margin-bottom: 50px;
    }

    /* Sol kolon - İletişim */
    .ft-contact-col h4 {
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      margin-bottom: 12px;
      opacity: 0.9;
    }
    .ft-contact-col .email {
      font-size: 1.1rem;
      font-weight: 600;
      margin-bottom: 24px;
      color: #fff;
    }
    .ft-contact-col .phone-label {
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      margin-bottom: 8px;
      opacity: 0.9;
    }
    .ft-contact-col .phone {
      font-size: 1.35rem;
      font-weight: 700;
      margin-bottom: 24px;
      color: #fff;
    }
    .ft-contact-col .address-label {
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      margin-bottom: 8px;
      opacity: 0.9;
    }
    .ft-contact-col .address {
      font-size: 0.9rem;
      line-height: 1.6;
      color: #fff;
    }

    /* Orta kolonlar - Linkler */
    .ft-col h4 {
      font-size: 1.05rem;
      font-weight: 700;
      color: #fff;
      margin-bottom: 20px;
    }
    .ft-col ul {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }
    .ft-col ul li a {
      font-size: 0.88rem;
      color: #fff;
      transition: opacity .18s;
      opacity: 0.9;
    }
    .ft-col ul li a:hover { opacity: 1; }

    /* Sağ kolon - Newsletter */
    .ft-newsletter-col {
      background: rgba(0,0,0,0.15);
      padding: 32px 28px;
      border-radius: 12px;
    }
    .ft-newsletter-col p {
      font-size: 0.88rem;
      line-height: 1.6;
      margin-bottom: 20px;
      color: #fff;
    }
    .ft-newsletter-col .nl-input-wrap {
      position: relative;
      margin-bottom: 16px;
    }
    .ft-newsletter-col input {
      width: 100%;
      padding: 13px 50px 13px 16px;
      border-radius: 50px;
      border: none;
      background: #fff;
      color: #333;
      font-family: inherit;
      font-size: 0.85rem;
      outline: none;
    }
    .ft-newsletter-col input::placeholder { color: #999; }
    .ft-newsletter-col .nl-btn {
      position: absolute;
      right: 6px;
      top: 50%;
      transform: translateY(-50%);
      width: 36px;
      height: 36px;
      background: #7dd895;
      border: none;
      border-radius: 50%;
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      font-size: 1.1rem;
      transition: background .18s;
    }
    .ft-newsletter-col .nl-btn:hover { background: #5ec77e; }
    .ft-newsletter-col .checkbox-wrap {
      display: flex;
      align-items: flex-start;
      gap: 8px;
    }
    .ft-newsletter-col .checkbox-wrap input[type="checkbox"] {
      width: 16px;
      height: 16px;
      margin-top: 2px;
      cursor: pointer;
      flex-shrink: 0;
      padding: 0;
    }
    .ft-newsletter-col .checkbox-wrap label {
      font-size: 0.8rem;
      color: #fff;
      cursor: pointer;
      line-height: 1.4;
    }

    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.15);
      padding-top: 20px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 0.8rem;
      color: rgba(255,255,255,0.7);
      gap: 16px;
      flex-wrap: wrap;
    }
    .footer-bottom-links {
      display: flex;
      gap: 24px;
    }
    .footer-bottom-links a {
      color: rgba(255,255,255,0.7);
      transition: color .18s;
    }
    .footer-bottom-links a:hover { color: #fff; }

    /* ═══════════════════════════════
       KAZA DESTEK SIDEBAR
    ═══════════════════════════════ */
    .kaza-overlay {
      position: fixed;
      top: 0; left: 0; right: 0; bottom: 0;
      background: rgba(0, 0, 0, 0.5);
      z-index: 10000;
      opacity: 0;
      visibility: hidden;
      transition: opacity .3s, visibility .3s;
    }
    .kaza-overlay.active {
      opacity: 1;
      visibility: visible;
    }

    .kaza-sidebar {
      position: fixed;
      top: 0;
      right: 0;
      width: 100%;
      max-width: 483px;
      height: 100vh;
      background: #fff;
      z-index: 10001;
      transform: translateX(100%);
      transition: transform .4s cubic-bezier(0.4, 0, 0.2, 1);
      overflow-y: auto;
      box-shadow: -4px 0 24px rgba(0,0,0,0.15);
    }
    .kaza-sidebar.active {
      transform: translateX(0);
    }

    /* Header */
    .kaza-header {
      background: linear-gradient(135deg, #3aad68, #2d8653);
      padding: 24px 32px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .kaza-logo {
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .kaza-logo-icon {
      width: 52px;
      height: 52px;
    }
    .kaza-logo-text {
      font-size: 1.6rem;
      font-weight: 700;
      color: #7de8a8;
      letter-spacing: 0.5px;
    }
    .kaza-close {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      border: 2px solid rgba(255,255,255,0.5);
      background: transparent;
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.4rem;
      cursor: pointer;
      transition: background .2s, border-color .2s;
    }
    .kaza-close:hover {
      background: rgba(255,255,255,0.1);
      border-color: #fff;
    }

    /* Content */
    .kaza-content {
      padding: 32px;
    }

    /* Title card */
    .kaza-title-card {
      background: linear-gradient(135deg, #ff6b7a, #f04452);
      border-radius: 16px;
      padding: 24px 28px;
      text-align: center;
      margin-bottom: 32px;
    }
    .kaza-title-card h2 {
      font-size: 1.5rem;
      font-weight: 800;
      color: #fff;
      margin-bottom: 8px;
    }
    .kaza-title-card p {
      font-size: 0.9rem;
      color: rgba(255,255,255,0.95);
    }

    /* Section */
    .kaza-section {
      margin-bottom: 32px;
    }
    .kaza-section-header {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 20px;
    }
    .kaza-section-num {
      width: 32px;
      height: 32px;
      border-radius: 50%;
      background: #f04452;
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      font-size: 0.95rem;
      flex-shrink: 0;
    }
    .kaza-section-title {
      font-size: 1.15rem;
      font-weight: 800;
      color: #1a2a1f;
    }

    /* Form */
    .kaza-form-group {
      margin-bottom: 16px;
    }
    .kaza-input,
    .kaza-select,
    .kaza-textarea {
      width: 100%;
      padding: 14px 16px;
      border: 1.5px solid #e5e5e5;
      border-radius: 10px;
      font-family: inherit;
      font-size: 0.9rem;
      color: #333;
      outline: none;
      transition: border-color .2s;
    }
    .kaza-input:focus,
    .kaza-select:focus,
    .kaza-textarea:focus {
      border-color: #3aad68;
    }
    .kaza-input::placeholder,
    .kaza-textarea::placeholder {
      color: #999;
    }

    /* Phone input */
    .kaza-phone-group {
      display: flex;
      gap: 8px;
    }
    .kaza-phone-prefix {
      width: 80px;
      flex-shrink: 0;
      padding: 14px 16px;
      border: 1.5px solid #e5e5e5;
      border-radius: 10px;
      font-size: 0.9rem;
      color: #333;
      background: #f9f9f9;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 600;
    }
    .kaza-phone-input {
      flex: 1;
    }

    /* Textarea */
    .kaza-textarea {
      min-height: 120px;
      resize: vertical;
    }

    /* Icons in inputs */
    .kaza-input-wrap {
      position: relative;
    }
    .kaza-input-icon {
      position: absolute;
      left: 16px;
      top: 50%;
      transform: translateY(-50%);
      color: #999;
      font-size: 1.2rem;
      pointer-events: none;
      z-index: 1;
    }
    .kaza-input-wrap .kaza-input,
    .kaza-input-wrap .kaza-select,
    .kaza-input-wrap .kaza-textarea {
      padding-left: 44px;
    }
    .kaza-input-wrap .kaza-phone-input {
      padding-left: 44px;
    }

    /* Submit button */
    .kaza-submit {
      width: 100%;
      padding: 16px 24px;
      background: #1b5e35;
      border: none;
      border-radius: 12px;
      color: #fff;
      font-weight: 700;
      font-size: 1rem;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      margin-bottom: 24px;
      transition: background .2s;
    }
    .kaza-submit:hover {
      background: #0f3a20;
    }

    /* Info box */
    .kaza-info-box {
      background: #f0f7ff;
      border-left: 3px solid #3a9bd6;
      border-radius: 10px;
      padding: 16px 20px;
      margin-bottom: 32px;
    }
    .kaza-info-header {
      display: flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 6px;
    }
    .kaza-info-icon {
      width: 20px;
      height: 20px;
      border-radius: 50%;
      background: #3a9bd6;
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.75rem;
      font-weight: 700;
    }
    .kaza-info-text {
      font-size: 0.88rem;
      color: #1a2a1f;
    }
    .kaza-info-text strong {
      color: #f04452;
      font-weight: 700;
    }
    .kaza-info-sub {
      font-size: 0.82rem;
      color: #666;
      margin-top: 4px;
    }

    /* Contact section */
    .kaza-contact-section {
      margin-bottom: 24px;
    }
    .kaza-contact-section h3 {
      font-size: 0.85rem;
      font-weight: 700;
      color: #1b5e35;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      margin-bottom: 8px;
    }
    .kaza-contact-section p {
      font-size: 0.9rem;
      color: #3b5040;
      line-height: 1.6;
    }

    /* ═══════════════════════════════
       WHATSAPP FLOAT
    ═══════════════════════════════ */
    .wa-float {
      position: fixed;
      bottom: 24px; right: 24px;
      z-index: 9999;
      width: 52px; height: 52px;
      background: #25d366;
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.6rem;
      box-shadow: 0 4px 18px rgba(37,211,102,0.45);
      transition: transform .2s;
      animation: waPulse 2.8s ease-in-out infinite;
    }
    .wa-float:hover { transform: scale(1.1); }
    @keyframes waPulse {
      0%,100% { box-shadow: 0 4px 18px rgba(37,211,102,0.45); }
      50%      { box-shadow: 0 4px 30px rgba(37,211,102,0.7); }
    }
  


/* ===== hakkimizda.html ===== */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --green-dark:   #1b5e35;
      --green-mid:    #2d8653;
      --green-bright: #3aad68;
      --green-light:  #d4f0e0;
      --green-pale:   #eaf6ef;
      --red:          #e63946;
      --white:        #ffffff;
      --gray-bg:      #f4f7f5;
      --text-dark:    #1a2a1f;
      --text-mid:     #3b5040;
      --text-light:   #7a9080;
      --border:       #ddeee5;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Outfit', sans-serif;
      color: var(--text-dark);
      background: #fff;
      overflow-x: hidden;
    }

    a { text-decoration: none; color: inherit; }
    img { display: block; max-width: 100%; }

    /* ═══════════════════════════════
       STICKY HEADER
    ═══════════════════════════════ */
    .site-header {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 9999;
      background: #fff;
      box-shadow: 0 2px 10px rgba(0,0,0,0.06);
      height: 70px;
      display: flex;
      align-items: center;
    }
    .header-wrap {
      flex: 1;
      padding: 0 40px;
      display: flex;
      align-items: center;
      gap: 0;
    }
    .logo {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 2px;
      margin-right: 48px;
      text-decoration: none;
    }
    .logo-badge {
      width: 44px; height: 44px;
      background: linear-gradient(135deg, #3aad68, #1b5e35);
      border-radius: 10px;
      display: flex; align-items: center; justify-content: center;
    }
    .logo-badge svg { width: 26px; height: 26px; }
    .logo-name {
      font-size: 0.8rem;
      font-weight: 700;
      color: var(--green-dark);
      letter-spacing: 1px;
      text-transform: lowercase;
    }

    .main-nav {
      display: flex;
      align-items: center;
      gap: 12px;
      flex: 1;
      justify-content: center;
    }
    .main-nav > .nav-item {
      position: relative;
    }
    .main-nav a {
      font-size: 1.1rem;
      font-weight: 500;
      color: #222;
      padding: 10px 16px;
      border-radius: 7px;
      display: flex; align-items: center; gap: 6px;
      transition: color .18s;
      white-space: nowrap;
    }
    .main-nav a:hover { color: var(--green-dark); }
    .main-nav .chevron {
      font-size: 1rem;
      opacity: 0.6;
      display: flex;
      align-items: center;
    }

    /* Dropdown menü */
    .dropdown-menu {
      position: absolute;
      top: 100%;
      left: 0;
      background: #fff;
      border-radius: 12px;
      box-shadow: 0 8px 32px rgba(0,0,0,0.12);
      padding: 16px 0;
      min-width: 260px;
      opacity: 0;
      visibility: hidden;
      transform: translateY(-10px);
      transition: opacity .25s, transform .25s, visibility .25s;
      z-index: 100;
      margin-top: 8px;
    }
    .nav-item:hover .dropdown-menu {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }
    .dropdown-menu a {
      display: block;
      padding: 12px 24px;
      font-size: 1rem;
      font-weight: 500;
      color: var(--green-dark);
      transition: background .15s;
      border-radius: 0;
    }
    .dropdown-menu a:hover {
      background: #f7fbf8;
    }

    /* "Kaza Destek" — kırmızı, tam köşeye yapışık */
    .btn-kaza {
      position: fixed;
      top: 0; right: 0;
      height: 70px;
      background: #f04452;
      color: #fff;
      font-weight: 700;
      font-size: 0.95rem;
      padding: 0 32px;
      display: flex; align-items: center;
      white-space: nowrap;
      z-index: 10000;
      transition: background .18s;
      letter-spacing: 0.3px;
    }
    .btn-kaza:hover { background: #d63340; }

    /* ═══════════════════════════════
       HAKKIMIZDA - UPPER SECTION
    ═══════════════════════════════ */
    .about-upper {
      margin-top: 70px;
      background: #fff;
      padding: 80px 0;
    }
    .about-upper-wrap {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 40px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }

    .about-left .section-eyebrow {
      display: inline-block;
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      color: var(--green-mid);
      padding: 5px 16px;
      border: 1px solid #c8e6d4;
      border-radius: 20px;
      margin-bottom: 24px;
    }
    .about-left h1 {
      font-size: 2.8rem;
      font-weight: 800;
      color: var(--green-dark);
      line-height: 1.2;
      margin-bottom: 24px;
    }
    .about-left p {
      font-size: 1rem;
      color: var(--text-mid);
      line-height: 1.75;
      margin-bottom: 32px;
    }

    .video-card {
      background: #fff;
      border: 1.5px solid #e2ede8;
      border-radius: 18px;
      padding: 24px 28px;
      display: flex;
      align-items: center;
      gap: 20px;
      transition: box-shadow .25s, border-color .25s;
      cursor: pointer;
    }
    .video-card:hover {
      box-shadow: 0 6px 28px rgba(27,94,53,0.12);
      border-color: #a8d5bc;
    }
    .video-play-btn {
      width: 56px;
      height: 56px;
      border-radius: 50%;
      background: var(--green-bright);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      transition: background .2s, transform .2s;
    }
    .video-card:hover .video-play-btn {
      background: var(--green-dark);
      transform: scale(1.08);
    }
    .video-play-btn i {
      font-size: 1.5rem;
      color: #fff;
      margin-left: 4px;
    }
    .video-text-wrap h3 {
      font-size: 1.15rem;
      font-weight: 700;
      color: var(--text-dark);
      margin-bottom: 6px;
    }
    .video-text-wrap p {
      font-size: 0.88rem;
      color: var(--text-light);
      line-height: 1.5;
      margin: 0;
    }

    .about-right {
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .about-right img {
      max-width: 100%;
      height: auto;
      filter: drop-shadow(0 12px 32px rgba(0,0,0,0.1));
    }

    /* ═══════════════════════════════
       HAKKIMIZDA - LOWER SECTION
    ═══════════════════════════════ */
    .about-lower {
      background: linear-gradient(135deg, #5ed68a 0%, #3aad68 30%, #2d8653 60%, #1b5e35 100%);
      padding: 80px 0;
      position: relative;
      overflow: hidden;
    }
    .about-lower::after {
      content: '';
      position: absolute;
      bottom: -100px; left: -100px;
      width: 400px; height: 400px;
      border-radius: 50%;
      background: rgba(255,255,255,0.05);
      pointer-events: none;
    }

    .about-lower-wrap {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 40px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
      position: relative;
      z-index: 1;
    }

    .about-lower-left {
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .about-lower-left img {
      max-width: 100%;
      height: auto;
      filter: drop-shadow(0 12px 32px rgba(0,0,0,0.15));
    }

    .about-lower-right .why-badge {
      display: inline-block;
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 1.8px;
      text-transform: uppercase;
      color: #1b5e35;
      background: #f9db6d;
      padding: 8px 18px;
      border-radius: 20px;
      margin-bottom: 24px;
    }
    .about-lower-right h2 {
      font-size: 2.4rem;
      font-weight: 800;
      color: #fff;
      line-height: 1.25;
      margin-bottom: 20px;
    }
    .about-lower-right > p {
      font-size: 1rem;
      color: rgba(255,255,255,0.9);
      line-height: 1.7;
      margin-bottom: 36px;
    }

    .features-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
    }
    .feature-item {
      background: rgba(255,255,255,0.12);
      backdrop-filter: blur(10px);
      border-radius: 16px;
      padding: 28px 24px;
      border: 1px solid rgba(255,255,255,0.15);
      transition: background .25s, border-color .25s;
    }
    .feature-item:hover {
      background: rgba(255,255,255,0.18);
      border-color: rgba(255,255,255,0.3);
    }
    .feature-icon {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      background: #7de8a8;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 16px;
    }
    .feature-icon i {
      font-size: 1.5rem;
      color: #1b5e35;
    }
    .feature-item h3 {
      font-size: 1.15rem;
      font-weight: 700;
      color: #fff;
      margin-bottom: 10px;
    }
    .feature-item p {
      font-size: 0.9rem;
      color: rgba(255,255,255,0.85);
      line-height: 1.6;
      margin: 0;
    }

    /* ═══════════════════════════════
       FOOTER
    ═══════════════════════════════ */
    .site-footer {
      background: #2d7857;
      color: #fff;
      padding: 60px 28px 28px;
    }
    .footer-wrap {
      max-width: 1280px;
      margin: 0 auto;
    }
    .footer-cols {
      display: grid;
      grid-template-columns: 1.4fr 1fr 1fr 1.4fr;
      gap: 60px;
      margin-bottom: 50px;
    }

    /* Sol kolon - İletişim */
    .ft-contact-col h4 {
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      margin-bottom: 12px;
      opacity: 0.9;
    }
    .ft-contact-col .email {
      font-size: 1.1rem;
      font-weight: 600;
      margin-bottom: 24px;
      color: #fff;
    }
    .ft-contact-col .phone-label {
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      margin-bottom: 8px;
      opacity: 0.9;
    }
    .ft-contact-col .phone {
      font-size: 1.35rem;
      font-weight: 700;
      margin-bottom: 24px;
      color: #fff;
    }
    .ft-contact-col .address-label {
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      margin-bottom: 8px;
      opacity: 0.9;
    }
    .ft-contact-col .address {
      font-size: 0.9rem;
      line-height: 1.6;
      color: #fff;
    }

    /* Orta kolonlar - Linkler */
    .ft-col h4 {
      font-size: 1.05rem;
      font-weight: 700;
      color: #fff;
      margin-bottom: 20px;
    }
    .ft-col ul {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }
    .ft-col ul li a {
      font-size: 0.88rem;
      color: #fff;
      transition: opacity .18s;
      opacity: 0.9;
    }
    .ft-col ul li a:hover { opacity: 1; }

    /* Sağ kolon - Newsletter */
    .ft-newsletter-col {
      background: rgba(0,0,0,0.15);
      padding: 32px 28px;
      border-radius: 12px;
    }
    .ft-newsletter-col p {
      font-size: 0.88rem;
      line-height: 1.6;
      margin-bottom: 20px;
      color: #fff;
    }
    .ft-newsletter-col .nl-input-wrap {
      position: relative;
      margin-bottom: 16px;
    }
    .ft-newsletter-col input {
      width: 100%;
      padding: 13px 50px 13px 16px;
      border-radius: 50px;
      border: none;
      background: #fff;
      color: #333;
      font-family: inherit;
      font-size: 0.85rem;
      outline: none;
    }
    .ft-newsletter-col input::placeholder { color: #999; }
    .ft-newsletter-col .nl-btn {
      position: absolute;
      right: 6px;
      top: 50%;
      transform: translateY(-50%);
      width: 36px;
      height: 36px;
      background: #7dd895;
      border: none;
      border-radius: 50%;
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      font-size: 1.1rem;
      transition: background .18s;
    }
    .ft-newsletter-col .nl-btn:hover { background: #5ec77e; }
    .ft-newsletter-col .checkbox-wrap {
      display: flex;
      align-items: flex-start;
      gap: 8px;
    }
    .ft-newsletter-col .checkbox-wrap input[type="checkbox"] {
      width: 16px;
      height: 16px;
      margin-top: 2px;
      cursor: pointer;
      flex-shrink: 0;
      padding: 0;
    }
    .ft-newsletter-col .checkbox-wrap label {
      font-size: 0.8rem;
      color: #fff;
      cursor: pointer;
      line-height: 1.4;
    }

    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.15);
      padding-top: 20px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 0.8rem;
      color: rgba(255,255,255,0.7);
      gap: 16px;
      flex-wrap: wrap;
    }
    .footer-bottom-links {
      display: flex;
      gap: 24px;
    }
    .footer-bottom-links a {
      color: rgba(255,255,255,0.7);
      transition: color .18s;
    }
    .footer-bottom-links a:hover { color: #fff; }

    /* ═══════════════════════════════
       KAZA DESTEK SIDEBAR
    ═══════════════════════════════ */
    .kaza-overlay {
      position: fixed;
      top: 0; left: 0; right: 0; bottom: 0;
      background: rgba(0, 0, 0, 0.5);
      z-index: 10000;
      opacity: 0;
      visibility: hidden;
      transition: opacity .3s, visibility .3s;
    }
    .kaza-overlay.active {
      opacity: 1;
      visibility: visible;
    }

    .kaza-sidebar {
      position: fixed;
      top: 0;
      right: 0;
      width: 100%;
      max-width: 483px;
      height: 100vh;
      background: #fff;
      z-index: 10001;
      transform: translateX(100%);
      transition: transform .4s cubic-bezier(0.4, 0, 0.2, 1);
      overflow-y: auto;
      box-shadow: -4px 0 24px rgba(0,0,0,0.15);
    }
    .kaza-sidebar.active {
      transform: translateX(0);
    }

    /* Header */
    .kaza-header {
      background: linear-gradient(135deg, #3aad68, #2d8653);
      padding: 24px 32px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .kaza-logo {
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .kaza-logo-icon {
      width: 52px;
      height: 52px;
    }
    .kaza-logo-text {
      font-size: 1.6rem;
      font-weight: 700;
      color: #7de8a8;
      letter-spacing: 0.5px;
    }
    .kaza-close {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      border: 2px solid rgba(255,255,255,0.5);
      background: transparent;
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.4rem;
      cursor: pointer;
      transition: background .2s, border-color .2s;
    }
    .kaza-close:hover {
      background: rgba(255,255,255,0.1);
      border-color: #fff;
    }

    /* Content */
    .kaza-content {
      padding: 32px;
    }

    /* Title card */
    .kaza-title-card {
      background: linear-gradient(135deg, #ff6b7a, #f04452);
      border-radius: 16px;
      padding: 24px 28px;
      text-align: center;
      margin-bottom: 32px;
    }
    .kaza-title-card h2 {
      font-size: 1.5rem;
      font-weight: 800;
      color: #fff;
      margin-bottom: 8px;
    }
    .kaza-title-card p {
      font-size: 0.9rem;
      color: rgba(255,255,255,0.95);
    }

    /* Section */
    .kaza-section {
      margin-bottom: 32px;
    }
    .kaza-section-header {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 20px;
    }
    .kaza-section-num {
      width: 32px;
      height: 32px;
      border-radius: 50%;
      background: #f04452;
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      font-size: 0.95rem;
      flex-shrink: 0;
    }
    .kaza-section-title {
      font-size: 1.15rem;
      font-weight: 800;
      color: #1a2a1f;
    }

    /* Form */
    .kaza-form-group {
      margin-bottom: 16px;
    }
    .kaza-input,
    .kaza-select,
    .kaza-textarea {
      width: 100%;
      padding: 14px 16px;
      border: 1.5px solid #e5e5e5;
      border-radius: 10px;
      font-family: inherit;
      font-size: 0.9rem;
      color: #333;
      outline: none;
      transition: border-color .2s;
    }
    .kaza-input:focus,
    .kaza-select:focus,
    .kaza-textarea:focus {
      border-color: #3aad68;
    }
    .kaza-input::placeholder,
    .kaza-textarea::placeholder {
      color: #999;
    }

    /* Phone input */
    .kaza-phone-group {
      display: flex;
      gap: 8px;
    }
    .kaza-phone-prefix {
      width: 80px;
      flex-shrink: 0;
      padding: 14px 16px;
      border: 1.5px solid #e5e5e5;
      border-radius: 10px;
      font-size: 0.9rem;
      color: #333;
      background: #f9f9f9;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 600;
    }
    .kaza-phone-input {
      flex: 1;
    }

    /* Textarea */
    .kaza-textarea {
      min-height: 120px;
      resize: vertical;
    }

    /* Icons in inputs */
    .kaza-input-wrap {
      position: relative;
    }
    .kaza-input-icon {
      position: absolute;
      left: 16px;
      top: 50%;
      transform: translateY(-50%);
      color: #999;
      font-size: 1.2rem;
      pointer-events: none;
      z-index: 1;
    }
    .kaza-input-wrap .kaza-input,
    .kaza-input-wrap .kaza-select,
    .kaza-input-wrap .kaza-textarea {
      padding-left: 44px;
    }
    .kaza-input-wrap .kaza-phone-input {
      padding-left: 44px;
    }

    /* Submit button */
    .kaza-submit {
      width: 100%;
      padding: 16px 24px;
      background: #1b5e35;
      border: none;
      border-radius: 12px;
      color: #fff;
      font-weight: 700;
      font-size: 1rem;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      margin-bottom: 24px;
      transition: background .2s;
    }
    .kaza-submit:hover {
      background: #0f3a20;
    }

    /* Info box */
    .kaza-info-box {
      background: #f0f7ff;
      border-left: 3px solid #3a9bd6;
      border-radius: 10px;
      padding: 16px 20px;
      margin-bottom: 32px;
    }
    .kaza-info-header {
      display: flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 6px;
    }
    .kaza-info-icon {
      width: 20px;
      height: 20px;
      border-radius: 50%;
      background: #3a9bd6;
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.75rem;
      font-weight: 700;
    }
    .kaza-info-text {
      font-size: 0.88rem;
      color: #1a2a1f;
    }
    .kaza-info-text strong {
      color: #f04452;
      font-weight: 700;
    }
    .kaza-info-sub {
      font-size: 0.82rem;
      color: #666;
      margin-top: 4px;
    }

    /* Contact section */
    .kaza-contact-section {
      margin-bottom: 24px;
    }
    .kaza-contact-section h3 {
      font-size: 0.85rem;
      font-weight: 700;
      color: #1b5e35;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      margin-bottom: 8px;
    }
    .kaza-contact-section p {
      font-size: 0.9rem;
      color: #3b5040;
      line-height: 1.6;
    }

    /* ═══════════════════════════════
       WHATSAPP FLOAT
    ═══════════════════════════════ */
    .wa-float {
      position: fixed;
      bottom: 24px; right: 24px;
      z-index: 9999;
      width: 52px; height: 52px;
      background: #25d366;
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.6rem;
      box-shadow: 0 4px 18px rgba(37,211,102,0.45);
      transition: transform .2s;
      animation: waPulse 2.8s ease-in-out infinite;
    }
    .wa-float:hover { transform: scale(1.1); }
    @keyframes waPulse {
      0%,100% { box-shadow: 0 4px 18px rgba(37,211,102,0.45); }
      50%      { box-shadow: 0 4px 30px rgba(37,211,102,0.7); }
    }
  


/* ===== hizmetlerimiz.html ===== */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --green-dark:   #1b5e35;
      --green-mid:    #2d8653;
      --green-bright: #3aad68;
      --green-light:  #d4f0e0;
      --green-pale:   #eaf6ef;
      --red:          #e63946;
      --white:        #ffffff;
      --gray-bg:      #f4f7f5;
      --text-dark:    #1a2a1f;
      --text-mid:     #3b5040;
      --text-light:   #7a9080;
      --border:       #ddeee5;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Outfit', sans-serif;
      color: var(--text-dark);
      background: #fff;
      overflow-x: hidden;
    }

    a { text-decoration: none; color: inherit; }
    img { display: block; max-width: 100%; }

    /* ═══════════════════════════════
       STICKY HEADER
    ═══════════════════════════════ */
    .site-header {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 9999;
      background: #fff;
      box-shadow: 0 2px 10px rgba(0,0,0,0.06);
      height: 70px;
      display: flex;
      align-items: center;
    }
    .header-wrap {
      flex: 1;
      padding: 0 40px;
      display: flex;
      align-items: center;
      gap: 0;
    }
    .logo {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 2px;
      margin-right: 48px;
      text-decoration: none;
    }
    .logo-badge {
      width: 44px; height: 44px;
      background: linear-gradient(135deg, #3aad68, #1b5e35);
      border-radius: 10px;
      display: flex; align-items: center; justify-content: center;
    }
    .logo-badge svg { width: 26px; height: 26px; }
    .logo-name {
      font-size: 0.8rem;
      font-weight: 700;
      color: var(--green-dark);
      letter-spacing: 1px;
      text-transform: lowercase;
    }

    .main-nav {
      display: flex;
      align-items: center;
      gap: 12px;
      flex: 1;
      justify-content: center;
    }
    .main-nav > .nav-item {
      position: relative;
    }
    .main-nav a {
      font-size: 1.1rem;
      font-weight: 500;
      color: #222;
      padding: 10px 16px;
      border-radius: 7px;
      display: flex; align-items: center; gap: 6px;
      transition: color .18s;
      white-space: nowrap;
    }
    .main-nav a:hover { color: var(--green-dark); }
    .main-nav .chevron {
      font-size: 1rem;
      opacity: 0.6;
      display: flex;
      align-items: center;
    }

    /* Dropdown menü */
    .dropdown-menu {
      position: absolute;
      top: 100%;
      left: 0;
      background: #fff;
      border-radius: 12px;
      box-shadow: 0 8px 32px rgba(0,0,0,0.12);
      padding: 16px 0;
      min-width: 260px;
      opacity: 0;
      visibility: hidden;
      transform: translateY(-10px);
      transition: opacity .25s, transform .25s, visibility .25s;
      z-index: 100;
      margin-top: 8px;
    }
    .nav-item:hover .dropdown-menu {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }
    .dropdown-menu a {
      display: block;
      padding: 12px 24px;
      font-size: 1rem;
      font-weight: 500;
      color: var(--green-dark);
      transition: background .15s;
      border-radius: 0;
    }
    .dropdown-menu a:hover {
      background: #f7fbf8;
    }

    /* "Kaza Destek" — kırmızı, tam köşeye yapışık */
    .btn-kaza {
      position: fixed;
      top: 0; right: 0;
      height: 70px;
      background: #f04452;
      color: #fff;
      font-weight: 700;
      font-size: 0.95rem;
      padding: 0 32px;
      display: flex; align-items: center;
      white-space: nowrap;
      z-index: 10000;
      transition: background .18s;
      letter-spacing: 0.3px;
    }
    .btn-kaza:hover { background: #d63340; }

    /* ═══════════════════════════════
       SERVICES TOP SECTION
    ═══════════════════════════════ */
    .services-top {
      margin-top: 70px;
      padding: 80px 40px;
      background: #f9faf9;
    }
    .services-top-wrap {
      max-width: 900px;
      margin: 0 auto;
    }
    .services-top .section-eyebrow {
      display: inline-block;
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      color: var(--green-mid);
      padding: 5px 16px;
      border: 1px solid #c8e6d4;
      border-radius: 20px;
      margin-bottom: 24px;
    }
    .services-top h1 {
      font-size: 2.8rem;
      font-weight: 800;
      color: var(--green-dark);
      line-height: 1.2;
      margin-bottom: 24px;
    }
    .services-top p {
      font-size: 1rem;
      color: var(--text-mid);
      line-height: 1.8;
    }

    /* ═══════════════════════════════
       SERVICES CARDS SECTION
    ═══════════════════════════════ */
    .services-cards {
      padding: 80px 40px 100px;
      background: #fff;
    }
    .services-cards-wrap {
      max-width: 1200px;
      margin: 0 auto;
    }
    .services-header {
      text-align: center;
      margin-bottom: 60px;
    }
    .services-header .section-eyebrow {
      display: inline-block;
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      color: var(--green-mid);
      padding: 5px 16px;
      border: 1px solid #c8e6d4;
      border-radius: 20px;
      margin-bottom: 20px;
    }
    .services-header h2 {
      font-size: 2.2rem;
      font-weight: 800;
      color: var(--green-dark);
      line-height: 1.3;
    }

    /* Services Grid */
    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

    /* Service Card */
    .service-card {
      position: relative;
      border-radius: 20px;
      overflow: hidden;
      cursor: pointer;
      transition: transform .3s ease, box-shadow .3s ease;
      box-shadow: 0 4px 20px rgba(0,0,0,0.08);
      height: 320px;
    }
    .service-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 12px 40px rgba(0,0,0,0.15);
    }

    .service-card-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      position: absolute;
      top: 0;
      left: 0;
    }

    .service-card-overlay {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: linear-gradient(to top, rgba(27,94,53,0.85) 0%, rgba(27,94,53,0.3) 60%, transparent 100%);
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 28px;
      transition: background .3s ease;
    }
    .service-card:hover .service-card-overlay {
      background: linear-gradient(to top, rgba(27,94,53,0.95) 0%, rgba(27,94,53,0.75) 60%, rgba(27,94,53,0.4) 100%);
    }

    .service-card-icon {
      width: 48px;
      height: 48px;
      background: rgba(255,255,255,0.95);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 16px;
      transition: transform .3s ease;
    }
    .service-card:hover .service-card-icon {
      transform: scale(1.1);
    }
    .service-card-icon svg {
      width: 28px;
      height: 28px;
      stroke: var(--green-dark);
    }

    .service-card-title {
      font-size: 1.25rem;
      font-weight: 700;
      color: #fff;
      margin-bottom: 8px;
    }

    .service-card-desc {
      font-size: 0.88rem;
      font-weight: 400;
      color: rgba(255, 255, 255, 0.95);
      line-height: 1.6;
      opacity: 0;
      max-height: 0;
      overflow: hidden;
      transition: opacity 0.3s ease, max-height 0.3s ease;
    }

    .service-card:hover .service-card-desc {
      opacity: 1;
      max-height: 150px;
    }

    .service-card-arrow {
      position: absolute;
      top: 24px;
      right: 24px;
      width: 40px;
      height: 40px;
      background: rgba(255,255,255,0.9);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: transform .3s ease, background .3s ease;
    }
    .service-card:hover .service-card-arrow {
      transform: translate(4px, -4px);
      background: #fff;
    }
    .service-card-arrow i {
      font-size: 1.2rem;
      color: var(--green-dark);
    }

    /* ═══════════════════════════════
       FOOTER
    ═══════════════════════════════ */
    .site-footer {
      background: #2d7857;
      color: #fff;
      padding: 60px 28px 28px;
    }
    .footer-wrap {
      max-width: 1280px;
      margin: 0 auto;
    }
    .footer-cols {
      display: grid;
      grid-template-columns: 1.4fr 1fr 1fr 1.4fr;
      gap: 60px;
      margin-bottom: 50px;
    }

    /* Sol kolon - İletişim */
    .ft-contact-col h4 {
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      margin-bottom: 12px;
      opacity: 0.9;
    }
    .ft-contact-col .email {
      font-size: 1.1rem;
      font-weight: 600;
      margin-bottom: 24px;
      color: #fff;
    }
    .ft-contact-col .phone-label {
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      margin-bottom: 8px;
      opacity: 0.9;
    }
    .ft-contact-col .phone {
      font-size: 1.35rem;
      font-weight: 700;
      margin-bottom: 24px;
      color: #fff;
    }
    .ft-contact-col .address-label {
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      margin-bottom: 8px;
      opacity: 0.9;
    }
    .ft-contact-col .address {
      font-size: 0.9rem;
      line-height: 1.6;
      color: #fff;
    }

    /* Orta kolonlar - Linkler */
    .ft-col h4 {
      font-size: 1.05rem;
      font-weight: 700;
      color: #fff;
      margin-bottom: 20px;
    }
    .ft-col ul {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }
    .ft-col ul li a {
      font-size: 0.88rem;
      color: #fff;
      transition: opacity .18s;
      opacity: 0.9;
    }
    .ft-col ul li a:hover { opacity: 1; }

    /* Sağ kolon - Newsletter */
    .ft-newsletter-col {
      background: rgba(0,0,0,0.15);
      padding: 32px 28px;
      border-radius: 12px;
    }
    .ft-newsletter-col p {
      font-size: 0.88rem;
      line-height: 1.6;
      margin-bottom: 20px;
      color: #fff;
    }
    .ft-newsletter-col .nl-input-wrap {
      position: relative;
      margin-bottom: 16px;
    }
    .ft-newsletter-col input {
      width: 100%;
      padding: 13px 50px 13px 16px;
      border-radius: 50px;
      border: none;
      background: #fff;
      color: #333;
      font-family: inherit;
      font-size: 0.85rem;
      outline: none;
    }
    .ft-newsletter-col input::placeholder { color: #999; }
    .ft-newsletter-col .nl-btn {
      position: absolute;
      right: 6px;
      top: 50%;
      transform: translateY(-50%);
      width: 36px;
      height: 36px;
      background: #7dd895;
      border: none;
      border-radius: 50%;
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      font-size: 1.1rem;
      transition: background .18s;
    }
    .ft-newsletter-col .nl-btn:hover { background: #5ec77e; }
    .ft-newsletter-col .checkbox-wrap {
      display: flex;
      align-items: flex-start;
      gap: 8px;
    }
    .ft-newsletter-col .checkbox-wrap input[type="checkbox"] {
      width: 16px;
      height: 16px;
      margin-top: 2px;
      cursor: pointer;
      flex-shrink: 0;
      padding: 0;
    }
    .ft-newsletter-col .checkbox-wrap label {
      font-size: 0.8rem;
      color: #fff;
      cursor: pointer;
      line-height: 1.4;
    }

    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.15);
      padding-top: 20px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 0.8rem;
      color: rgba(255,255,255,0.7);
      gap: 16px;
      flex-wrap: wrap;
    }
    .footer-bottom-links {
      display: flex;
      gap: 24px;
    }
    .footer-bottom-links a {
      color: rgba(255,255,255,0.7);
      transition: color .18s;
    }
    .footer-bottom-links a:hover { color: #fff; }

    /* ═══════════════════════════════
       KAZA DESTEK SIDEBAR
    ═══════════════════════════════ */
    .kaza-overlay {
      position: fixed;
      top: 0; left: 0; right: 0; bottom: 0;
      background: rgba(0, 0, 0, 0.5);
      z-index: 10000;
      opacity: 0;
      visibility: hidden;
      transition: opacity .3s, visibility .3s;
    }
    .kaza-overlay.active {
      opacity: 1;
      visibility: visible;
    }

    .kaza-sidebar {
      position: fixed;
      top: 0;
      right: 0;
      width: 100%;
      max-width: 483px;
      height: 100vh;
      background: #fff;
      z-index: 10001;
      transform: translateX(100%);
      transition: transform .4s cubic-bezier(0.4, 0, 0.2, 1);
      overflow-y: auto;
      box-shadow: -4px 0 24px rgba(0,0,0,0.15);
    }
    .kaza-sidebar.active {
      transform: translateX(0);
    }

    /* Header */
    .kaza-header {
      background: linear-gradient(135deg, #3aad68, #2d8653);
      padding: 24px 32px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .kaza-logo {
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .kaza-logo-icon {
      width: 52px;
      height: 52px;
    }
    .kaza-logo-text {
      font-size: 1.6rem;
      font-weight: 700;
      color: #7de8a8;
      letter-spacing: 0.5px;
    }
    .kaza-close {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      border: 2px solid rgba(255,255,255,0.5);
      background: transparent;
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.4rem;
      cursor: pointer;
      transition: background .2s, border-color .2s;
    }
    .kaza-close:hover {
      background: rgba(255,255,255,0.1);
      border-color: #fff;
    }

    /* Content */
    .kaza-content {
      padding: 32px;
    }

    /* Title card */
    .kaza-title-card {
      background: linear-gradient(135deg, #ff6b7a, #f04452);
      border-radius: 16px;
      padding: 24px 28px;
      text-align: center;
      margin-bottom: 32px;
    }
    .kaza-title-card h2 {
      font-size: 1.5rem;
      font-weight: 800;
      color: #fff;
      margin-bottom: 8px;
    }
    .kaza-title-card p {
      font-size: 0.9rem;
      color: rgba(255,255,255,0.95);
    }

    /* Section */
    .kaza-section {
      margin-bottom: 32px;
    }
    .kaza-section-header {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 20px;
    }
    .kaza-section-num {
      width: 32px;
      height: 32px;
      border-radius: 50%;
      background: #f04452;
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      font-size: 0.95rem;
      flex-shrink: 0;
    }
    .kaza-section-title {
      font-size: 1.15rem;
      font-weight: 800;
      color: #1a2a1f;
    }

    /* Form */
    .kaza-form-group {
      margin-bottom: 16px;
    }
    .kaza-input,
    .kaza-select,
    .kaza-textarea {
      width: 100%;
      padding: 14px 16px;
      border: 1.5px solid #e5e5e5;
      border-radius: 10px;
      font-family: inherit;
      font-size: 0.9rem;
      color: #333;
      outline: none;
      transition: border-color .2s;
    }
    .kaza-input:focus,
    .kaza-select:focus,
    .kaza-textarea:focus {
      border-color: #3aad68;
    }
    .kaza-input::placeholder,
    .kaza-textarea::placeholder {
      color: #999;
    }

    /* Phone input */
    .kaza-phone-group {
      display: flex;
      gap: 8px;
    }
    .kaza-phone-prefix {
      width: 80px;
      flex-shrink: 0;
      padding: 14px 16px;
      border: 1.5px solid #e5e5e5;
      border-radius: 10px;
      font-size: 0.9rem;
      color: #333;
      background: #f9f9f9;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 600;
    }
    .kaza-phone-input {
      flex: 1;
    }

    /* Textarea */
    .kaza-textarea {
      min-height: 120px;
      resize: vertical;
    }

    /* Icons in inputs */
    .kaza-input-wrap {
      position: relative;
    }
    .kaza-input-icon {
      position: absolute;
      left: 16px;
      top: 50%;
      transform: translateY(-50%);
      color: #999;
      font-size: 1.2rem;
      pointer-events: none;
      z-index: 1;
    }
    .kaza-input-wrap .kaza-input,
    .kaza-input-wrap .kaza-select,
    .kaza-input-wrap .kaza-textarea {
      padding-left: 44px;
    }
    .kaza-input-wrap .kaza-phone-input {
      padding-left: 44px;
    }

    /* Submit button */
    .kaza-submit {
      width: 100%;
      padding: 16px 24px;
      background: #1b5e35;
      border: none;
      border-radius: 12px;
      color: #fff;
      font-weight: 700;
      font-size: 1rem;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      margin-bottom: 24px;
      transition: background .2s;
    }
    .kaza-submit:hover {
      background: #0f3a20;
    }

    /* Info box */
    .kaza-info-box {
      background: #f0f7ff;
      border-left: 3px solid #3a9bd6;
      border-radius: 10px;
      padding: 16px 20px;
      margin-bottom: 32px;
    }
    .kaza-info-header {
      display: flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 6px;
    }
    .kaza-info-icon {
      width: 20px;
      height: 20px;
      border-radius: 50%;
      background: #3a9bd6;
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.75rem;
      font-weight: 700;
    }
    .kaza-info-text {
      font-size: 0.88rem;
      color: #1a2a1f;
    }
    .kaza-info-text strong {
      color: #f04452;
      font-weight: 700;
    }
    .kaza-info-sub {
      font-size: 0.82rem;
      color: #666;
      margin-top: 4px;
    }

    /* Contact section */
    .kaza-contact-section {
      margin-bottom: 24px;
    }
    .kaza-contact-section h3 {
      font-size: 0.85rem;
      font-weight: 700;
      color: #1b5e35;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      margin-bottom: 8px;
    }
    .kaza-contact-section p {
      font-size: 0.9rem;
      color: #3b5040;
      line-height: 1.6;
    }

    /* ═══════════════════════════════
       WHATSAPP FLOAT
    ═══════════════════════════════ */
    .wa-float {
      position: fixed;
      bottom: 24px; right: 24px;
      z-index: 9999;
      width: 52px; height: 52px;
      background: #25d366;
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.6rem;
      box-shadow: 0 4px 18px rgba(37,211,102,0.45);
      transition: transform .2s;
      animation: waPulse 2.8s ease-in-out infinite;
    }
    .wa-float:hover { transform: scale(1.1); }
    @keyframes waPulse {
      0%,100% { box-shadow: 0 4px 18px rgba(37,211,102,0.45); }
      50%      { box-shadow: 0 4px 30px rgba(37,211,102,0.7); }
    }

@media (max-width: 768px) {
  body .main-nav { overflow-x: auto !important; }
  body .about-upper,
  body .about-lower {
    padding-left: 24px !important;
    padding-right: 24px !important;
  }

  body .about-upper-wrap,
  body .about-lower-wrap {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  body .about-left,
  body .about-right,
  body .about-lower-left,
  body .about-lower-right {
    padding-left: 2px;
    padding-right: 2px;
  }
  body .fix-grid,
  body .fix-grid-2,
  body .blog-grid,
  body .related-grid,
  body .services-grid,
  body .form-row,
  body .features-grid,
  body .step-cols { grid-template-columns: 1fr !important; }

  body .footer-cols { grid-template-columns: 1fr !important; }
  body .article-footer { flex-direction: column !important; align-items: flex-start !important; }
}

@media (max-width: 480px) {
  body .about-upper,
  body .about-lower {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
}

.mobile-menu-toggle,
.mobile-menu-overlay,
.mobile-drawer {
  display: none;
}

@media (max-width: 992px) {
  .site-header {
    position: relative !important;
    min-height: 62px !important;
  }

  .site-header .header-wrap {
    position: relative;
    min-height: 62px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 110px !important;
    flex-wrap: nowrap !important;
  }

  .site-header .logo {
    margin: 0 auto !important;
  }

  .mobile-menu-toggle {
    position: absolute;
    left: 5px;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border: 1px solid #dbe8e0;
    border-radius: 10px;
    background: #fff;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    margin-right: 0;
    flex-shrink: 0;
    z-index: 2;
  }

  .mobile-menu-toggle span {
    width: 18px;
    height: 2px;
    background: #1b5e35;
    border-radius: 2px;
    display: block;
  }

  .site-header .main-nav {
    display: none !important;
  }

  .site-header .btn-kaza {
    position: absolute !important;
    right: 5px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    margin: 0 !important;
    height: 38px !important;
    padding: 0 10px !important;
    border-radius: 10px !important;
    font-size: 0.8rem !important;
    z-index: 2;
  }

  .mobile-menu-overlay {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    opacity: 0;
    visibility: hidden;
    transition: opacity .25s ease, visibility .25s ease;
    z-index: 9997;
  }

  .mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
  }

  .mobile-drawer {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: min(320px, 85vw);
    height: 100dvh;
    background: #fff;
    transform: translateX(-100%);
    transition: transform .28s ease;
    z-index: 9998;
    overflow-y: auto;
    border-right: 1px solid #e8efeb;
  }

  .mobile-drawer.active {
    transform: translateX(0);
  }

  .mobile-drawer-head {
    height: 62px;
    padding: 0 14px 0 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #e8efeb;
  }

  .mobile-drawer-head strong {
    color: #1b5e35;
    font-size: 1rem;
  }

  .mobile-drawer-close {
    width: 34px;
    height: 34px;
    border: 1px solid #dbe8e0;
    border-radius: 9px;
    background: #fff;
    color: #1b5e35;
    cursor: pointer;
  }

  .mobile-drawer-nav {
    display: flex;
    flex-direction: column;
    padding: 20px 10px 10px;
    gap: 4px;
  }

  .mobile-drawer-nav > a,
  .mobile-drawer-nav .nav-item > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 10px;
    border-radius: 8px;
    color: #1a2a1f;
    font-size: 0.95rem;
    font-weight: 500;
  }

  .mobile-drawer-nav .nav-item {
    display: flex;
    flex-direction: column;
  }

  .mobile-drawer-nav .dropdown-menu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    border-radius: 0;
    margin: 0;
    min-width: 0;
    padding: 0 0 8px 12px;
    display: block;
    background: transparent;
  }

  .mobile-drawer-nav .dropdown-menu a {
    padding: 8px 10px;
    font-size: 0.9rem;
    color: #335646;
  }

  body.mobile-menu-open {
    overflow: hidden;
  }
}

.wa-float {
  display: none !important;
}
  
