/* Footer Stilleri - Beyaz Tema */
.footer {
    background: var(--white);
    color: var(--dark);
    padding: 48px 0 0;
    margin-top: auto;
    border-top: 1px solid var(--border, #e9ecef);
}

.footer-main {
    padding-bottom: 32px;
    border-bottom: 1px solid var(--border, #e9ecef);
}

.footer-brand {
    margin-bottom: 1.25rem;
}

.footer-logo {
    max-height: 48px;
}

.brand-text {
    color: var(--red, #c0392b);
    font-weight: 700;
    font-size: 1.43rem;
    margin: 0;
}

.footer-desc {
    color: var(--text-light, #6c757d);
    margin-bottom: 1.25rem;
    line-height: 1.6;
    font-size: 0.94rem;
}

.footer-stats {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-stats .stat {
    text-align: center;
    background: var(--light, #f8f9fa);
    padding: 0.75rem;
    border-radius: 8px;
    border: 1px solid var(--border, #e9ecef);
    min-width: 72px;
    transition: all 0.2s ease;
}

.footer-stats .stat:hover {
    background: var(--red, #c0392b);
    color: var(--white, #fff);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(192, 57, 43, 0.2);
}

.footer-stats .number {
    display: block;
    font-size: 1.43rem;
    font-weight: 700;
    color: var(--red, #c0392b);
}

.footer-stats .stat:hover .number {
    color: var(--white, #fff);
}

.footer-stats .label {
    font-size: 0.77rem;
    color: var(--text-light, #6c757d);
    margin-top: 0.15rem;
}

.footer-stats .stat:hover .label {
    color: var(--white, #fff);
}

.footer-title {
    color: var(--text, #2c3e50);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    position: relative;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 24px;
    height: 2px;
    background: var(--red, #c0392b);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--text-light, #6c757d);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    transition: all 0.2s ease;
    padding: 0.4rem 0.55rem;
    border-radius: 4px;
    font-size: 0.94rem;
}

.footer-links a:hover {
    color: var(--red, #c0392b);
    background: var(--light, #f8f9fa);
    transform: translateX(3px);
}

.footer-links i {
    width: 16px;
    color: var(--red, #c0392b);
    font-size: 0.77rem;
}

.contact-info {
    margin-bottom: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    margin-bottom: 0.6rem;
    color: var(--text-light, #6c757d);
    background: var(--light, #f8f9fa);
    padding: 0.7rem;
    border-radius: 6px;
    border: 1px solid var(--border, #e9ecef);
    transition: all 0.2s ease;
    font-size: 0.94rem;
}

.contact-item:hover {
    background: var(--red, #c0392b);
    color: var(--white, #fff);
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(192, 57, 43, 0.2);
}

.contact-item i {
    color: var(--red, #c0392b);
    width: 16px;
    margin-top: 2px;
    font-size: 0.84rem;
}

.contact-item:hover i {
    color: var(--white, #fff);
}

.contact-item a {
    color: var(--text-light, #6c757d);
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-item:hover a {
    color: var(--white, #fff);
}

.social-links {
    display: flex;
    gap: 0.75rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light, #6c757d);
    transition: all 0.2s ease;
    border: 1px solid var(--border, #e9ecef);
    background: var(--light, #f8f9fa);
    font-size: 0.94rem;
}

.social-link:hover {
    transform: translateY(-2px);
    color: var(--white, #fff);
    box-shadow: 0 3px 10px rgba(0,0,0,0.12);
}

.social-link.facebook:hover {
    background: #3b5998;
    border-color: #3b5998;
}

.social-link.twitter:hover {
    background: #1da1f2;
    border-color: #1da1f2;
}

.social-link.instagram:hover {
    background: linear-gradient(45deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d);
    border-color: #e1306c;
}

.social-link.linkedin:hover {
    background: #0077b5;
    border-color: #0077b5;
}

.footer-bottom {
    padding: 16px 0;
    color: var(--text-light, #6c757d);
    background: var(--light, #f8f9fa);
}

.copyright p {
    margin: 0;
    font-size: 0.88rem;
}

.footer-bottom-links {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-bottom-links a {
    color: var(--text-light, #6c757d);
    text-decoration: none;
    font-size: 0.88rem;
    transition: all 0.2s ease;
    padding: 0.25rem 0.55rem;
    border-radius: 12px;
}

.footer-bottom-links a:hover {
    color: var(--red, #c0392b);
    background: var(--white, #fff);
}

/* ========== NAVBAR ========== */
.navbar {
    background: var(--white, #fff);
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
    padding: 0.6rem 0;
}

.navbar-brand .logo {
    max-height: 44px;
}

.navbar-brand .brand-text {
    color: var(--red, #c0392b);
    font-weight: 700;
    font-size: 1.32rem;
}

.nav-link {
    color: var(--text, #2c3e50) !important;
    font-weight: 500;
    font-size: 0.94rem;
    transition: color 0.2s ease;
    display: flex;
    align-items: center;
    padding: 0.52rem 0.82rem !important;
}

.nav-link:hover,
.nav-link.active {
    color: var(--red, #c0392b) !important;
}

.nav-link i {
    font-size: 0.88rem;
}

.nav-link.btn-outline {
    border: 1.5px solid var(--red, #c0392b);
    color: var(--red, #c0392b) !important;
    border-radius: 6px;
    padding: 7px 18px !important;
    margin: 0 4px;
    font-size: 0.88rem;
}

.nav-link.btn-outline:hover {
    background: var(--red, #c0392b);
    color: var(--white, #fff) !important;
}

.nav-link.btn-red {
    background: var(--red, #c0392b);
    color: var(--white, #fff) !important;
    border-radius: 6px;
    padding: 7px 18px !important;
    margin: 0 4px;
    font-size: 0.88rem;
}

.nav-link.btn-red:hover {
    background: var(--red-dark, #a93226);
    color: var(--white, #fff) !important;
}

.dealer-menu {
    background: rgba(192, 57, 43, 0.08);
    border-radius: 6px;
    padding: 7px 15px !important;
    font-size: 0.88rem;
}

.dropdown-menu {
    border: 1px solid var(--border, #e9ecef);
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    border-radius: 8px;
    background: var(--white, #fff);
    padding: 0.4rem 0;
}

.dropdown-item {
    padding: 8px 16px;
    transition: all 0.2s ease;
    color: var(--text, #2c3e50);
    font-size: 0.94rem;
}

.dropdown-item:hover {
    background: var(--red, #c0392b);
    color: var(--white, #fff);
}

.dropdown-item.active {
    background: var(--red, #c0392b);
    color: var(--white, #fff);
}

/* Badge — no animation by default, subtle */
.navbar .badge {
    animation: none;
    font-size: 0.72rem;
    padding: 3px 8px;
    font-weight: 600;
}

/* Section Separators */
.footer-section {
    position: relative;
    padding: 0.75rem 0;
}

.footer-section:not(:last-child)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 24px;
    height: 2px;
    background: var(--red, #c0392b);
    opacity: 0.2;
}

/* Remove overzealous hover effect on footer sections */
.footer-section:hover {
    background: transparent;
    padding: 0.75rem 0;
    border-radius: 0;
    margin: 0;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
    .footer {
        padding: 36px 0 0;
    }

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

    .footer-bottom {
        text-align: center;
    }

    .footer-bottom-links {
        justify-content: center;
        margin-top: 0.75rem;
    }

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

    .nav-link.btn-outline,
    .nav-link.btn-red {
        margin: 4px 0;
        text-align: center;
    }

    .footer-section:hover {
        background: none;
        padding: 0.75rem 0;
        margin: 0;
    }

    .contact-item {
        margin-bottom: 0.4rem;
    }

    .footer-stats .stat {
        min-width: 64px;
        padding: 0.6rem;
    }
}

@media (max-width: 576px) {
    .footer {
        padding: 32px 0 0;
    }

    .footer-stats {
        gap: 0.75rem;
    }

    .footer-stats .stat {
        min-width: 56px;
        padding: 0.5rem;
    }

    .footer-stats .number {
        font-size: 1.1rem;
    }

    .contact-item {
        padding: 0.5rem;
    }
}

/* Clean White Theme */
.footer * {
    border-color: var(--border, #e9ecef) !important;
}

.footer .bg-light {
    background: var(--light, #f8f9fa) !important;
}

/* Accessibility */
.footer a:focus,
.footer button:focus {
    outline: 2px solid var(--red, #c0392b);
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    .footer {
        background: white !important;
        color: black !important;
        box-shadow: none !important;
    }

    .footer-stats .stat,
    .contact-item {
        background: white !important;
        border: 1px solid #ddd !important;
    }

    .social-links {
        display: none;
    }
}
