/* Genel Contact Konteynırı */
.contact-container {
    display: flex;
    width: 1250px;
    justify-content: center;
    align-items: center;
    border-radius: 24px;
    overflow: hidden;
    margin: 0 auto;
  }
  
  /* Sol Yazı Alanı */
  .contact-left {
    width: 514.03px;
    height: 690.82px;
    flex-shrink: 0;
    background-color: #A21E7E;
    border-top-left-radius: 24px;
    border-bottom-left-radius: 24px;
    position: relative;
    padding: 43px 45px 0 45px;
    box-sizing: border-box;
  }
  
  /* Başlık ve Alt Başlık */
  .contact-title {
    width: 216px;
    color: #FFF;
    font-family: "GT Walsheim Pro", sans-serif;
    font-size: 64px;
    font-weight: 800;
    line-height: 64px;
    margin: 0;
  }
  
  .contact-subtitle {
    margin-top: 24px;
    color: #FFC633;
    font-family: "GT Walsheim Pro", sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: normal;
  }
  
  /* İletişim Bilgileri */
  .contact-info,
  .contact-mail,
  .contact-address {
    display: flex;
    align-items: center;
  }
  
  .contact-info {
    margin-top: 68px;
  }
  
  .contact-mail,
  .contact-address {
    margin-top: 54px;
  }
  
  .contact-info .contact-icon,
  .contact-mail .contact-icon,
  .contact-address .contact-icon {
    width: 25.13px;
    height: 25.63px;
    flex-shrink: 0;
  }
  
  .contact-info .contact-text {
    margin-left: 22.89px;
    width: 156.88px;
    height: 26px;
    flex-shrink: 0;
    color: #FFF;
    font-family: Poppins, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: normal;
  }
  
  .contact-mail .contact-text {
    margin-left: 26px;
    width: 356px;
    height: 26px;
    flex-shrink: 0;
    color: #FFF;
    font-family: Poppins, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: normal;
  }
  
  .contact-address .contact-text {
    margin-left: 26px;
    width: 327px;
    height: 51px;
    flex-shrink: 0;
    color: #FFF;
    font-family: Poppins, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: normal;
  }
  
  /* Sosyal Medya İkonları */
  .contact-social-icons {
    position: absolute;
    display: flex;
    margin-top: 126px;
    gap: 18px;
  }
  
  .contact-social-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    display: inline-block;
  }
  
  /* Sol Alandaki Daireler (Yazı ve ikonların altında kalacak) */
  .contact-circle-1 {
    position: absolute;
    margin-left: 270px;
    margin-top: 450px;
    width: 287.22px;
    height: 287.22px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
  }
  
  .contact-circle-2 {
    position: absolute;
    margin-top: 430px;
    margin-left: 250px;
    width: 144.47px;
    height: 147.35px;
    background: rgba(255, 249, 249, 0.13);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
  }
  
  /* İçerikteki Yazılar ve İkonlar (Dairelerin üstünde kalacak) */
  .contact-left .contact-title,
  .contact-left .contact-subtitle,
  .contact-left .contact-info,
  .contact-left .contact-mail,
  .contact-left .contact-address,
  .contact-left .contact-social-icons {
    position: relative;
    z-index: 2;
  }
  
  /* Sağ Harita Alanı */
  .contact-right {
    width: 736.35px;
    height: 691px;
    flex-shrink: 0;
    border-top-right-radius: 24px;
    border-bottom-right-radius: 24px;
    overflow: hidden;
  }
  
  .contact-map-container {
    width: 100%;
    height: 100%;
  }

  .contact-social-icon {
    transition: transform 0.3s ease;
    cursor: pointer;
  }
  
  .contact-social-icon:hover {
    transform: scale(1.1);
  }
  
  .contact-social-icon:hover svg path {
    fill: black;
    transition: fill 0.3s ease;
  }
  
  