/* ================================
   PREMIUM FOOTER (V1)
================================ */

.footer {
    margin-top: 60px;
    padding: 20px 20px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(18px);
    border-top: 3px solid transparent;

    /* Gradient Border */
    background-image:
        linear-gradient(#ffffff00, #ffffff00),
        linear-gradient(90deg, #07ebd8, #14b8a6, #229d35);
    background-origin: padding-box, border-box;
    background-clip: padding-box, border-box;
}

.footer-inner {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 3rem;
    justify-items: center; /* Hücreleri ortala */
}

/* LOGO */
.footer-logo {
    font-size: 1.9rem;
    font-weight: 800;
    background: linear-gradient(90deg, #297069, #5aa94a, #43f861);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 1px;
    margin-bottom: 12px;
    text-align: center;
}

.footer-desc {
    color: #ffffff;
    font-weight: 600;
    line-height: 1.6;
    margin-bottom: 10px;
    font-size: 1rem;
    text-align: center;
}

/* Başlıklar */
.footer-title,
.footer-hours h6 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
    text-align: center; /* Ortala */
}

/* Linkler */
.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    text-decoration: none;
    color: #d1d5db;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    text-align: center;
}

.footer-links a:hover {
    background: linear-gradient(90deg, #0d9488, #14b8a6, #0ee92f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    padding-left: 5px;
}

/* Çalışma Saatleri */
.footer-hours ul {
    list-style: none;
    padding: 0;
    color: #ffffff;
    font-size: 0.95rem;
    line-height: 1.6;
    font-weight: 600;
    text-align: center; /* Ortala */
}

.footer-hours ul li {
    margin-bottom: 8px;
}

/* İletişim */
.footer-text {
    color: #d1d5db;
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.footer-text i {
    color: #06efd4;
    margin-right: 6px;
}

.footer-text a {
    color: #d1d5db;
    text-decoration: none;
    transition: 0.3s ease;
}

.footer-text a:hover {
    color: #0ee92f;
}

/* Alt Yazı */
.footer-bottom {
    text-align: center;
    color: hwb(0 98% 2% / 0.988);
    font-size: 0.9rem;
    margin-top: 40px;
}

/* ============================
   PREMIUM FOOTER - SOCIAL
============================= */

.footer-social {
    display: flex;
    justify-content: center; /* Ortala */
    flex-wrap: wrap;         /* Dar ekranda alt satıra geçsin */
    gap: 14px;
    margin-top: 14px;
}

.footer-social-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.35s ease;
    position: relative;
    text-decoration: none;
    outline: none;
    border: none;
}

.footer-social-icon svg {
    width: 22px;
    height: 22px;
    display: block;
    position: relative;
    z-index: 2;
    color: #ffffff;
    fill: currentColor;
}

.footer-social-icon .social-fallback {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    color: #ffffff;
    z-index: 1;
    pointer-events: none;
}

.footer-social-icon svg + .social-fallback {
    display: none;
}

.footer-social-icon:hover {
    background: linear-gradient(90deg, #0d9488, #14b8a6, #0ee92f);
    transform: translateY(-5px) scale(1.08);
}

.footer-social-icon:hover svg {
    color: #ffffff;
}

.footer-social-icon:focus,
.footer-social-icon:focus-visible {
    box-shadow: 0 0 0 3px rgba(14, 233, 47, 0.18);
    transform: translateY(-3px) scale(1.06);
}

/* Sol/Sağ Kaydırmalar (desktop) */
.footer-right {
    margin-left: 0;
}

.footer-left,
.footer-links-left,
.footer-hours {
    transform: none;
    margin-left: 0;
}

/* Küçük ekranlar için responsive */
@media (max-width: 768px) {
    .footer-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
        justify-items: center;
    }

    .footer-left,
    .footer-links-left,
    .footer-hours,
    .footer-right {
        text-align: center;
        transform: none;
        margin-left: 0;
    }

    .footer-social {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer-social-icon {
        width: 38px;
        height: 38px;
        border-radius: 10px;
    }

    .footer-social-icon svg {
        width: 20px;
        height: 20px;
    }

    .footer-social {
        gap: 12px;
    }
}

/* Erişilebilirlik */
.sr-only {
    position: absolute !important;
    height: 1px; width: 1px;
    overflow: hidden;
    clip: rect(1px, 1px, 1px, 1px);
    white-space: nowrap;
}
