/* ==========================================================================
   FOOTER — Yeniden Tasarım
   Marka renkleri: mercan #e84255 (--cl1), amber #ebb35f, indigo #6a7bf5,
   yeşil #57c781 — sitenin kendi :root değişkenleriyle aynı palet.
   ========================================================================== */

.ftr {
    background: #23232f;
    color: #d4d4de;
    padding-top: 44px;
    position: relative;
    overflow: hidden;
}
.ftr::before {
    content: "";
    position: absolute;
    top: -120px;
    right: -80px;
    width: 360px;
    height: 360px;
    background: radial-gradient(circle, rgba(232,66,85,0.16) 0%, rgba(232,66,85,0) 70%);
    pointer-events: none;
}
.ftr::after {
    content: "";
    position: absolute;
    bottom: -140px;
    left: -100px;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(106,123,245,0.14) 0%, rgba(106,123,245,0) 70%);
    pointer-events: none;
}
.ftr .container {
    position: relative;
    z-index: 1;
}

/* ---------- Üst blok: link kolonları ---------- */
.ftr-top {
    padding-bottom: 8px;
}

.ftr-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 28px;
}
.ftr-col {
    min-width: 0;
}
.ftr-col-title {
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #f2f2f5;
    margin: 0 0 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(232,66,85,0.55);
    display: inline-block;
}
.ftr-col-links {
    list-style: none;
    margin: 0;
    padding: 0;
}
.ftr-col-links li {
    margin-bottom: 10px;
    list-style: none;
}
.ftr-col-links li a {
    color: #9d9db0;
    font-size: 14px;
    text-decoration: none;
    transition: color .2s ease, padding-left .2s ease;
    position: relative;
    overflow-wrap: break-word;
}
.ftr-col-links li a:hover {
    color: #ffffff;
    padding-left: 6px;
}
.ftr-col-links li a:hover::before {
    content: "";
    position: absolute;
    left: -2px;
    top: 50%;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #e84255;
    transform: translateY(-50%);
}
.ftr-col-links .more-load {
    color: #e84255;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    padding: 4px 0;
}

/* ---------- İletişim (dikey liste) ---------- */
.ftr-contact-stack {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.ftr-contact-row {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: flex-start;
    gap: 11px;
}
.ftr-contact-row i {
    flex: 0 0 auto;
    font-size: 17px;
    color: var(--c, #ebb35f);
    margin-top: 2px;
}
.ftr-contact-text {
    min-width: 0;
    flex: 1 1 auto;
}
.ftr-contact-label {
    font-size: 11.5px;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: #75758a;
    margin-bottom: 2px;
    white-space: nowrap;
}
.ftr-contact-value {
    font-size: 14px;
    font-weight: 500;
    color: #d4d4de;
    overflow-wrap: break-word;
}

/* ---------- Sosyal medya ikonları ---------- */
.ftr-social-block {
    margin-top: 22px;
}
.ftr-social-title {
    font-size: 11.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: #75758a;
    margin: 0 0 12px;
}
.ftr-social-icons {
    display: flex;
    gap: 10px;
}
.ftr-social-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.16);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--sc);
    font-size: 17px;
    transition: border-color .2s ease, transform .2s ease, background .2s ease;
}
.ftr-social-icon:hover {
    border-color: var(--sc);
    background: rgba(255,255,255,0.06);
    transform: translateY(-2px);
}

/* ---------- Ayırıcı çizgi ---------- */
.ftr-divider {
    height: 1px;
    background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.14) 50%, rgba(255,255,255,0) 100%);
    margin: 34px 0;
}

/* ---------- Ofis adresleri ---------- */
.ftr-address-heading {
    display: flex;
    align-items: center;
    gap: 9px;
    font-weight: 700;
    font-size: 12.5px;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #f2f2f5;
    margin-bottom: 18px;
}
.ftr-address-heading i {
    color: #ebb35f;
    font-size: 16px;
}
.ftr-address-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
@media screen and (max-width: 1000px) {
    .ftr-address-grid {
        grid-template-columns: 1fr;
    }
}
.ftr-address-card {
    display: flex;
    gap: 13px;
    align-items: flex-start;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.07);
    border-top: 3px solid var(--c);
    border-radius: 12px;
    padding: 18px 16px;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.ftr-address-card:hover {
    transform: translateY(-3px);
    background: rgba(255,255,255,0.06);
    box-shadow: 0 14px 30px rgba(0,0,0,0.35);
}
.ftr-address-badge {
    flex: 0 0 auto;
    width: 42px;
    height: 30px;
    border-radius: 5px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0,0,0,0.25);
}
.ftr-address-badge img,
.ftr-address-badge svg {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}
.ftr-address-badge i {
    color: var(--c);
    font-size: 18px;
}
.ftr-address-body {
    min-width: 0;
}
.ftr-address-country {
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--c);
    margin-bottom: 4px;
}
.ftr-address-company {
    font-size: 14.5px;
    font-weight: 600;
    line-height: 1.3;
    color: #f2f2f5;
    margin-bottom: 5px;
}
.ftr-address-text {
    font-size: 13px;
    line-height: 1.55;
    color: #9d9db0;
}

/* ---------- Alt bant: telif hakkı + ödeme logoları ---------- */
.ftr-bottom {
    margin-top: 38px;
    border-top: 1px solid rgba(255,255,255,0.08);
    background: rgba(0,0,0,0.15);
}
.ftr-bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    padding: 18px 0;
}
.ftr-copyright {
    font-size: 13px;
    color: #85859a;
}
.ftr-pay {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}
.ftr-pay-chip {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 6px;
    padding: 6px 12px;
    height: 32px;
    box-sizing: border-box;
}
.ftr-pay-chip img {
    height: 18px;
    width: auto;
    display: block;
}
@media screen and (max-width: 768px) {
    .ftr-bottom-flex {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }
}

/* ---------- Genel mobil sıkılaştırma ---------- */
@media screen and (max-width: 767px) {
    .ftr {
        padding-top: 30px;
    }
    .ftr-divider {
        margin: 26px 0;
    }
}

/* ==========================================================================
   "NEDEN BİZİ TERCİH ETMELİSİNİZ" — Koyu tema (footer ile görsel tutarlılık)
   ========================================================================== */
#whyus {
    background: #23232f;
    padding-top: 60px;
    padding-bottom: 60px !important;
    margin-bottom: 0 !important;
    position: relative;
    overflow: hidden;
}
#whyus::after {
    display: none;
}
#whyus::before {
    content: "";
    position: absolute;
    top: -100px;
    left: -80px;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(232,66,85,0.14) 0%, rgba(232,66,85,0) 70%);
    pointer-events: none;
}
#whyus .ns-heading > span {
    color: #ebb35f;
}
#whyus .ns-heading > span:before,
#whyus .ns-heading > span:after {
    background: #ebb35f;
}
#whyus .ns-heading h2 {
    color: #f2f2f5;
}

/* ==========================================================================
   "MÜŞTERİ YORUMLARI" — Koyu tema (footer/whyus ile görsel tutarlılık)
   ========================================================================== */
#testimonial {
    background: #23232f;
    padding-top: 60px;
    padding-bottom: 60px;
    margin-bottom: 0 !important;
}
#testimonial .ns-heading h2 {
    color: #f2f2f5;
}
#testimonial .testimonial-item {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
}
#testimonial .testimonial-item .person .name {
    color: #f2f2f5;
}
#testimonial .testimonial-item .detail p {
    color: #9d9db0;
}
#testimonial .testiarea::after {
    background: rgba(232,66,85,0.10);
}

/* ---------- Puan/değerlendirme rozeti ---------- */
.testi-rating-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: 10px;
    font-size: 14px;
    color: #9d9db0;
}
.testi-rating-badge i {
    color: #ffb307;
    font-size: 15px;
}
.testi-rating-badge .point {
    font-weight: 700;
    color: #f2f2f5;
    font-size: 15px;
}
.testi-rating-badge .sep {
    opacity: .5;
}

/* ---------- Yorum kartlarını daha zarif/ferah hale getirme ---------- */
#testimonial .testimonial-item {
    padding: 42px 26px 32px;
    position: relative;
}
#testimonial .testimonial-item::before {
    content: "\201C";
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 54px;
    line-height: 1;
    font-family: Georgia, serif;
    color: rgba(232,66,85,0.35);
}
#testimonial .testimonial-item .detail p {
    font-size: 14.5px;
    line-height: 22px;
}
