﻿.modern-footer {
    background: linear-gradient(to bottom, #ffffff 0%, #FFF8F2 100%);
    color: #1a2b3c;
    margin-top: 50px;
    border-top: 1px solid #e2e8f0;
}

.footer-main {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 30px 40px;
}

/* FOOTER GRID */
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

/* LOGO BÖLÜMÜ */
.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

/* FOOTER LOGO IMAGE - MOBİL UYUMLU */
.footer-logo-image {
    max-width: 180px;
    height: auto;
    display: block;
}

.footer-logo-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #FF6F0F, #ff8a3c);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #fff;
    box-shadow: 0 4px 15px rgba(255, 111, 15, 0.2);
    transition: all 0.3s ease;
}

    .footer-logo-icon:hover {
        transform: translateY(-3px);
        box-shadow: 0 6px 20px rgba(255, 111, 15, 0.3);
    }

.footer-logo-text {
    font-size: 28px;
    
    background: linear-gradient(135deg, #FF6F0F, #ff8a3c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}

.footer-tagline {
    font-size: 15px;
    color: #475569;
    font-weight: 500;
    margin-top: -10px;
    font-style: italic;
}

.footer-description {
    color: #475569;
    line-height: 1.7;
    font-size: 14px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #475569;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}
    .footer-contact-item a {
        color: #475569;
    }

    .footer-contact-item:hover {
        color: #FF6F0F;
    }

    .footer-contact-item i {
        width: 20px;
        font-size: 16px;
        margin-top: 2px;
        color: #FF6F0F;
    }

/* BAŞLIKLAR */
.footer-section-title {
    font-size: 18px;
  
    color: #1a2b3c;
    margin-bottom: 25px;
    padding-bottom: 15px;
    position: relative;
}

    .footer-section-title::before {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 1px;
        background: #e2e8f0;
    }

    .footer-section-title::after {
        content: '';
        position: absolute;
        bottom: -1px;
        left: 0;
        width: 50px;
        height: 3px;
        background: linear-gradient(to right, #FF6F0F, #ff8a3c);
        border-radius: 2px;
    }

/* LİNKLER */
.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-link {
    color: #475569;
    text-decoration: none;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    padding: 4px 0;
    font-weight: 500;
}

    .footer-link:hover {
        color: #FF6F0F;
        transform: translateX(5px);
    }

    .footer-link i {
        font-size: 10px;
        width: 14px;
        color: #FF6F0F;
        opacity: 0.6;
        transition: all 0.3s ease;
    }

    .footer-link:hover i {
        opacity: 1;
    }

/* SOSYAL MEDYA */
.social-media-links {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.social-link {
    width: 44px;
    height: 44px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FF6F0F;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

    .social-link:hover {
        background: rgba(255, 111, 15, 0.05);
        color: #FF6F0F;
        border-color: #FF6F0F;
        transform: translateY(-3px);
        box-shadow: 0 4px 12px rgba(255, 111, 15, 0.15);
    }

/* BÜLTEN FORMU */
.newsletter-form {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.newsletter-input {
    flex: 1;
    min-width: 200px;
    padding: 12px 15px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    background: #f8fafc;
    color: #1a2b3c;
    font-size: 14px;
    transition: all 0.3s ease;
}

    .newsletter-input::placeholder {
        color: #94a3b8;
    }

    .newsletter-input:focus {
        outline: none;
        border-color: #FF6F0F;
        box-shadow: 0 0 0 3px rgba(255, 111, 15, 0.1);
        background-color: white;
    }

    .newsletter-input:hover {
        border-color: #FF6F0F;
    }

.newsletter-button {
    padding: 12px 20px;
    background-color: #FF6F0F;
    color: white;
    border: none;
    border-radius: 8px;
    
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

    .newsletter-button:hover {
        background-color: #ff8a3c;
        transform: translateY(-2px);
        box-shadow: 0 4px 10px rgba(255, 111, 15, 0.2);
    }

/* ÖDEME YÖNTEMLERİ VE ETBİS BÖLÜMÜ */
.payment-etbis-section {
    text-align: center;
    margin: 30px auto 20px;
    padding: 30px 20px 25px;
    border-top: 1px solid #e2e8f0;
}

    .payment-etbis-section .footer-section-title {
        text-align: center;
        margin: 0 auto 20px;
        font-size: 16px;
    }

        .payment-etbis-section .footer-section-title::before {
            display: none;
        }

        .payment-etbis-section .footer-section-title::after {
            left: 50%;
            transform: translateX(-50%);
        }

/* ÖDEME VE ETBİS WRAPPER */
.payment-etbis-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.payment-methods {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.payment-item {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    padding: 10px 16px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    min-width: 80px;
    height: 50px;
}

    .payment-item:hover {
        border-color: #FF6F0F;
        box-shadow: 0 4px 12px rgba(255, 111, 15, 0.1);
        transform: translateY(-2px);
    }

    .payment-item img {
        max-height: 32px;
        max-width: 100%;
        width: auto;
        object-fit: contain;
    }

.payment-badge {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    padding: 10px 16px;
    border-radius: 8px;
    color: #475569;
    font-size: 13px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

    .payment-badge:hover {
        border-color: #FF6F0F;
        box-shadow: 0 4px 12px rgba(255, 111, 15, 0.1);
        transform: translateY(-2px);
    }

    .payment-badge i {
        color: #FF6F0F;
        font-size: 16px;
    }

/* ETBİS LOGO CONTAINER */
.etbis-logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.etbis-container {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

    .etbis-container:hover {
        border-color: #FF6F0F;
        box-shadow: 0 4px 12px rgba(255, 111, 15, 0.1);
        transform: translateY(-2px);
    }

#ETBIS {
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 0;
}

    #ETBIS > div {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0 !important;
        margin: 0 !important;
    }

    #ETBIS img {
        max-height: 85px !important;
        height: 85px !important;
        width: auto !important;
        display: block !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    #ETBIS a {
        display: flex !important;
        align-items: center;
        padding: 0 !important;
        margin: 0 !important;
    }

/* ALT FOOTER */
.footer-bottom {
    border-top: 1px solid #e2e8f0;
    padding: 25px 30px;
    max-width: 1400px;
    margin: 0 auto;
    background: #f8fafc;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright-text {
    color: #475569;
    font-size: 14px;
    font-weight: 500;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-bottom-link {
    color: #475569;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    font-weight: 500;
}

    .footer-bottom-link:hover {
        color: #FF6F0F;
    }

    .footer-bottom-link i {
        color: #FF6F0F;
    }

/* YUKARI ÇIK BUTONU */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: #FF6F0F;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(255, 111, 15, 0.3);
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
}

    .scroll-to-top.visible {
        opacity: 1;
        visibility: visible;
    }

    .scroll-to-top:hover {
        background-color: #ff8a3c;
        transform: translateY(-5px);
        box-shadow: 0 6px 20px rgba(255, 111, 15, 0.4);
    }

/* RESPONSİVE TASARIM */
@media (max-width: 1400px) {
    .footer-main {
        padding: 50px 25px 35px;
    }
}

@media (max-width: 992px) {
    .footer-main {
        padding: 40px 20px 30px;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px;
    }

    /* ETBİS logosu küçült */
    #ETBIS img {
        max-height: 70px !important;
        height: 70px !important;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    /* Footer logo küçült */
    .footer-logo-image {
        max-width: 150px;
       
    }
    .footer-logo{
        justify-content:center;
    }

    .footer-logo-text {
        font-size: 24px;
    }

    .footer-section-title {
        font-size: 17px;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-input {
        min-width: 100%;
    }

    .payment-methods {
        justify-content: center;
    }

    .payment-etbis-wrapper {
        flex-direction: column;
        gap: 20px;
    }

    /* ETBİS logosu daha da küçült */
    #ETBIS img {
        max-height: 60px !important;
        height: 60px !important;
    }

    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 576px) {
    .footer-main {
        padding: 30px 15px 20px;
    }

    /* Footer logo mobilde daha küçük */
    .footer-logo-image {
        max-width: 130px;
    }

    .footer-section-title {
        font-size: 16px;
    }

    .social-link {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    /* ETBİS logosu mobilde en küçük */
    #ETBIS img {
        max-height: 50px !important;
        height: 50px !important;
    }

    .etbis-container {
        padding: 10px;
    }

    /* Ödeme kartları mobilde küçült */
    .payment-item {
        min-width: 70px;
        height: 45px;
        padding: 8px 12px;
    }

        .payment-item img {
            max-height: 28px;
        }
}

/* HOVER ETKİLERİNİ KORU */
.footer-links a:hover {
    color: #475569 !important;
}
