/* Web footer — mp-ft namespace, --mp-* token'ları */

.mp-ft {
    background: var(--mp-surface);
    color: var(--mp-text-body);
    font-size: 14px;
    line-height: 1.55;
}

.mp-ft a {
    color: inherit;
    text-decoration: none;
    transition: color 0.15s ease;
}

.mp-ft a:hover {
    color: var(--primary_color);
}

.mp-ft-section {
    border-top: 1px solid var(--mp-border-light);
}

/* Üst bar — logo + hızlı linkler */
.mp-ft-top {
    padding: 22px 0;
    border-top: 1px solid var(--mp-border-light);
}

.mp-ft-top-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.mp-ft-brand img {
    display: block;
    height: 34px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}

.mp-ft-top-nav {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px 28px;
}

.mp-ft-top-nav a {
    font-size: 14px;
    font-weight: 500;
    color: var(--mp-text);
    white-space: nowrap;
}

/* Sertifikalar */
.mp-ft-certs {
    padding: 34px 0 30px;
    text-align: center;
}

.mp-ft-certs-title {
    margin: 0 0 12px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--mp-text-muted);
}

.mp-ft-certs-desc {
    margin: 0 auto 22px;
    max-width: 760px;
    color: var(--mp-text-muted);
    font-size: 13px;
    line-height: 1.6;
}

.mp-ft-certs-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px 32px;
}

.mp-ft-certs-logo--integration img {
    display: block;
    height: 36px;
    width: auto;
    max-width: 160px;
    object-fit: contain;
}

.mp-ft-certs-logo--stamp img {
    display: block;
    height: 42px;
    width: auto;
    max-width: 130px;
    object-fit: contain;
}

/* 5 kolon grid */
.mp-ft-links {
    padding: 40px 0 28px;
    background: var(--mp-surface);
}

.mp-ft-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) repeat(4, minmax(0, 1fr));
    gap: 32px 20px;
    align-items: start;
}

.mp-ft-col {
    min-width: 0;
}

.mp-ft-col:not(.mp-ft-col--contact) {
    padding-left: 20px;
    border-left: 1px solid var(--mp-border-light);
}

.mp-ft-col-title {
    position: relative;
    margin: 0 0 18px;
    padding-bottom: 10px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--mp-text);
}

.mp-ft-col-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 28px;
    height: 3px;
    border-radius: 999px;
    background: var(--primary_color);
}

.mp-ft-col-title-sub {
    margin-top: 22px;
}

.mp-ft-contact-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.mp-ft-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mp-ft-contact-icon {
    flex: 0 0 36px;
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(var(--primary_color_rgb), 0.08);
    color: var(--primary_color);
    font-size: 14px;
}

.mp-ft-contact-item-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    min-width: 0;
}

.mp-ft-contact-name {
    font-weight: 700;
    color: var(--mp-text);
    font-size: 14px;
    line-height: 1.4;
}

.mp-ft-contact-text {
    color: var(--mp-text-secondary);
    font-size: 13px;
    line-height: 1.55;
}

.mp-ft-contact-link {
    color: var(--mp-text-secondary);
    font-size: 13px;
    line-height: 1.5;
    font-weight: 500;
    transition: color 0.15s ease;
}

.mp-ft-contact-link:hover {
    color: var(--primary_color);
}

.mp-ft-link-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mp-ft-link-list li {
    margin-bottom: 4px;
}

.mp-ft-link-list li:last-child {
    margin-bottom: 0;
}

.mp-ft-link-list a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    padding: 7px 10px 7px 0;
    color: var(--mp-text-secondary);
    font-size: 13px;
    font-weight: 500;
    border-radius: 8px;
    transition: color 0.15s ease, background 0.15s ease, padding-left 0.15s ease;
}

.mp-ft-link-list a span:first-child {
    flex: 1 1 auto;
    min-width: 0;
}

.mp-ft-link-list a::after {
    content: "\f054";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 9px;
    color: var(--primary_color);
    opacity: 0;
    transform: translateX(-4px);
    transition: opacity 0.15s ease, transform 0.15s ease;
}

.mp-ft-link-list a:hover {
    color: var(--primary_color);
    background: rgba(var(--primary_color_rgb), 0.05);
    padding-left: 8px;
}

.mp-ft-link-list a:hover::after {
    opacity: 1;
    transform: translateX(0);
}

.mp-ft-link-list-compact li {
    margin-bottom: 8px;
}

.mp-ft-career-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    width: 100%;
}

.mp-ft-link-list a.mp-ft-career-link span:first-child,
.mp-ft-career-link .mp-ft-badge,
.mp-ft-career-link span:not(.mp-ft-badge) {
    flex: 0 0 auto;
    min-width: 0;
}

.mp-ft-career-link::after {
    display: none;
}

.mp-ft-badge {
    display: inline-block;
    flex-shrink: 0;
    padding: 3px 8px;
    border-radius: 999px;
    background: var(--primary_color);
    color: var(--mp-surface-on-brand);
    font-size: 10px;
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: 0.02em;
    text-transform: none;
}

/* Platformlar — Web / Mobil */
.mp-ft-platforms {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.mp-ft-platform-block {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mp-ft-platform-type {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--mp-text-muted);
}

.mp-ft-platform-type i {
    font-size: 11px;
    color: var(--primary_color);
    opacity: 0.85;
}

.mp-ft-platform-logos {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    gap: 8px;
}

.mp-ft-platform-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1 1 calc(50% - 4px);
    min-width: 0;
    padding: 12px 10px;
    border: 1px solid var(--mp-border-light);
    border-radius: 12px;
    background: var(--mp-surface);
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.mp-ft-platform-logo:hover {
    border-color: rgba(var(--primary_color_rgb), 0.32);
    box-shadow: 0 6px 16px rgba(var(--primary_color_rgb), 0.1);
    transform: translateY(-1px);
    color: inherit;
}

.mp-ft-platform-logo img {
    display: block;
    width: auto;
    height: 22px;
    max-width: 100%;
    object-fit: contain;
}

.mp-ft-col--platforms .mp-ft-app-badges {
    margin-top: 0;
}

.mp-ft-app-badges {
    display: inline-flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    gap: 6px;
    margin-top: 8px;
    max-width: 100%;
}

.mp-ft-app-badge {
    display: block;
    flex: 0 0 auto;
    line-height: 0;
    opacity: 0.92;
    transition: opacity 0.15s ease, transform 0.15s ease;
}

.mp-ft-app-badge:hover {
    opacity: 1;
    transform: translateY(-1px);
}

.mp-ft-app-badge img {
    display: block;
    width: 96px;
    height: 28px;
    object-fit: contain;
}

/* Güven rozetleri */
.mp-ft-trust {
    padding: 20px 0 28px;
    background: var(--mp-surface);
    border-top: 1px solid var(--mp-border-light);
}

.mp-ft-trust-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px 24px;
}

.mp-ft-etbis img {
    display: block;
    height: 70px;
    width: auto;
}

.mp-ft-iyzico {
    display: block;
    height: 28px;
    width: auto;
    max-width: 280px;
    object-fit: contain;
}

.mp-ft-trust .mp-ft-copy {
    margin: 0;
    text-align: right;
}

/* Yasal bilgilendirme dipnot */
.mp-ft-disclaimer-text {
    margin: 0;
    width: 100%;
    color: var(--mp-text-subtle);
    font-size: 11px;
    font-weight: 400;
    line-height: 1.55;
    text-align: center;
}

.mp-ft-disclaimer-text strong {
    color: inherit;
    font-weight: inherit;
}

.mp-ft-disclaimer-text a {
    color: inherit;
    font-weight: inherit;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.mp-ft-disclaimer-text a:hover {
    color: var(--mp-text-subtle);
    opacity: 0.85;
}

/* Alt bar — yasal dipnot */
.mp-ft-bottom {
    padding: 18px 0 24px;
    border-top: 1px solid var(--mp-border-light);
}

.mp-ft-copy {
    color: var(--mp-text-subtle);
    font-size: 12px;
}

.mp-ft-version {
    margin-left: 8px;
    color: var(--mp-text-faint);
}

.mp-ft-social {
    display: flex;
    align-items: center;
    gap: 10px;
}

.mp-ft-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--mp-border-strong);
    color: var(--mp-text-subtle);
    font-size: 14px;
    text-decoration: none;
}

.mp-ft-social a:hover {
    color: var(--primary_color);
    border-color: rgba(var(--primary_color_rgb), 0.35);
    background: rgba(var(--primary_color_rgb), 0.04);
}

.mp-ft-social--platforms {
    flex-wrap: wrap;
    gap: 8px;
}

.mp-ft-social--platforms a {
    width: 34px;
    height: 34px;
    font-size: 13px;
}

/* Eski footer stillerinin yeni yapıya karışmaması */
footer.mp-ft .footer-edge,
footer.mp-ft .footer-main,
footer.mp-ft .footer-copyright {
    display: none;
}

@media (max-width: 1199.98px) {
    .mp-ft-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 28px 18px;
    }

    .mp-ft-col:not(.mp-ft-col--contact) {
        padding-left: 0;
        border-left: 0;
    }

    .mp-ft-col--contact {
        grid-column: 1 / -1;
        padding-bottom: 8px;
        border-bottom: 1px solid var(--mp-border-light);
    }
}

@media (max-width: 767.98px) {
    .mp-ft-top-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .mp-ft-top-nav {
        gap: 8px 18px;
    }

    .mp-ft-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 24px 16px;
    }

    .mp-ft-col--contact {
        grid-column: 1 / -1;
    }

    .mp-ft-contact-list {
        gap: 12px;
    }

    .mp-ft-trust-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .mp-ft-trust .mp-ft-copy {
        text-align: left;
    }
}

@media (max-width: 479.98px) {
    .mp-ft-grid {
        grid-template-columns: 1fr;
    }

    .mp-ft-certs-logo img {
        height: 36px;
    }

    .mp-ft-col--platforms .mp-ft-app-badges {
        flex-direction: column;
        align-items: flex-start;
    }
}
