.atakan-promo-overlay {
    position: fixed;
    inset: 0;
    z-index: 10050;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(8, 12, 20, .72);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .25s ease, visibility .25s ease;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
  }

  .atakan-promo-overlay.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .atakan-promo-card {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    width: min(620px, 100%);
    max-height: calc(100dvh - 48px);
    overflow: auto;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 28px 80px rgba(0, 0, 0, .32);
    transform: translateY(18px) scale(.98);
    transition: transform .3s ease;
  }

  .atakan-promo-card.has-slider {
    grid-template-columns: minmax(320px, 1.08fr) minmax(290px, .92fr);
    width: min(900px, 100%);
  }

  .atakan-promo-overlay.is-visible .atakan-promo-card {
    transform: translateY(0) scale(1);
  }

  .atakan-promo-slider {
    position: relative;
    min-height: 420px;
    overflow: hidden;
    background: linear-gradient(145deg, #f8f8f9, #e9ebee);
  }

  .atakan-promo-slide {
    position: absolute;
    inset: 0;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity .45s ease, visibility .45s ease;
  }

  .atakan-promo-slide.is-active {
    opacity: 1;
    visibility: visible;
  }

  .atakan-promo-slide img {
    display: block;
    width: 100%;
    height: 100%;
    padding: 28px 24px 62px;
    object-fit: contain;
  }

  .atakan-promo-slide figcaption {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 32px 58px 16px;
    color: #252a32;
    background: linear-gradient(transparent, rgba(255, 255, 255, .97) 42%);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.3;
    text-align: center;
  }

  .atakan-promo-slider-button {
    position: absolute;
    top: 50%;
    z-index: 2;
    width: 38px;
    height: 38px;
    padding: 0;
    color: #242832;
    background: rgba(255, 255, 255, .9);
    border: 1px solid rgba(0, 0, 0, .08);
    border-radius: 50%;
    font-size: 23px;
    line-height: 34px;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(0, 0, 0, .12);
    transform: translateY(-50%);
  }

  .atakan-promo-slider-prev { left: 12px; }
  .atakan-promo-slider-next { right: 12px; }

  .atakan-promo-dots {
    position: absolute;
    bottom: 8px;
    left: 50%;
    z-index: 3;
    display: flex;
    gap: 7px;
    transform: translateX(-50%);
  }

  .atakan-promo-dot {
    width: 8px;
    height: 8px;
    padding: 0;
    background: #b7bbc2;
    border: 0;
    border-radius: 50%;
    cursor: pointer;
    transition: width .2s ease, background .2s ease;
  }

  .atakan-promo-dot.is-active {
    width: 22px;
    background: #bf1926;
    border-radius: 999px;
  }

  .atakan-promo-content {
    position: relative;
    padding: 48px;
    overflow: hidden;
  }

  .atakan-promo-content::before {
    content: '';
    position: absolute;
    top: -90px;
    right: -75px;
    width: 190px;
    height: 190px;
    border-radius: 50%;
    background: rgba(191, 25, 38, .07);
    pointer-events: none;
  }

  .atakan-promo-badge {
    display: inline-flex;
    margin-bottom: 16px;
    padding: 7px 12px;
    color: #fff;
    background: #bf1926;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .06em;
    line-height: 1;
  }

  .atakan-promo-title {
    margin: 0 0 14px;
    color: #151922;
    font-size: clamp(28px, 4vw, 40px);
    line-height: 1.13;
  }

  .atakan-promo-description {
    margin: 0 0 26px;
    color: #626975;
    font-size: 17px;
    line-height: 1.65;
  }

  .atakan-promo-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 13px 22px;
    color: #fff !important;
    background: #bf1926;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none !important;
    transition: transform .2s ease, background .2s ease;
  }

  .atakan-promo-button:hover {
    background: #99131e;
    transform: translateY(-2px);
  }

  .atakan-promo-close {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 2;
    width: 40px;
    height: 40px;
    padding: 0;
    color: #20242c;
    background: rgba(255, 255, 255, .92);
    border: 1px solid rgba(0, 0, 0, .08);
    border-radius: 50%;
    font-size: 28px;
    line-height: 36px;
    cursor: pointer;
    box-shadow: 0 5px 18px rgba(0, 0, 0, .10);
  }

  body.atakan-promo-open { overflow: hidden; }

  @media (max-width: 700px) {
    .atakan-promo-overlay { padding: 14px; }
    .atakan-promo-card.has-slider { grid-template-columns: 1fr; }
    .atakan-promo-slider { min-height: 250px; order: 2; }
    .atakan-promo-slide img { padding: 16px 18px 52px; }
    .atakan-promo-content { padding: 38px 25px 28px; }
    .atakan-promo-title { font-size: 28px; }
    .atakan-promo-description { font-size: 15px; }
    .atakan-promo-button { width: 100%; }
  }

  @media (prefers-reduced-motion: reduce) {
    .atakan-promo-overlay,
    .atakan-promo-card,
    .atakan-promo-slide,
    .atakan-promo-button { transition: none; }
  }


/* ==================================================
   Sosyal medya dönüş animasyonu
================================================== */

@keyframes atakanSocialSpin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* ==================================================
   Footer genel yapı
================================================== */

.atakan-site-footer,
.atakan-site-footer * {
    box-sizing: border-box;
}

.atakan-site-footer {
    position: relative;
    z-index: 2;

    color: #cbd7e2;
    background: #0b3f6b;

    font-family: inherit;
}

.atakan-footer-container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.atakan-footer-main {
    padding: 30px 0 15px;
}

/* ==================================================
   Footer sütunları
================================================== */

.atakan-footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr 1.15fr;
    gap: 44px;
}

/* ==================================================
   Logo ve firma açıklaması
================================================== */

.atakan-footer-logo {
    display: inline-flex;
    padding: 9px 12px;

    background: #ffffff;
    border-radius: 10px;
}

.atakan-footer-logo img {
    display: block;
    width: 150px;
    height: auto;
}

.atakan-footer-about {
    max-width: 285px;
    margin: 20px 0 0;

    color: #aebdcc;

    font-size: 14px;
    line-height: 1.75;
}

/* ==================================================
   Telefon ve WhatsApp düğmeleri
================================================== */

.atakan-footer-mini-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;

    margin-top: 18px;
}

.atakan-footer-mini-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;

    min-height: 44px;
    padding: 0 16px;

    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 8px;

    font-size: 14px;
    font-weight: 700;

    text-decoration: none !important;

    transition:
        color 0.2s ease,
        background 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease;
}

.atakan-footer-mini-action i {
    font-size: 16px;
}

.atakan-footer-mini-action:hover {
    color: #0b4f8a !important;
    background: #ffffff;
    border-color: #ffffff;

    transform: translateY(-2px);
}

/* ==================================================
   Footer başlıkları
================================================== */

.atakan-footer-title {
    margin: 3px 0 20px;

    color: #ffffff;

    font-size: 16px;
    font-weight: 800;
    letter-spacing: 0.025em;
}

/* ==================================================
   Liste sıfırlamaları
================================================== */

.atakan-footer-links,
.atakan-footer-contact,
.atakan-footer-social {
    margin: 0;
    padding: 0;

    list-style: none;
}

/* ==================================================
   Hızlı bağlantılar
================================================== */

.atakan-footer-links {
    display: grid;
    gap: 11px;
}

.atakan-footer-links a {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    color: #b9c7d4 !important;

    font-size: 14px;
    text-decoration: none !important;

    transition:
        color 0.2s ease,
        transform 0.2s ease;
}

.atakan-footer-links a::before {
    content: "›";

    color: #55a7e8;

    font-size: 19px;
    line-height: 1;
}

.atakan-footer-links a:hover {
    color: #ffffff !important;
    transform: translateX(3px);
}

/* ==================================================
   İletişim bilgileri
================================================== */

.atakan-footer-contact {
    display: grid;
    gap: 13px;
}

.atakan-footer-contact li {
    display: grid;
    grid-template-columns: 22px 1fr;
    gap: 8px;

    color: #aebdcc;

    font-size: 14px;
    line-height: 1.55;
}

.atakan-footer-contact i {
    margin-top: 3px;

    color: #55a7e8;
    text-align: center;
}

.atakan-footer-contact a {
    color: #cbd7e2 !important;
    text-decoration: none !important;

    transition: color 0.2s ease;
}

.atakan-footer-contact a:hover {
    color: #ffffff !important;
}

/* ==================================================
   Bülten aboneliği
================================================== */

.atakan-footer-newsletter-text {
    margin: 0 0 14px;

    color: #aebdcc;

    font-size: 14px;
    line-height: 1.6;
}

.atakan-footer-form {
    display: flex;
    gap: 8px;

    margin: 0;
}

.atakan-footer-form input[type="email"] {
    min-width: 0;
    width: 100%;
    height: 44px;
    padding: 0 13px;

    color: #1d2a35;
    background: #ffffff;
    border: 1px solid #ffffff;
    border-radius: 8px;
    outline: none;

    font-size: 14px;
}

.atakan-footer-form input[type="email"]:focus {
    border-color: #55a7e8;
    box-shadow: 0 0 0 3px rgba(85, 167, 232, 0.18);
}

.atakan-footer-form button {
    flex: 0 0 auto;

    height: 44px;
    padding: 0 15px;

    color: #ffffff;
    background: #0b82f7;
    border: 0;
    border-radius: 8px;

    font-size: 13px;
    font-weight: 800;

    cursor: pointer;

    transition:
        color 0.2s ease,
        background 0.2s ease,
        transform 0.2s ease;
}

.atakan-footer-form button:hover {
    color: #0b4f8a;
    background: #ffffff;

    transform: translateY(-1px);
}

.atakan-footer-message {
    min-height: 20px;
    margin: 8px 0 0;

    font-size: 13px;
}

/* ==================================================
   Sosyal medya
================================================== */

.atakan-footer-social {
    position: relative;
    z-index: 20;

    display: flex;
    gap: 6px;

    margin-top: 18px;

    pointer-events: auto !important;
}

.atakan-footer-social li,
.atakan-footer-social a,
.atakan-footer-social i {
    pointer-events: auto !important;
}

.atakan-footer-social a,
.atakan-footer-social i {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
}

.atakan-footer-social a {
    width: 44px;
    height: 44px;

    color: #bcd0e2 !important;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 50%;

    text-decoration: none !important;

    transition:
        color 0.25s ease,
        background 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease;
}

.atakan-footer-social i {
    font-size: 22px;
    transform-origin: center;
}

.atakan-footer-social a:hover {
    color: #ffffff !important;
    transform: translateY(-2px);
}

.atakan-footer-social a:hover i {
    animation: atakanSocialSpin 0.6s ease-in-out;
}

/* Facebook */
.atakan-footer-social li:nth-child(1) a:hover {
    background: #1877f2;
    border-color: #1877f2;
}

/* Instagram */
.atakan-footer-social li:nth-child(2) a:hover {
    background: linear-gradient(
        135deg,
        #833ab4,
        #e1306c,
        #fcb045
    );
    border-color: #e1306c;
}

/* LinkedIn */
.atakan-footer-social li:nth-child(3) a:hover {
    background: #0a66c2;
    border-color: #0a66c2;
}

/* YouTube */
.atakan-footer-social li:nth-child(4) a:hover {
    background: #ff0000;
    border-color: #ff0000;
}

/* WhatsApp */
.atakan-footer-social li:nth-child(5) a:hover {
    background: #25d366;
    border-color: #25d366;
}

/* ==================================================
   Copyright
================================================== */

.atakan-footer-copyright {
    margin: 24px auto 0;
    padding-top: 13px;

    color: #8498aa;
    border-top: 1px solid rgba(255, 255, 255, 0.10);

    font-size: 13px;
    text-align: center;
}

/* ==================================================
   Tablet
================================================== */

@media (max-width: 991px) {
    .atakan-footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 38px;
    }
}

/* ==================================================
   Telefon
================================================== */

@media (max-width: 700px) {
    .atakan-footer-container {
        width: min(calc(100% - 28px), 1180px);
    }

    .atakan-footer-main {
        padding: 30px 0 12px;
    }

    .atakan-footer-grid {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .atakan-footer-about {
        max-width: none;
    }

    .atakan-footer-mini-action {
        min-height: 50px;
        padding: 0 20px;
        font-size: 15px;
    }

    .atakan-footer-mini-action i {
        font-size: 20px;
    }

    .atakan-footer-social {
        gap: 12px;
    }

    .atakan-footer-social a {
        width: 48px;
        height: 48px;
    }

    .atakan-footer-social a i {
        font-size: 24px !important;
    }
}

/* Küçük telefonlar */
@media (max-width: 420px) {
    .atakan-footer-form {
        flex-direction: column;
    }

    .atakan-footer-form button {
        width: 100%;
    }
}
