:root {
    --primary-color: #dc3545;
    --secondary-color: #c82333;
    --text-color: #212529;
    --light-text-color: #6c757d;
    --bg-light: #f8f9fa;
    --border-color: #e9ecef;
    --section-title-underline: var(--primary-color);
    --hover-transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Footer Redesign - Premium Enhancements */
.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    padding: 8px 12px;
    background: rgba(220, 53, 69, 0.03);
    border-radius: 12px;
    transition: all 0.3s ease;
    text-decoration: none !important;
    border: 1px solid transparent;
}
.footer-contact-item:hover {
    background: #fff;
    border-color: var(--primary-color);
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}
.footer-contact-icon {
    width: 36px;
    height: 36px;
    background: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 1.1rem;
    flex-shrink: 0;
}
.footer-contact-text {
    color: var(--text-color);
    font-size: 0.9rem;
    font-weight: 500;
}
.footer-contact-item:hover .footer-contact-text {
    color: var(--primary-color);
}

/* Modern Social Links - Optimized & Centered */
.social-links-group {
    display: flex;
    gap: 12px;
    margin-top: 1rem;
    flex-wrap: wrap;
}
.social-link-box {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: #fff;
    color: #555;
    font-size: 1.4rem;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    border: 1px solid #eee;
    text-decoration: none !important;
    line-height: 0;
}
.social-link-box i {
    line-height: 1;
    display: block;
}
.social-link-box:hover {
    transform: translateY(-5px) scale(1.1) rotate(8deg);
    color: #fff;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}
.social-link-box.facebook:hover { background: #1877F2; border-color: #1877F2; }
.social-link-box.instagram:hover { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); border-color: transparent; }
.social-link-box.twitter:hover { background: #000; border-color: #000; }
.social-link-box.linkedin:hover { background: #0A66C2; border-color: #0A66C2; }
.social-link-box.whatsapp:hover { background: #25D366; border-color: #25D366; }
.social-link-box.youtube:hover { background: #FF0000; border-color: #FF0000; }

.s-footer-wrapper {
    position: relative;
    background: #fafafa;
    padding-top: 4rem;
    border-top: 1px solid #eee;
}

/* Footer Genel Ayarları */
.s-footer-wrapper {
    position: relative;
    background: var(--bg-light);
    padding-top: 2rem;
    padding-bottom: 1rem;
    border-top: 1px solid var(--border-color);
    box-shadow: 0 -8px 20px rgba(0, 0, 0, 0.04);
}

.s-footer-overlay {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top left, rgba(220, 53, 69, 0.05), transparent 70%);
    pointer-events: none;
    z-index: 1;
    opacity: 0.7;
}

.s-footer-main {
    background-color: transparent !important;
    color: var(--text-color);
    position: relative;
    z-index: 2;
}

/* Logo Stilleri */
.footer-logo {
    max-width: 190px;
    height: auto;
    margin-bottom: 1.2rem;
    filter: drop-shadow(0 2px 6px rgba(0,0,0,0.1));
    transition: var(--hover-transition);
}
.footer-logo:hover {
    transform: scale(1.03) translateY(-2px);
    opacity: 0.95;
}

/* Başlık Stilleri */
.section-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 0.5rem;
}
.section-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 45px;
    height: 2.5px;
    background-color: var(--section-title-underline);
    border-radius: 2px;
    transition: var(--hover-transition);
}
.section-title:hover::after {
    width: 70px;
    background-color: var(--secondary-color);
}

/* Link Stilleri */
.s-footer-links li {
    margin-bottom: 0.6rem;
}
.s-footer-links a {
    color: var(--light-text-color);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--hover-transition);
    display: inline-flex;
    align-items: center;
    position: relative;
}
.s-footer-links a::before {
    content: '';
    position: absolute;
    left: -10px;
    opacity: 0;
    width: 12px;
    height: 12px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23dc3545' class='bi bi-arrow-right-short' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M4.5 8a.5.5 0 0 1 .5-.5h5.793L8.146 5.354a.5.5 0 1 1 .708-.708l3 3a.5.5 0 0 1 0 .708l-3 3a.5.5 0 0 1-.708-.708L10.293 8.5H5a.5.5 0 0 1-.5-.5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
    transition: var(--hover-transition);
}
.s-footer-links a:hover {
    color: var(--primary-color);
    padding-left: 10px;
}
.s-footer-links a:hover::before {
    left: 0;
    opacity: 1;
}
.s-footer-links a i {
    margin-right: 6px;
    transition: var(--hover-transition);
}

/* İletişim Bilgileri */
.s-footer-email,
.s-footer-main p.small {
    color: var(--light-text-color);
    font-size: 0.88rem;
    line-height: 1.5;
    margin-bottom: 0.5rem;
}
.s-footer-email:hover {
    text-decoration: underline;
    color: var(--primary-color);
}
.s-footer-main p.small i {
    margin-right: 6px;
    font-size: 0.95rem;
    color: var(--primary-color);
}

/* Teklif Al Butonu */
.btn-footer-cta {
    background-color: var(--primary-color);
    color: #fff;
    border: 1px solid var(--primary-color);
    padding: 0.6rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--hover-transition);
    margin-top: 1.2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.btn-footer-cta:hover {
    background-color: #c82333;
    border-color: #c82333;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Copyright Metni */
.s-footer-main .copyright-text {
    font-size: 0.8rem;
    margin-top: 2rem;
    border-top: 1px solid var(--border-color);
    padding-top: 1.2rem;
    text-align: center;
    color: var(--light-text-color);
}

/* Scroll to Top */
.s-to-top {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: var(--primary-color);
    color: white;
    padding: 14px 17px;
    border-radius: 50%;
    font-size: 1.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--hover-transition);
    z-index: 9999;
}

/* Mobile Adjustments */
@media (max-width: 991.98px) {
    .text-lg-start { text-align: center !important; }
    .footer-logo { margin: 0 auto 1rem; }
    .section-title { text-align: center; margin-top: 2rem; }
    .section-title::after { left: 50%; transform: translateX(-50%); }
    .s-footer-links, .s-footer-main p.small, .s-footer-email { text-align: center; }
    .s-footer-links a { justify-content: center; }
    .btn-footer-cta { margin: 1rem auto; display: flex; }
    .social-links-group { justify-content: center; }
}
