/* =========================================
   BK FOOTER MODULE
   - Bağımsız, yeniden kullanılabilir footer
   - Tüm sınıflar bk-footer- prefix'i ile başlar
   ========================================= */

/* Root alan */
.bk-footer-root {
    position: relative;
    /* Break out of any centered page/container spacing */
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    color: #0b0f1a;
    font-family: "Outfit", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background-color: #ffffff;
    overflow: hidden;
  }
  
  /* Önceki section -> footer yumuşak geçiş */
  .bk-footer-root::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 30px;
    z-index: 3;
    pointer-events: none;
    background: linear-gradient(to bottom, #f6f6f6 0%, rgba(246, 246, 246, 0) 100%);
  }
  
  /* Üst kısım (arka plan + içerik) */
  .bk-footer-top {
    position: relative;
    width: 100%;
  }
  
  /* Arka plan container */
  .bk-footer-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
  }
  
  /* Karanlık overlay */
  .bk-footer-bg-overlay {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0);
    z-index: 1;
  }
  
  
  /* Arka plan görsel katmanı */
  .bk-footer-bg-image {
    position: absolute;
    inset: 0;
    z-index: 0;
  }
  
  .bk-footer-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.2) translateY(6px) translateX(-8px);
  }
  
  /* İçerik container */
  .bk-footer-container {
    position: relative;
    z-index: 2;
    max-width: 1740px;
    margin: 0 auto;
    padding: 70px 80px 40px;
  }
  
  @media (max-width: 1280px) {
    .bk-footer-container {
      padding: 48px 40px 32px;
    }
  }
  
  @media (max-width: 768px) {
    .bk-footer-container {
      padding: 32px 20px 24px;
    }
  }
  
  /* Üst satır: logo + buton + sosyal medya */
  .bk-footer-heading {
    margin-bottom: 40px;
  }
  
  .bk-footer-heading-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 32px;
  }
  
  .bk-footer-logo-wrapper {
    flex: 0 0 auto;
  }
  
  .bk-footer-logo {
    display: block;
    width: 315px;
    height: 60px;
    background: url("../Bk-HeaderModule/img/bk-header/ddlogo02.svg") no-repeat center;
    background-size: contain;
  }
  
  @media (max-width: 768px) {
    .bk-footer-logo {
      width: 218px;
      height: 48px;
    }
  }
  
  .bk-footer-tools {
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
  }
  
  @media (max-width: 1024px) {
    .bk-footer-tools {
      flex-direction: column;
      align-items: flex-start;
      gap: 24px;
    }
  }
  
  /* CTA butonu */
  .bk-footer-button-wrapper {
    flex: 0 0 auto;
  }
  
  .bk-footer-cta {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-width: 100px;
    height: 60px;
    padding: 0 32px;
    border-radius: 9999px;
    border: 1px solid #111827ac;
    color: #111827;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: color 0.35s ease, border-color 0.35s ease;
  }

  .bk-footer-button-wrapper .bk-footer-cta:hover{
    color: #ffffff !important;

  }
  
  .bk-footer-cta:hover {
    border-color: #00000054;
  }
  
  .bk-footer-cta-text {
    font-size: 18px;
    font-weight: 500;
  }
  
  @media (max-width: 768px) {
    .bk-footer-cta {
      height: 52px;
      min-width: 140px;
      padding: 0 24px;
    }
    .bk-footer-cta-text {
      font-size: 16px;
    }
  }
  
  /* Sosyal medya alanı */
  .bk-footer-social {
    flex: 0 0 auto;
  }
  
  .bk-footer-social-list {
    display: flex;
    align-items: center;
    gap: 20px;
  }
  
  @media (min-width: 1280px) {
    .bk-footer-social-list {
      gap: 12px;
    }
  }
  
  @media (max-width: 480px) {
    .bk-footer-social-list {
      gap: 10px;
    }
  }
  
  .bk-footer-social-link {
    border: 1px solid rgba(17, 24, 39, 0.45);
    border-radius: 9999px;
    width: 45px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    transition: border-color 0.35s ease, background-color 0.35s ease, color 0.35s ease;
  }
  
  .bk-footer-social-link:hover {
    border-color: #11182725;
    background-color: transparent;
  }
  
  .bk-footer-social-icon {
    font-size: 18px;
    color: rgba(17, 24, 39, 0.95);
    transition: color 0.35s ease;
    padding-top: 3px;
  }
  
  .bk-footer-social-link:hover .bk-footer-social-icon {
    color: #ffffff;
  }
  
  /* İç alan */
  .bk-footer-inner {
    margin-top: 40px;
  }
  
  .bk-footer-top-row {
    display: flex;
    justify-content: space-between;
    gap: 48px;
    align-items: flex-start;
    flex-wrap: wrap;
  }
  
  @media (max-width: 768px) {
    .bk-footer-top-row {
      flex-direction: column;
      gap: 32px;
    }
  }
  
  /* İletişim alanı */
  .bk-footer-info {
    flex: 0 0 30%;
    min-width: 260px;
  }
  
  .bk-footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
  
  .bk-footer-contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    text-decoration: none;
  }
  
  .bk-footer-contact-icon {
    font-size: 24px;
    height: 24px;
    color: rgba(17, 24, 39, 0.92);
    display: flex;
    flex-shrink: 0;
    transition: color 0.35s ease;
  }
  
  .bk-footer-contact-text {
    font-size: 16px;
    color: rgba(17, 24, 39, 0.8);
    line-height: 1.5;
    transition: color 0.35s ease;
  }
  
  .bk-footer-contact-item:hover .bk-footer-contact-icon {
    color: #ca123b;
  }
  
  .bk-footer-contact-item:hover .bk-footer-contact-text {
    color: #111827;
  }
  
  @media (min-width: 1024px) {
    .bk-footer-contact-text {
      font-size: 18px;
    }
  }
  
  /* Sayfa linkleri alanı */
  .bk-footer-pages {
    flex: 1 1 0;
    justify-content: right;
      display: flex;
  }
  
  .bk-footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 960px;
  }
  
  .bk-footer-link {
    position: relative;
    padding-left: 24px;
    font-size: 22px;
    font-weight: 600;
    color: rgba(17, 24, 39, 0.82);
    text-decoration: none;
    transition: color 0.35s ease, transform 0.35s ease;
  }
  
  .bk-footer-link::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 10px;
    height: 10px;
    border-radius: 9999px;
    background-color: rgba(17, 24, 39, 0.55);
    transform: translateY(-50%);
    transition: background-color 0.35s ease;
  }
  
  .bk-footer-link:hover {
    color: #111827;
  }
  
  .bk-footer-link:hover::before {
    background-color: #ca123b;
  }
  
  .bk-footer-button-wrapper:hover .bk-footer-cta {
    color: #000000;
  }
  
  @media (max-width: 1024px) {
    .bk-footer-links {
      max-width: 100%;
    }
    .bk-footer-link {
      font-size: 18px;
    }
  
    .bk-footer-pages {
      flex: 1 1 0;
      justify-content: left;
        display: flex;
    }
  }
  
  /* Ayırıcı çizgi */
  .bk-footer-divider {
    margin: 40px 0;
  }
  
  .bk-footer-divider-line {
    width: 100%;
    height: 1px;
    background-color: rgba(17, 24, 39, 0.2);
  }
  
  /* Alt satır */
  .bk-footer-bottom {
    padding-bottom: 32px;
  }
  
  .bk-footer-copy {
    max-width: 100%;
  }
  
  .bk-footer-copy-text {
    font-size: 14px;
    color: rgba(17, 24, 39, 0.75);
  }
  
  @media (min-width: 768px) {
    .bk-footer-copy-text {
      font-size: 16px;
    }
  }
  
  /* Icon fonts (DövizSite ile aynı yapı) */
  @font-face {
    font-family: header-iconfont;
    font-style: normal;
    font-weight: 400;
    src: url(../../fonts/iconfont/iconfonts.eot);
    src: url(../../fonts/iconfont/iconfonts.eot#iefix) format("embedded-opentype"),
      url(../../fonts/iconfont/iconfonts.woff) format("woff"),
      url(../../fonts/iconfont/iconfonts.ttf) format("truetype"),
      url(../../fonts/iconfont/iconfonts.svg#iconfont) format("svg");
    font-display: swap;
  }

  @font-face {
    font-family: header-icofont;
    font-style: normal;
    font-weight: 400;
    src: url(../../fonts/icofont.woff) format("woff");
    font-display: swap;
  }

  .bk-footer-root [class*=icon-]:before,
  .bk-footer-root [class^="icon-"]:before {
    display: inline-block;
    font-family: header-iconfont;
    font-style: normal;
    font-weight: 400;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
  
  .bk-footer-root .icon-facebook:before {
    content: "\0051";
  }
  .bk-footer-root .icon-instagram:before {
    content: "\0052";
  }
  .bk-footer-root .icon-linkedin:before {
    content: "\0055";
  }
  .bk-footer-root .icon-mail-2:before {
    content: "\0057";
  }
  .bk-footer-root .icon-map:before {
    content: "\005a";
  }
  .bk-footer-root .icon-phone:before {
    content: "\0064";
  }

  .bk-footer-root .icofont-youtube-play:before {
    font-family: header-icofont !important;
    font-style: normal;
    font-weight: 400;
    font-variant: normal;
    text-transform: none;
    white-space: nowrap;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    content: "\ecbb";
  }
  
  /* Circle-chase efekt altyapısı (bk-footer içinde sınırlandırılmış) */
  .bk-footer-root .fx-circle-chase-cursor {
    overflow: hidden;
    position: relative;
  }
  
  .bk-footer-root .fx-text {
    position: relative;
    z-index: 2;
  }
  
  .bk-footer-circle {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    aspect-ratio: 1 / 1;
    transform: scale(0);
    border-radius: 9999px;
    background-color: var(--circle-bg-color, #ca123b);
  }
  
  footer .bk-header-circle {
    background-color: #ca123b !important;
  }
  
  
  