@charset "UTF-8";
/* KALE ÇELİK KAPI - FOOTER GLOBAL CSS */

/* Modern Footer Styles */
.modern-footer {
    background: #fef7ed !important;
    position: relative;
    overflow: hidden;
    margin-top: 0;
}

.modern-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(
            circle at 20% 30%,
            rgba(196, 30, 58, 0.2) 3px,
            transparent 3px
        ),
        radial-gradient(
            circle at 80% 70%,
            rgba(196, 30, 58, 0.15) 2px,
            transparent 2px
        ),
        radial-gradient(
            circle at 40% 60%,
            rgba(196, 30, 58, 0.18) 2.5px,
            transparent 2.5px
        );
    background-size: 60px 60px, 100px 100px, 80px 80px;
    background-position: 0 0, 50px 50px, 25px 25px;
    animation: redDotsMove 25s linear infinite;
    z-index: 1;
    pointer-events: none;
}

.modern-footer::after {
    display: none;
}

/* Tüm footer çizgileri - Üst, Alt ve Copyright Üstü */
.footer-border-top,
.footer-border-bottom,
.footer-bottom-divider {
    position: relative;
    width: 100%;
    height: 3px;
    background: linear-gradient(135deg, #b80211 0%, #f93f48 50%, #b80211 100%);
    box-shadow: 0 0 15px rgba(242, 39, 70, 0.8);
    z-index: 1051;
    animation: glowPulse 2s ease-in-out infinite;
}

@keyframes glowPulse {
    0%,
    100% {
        box-shadow: 0 0 15px rgba(242, 39, 70, 0.8);
    }
    50% {
        box-shadow: 0 0 25px rgba(242, 39, 70, 1),
            0 0 35px rgba(242, 39, 70, 0.6);
    }
}

.footer-content {
    z-index: 10;
    overflow: hidden;
}

.footer-border-top::before,
.footer-border-bottom::before,
.footer-bottom-divider::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.6) 30%,
        rgba(255, 255, 255, 0.9) 50%,
        rgba(255, 255, 255, 0.6) 70%,
        transparent 100%
    );
    animation: slideLight 4s ease-in-out infinite;
}

.footer-content {
    position: relative;
    z-index: 2;
    padding: 30px 0 20px 0;
    color: white;
}

.footer-brand .brand-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-brand .brand-logo img {
    height: 60px;
    width: auto;
    max-width: 400px;
    object-fit: contain;
}

.brand-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #4a5568;
    margin-bottom: 25px;
}

.footer-section .section-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.footer-section .section-title i {
    color: #c41e3a;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #4a5568;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.footer-links a:hover {
    color: #c41e3a;
    padding-left: 8px;
}

.contact-info .contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    color: #4a5568;
}

.contact-item i {
    color: #c41e3a;
    width: 16px;
    text-align: center;
}

.contact-item a {
    color: #4a5568;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #c41e3a;
}

.footer-bottom {
    background: rgba(196, 30, 58, 0.05);
    padding: 15px 0;
    position: relative;
    z-index: 2;
    border-top: 1px solid rgba(196, 30, 58, 0.1);
}

.copyright {
    color: #4a5568;
    margin: 0;
    font-size: 0.95rem;
}

.footer-badges {
    display: flex;
    gap: 12px;
    justify-content: end;
}

.footer-badges .badge {
    background: rgba(196, 30, 58, 0.1);
    color: #2d3748;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(196, 30, 58, 0.2);
}

.footer-badges .badge i {
    color: #c41e3a;
}

/* Responsive */
@media (max-width: 1200px) {
    .footer-brand .brand-logo img {
        height: 55px;
        max-width: 300px;
    }
}

@media (max-width: 968px) {
    .footer-brand .brand-logo img {
        height: 50px;
        max-width: 350px;
    }

    .footer-content {
        padding: 45px 0 35px 0;
    }
}

@media (max-width: 768px) {
    .footer-content {
        padding: 40px 0 30px 0;
    }

    /* Logo %20 küçült ve sola hizala */
    .footer-brand .brand-logo img {
        height: 50px !important;
        max-width: 320px !important;
    }

    .footer-brand .brand-logo {
        justify-content: flex-start;
        text-align: left;
    }

    /* Başlıkları sola hizala */
    .footer-section .section-title {
        text-align: left;
        justify-content: flex-start;
    }

    .footer-badges {
        justify-content: center !important;
        margin-top: 15px;
    }

    .footer-badges .badge {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
}

/* Animasyonlar */
@keyframes redDotsMove {
    0% {
        background-position: 0 0, 50px 50px, 25px 25px;
    }
    100% {
        background-position: 60px 60px, 110px 110px, 85px 85px;
    }
}

@keyframes slideLight {
    0% {
        left: -100%;
    }
    50% {
        left: 100%;
    }
    100% {
        left: -100%;
    }
}

/* Konfigüratör Butonu - Modern Tasarım */
.konfigurator-btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    padding: 14px 28px !important;
    background: linear-gradient(135deg, #c41e3a 0%, #a01830 100%) !important;
    color: #fff !important;
    text-decoration: none !important;
    border-radius: 12px !important;
    font-weight: 600 !important;
    font-size: 15px !important;
    margin-top: 20px !important;
    box-shadow: 0 0 15px rgba(196, 30, 58, 0.5), 0 0 30px rgba(196, 30, 58, 0.3),
        0 0 45px rgba(196, 30, 58, 0.2) !important;
    transition: all 0.3s ease !important;
    position: relative;
    overflow: hidden;
    z-index: 1;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.5) !important;
    animation: neonPulseNormal 2s ease-in-out infinite !important;
}

.konfigurator-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: left 0.5s ease;
    z-index: -1;
}

.konfigurator-btn:hover::before {
    left: 100%;
}

.konfigurator-btn:hover {
    background: linear-gradient(135deg, #e02441 0%, #c41e3a 100%) !important;
    box-shadow: 0 0 25px rgba(196, 30, 58, 0.8), 0 0 50px rgba(196, 30, 58, 0.6),
        0 0 75px rgba(196, 30, 58, 0.4), 0 0 100px rgba(196, 30, 58, 0.3) !important;
    color: #fff !important;
    text-shadow: 0 0 15px rgba(255, 255, 255, 1) !important;
    animation: neonPulseHover 1s ease-in-out infinite !important;
}

.konfigurator-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(196, 30, 58, 0.3);
}

.konfigurator-btn i:first-child {
    font-size: 16px;
}

.konfigurator-btn i:last-child {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.konfigurator-btn:hover i:last-child {
    transform: translateX(4px);
}

/* Responsive */
@media (max-width: 768px) {
    .konfigurator-btn {
        padding: 12px 20px;
        font-size: 14px;
        width: 100%;
        margin-top: 15px;
    }
}

/* Neon Pulse Animasyonları */
/* Normal durum - Yavaş ve hafif */
@keyframes neonPulseNormal {
    0%,
    100% {
        box-shadow: 0 0 15px rgba(196, 30, 58, 0.5),
            0 0 30px rgba(196, 30, 58, 0.3), 0 0 45px rgba(196, 30, 58, 0.2);
        text-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
    }
    50% {
        box-shadow: 0 0 20px rgba(196, 30, 58, 0.7),
            0 0 40px rgba(196, 30, 58, 0.5), 0 0 60px rgba(196, 30, 58, 0.3);
        text-shadow: 0 0 12px rgba(255, 255, 255, 0.7);
    }
}

/* Hover durum - Hızlı ve güçlü */
@keyframes neonPulseHover {
    0%,
    100% {
        box-shadow: 0 0 25px rgba(196, 30, 58, 0.8),
            0 0 50px rgba(196, 30, 58, 0.6), 0 0 75px rgba(196, 30, 58, 0.4),
            0 0 100px rgba(196, 30, 58, 0.3);
        text-shadow: 0 0 15px rgba(255, 255, 255, 1);
    }
    50% {
        box-shadow: 0 0 35px rgba(196, 30, 58, 1),
            0 0 60px rgba(196, 30, 58, 0.8), 0 0 85px rgba(196, 30, 58, 0.6),
            0 0 110px rgba(196, 30, 58, 0.4);
        text-shadow: 0 0 20px rgba(255, 255, 255, 1);
    }
}
