/**
 * STINA Footer — site geneliyle uyumlu açık tema
 */

.stina-footer {
    position: relative;
    padding: 3.5rem 0 1.75rem;
    overflow: hidden;
}

.stina-footer__bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 80% at 0% 100%, rgba(27, 77, 46, 0.07) 0%, transparent 55%),
        radial-gradient(ellipse 50% 60% at 100% 0%, rgba(197, 160, 115, 0.06) 0%, transparent 50%),
        linear-gradient(180deg, var(--home-bg-alt) 0%, var(--stina-light) 100%);
    pointer-events: none;
}

.stina-footer__panel {
    position: relative;
    padding: clamp(2rem, 4vw, 2.75rem);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.88));
    border: 1px solid var(--home-stroke);
    border-radius: var(--stina-radius-lg);
    box-shadow: 0 20px 50px rgba(13, 18, 16, 0.06);
}

.stina-footer__brand {
    display: inline-block;
    margin-bottom: 1rem;
    text-decoration: none;
}

.stina-footer__brand img {
    display: block;
    transition: transform 0.3s ease;
}

.stina-footer__brand:hover img {
    transform: scale(1.02);
}

.stina-footer__desc {
    margin: 0 0 1.25rem;
    max-width: 22rem;
    color: var(--stina-gray);
    font-size: 0.98rem;
    line-height: 1.7;
}

.stina-footer__social {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.stina-footer__social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    border: 2px solid rgba(27, 77, 46, 0.15);
    border-radius: 50%;
    color: var(--stina-green);
    text-decoration: none;
    transition: all 0.25s ease;
}

.stina-footer__social a:hover {
    background: var(--stina-green);
    border-color: var(--stina-green);
    color: var(--stina-white);
}

.stina-footer__title {
    margin: 0 0 1.25rem;
    font-family: var(--font-serif);
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--stina-green-dark);
    line-height: 1.2;
}

.stina-footer__links li + li {
    margin-top: 0.45rem;
}

.stina-footer__links a {
    display: inline-block;
    color: var(--stina-gray);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.15rem 0;
    transition: color 0.2s ease;
}

.stina-footer__links a:hover {
    color: var(--stina-green);
}

.stina-footer__contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: var(--stina-gray);
    font-size: 0.95rem;
    line-height: 1.55;
}

.stina-footer__contact li + li {
    margin-top: 0.85rem;
}

.stina-footer__contact a {
    color: var(--stina-gray);
    text-decoration: none;
    transition: color 0.2s ease;
}

.stina-footer__contact a:hover {
    color: var(--stina-green);
}

.stina-footer__contact-icon {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    margin-top: 0.1rem;
    border-radius: 10px;
    background: rgba(27, 77, 46, 0.08);
    color: var(--stina-green);
}

.stina-footer__hours {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    margin: 1.25rem 0 0;
    font-size: 0.88rem;
    color: var(--stina-gray);
}

.stina-footer__hours svg {
    flex-shrink: 0;
    color: var(--stina-gold-dark);
}

.stina-footer__bar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem 1.5rem;
    margin-top: 1.75rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--home-stroke);
}

.stina-footer__copy {
    margin: 0;
    font-size: 0.88rem;
    color: var(--stina-gray);
}

.stina-footer__legal {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
}

.stina-footer__legal a {
    font-size: 0.88rem;
    color: var(--stina-gray);
    text-decoration: none;
    transition: color 0.2s ease;
}

.stina-footer__legal a:hover {
    color: var(--stina-green);
}

@media (max-width: 991.98px) {
    .stina-footer {
        padding-top: 2.5rem;
    }

    .stina-footer__bar {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 575.98px) {
    .stina-footer__panel {
        padding: 1.5rem;
    }
}
