  .svg-turkiye-haritasi {
      max-width: 90%;
      margin: 0 auto;
      text-align: center;
  }

  .svg-turkiye-haritasi svg {
      width: 100%;
      margin-top: 20%;
      margin-bottom: -20%;
  }

  .il-isimleri {
      position: absolute;
      z-index: 2;
  }

  .il-isimleri div {
      font-family: 'Open Sans';
      display: inline-block;
      background: #222;
      color: #fff;
      padding: 8px 16px;
      -webkit-border-radius: 4px;
      -moz-border-radius: 4px;
      border-radius: 4px;
  }

  .il-isimleri div:hover {
      background: #f5deb3;
      color: #000;
  }

  #svg-turkiye-haritasi path {
      cursor: pointer;
      fill: #ccc;
      transition: fill 0.3s;
  }

  #svg-turkiye-haritasi path:hover {
      fill: #F5F5DC;
  }

  #bolge-1 g path,
  #bolge-2 g path,
  #bolge-3 g path,
  #bolge-4 g path,
  #bolge-5 g path,
  #bolge-6 g path,
  #bolge-7 g path {
      fill: #c20000;
  }

  /* Yeni Pop-up Stilleri */
  .branch-popup {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.9);
      z-index: 10000;
      overflow-y: auto;
      padding: 20px;
      box-sizing: border-box;
  }

  .popup-content {
      background-color: #fff;
      border-radius: 15px;
      width: 90%;
      max-width: 1400px;
      margin: 30px auto;
      padding: 30px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
      animation: fadeInUp 0.5s;
      position: relative;
  }

  @keyframes fadeInUp {
      from {
          opacity: 0;
          transform: translateY(30px);
      }

      to {
          opacity: 1;
          transform: translateY(0);
      }
  }

  .close-popup {
      position: absolute;
      top: 20px;
      right: 20px;
      font-size: 30px;
      color: #333;
      cursor: pointer;
      transition: all 0.3s;
      background: #f5f5f5;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      line-height: 1;
  }

  .close-popup:hover {
      color: #c20000;
      transform: rotate(90deg);
  }

  /* Şube içeriği için yeni stiller */
  .branch-content {
      display: none;
  }

  .branch-content.active {
      display: block;
      animation: fadeIn 0.5s;
  }

  .map-container {
      height: 500px;
      border-radius: 10px;
      overflow: hidden;
      margin-bottom: 30px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }

  .branch-details {
      background: #f9f9f9;
      padding: 25px;
      border-radius: 10px;
      margin-bottom: 30px;
  }

  .branch-details h3 {
      color: #c20000;
      margin-bottom: 20px;
      font-size: 28px;
  }

  .info-item {
      margin-bottom: 15px;
      display: flex;
      align-items: center;
      font-size: 16px;
  }

  .info-item i {
      margin-right: 15px;
      color: #c20000;
      font-size: 18px;
      width: 25px;
      text-align: center;
  }

  .direction-btn {
      display: inline-flex;
      align-items: center;
      padding: 12px 25px;
      background: linear-gradient(135deg, #c20000, #a00000);
      color: white;
      text-decoration: none;
      border-radius: 50px;
      transition: all 0.3s;
      font-weight: 600;
      margin-top: 15px;
      box-shadow: 0 4px 10px rgba(194, 0, 0, 0.3);
  }

  .direction-btn i {
      margin-right: 10px;
  }

  .direction-btn:hover {
      transform: translateY(-3px);
      box-shadow: 0 6px 15px rgba(194, 0, 0, 0.4);
      color: white;
  }

  /* Şube listesi için yeni stiller */
  .branch-list {
      list-style: none;
      padding: 0;
      margin: 0;
  }

  .branch-list li {
      padding: 15px 20px;
      margin-bottom: 10px;
      cursor: pointer;
      border-radius: 8px;
      transition: all 0.3s;
      display: flex;
      align-items: center;
      background: #f5f5f5;
      font-weight: 500;
  }

  .branch-list li i {
      margin-right: 15px;
      color: #c20000;
      font-size: 18px;
  }

  .branch-list li:hover {
      background: #e9e9e9;
      transform: translateX(5px);
  }

  .branch-list li.active {
      background: #c20000;
      color: white;
  }

  .branch-list li.active i {
      color: white;
  }

  .wid-title h4 {
      font-size: 22px;
      margin-bottom: 20px;
      color: #333;
      position: relative;
      padding-bottom: 10px;
  }

  .wid-title h4::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 50px;
      height: 3px;
      background: #c20000;
  }

  

  /* Popup içindeki şube listesi için özel stil */
  .popup-branch-sidebar {
      position: sticky;
      top: 20px;
      height: fit-content;
      max-height: 80vh;
      overflow-y: auto;
  }

  /* Responsive düzenlemeler */
  @media (max-width: 1400px) {
      .popup-content {
          max-width: 95%;
      }
  }

  @media (max-width: 992px) {
      .popup-content {
          padding: 20px;
      }

      .map-container {
          height: 350px;
      }

      .branch-details {
          padding: 15px;
      }

      .info-item {
          font-size: 14px;
      }

      .direction-btn {
          padding: 10px 20px;
          font-size: 14px;
      }

      .branch-list li {
          padding: 12px 15px;
          font-size: 14px;
      }

      /* Popup içindeki düzen */
      .branch-wrapper .row {
          flex-direction: column;
      }

      .branch-wrapper .col-lg-8 {
          order: 2;
      }

      .branch-wrapper .col-lg-4 {
          order: 1;
          margin-bottom: 30px;
      }

      .popup-branch-sidebar {
          position: static;
          max-height: none;
      }
  }

  @media (max-width: 768px) {
      .popup-content {
          margin: 15px auto;
          width: 98%;
          padding: 15px;
      }

      .map-container {
          height: 250px;
      }

      .branch-details h3 {
          font-size: 22px;
      }

      .close-popup {
          width: 30px;
          height: 30px;
          font-size: 20px;
          top: 10px;
          right: 10px;
      }
  }

  @media (max-width: 576px) {
      .map-container {
          height: 200px;
      }

      .branch-details h3 {
          font-size: 20px;
      }

      .info-item {
          flex-wrap: wrap;
      }

      .direction-btn {
          width: 100%;
          justify-content: center;
      }
  }

  .map-container {
      position: relative;
      display: inline-block;
  }

  .map-profile {
      position: absolute;
      bottom: 15px;
      right: 15px;
      width: clamp(120px, 20vw, 200px);
      height: clamp(120px, 20vw, 200px);
      border: 3px solid white;
      overflow: hidden;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
      z-index: 100;
  }

  .map-profile img {
      width: 100%;
      height: 100%;
      object-fit: cover;
  }

  @media (max-width: 768px) {
      .map-profile {
          bottom: 10px;
          right: 10px;
          width: clamp(80px, 25vw, 150px);
          height: clamp(80px, 25vw, 150px);
          border-width: 2px;
      }
  }

  @media (max-width: 480px) {
      .map-profile {
          width: 70px;
          height: 70px;
          bottom: 5px;
          right: 5px;
      }
  }