/**
 * Footer — tek blok, tam genişlik, kurumsal görünüm
 */

.site-footer-wrap {
    position: relative;
    z-index: 2;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    align-items: stretch !important;
}

.site-footer.footer {
    width: 100%;
    margin: 0;
    padding: 0 !important;
    border: none !important;
    background: linear-gradient(
        180deg,
        rgba(12, 18, 28, 0.98) 0%,
        #060a10 42%,
        #000 100%
    );
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(200, 208, 216, 0.2) 12%,
        rgba(1, 177, 175, 0.85) 50%,
        rgba(200, 208, 216, 0.2) 88%,
        transparent 100%
    );
    pointer-events: none;
}

.site-footer::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        ellipse 90% 40% at 50% 0%,
        rgba(1, 177, 175, 0.08),
        transparent 65%
    );
    pointer-events: none;
}

.site-footer__inner {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 48px 24px 0;
    box-sizing: border-box;
}

/* ---- Grid: 4 üst + harita/ETBİS alt ---- */
.site-footer .footer-grid.row {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 28px 24px;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
}

.site-footer .footer-col {
    width: auto !important;
    max-width: none;
    margin-bottom: 0 !important;
    padding: 0 0 8px !important;
}

.site-footer .footer-col--map {
    grid-column: 1 / 3;
}

.site-footer .footer-col--etbis {
    grid-column: 3 / 5;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.site-footer .footer-col--etbis #ETBIS {
    margin-top: 4px;
}

/* ---- Başlık çizgileri ---- */
.site-footer .footer-col h4 {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #e8eef2;
    margin-bottom: 18px;
    padding-bottom: 12px;
}

.site-footer .footer-col h4::before {
    left: 0;
    bottom: 0;
    width: 36px;
    height: 2px;
    border-radius: 2px;
    background: linear-gradient(90deg, #01b1af, rgba(45, 212, 210, 0.35));
    box-shadow: 0 0 12px rgba(1, 177, 175, 0.35);
}

.site-footer .footer-col:hover h4::before {
    width: 52px;
    background: linear-gradient(90deg, #2dd4d2, #01b1af);
}

/* ---- Adres (büyük) ---- */
.site-footer .footer-address a {
    font-size: 1.05rem !important;
    line-height: 1.55 !important;
    font-weight: 500 !important;
    color: rgba(232, 238, 242, 0.92) !important;
}

.site-footer .footer-address a:hover {
    color: #b8fff5 !important;
}

.site-footer .footer-col ul li a {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.68);
}

.site-footer .footer-col ul li a:hover {
    color: #b8fff5;
    padding-left: 4px;
}

/* ---- Harita ---- */
.site-footer .iframe-container {
    height: 200px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}

.site-footer .iframe-container iframe {
    border-radius: 12px;
}

/* ---- Ayırıcı ---- */
.site-footer__divider {
    height: 1px;
    margin: 32px 0 0;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(200, 208, 216, 0.15) 20%,
        rgba(1, 177, 175, 0.45) 50%,
        rgba(200, 208, 216, 0.15) 80%,
        transparent
    );
}

/* ---- Alt şerit: rozetler + telif ---- */
.site-footer__bottom {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding-bottom: 20px;
}

.site-footer .footer-trust-strip {
    max-width: 100%;
    margin: 0;
    padding: 20px 0 12px;
    justify-content: flex-end;
    border: none;
    background: transparent;
}

/* Kart görünümü: footer-trust-badges.css (.footer-trust-strip__card) */

.site-footer .footers {
    width: 100%;
    max-height: none;
    margin: 0;
    padding: 0;
    border: none;
    background: transparent;
    text-align: center;
}

.site-footer .footers p {
    margin: 0;
    padding: 14px 0 8px;
    font-size: 0.8125rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.04em;
    background: transparent;
}

/* ---- Sosyal ---- */
.site-footer .footer-col .social-links a {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.14);
}

.site-footer .footer-col .social-links a:hover {
    background: linear-gradient(145deg, #01b1af, #018f8d);
    border-color: rgba(45, 212, 210, 0.45);
    color: #fff;
}

@media (max-width: 1023px) {
    .site-footer__inner {
        padding: 40px 20px 0;
    }

    .site-footer .footer-grid.row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 24px 20px;
    }

    .site-footer .footer-col--map,
    .site-footer .footer-col--etbis {
        grid-column: 1 / -1;
    }

    .site-footer .footer-col--etbis {
        align-items: center;
    }

    .site-footer .iframe-container {
        height: 220px;
    }

    .site-footer .footer-trust-strip {
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .site-footer__inner {
        padding: 36px 16px 0;
    }

    .site-footer .footer-grid.row {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .site-footer .footer-col--map,
    .site-footer .footer-col--etbis {
        grid-column: 1;
    }

    .site-footer .footer-address a {
        font-size: 1rem !important;
    }

    .site-footer .footers p {
        font-size: 0.75rem;
        line-height: 1.45;
        padding: 12px 8px 16px;
    }
}
