/* Cookie */
#cookieConsent {
    position: fixed;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(217, 127, 52, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #fff;
    padding: 18px 30px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between; /* ÖNEMLİ */
    max-width: 550px;
    width: 90%;
    z-index: 9999;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    animation: slideUp 0.6s ease;
    border: 1px solid rgba(217, 127, 52, 0.36);
}

    /* Yazı sola hizalı */
    #cookieConsent p {
        margin: 0;
        font-size: 14px;
        text-align: center;
        flex: 1; /* alanı doldursun */
    }

    /* Buton sağda */
    #cookieConsent button {
        background: #fff;
        color: #eb8125;
        border: none;
        padding: 10px 22px;
        border-radius: 20px;
        cursor: pointer;
        font-weight: bold;
        transition: all 0.3s ease;
        margin-left: 20px;
    }

        #cookieConsent button:hover {
            transform: translateY(-3px);
        }

/* Mobil */
@media(max-width: 500px) {
    #cookieConsent {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

        #cookieConsent p {
            text-align: center;
        }

        #cookieConsent button {
            width: 100%;
            margin-left: 0;
        }
}
/* Yeni footr */
.modern-footer {
    position: relative;
    background: #0f172a;
    color: #cbd5e1;
    padding-top: 60px;
    font-family: Arial, sans-serif;
}
    /* ÜST MAVİ ÇİZGİ */
    .modern-footer::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 3px;
        background: linear-gradient(90deg, #f97316, #ea580c, #f97316); /* turuncu tonlar */
        box-shadow: 0 0 12px rgba(249, 115, 22, 0.7); /* glow efekti */
    }

.footer-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    gap: 50px;
    padding: 0 20px 40px;
    flex-wrap: wrap;
}

.footer-box {
    flex: 1;
    min-width: 250px;
}

.footer-logo {
    width: 180px;
    margin-bottom: 20px;
}

.footer-box h4 {
    color: #ffffff;
    margin-bottom: 15px;
}

.footer-box p,
.footer-box li {
    font-size: 14px;
    margin-bottom: 10px;
}

.footer-box a {
    color: #cbd5e1;
    text-decoration: none;
    transition: 0.3s;
}

    .footer-box a:hover {
        color: #2563eb;
    }

.footer-box ul {
    list-style: none;
    padding: 0;
}

.footer-bottom {
    background: #020617;
    text-align: center;
    padding: 15px;
    font-size: 13px;
    color: #94a3b8;
}
@media(max-width:768px) {

    .footer-container {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .footer-box {
        min-width: 100%;
    }
}
@media(max-width:768px) {

    .footer-logo {
        margin: 0 auto 20px;
        display: block;
    }
}

/* sosyalmedya */
.footer-socials {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.footer-socials a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1e293b;
    color: #cbd5e1;
    border-radius: 50%;
    font-size: 16px;
    transition: 0.3s;
    border: 1px solid #334155;
}

/* Hover efekti */
.footer-socials a:hover {
    background: #ea580c; /* senin turuncuya uyumlu */
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 0 10px rgba(234, 88, 12, 0.6);
}
@media(max-width:768px) {

    .footer-socials {
        justify-content: center;
    }

}
.footer-socials img {
  width: 30px;
  height: 30px;
}