/* ============================================
   FOOTER SECTION
============================================ */
#PelixArmor-footer {
    position: relative;
    background: var(--PelixArmor-navy-deep);
    overflow: hidden;
}

/* Footer Background */
.PelixArmor-footer-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.PelixArmor-footer-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse 80% 50% at 0% 100%, rgba(201, 162, 39, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 100% 0%, rgba(0, 212, 255, 0.05) 0%, transparent 50%);
}

.PelixArmor-footer-pattern {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 300px;
    background-image:
        linear-gradient(0deg, rgba(201, 162, 39, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(201, 162, 39, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    mask-image: linear-gradient(0deg, rgba(0, 0, 0, 0.3) 0%, transparent 100%);
    -webkit-mask-image: linear-gradient(0deg, rgba(0, 0, 0, 0.3) 0%, transparent 100%);
}

/* Footer Main */
.PelixArmor-footer-main {
    padding: 100px 0 60px;
    border-top: 1px solid rgba(201, 162, 39, 0.1);
}

.PelixArmor-footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 10;
}

.PelixArmor-footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 60px;
}

/* Footer Brand Column */
.PelixArmor-footer-brand {
    padding-right: 40px;
}

.PelixArmor-footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    margin-bottom: 25px;
}

.PelixArmor-footer-logo-shield {
    width: 45px;
    height: 50px;
}

.PelixArmor-footer-logo-shield svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 10px rgba(201, 162, 39, 0.3));
}

.PelixArmor-footer-logo-text {
    display: flex;
    flex-direction: column;
}

.PelixArmor-footer-logo-brand {
    font-family: 'Orbitron', sans-serif;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 1px;
}

.PelixArmor-footer-logo-peli {
    color: var(--PelixArmor-white);
}

.PelixArmor-footer-logo-x {
    color: var(--PelixArmor-cyan);
    text-shadow: 0 0 15px var(--PelixArmor-cyan-glow);
}

.PelixArmor-footer-logo-armor {
    background: var(--PelixArmor-gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.PelixArmor-footer-logo-tagline {
    font-family: 'Exo 2', sans-serif;
    font-size: 9px;
    font-weight: 300;
    letter-spacing: 3px;
    color: var(--PelixArmor-gray);
    text-transform: uppercase;
}

.PelixArmor-footer-desc {
    font-size: 15px;
    color: var(--PelixArmor-gray);
    line-height: 1.8;
    margin-bottom: 30px;
}

/* Footer Social */
.PelixArmor-footer-social {
    display: flex;
    gap: 12px;
}

.PelixArmor-footer-social-link {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 162, 39, 0.08);
    border: 1px solid rgba(201, 162, 39, 0.2);
    border-radius: 12px;
    color: var(--PelixArmor-gray-light);
    transition: var(--PelixArmor-transition-fast);
}

.PelixArmor-footer-social-link:hover {
    background: var(--PelixArmor-gold-primary);
    border-color: var(--PelixArmor-gold-primary);
    color: var(--PelixArmor-navy-deep);
    transform: translateY(-3px);
    box-shadow: var(--PelixArmor-shadow-gold);
}

.PelixArmor-footer-social-link svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

/* Footer Links Column */
.PelixArmor-footer-column {
    padding-top: 10px;
}

.PelixArmor-footer-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--PelixArmor-white);
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.PelixArmor-footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--PelixArmor-gradient-gold);
    border-radius: 1px;
}

.PelixArmor-footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.PelixArmor-footer-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--PelixArmor-gray);
    text-decoration: none;
    font-size: 14px;
    transition: var(--PelixArmor-transition-fast);
}

.PelixArmor-footer-link:hover {
    color: var(--PelixArmor-gold-primary);
    padding-left: 5px;
}

.PelixArmor-footer-link svg {
    width: 14px;
    height: 14px;
    fill: var(--PelixArmor-gold-primary);
    opacity: 0;
    transform: translateX(-10px);
    transition: var(--PelixArmor-transition-fast);
}

.PelixArmor-footer-link:hover svg {
    opacity: 1;
    transform: translateX(0);
}

/* Footer Contact Column */
.PelixArmor-footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.PelixArmor-footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.PelixArmor-footer-contact-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 162, 39, 0.1);
    border: 1px solid rgba(201, 162, 39, 0.2);
    border-radius: 12px;
    flex-shrink: 0;
}

.PelixArmor-footer-contact-icon svg {
    width: 20px;
    height: 20px;
    fill: var(--PelixArmor-gold-primary);
}

.PelixArmor-footer-contact-content {
    display: flex;
    flex-direction: column;
}

.PelixArmor-footer-contact-label {
    font-size: 12px;
    color: var(--PelixArmor-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 3px;
}

.PelixArmor-footer-contact-value {
    font-size: 15px;
    color: var(--PelixArmor-white);
    text-decoration: none;
    transition: var(--PelixArmor-transition-fast);
}

.PelixArmor-footer-contact-value:hover {
    color: var(--PelixArmor-gold-primary);
}

/* Footer Working Hours */
.PelixArmor-footer-hours {
    margin-top: 25px;
    padding: 20px;
    background: rgba(201, 162, 39, 0.05);
    border: 1px solid rgba(201, 162, 39, 0.1);
    border-radius: 12px;
}

.PelixArmor-footer-hours-title {
    font-family: 'Exo 2', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--PelixArmor-gold-primary);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.PelixArmor-footer-hours-title svg {
    width: 16px;
    height: 16px;
    fill: var(--PelixArmor-gold-primary);
}

.PelixArmor-footer-hours-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.PelixArmor-footer-hours-row {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
}

.PelixArmor-footer-hours-day {
    color: var(--PelixArmor-gray);
}

.PelixArmor-footer-hours-time {
    color: var(--PelixArmor-white);
    font-weight: 500;
}

/* Footer Bottom */
.PelixArmor-footer-bottom {
    padding: 25px 0;
    border-top: 1px solid rgba(201, 162, 39, 0.1);
}

.PelixArmor-footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.PelixArmor-footer-copyright {
    font-size: 14px;
    color: var(--PelixArmor-gray);
}

.PelixArmor-footer-copyright a {
    color: var(--PelixArmor-gold-primary);
    text-decoration: none;
    transition: var(--PelixArmor-transition-fast);
}

.PelixArmor-footer-copyright a:hover {
    color: var(--PelixArmor-gold-light);
}

.PelixArmor-footer-legal {
    display: flex;
    gap: 30px;
}

.PelixArmor-footer-legal-link {
    font-size: 13px;
    color: var(--PelixArmor-gray);
    text-decoration: none;
    transition: var(--PelixArmor-transition-fast);
}

.PelixArmor-footer-legal-link:hover {
    color: var(--PelixArmor-gold-primary);
}

/* Footer Responsive */
@media (max-width: 1200px) {
    .PelixArmor-footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 50px;
    }

    .PelixArmor-footer-brand {
        grid-column: span 2;
        padding-right: 0;
    }
}

@media (max-width: 768px) {
    .PelixArmor-footer-main {
        padding: 60px 0 40px;
    }

    .PelixArmor-footer-container {
        padding: 0 20px;
    }

    .PelixArmor-footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .PelixArmor-footer-brand {
        grid-column: span 2;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .PelixArmor-footer-logo {
        justify-content: center;
    }

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

    .PelixArmor-footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .PelixArmor-footer-column {
        text-align: center;
    }

    /* İletişim bölümü tek satır ve tam genişlik */
    .PelixArmor-footer-column:last-child {
        grid-column: span 2;
    }

    .PelixArmor-footer-links {
        align-items: center;
    }

    /* İletişim öğeleri yan yana */
    .PelixArmor-footer-contact-list {
        display: flex;
        flex-direction: row;
        justify-content: center;
        gap: 20px;
        flex-wrap: wrap;
    }

    .PelixArmor-footer-contact-item {
        flex-direction: row;
        align-items: center;
        text-align: left;
        gap: 10px;
        flex: 0 0 auto;
    }

    .PelixArmor-footer-contact-icon {
        width: 40px;
        height: 40px;
    }

    .PelixArmor-footer-contact-icon svg {
        width: 18px;
        height: 18px;
    }

    .PelixArmor-footer-contact-label {
        font-size: 10px;
    }

    .PelixArmor-footer-contact-value {
        font-size: 13px;
    }

    .PelixArmor-footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }

    .PelixArmor-footer-legal {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
}

/* Daha küçük ekranlar için ek düzenleme */
@media (max-width: 480px) {
    .PelixArmor-footer-contact-list {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .PelixArmor-footer-contact-item {
        justify-content: flex-start;
        padding: 0 10px;
    }
}