﻿.platinum-footer {
    background: linear-gradient(90deg, #2c2f33, #1c1f23); /* header’a benzer ton */
    color: #fff;
    font-family: 'Arial', sans-serif;
    position: relative;
}

    .platinum-footer a {
        color: #fff;
        text-decoration: none;
        transition: all 0.3s ease;
    }

        .platinum-footer a:hover {
            color: #00c6ff;
        }

.footer-top {
    padding: 60px 0 30px 0;
}

/* Sosyal ikonlar */
.footer-social {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 40px;
}

    .footer-social a {
        display: flex;
        justify-content: center; /* yatay ortalama */
        align-items: center; /* dikey ortalama */
        width: 50px;
        height: 50px;
        border-radius: 50%;
        background: linear-gradient(145deg, #40474f, #2f353b);
        box-shadow: 0 4px 12px rgba(0,0,0,0.3);
        transition: all 0.4s ease;
        color: #fff;
        font-size: 18px;
        text-align: center;
    }

        .footer-social a i {
            margin: 0; /* dış boşlukları kaldır */
            line-height: 1; /* ikon yüksekliğini normalize et */
            display: flex; /* flex ile tam ortala */
            justify-content: center;
            align-items: center;
            width: 100%;
            height: 100%;
            margin-left:100%;
        }

        .footer-social a:hover {
            background: linear-gradient(145deg, #00c6ff, #007bff);
            transform: scale(1.2);
            box-shadow: 0 0 25px rgba(0,198,255,0.6);
        }

/* Footer içerik */
.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Footer başlıkları (Adres ve Menü) */
.footer-left h3,
.footer-right h3 {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 700;
    position: relative;
    color: #ffffff; /* daha görünür beyaz */
}

    /* Başlık alt çizgi */
    .footer-left h3::after,
    .footer-right h3::after {
        content: '';
        display: block;
        width: 60px;
        height: 3px;
        background: linear-gradient(90deg, #00c6ff, #007bff);
        margin-top: 6px;
        border-radius: 2px;
    }

.footer-left p {
    margin: 10px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

    .footer-left p a,
    .footer-right .footer-menu li a {
        color: #f0f0f0; /* daha açık renk */
        font-weight: 500;
        transition: all 0.3s ease;
    }

        .footer-left p a:hover,
        .footer-right .footer-menu li a:hover {
            color: #00c6ff; /* hover efekti */
        }

.footer-right .footer-menu {
    list-style: none;
    padding: 0;
}

    .footer-right .footer-menu li {
        margin: 12px 0;
    }

        .footer-right .footer-menu li a {
            font-size: 14px;
            display: inline-block;
            transition: color 0.3s ease;
        }

.footer-bottom {
    background: linear-gradient(90deg, #33383f, #1f2226); /* header alt ile uyumlu */
    text-align: center;
    padding: 20px 0;
    font-size: 13px;
}

    .footer-bottom a {
        color: #00c6ff;
    }

/* ----------------------------- */
/* Mobil ve tablet düzenlemeleri */
@media (max-width: 992px) {

    .footer-content {
        flex-direction: row; /* yan yana */
        justify-content: space-between; /* solda-sagda boşluk bırak */
        flex-wrap: wrap;
        gap: 30px;
    }

    .footer-left {
        text-align: left; /* soldaki adres sola hizalı */
        flex: 1 1 45%;
        margin-bottom: 20px;
    }

    .footer-right {
        text-align: right; /* sağdaki menü sağa hizalı */
        flex: 1 1 45%;
        margin-bottom: 20px;
    }
    .footer-left h3::after {
        margin-left: 0; /* soldaki başlık çizgisi sola hizalı */
    }

    .footer-right h3::after {
        margin-left: auto; /* sağdaki başlık çizgisi sağa hizalı */
        margin-right: 0;
    }
}


@media (max-width: 576px) {
    .footer-content {
        flex-direction: column; /* çok dar ekranda alt alta geçer */
        align-items: center;
    }

    .footer-left, .footer-right {
        text-align: center;
        flex: 1 1 100%;
    }

    .footer-social {
        gap: 10px;
        margin-bottom: 25px;
    }
}
