/* ===================================
   MODERN CORPORATE FOOTER DESIGN
   İyileştirilmiş - Dengeli ve Responsive
   =================================== */

/* Newsletter Section */
.footer-newsletter {
    background: linear-gradient(135deg, #0052A3 0%, #0066CC 50%, #0080FF 100%);
    padding: 50px 0;
    position: relative;
    overflow: hidden;
}

.footer-newsletter::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 212, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.newsletter-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.newsletter-text h3 {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.newsletter-text h3 i {
    color: #FFD700;
    font-size: 1.6rem;
}

.newsletter-text p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.5;
}

.newsletter-form {
    flex: 1;
    max-width: 480px;
}

.newsletter-input-group {
    position: relative;
    display: flex;
    align-items: center;
    background: white;
    border-radius: 50px;
    padding: 5px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.newsletter-input-group i {
    position: absolute;
    left: 20px;
    color: #6B7280;
    font-size: 1rem;
}

.newsletter-input-group input {
    flex: 1;
    border: none;
    padding: 12px 18px 12px 46px;
    font-size: 14px;
    border-radius: 50px;
    outline: none;
    color: #1E293B;
}

.newsletter-input-group input::placeholder {
    color: #9CA3AF;
}

.newsletter-btn {
    background: linear-gradient(135deg, #FF6B00, #FF8C00);
    color: white;
    border: none;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    box-shadow: 0 3px 12px rgba(255, 107, 0, 0.3);
}

.newsletter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 18px rgba(255, 107, 0, 0.4);
}

/* Main Footer */
.footer-main {
    background: #1E293B;
    padding: 60px 0 30px;
    position: relative;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-bottom: 40px;
}

.footer-col {
    padding: 0 30px;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    text-align: left;
}

.footer-col:last-child {
    border-right: none;
}

/* Footer Columns */
.footer-title {
    color: white;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    padding-bottom: 12px;
    text-align: left;
    justify-content: flex-start;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 2.5px;
    background: linear-gradient(90deg, #FF6B00, rgba(255, 107, 0, 0.3));
    border-radius: 2px;
}

.footer-title i {
    color: #0066CC;
    font-size: 1.05rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
    width: 100%;
}

.footer-links li {
    margin-bottom: 10px;
    text-align: left;
}

.footer-links li a {
    color: #94A3B8;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    position: relative;
    padding-left: 0;
    text-align: left;
}

.footer-links li a i {
    font-size: 11px;
    transition: all 0.3s ease;
}

.footer-links li a:hover {
    color: white;
    padding-left: 6px;
}

.footer-links li a:hover i {
    color: #FF6B00;
}

/* Contact Section - Minimal */
.footer-contact-minimal {
    margin-bottom: 20px;
    text-align: left;
    width: 100%;
}

.footer-contact-minimal li {
    margin-bottom: 10px;
    text-align: left;
}

.footer-contact-minimal li a {
    color: #94A3B8;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-align: left;
}

.footer-contact-minimal li a i {
    color: #0066CC;
    font-size: 14px;
    width: 18px;
    text-align: center;
}

.footer-contact-minimal li a:hover {
    color: white;
    padding-left: 6px;
}

.footer-contact-minimal li a:hover i {
    color: #FF6B00;
}

/* Social Media - Minimal */
.footer-social-minimal {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.social-link {
    width: 36px;
    height: 36px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    transition: all 0.25s ease;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link i {
    color: #94A3B8;
    transition: all 0.25s ease;
}

.social-link:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

.social-link.facebook:hover i {
    color: #1877F2;
}

.social-link.instagram:hover i {
    color: #E1306C;
}

.social-link.twitter:hover i {
    color: #1DA1F2;
}

.social-link.linkedin:hover i {
    color: #0077B5;
}

.social-link.youtube:hover i {
    color: #FF0000;
}

/* Footer Bottom */
.footer-bottom {
    background: #0F172A;
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

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

.footer-company {
    flex: 1;
    min-width: 0;
}

.footer-company-name {
    color: white;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.4;
}

.footer-company-details {
    color: #64748B;
    font-size: 11px;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
    line-height: 1.5;
}

.footer-company-details i {
    color: #0066CC;
    font-size: 10px;
}

.footer-company-details .separator {
    color: #475569;
    margin: 0 2px;
}

.footer-copyright {
    color: #94A3B8;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.footer-copyright i {
    color: #64748B;
}

/* Payment Methods */
.footer-payment {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.footer-payment-label {
    color: #94A3B8;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
}

.footer-payment-methods {
    display: flex;
    gap: 8px;
}

.payment-method {
    width: 46px;
    height: 30px;
    background: white;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.payment-method:hover {
    transform: translateY(-2px);
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.15);
}

.payment-method i {
    font-size: 1.4rem;
}

.payment-method.visa i {
    color: #1A1F71;
}

.payment-method.mastercard i {
    color: #EB001B;
}

.payment-method.amex i {
    color: #006FCF;
}

.payment-method.paypal i {
    color: #003087;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 0;
    }
    
    .footer-col {
        padding: 0 25px;
    }
}

@media (max-width: 968px) {
    .newsletter-content {
        flex-direction: column;
        text-align: center;
        gap: 25px;
    }
    
    .newsletter-form {
        max-width: 100%;
        width: 100%;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0;
    }
    
    .footer-col {
        padding: 30px 25px;
        border-right: 1px solid rgba(255, 255, 255, 0.08);
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }
    
    .footer-col:nth-child(2n) {
        border-right: none;
    }
    
    .footer-col:nth-last-child(-n+2) {
        border-bottom: none;
    }
    
    .footer-title::after {
        left: 0;
        transform: none;
    }
}

@media (max-width: 768px) {
    .footer-newsletter {
        padding: 35px 0;
    }
    
    .newsletter-text h3 {
        font-size: 1.3rem;
    }
    
    .newsletter-text h3 i {
        font-size: 1.4rem;
    }
    
    .newsletter-text p {
        font-size: 0.9rem;
    }
    
    .newsletter-content {
        flex-direction: column;
        text-align: left;
        gap: 25px;
    }
    
    .newsletter-form {
        max-width: 100%;
        width: 100%;
    }
    
    .footer-main {
        padding: 45px 0 25px;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0;
        margin-bottom: 25px;
    }
    
    .footer-col {
        padding: 25px 18px;
        border-right: 1px solid rgba(255, 255, 255, 0.08);
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        text-align: left;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }
    
    /* Her satırın sağ kenarındaki border'ı kaldır */
    .footer-col:nth-child(2n) {
        border-right: none;
    }
    
    /* Son satırdaki kartların alt border'ını kaldır */
    .footer-col:nth-last-child(-n+2) {
        border-bottom: none;
    }
    
    .footer-title {
        font-size: 1.1rem;
        margin-bottom: 20px;
        padding-bottom: 12px;
        justify-content: flex-start;
        text-align: left;
        width: 100%;
        font-weight: 700;
    }
    
    .footer-title::after {
        left: 0;
        transform: none;
        width: 40px;
        height: 3px;
    }
    
    .footer-title i {
        font-size: 1.05rem;
        margin-right: 10px;
    }
    
    .footer-links {
        width: 100%;
        text-align: left;
        padding-left: 0;
    }
    
    .footer-links li {
        margin-bottom: 12px;
        text-align: left;
        width: 100%;
    }
    
    .footer-links li a {
        font-size: 14px;
        padding: 6px 0;
        justify-content: flex-start;
        text-align: left;
        display: inline-flex;
        width: 100%;
        line-height: 1.4;
    }
    
    .footer-links li a i {
        margin-right: 8px;
        width: 16px;
        font-size: 11px;
    }
    
    .footer-contact-minimal {
        width: 100%;
        text-align: left;
        padding-left: 0;
    }
    
    .footer-contact-minimal li {
        margin-bottom: 14px;
        text-align: left;
        width: 100%;
    }
    
    .footer-contact-minimal li a {
        font-size: 14px;
        padding: 6px 0;
        justify-content: flex-start;
        text-align: left;
        display: inline-flex;
        width: 100%;
        line-height: 1.4;
    }
    
    .footer-contact-minimal li a i {
        font-size: 16px;
        width: 20px;
        text-align: left;
        margin-right: 10px;
    }
    
    .footer-social-minimal {
        gap: 12px;
        margin-top: 20px;
        justify-content: flex-start;
        display: flex;
        width: 100%;
        flex-wrap: wrap;
    }
    
    .social-link {
        width: 42px;
        height: 42px;
        border-radius: 10px;
        font-size: 1.1rem;
    }
    
    .footer-bottom {
        padding: 25px 0;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: left;
        gap: 20px;
        align-items: flex-start;
    }
    
    .footer-company {
        text-align: left;
        width: 100%;
    }
    
    .footer-company-name {
        text-align: left;
        font-size: 13px;
        line-height: 1.5;
        margin-bottom: 12px;
        font-weight: 700;
    }
    
    .footer-company-details {
        justify-content: flex-start;
        text-align: left;
        flex-wrap: wrap;
        font-size: 11px;
    }
    
    .footer-company-details-row {
        margin-top: 6px;
    }
    
    .footer-copyright {
        text-align: left;
        font-size: 12px;
        margin-top: 10px;
    }
    
    .footer-payment {
        display: none;
    }
}

@media (max-width: 576px) {
    .newsletter-input-group {
        flex-direction: column;
        padding: 8px;
        border-radius: 14px;
        gap: 8px;
    }
    
    .newsletter-input-group input {
        padding: 12px 18px;
        text-align: left;
    }
    
    .newsletter-input-group i {
        display: none;
    }
    
    .newsletter-btn {
        width: 100%;
        justify-content: center;
        padding: 12px 24px;
    }
    
    .footer-main {
        padding: 35px 0 20px;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0;
        margin-bottom: 20px;
    }
    
    .footer-col {
        padding: 20px 14px;
        border-right: 1px solid rgba(255, 255, 255, 0.08);
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }
    
    /* Her satırın sağ kenarındaki border'ı kaldır */
    .footer-col:nth-child(2n) {
        border-right: none;
    }
    
    /* Son satırdaki kartların alt border'ını kaldır */
    .footer-col:nth-last-child(-n+2) {
        border-bottom: none;
    }
    
    .footer-title {
        font-size: 0.95rem;
        margin-bottom: 16px;
        padding-bottom: 10px;
        justify-content: flex-start;
        text-align: left;
        width: 100%;
        font-weight: 700;
    }
    
    .footer-title i {
        font-size: 0.9rem;
        margin-right: 8px;
    }
    
    .footer-title::after {
        width: 32px;
        left: 0;
        transform: none;
        height: 2.5px;
    }
    
    .footer-links {
        width: 100%;
        text-align: left;
        padding-left: 0;
    }
    
    .footer-links li {
        margin-bottom: 10px;
        text-align: left;
        width: 100%;
    }
    
    .footer-links li a {
        font-size: 12px;
        padding: 4px 0;
        justify-content: flex-start;
        text-align: left;
        display: inline-flex;
        width: 100%;
        line-height: 1.4;
    }
    
    .footer-links li a i {
        font-size: 9px;
        margin-right: 7px;
        width: 12px;
    }
    
    .footer-contact-minimal {
        width: 100%;
        text-align: left;
        padding-left: 0;
    }
    
    .footer-contact-minimal li {
        margin-bottom: 11px;
        text-align: left;
        width: 100%;
    }
    
    .footer-contact-minimal li a {
        font-size: 12px;
        padding: 4px 0;
        justify-content: flex-start;
        text-align: left;
        display: inline-flex;
        width: 100%;
        line-height: 1.4;
    }
    
    .footer-contact-minimal li a i {
        font-size: 13px;
        width: 16px;
        text-align: left;
        margin-right: 7px;
    }
    
    .footer-social-minimal {
        gap: 8px;
        margin-top: 16px;
        justify-content: flex-start;
        display: flex;
        width: 100%;
        flex-wrap: wrap;
    }
    
    .social-link {
        width: 36px;
        height: 36px;
        border-radius: 8px;
        font-size: 0.9rem;
    }
    
    .footer-bottom {
        padding: 20px 0;
    }
    
    .footer-bottom-content {
        gap: 16px;
        text-align: left;
        align-items: flex-start;
        flex-direction: column;
    }
    
    .footer-company {
        text-align: left;
        width: 100%;
    }
    
    .footer-company-name {
        font-size: 11px;
        margin-bottom: 10px;
        line-height: 1.5;
        text-align: left;
        font-weight: 700;
    }
    
    .footer-company-details {
        flex-direction: column;
        gap: 6px;
        font-size: 10px;
        line-height: 1.6;
        justify-content: flex-start;
        align-items: flex-start;
        text-align: left;
    }
    
    .footer-company-details-row {
        display: flex;
        align-items: center;
        gap: 8px;
        flex-wrap: wrap;
        margin-top: 4px;
    }
    
    .footer-company-details .separator {
        display: inline;
        margin: 0 4px;
        color: #475569;
    }
    
    .footer-company-details span {
        display: flex;
        align-items: center;
        gap: 6px;
        text-align: left;
    }
    
    .footer-copyright {
        font-size: 10px;
        margin-top: 8px;
        text-align: left;
    }
    
    .footer-payment {
        display: none;
    }
}

/* Ekstra küçük ekranlar için */
@media (max-width: 400px) {
    .newsletter-text h3 {
        font-size: 1.15rem;
    }
    
    .footer-title {
        font-size: 0.95rem;
    }
    
    .footer-links li a {
        font-size: 13px;
    }
}
