/* Footer Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Footer Top Section - Avantajlar Bölümü */
.footer-top {
    background-color: #252836;
    background-image: linear-gradient(rgba(37, 40, 54, 0.9), rgba(37, 40, 54, 0.9)), url('../images/footer-bg.jpg');
    background-size: cover;
    background-position: center;
    padding: 40px 0;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.footer-top::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(37, 40, 54, 0.5) 0%, rgba(37, 40, 54, 0.9) 70%);
    z-index: 1;
}

.footer-top .container {
    position: relative;
    z-index: 2;
}

.footer-top .row {
    display: flex;
    justify-content: space-around;
    align-items: stretch;
    flex-wrap: wrap;
}

.footer-top .text-center {
    text-align: center;
    padding: 10px;
    transition: all 0.3s ease;
    background-color: rgba(29, 33, 45, 0.8);
    border-radius: 10px;
    margin: 5px;
    height: auto;
    min-height: 160px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    width: calc(20% - 10px);
}

.footer-top .text-center:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.footer-top span {
    display: block;
    text-align: center;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    transition: all 0.3s ease;
    line-height: 1.2;
}

.footer-top span i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    margin: 0 auto 5px;
    font-size: 24px;
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.footer-top .text-center:hover span i {
    transform: scale(1.1);
    background: linear-gradient(350deg, #567ec6, #309fd9);
    box-shadow: 0 0 15px rgba(112, 172, 252, 0.5);
}

.feature-desc {
    color: #b0b7c3;
    font-size: 14px;
    margin-top: 8px;
    font-weight: 500;
}


/* Footer Main Section */
.footer-main {
    background: #2d3142;
    padding: 40px 0;
    color: #fff;
}

.footer-col {
    padding: 0 10px;
    margin-bottom: 20px;
}

.footer-main .footer-col img {
    margin-bottom: 15px;
    max-width: 100%;
    height: auto;
}

.footer-main .footer-col p {
    margin-bottom: 15px;
    color: #b0b7c3;
    line-height: 1.5;
}

.footer-main .iletisimBox {
    display: block;
    margin-bottom: 10px;
    color: #fff;
    font-size: 14px;
}

.footer-main .iletisimBox i {
    color: #70acfc;
    font-size: 14px;
}

.footer-main .iletisimBox small {
    color: #b0b7c3;
    margin-left: 20px;
}

.social-links {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff;
    font-size: 15px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: #fff;
    background: linear-gradient(350deg, #567ec6, #309fd9);
    transform: translateY(-3px);
}

.footer-title {
    display: block;
    font-size: 16px;
    margin-bottom: 15px;
    color: #fff;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.footer-main .footer-col-right {
    display: flex;
    justify-content: flex-end;
}

.footer-main .footer-col-right .row {
    width: 100%;
}

.footer-main .footer-col-right b {
    display: block;
    font-size: 16px;
    margin-bottom: 15px;
    color: #fff;
}

.footer-main .footer-col-right ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-main .footer-col-right ul li {
    margin-bottom: 8px;
}

.footer-main .footer-col-right ul li a {
    color: #b0b7c3;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.footer-main .footer-col-right ul li a i {
    color: #70acfc;
    font-size: 12px;
    margin-right: 8px;
}

.footer-main .footer-col-right ul li a:hover {
    color: #70acfc;
}

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

.footer-menu li {
    margin-bottom: 8px;
}

.footer-menu li a {
    color: #b0b7c3;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.footer-menu li a i {
    color: #70acfc;
    font-size: 14px;
    margin-right: 8px;
}

.footer-menu li a:hover {
    color: #70acfc;
    padding-left: 3px;
}

/* Footer Bottom Section */
.footer-bottom {
    background-color: #1e2130;
    padding: 15px 0;
    color: #b0b7c3;
    font-size: 13px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom .text-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.footer-bottom .copyright {
}

.footer-bottom .payment-methods {
    max-width: 100%;
}

.footer-bottom img {
    max-width: 280px;
    transition: all 0.3s ease;
}

.footer-bottom img:hover {
    opacity: 0.9;
}

/* Responsive Styles */

@media (max-width: 1299px) {
    .footer-title {
        font-size: 15px;
    }
    .footer-menu li a {
        font-size: 13px;
    }  
    .footer-menu li a i {
        font-size: 13px;
    }
    .footer-main span.iletisimBox {
        padding: 5px 0;
        font-size: 13px;
    }
    .footer-main .iletisimBox i {
        font-size: 13px;
    }
}

@media (max-width: 991.98px) {
    .footer-top.hidden-xs {
        padding: 20px 10px;
    }
    .footer-top .text-center {
        min-height: 160px;
        padding: 12px;
    }
    .footer-top span {
        font-size: 15px;
    }

    .footer-main span.iletisimBox small {
        display: none;
    }
    .footer-main .iletisimBox i {
        display: none;
    }
    .social-links {
        flex-wrap: wrap;
    }
}

@media (max-width: 767.98px) {
    /* Footer Top */
    .footer-top .text-center {
        width: calc(50% - 10px);
        min-height: 150px;
        padding: 10px;
        margin-bottom: 10px;
    }
    .footer-top .row {
        justify-content: space-between;
    }
    .footer-top span {
        font-size: 14px;
    }
    .footer-top span i {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    .feature-desc {
        font-size: 13px;
    }
    .footer-top .hide-mobile {
        display: none;
    }
    footer .text-center:last-child {
        display: none;
    }
    
    /* Footer Main */
    .footer-main {
        padding: 30px 0;
    }
    
    .footer-col {
        margin-bottom: 20px;
    }
    
    .footer-title {
        margin-bottom: 12px;
    }
    
    .footer-menu li {
        margin-bottom: 8px;
    }
    
    .footer-menu li a {
        font-size: 13px;
    }
}

@media (max-width: 575.98px) {
    /* Footer Top */
    .footer-top .text-center {
        min-height: 140px;
    }
    .footer-top span {
        font-size: 13px;
    }
    
    /* Footer Main */
    .footer-main {
        padding: 25px 0;
    }
    
    .footer-col {
        padding: 0 10px;
    }
    
    .social-links {
        gap: 8px;
    }
    
    .social-links a {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }
    
    .footer-bottom {
        padding: 15px 0;
        font-size: 12px;
    }
    
    .footer-bottom img {
        max-width: 220px;
    }
}

@media (max-width: 490px) { 
    .footer-top .text-center {
        min-height: 130px;
    }
    .footer-top span {
        font-size: 12px;
    }
    .footer-top span i {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    .feature-desc {
        font-size: 12px;
    }
}

@media (max-width: 400px) {
    .iletisimBox {
        font-size: 13px!important;
    }
    .iletisimBox i {
        font-size: 12px!important;
    }
}

@media (max-width: 350px) { 
    .footer-top.hidden-xs .col-md-3 {
        flex: 0 0 auto;
        width: 50%;
        margin-top: 5px;
    }
    .footer-top.hidden-xs .col-12.col-xl-3.col-md-3.text-center {
        min-height: 130px;
    }
    .iletisimBox i {
        display: none;
    }
}