/* ===== FOOTER STİLLERİ ===== */

/* Genel Stiller */
:root {
    --primary-color: #2E8B57;
    --secondary-color: #20B2AA;
    --accent-color: #32CD32;
    --dark-color: #1a1a1a;
    --light-color: #f8f9fa;
    --success-color: #28a745;
    --warning-color: #ffc107;
    --danger-color: #dc3545;
    --text-dark: #2c3e50;
    --text-light: #6c757d;
    --border-radius: 15px;
    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Footer Ana Bölümü */
.footer {
    background: linear-gradient(135deg, var(--dark-color), #2c3e50);
    color: white;
    padding: 4rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

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

/* Footer Başlıkları */
.footer h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
    position: relative;
}

.footer h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

/* Footer Linkleri */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: white;
    transform: translateX(5px);
}

.footer-links a i {
    margin-right: 0.5rem;
    color: var(--primary-color);
    font-size: 0.9rem;
}

/* İletişim Bilgileri */
.contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-info li {
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    color: #bdc3c7;
    font-size: 0.95rem;
    line-height: 1.6;
}

.contact-info i {
    color: var(--primary-color);
    margin-right: 0.8rem;
    margin-top: 0.2rem;
    font-size: 1rem;
    flex-shrink: 0;
}

.contact-info a {
    color: #bdc3c7;
    text-decoration: none;
    transition: var(--transition);
}

.contact-info a:hover {
    color: white;
}

/* Sosyal Medya */
.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.social-link:hover {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    transform: translateY(-3px);
    color: white;
}

.social-link i {
    font-size: 1.2rem;
}

/* Newsletter */
.newsletter {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 1.5rem;
    margin-top: 1rem;
    backdrop-filter: blur(10px);
    width: 100%;
    min-width: 280px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.newsletter h4 {
    font-size: 1.2rem;
    font-weight: 300;
    margin-bottom: 1rem;
    color: white;
}

.newsletter p {
    color: #bdc3c7;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
    width: 100%;
    min-width: 210px;
    justify-content: center;
    align-items: center;
}

.newsletter-input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 0.9rem;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    min-width: 180px;
    height: 40px;
    text-align: center;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
}

.newsletter-input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.25);
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(46, 139, 87, 0.25);
}

.newsletter-btn {
    padding: 0.75rem 1.5rem;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    border-radius: 25px;
    font-weight: 300;
    font-size: 0.9rem;
    transition: var(--transition);
    cursor: pointer;
    height: 40px;
}

.newsletter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(46, 139, 87, 0.3);
}

/* Footer Alt */
.footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    padding: 1.5rem 0;
    margin-top: 3rem;
    text-align: center;
    position: relative;
    z-index: 2;
}

.footer-bottom p {
    color: #bdc3c7;
    font-size: 0.9rem;
    margin: 0;
}

.footer-bottom a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.footer-bottom a:hover {
    color: var(--secondary-color);
}

/* Yasal Linkler */
.legal-links-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.legal-link-footer {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 0.85rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
}

.legal-link-footer:hover {
    color: var(--primary-color);
    background: rgba(46, 139, 87, 0.1);
    transform: translateY(-1px);
}

.legal-link-footer i {
    color: var(--danger-color);
    margin-right: 0.25rem;
    font-size: 0.9rem;
}

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

.legal-links-footer .mx-2 {
    color: #6c757d;
    font-size: 0.8rem;
}

/* Gelişmiş Responsive Tasarım */
@media (max-width: 1400px) {
    .footer {
        padding: 3.5rem 0 1.5rem;
    }
    
    .footer h3 {
        font-size: 1.4rem;
    }
}

@media (max-width: 1200px) {
    .footer {
        padding: 3rem 0 1.5rem;
    }
    
    .footer h3 {
        font-size: 1.3rem;
    }
    
    .footer-links a {
        font-size: 0.9rem;
    }
    
    .contact-info li {
        font-size: 0.9rem;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
    }
    
    .social-link i {
        font-size: 1.1rem;
    }
}

@media (max-width: 992px) {
    .footer {
        padding: 2.5rem 0 1.5rem;
    }
    
    .footer h3 {
        font-size: 1.2rem;
        margin-bottom: 1.2rem;
    }
    
    .footer h3::after {
        width: 35px;
        height: 2px;
        bottom: -6px;
    }
    
    .footer-links a {
        font-size: 0.85rem;
    }
    
    .footer-links li {
        margin-bottom: 0.6rem;
    }
    
    .contact-info li {
        font-size: 0.85rem;
        margin-bottom: 0.8rem;
    }
    
    .contact-info i {
        font-size: 0.9rem;
        margin-right: 0.6rem;
    }
    
    .social-links {
        gap: 0.8rem;
        margin-top: 0.8rem;
    }
    
    .social-link {
        width: 35px;
        height: 35px;
    }
    
    .social-link i {
        font-size: 1rem;
    }
    
    .newsletter {
        padding: 1.2rem;
        margin-top: 0.8rem;
        min-width: 250px;
        text-align: center;
        align-items: center;
    }
    
    .newsletter h4 {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }
    
    .newsletter p {
        font-size: 0.85rem;
        margin-bottom: 0.8rem;
    }
    
    .newsletter-input {
        padding: 0.6rem 0.8rem;
        font-size: 0.85rem;
        background: rgba(255, 255, 255, 0.2);
        border: 1px solid rgba(255, 255, 255, 0.3);
    }
    
    .newsletter-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }
    
    .footer-bottom {
        margin-top: 2rem;
        padding: 1.2rem 0;
    }
    
    .footer-bottom p {
        font-size: 0.85rem;
    }
    
    .legal-links-footer {
        flex-direction: column;
        gap: 0.3rem;
    }
    
    .legal-link-footer {
        font-size: 0.8rem;
    }
    
    .legal-links-footer .mx-2 {
        display: none;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 2rem 0 1rem;
    }
    
    .footer h3 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
        text-align: center;
    }
    
    .footer h3::after {
        left: 50%;
        transform: translateX(-50%);
        width: 30px;
        height: 2px;
        bottom: -5px;
    }
    
    .footer-links {
        text-align: center;
        margin-bottom: 1.5rem;
    }
    
    .footer-links a {
        font-size: 0.8rem;
        justify-content: center;
    }
    
    .footer-links a i {
        margin-right: 0.3rem;
        font-size: 0.8rem;
    }
    
    .contact-info {
        text-align: center;
        margin-bottom: 1.5rem;
    }
    
    .contact-info li {
        font-size: 0.8rem;
        margin-bottom: 0.6rem;
        justify-content: center;
    }
    
    .contact-info i {
        font-size: 0.8rem;
        margin-right: 0.4rem;
    }
    
    .social-links {
        justify-content: center;
        gap: 0.6rem;
        margin-top: 0.6rem;
    }
    
    .social-link {
        width: 32px;
        height: 32px;
    }
    
    .social-link i {
        font-size: 0.9rem;
    }
    
    .newsletter {
        padding: 1rem;
        margin-top: 0.6rem;
        text-align: center;
        min-width: 220px;
        align-items: center;
    }
    
    .newsletter h4 {
        font-size: 1rem;
        margin-bottom: 0.6rem;
    }
    
    .newsletter p {
        font-size: 0.8rem;
        margin-bottom: 0.6rem;
    }
    
    .newsletter-form {
        flex-direction: column;
        gap: 0.5rem;
        min-width: 200px;
        align-items: center;
    }
    
    .newsletter-input {
        padding: 0.5rem 0.7rem;
        font-size: 0.8rem;
        background: rgba(255, 255, 255, 0.2);
        border: 1px solid rgba(255, 255, 255, 0.3);
    }
    
    .newsletter-btn {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
    
    .footer-bottom {
        margin-top: 1.5rem;
        padding: 1rem 0;
    }
    
    .footer-bottom p {
        font-size: 0.8rem;
    }
    
    .legal-links-footer {
        flex-direction: column;
        gap: 0.3rem;
        margin-top: 0.5rem;
    }
    
    .legal-link-footer {
        font-size: 0.75rem;
        padding: 0.2rem 0.4rem;
    }
    
    .legal-links-footer .mx-2 {
        display: none;
    }
}

@media (max-width: 576px) {
    .footer {
        padding: 1.5rem 0 0.8rem;
    }
    
    .footer h3 {
        font-size: 1rem;
        margin-bottom: 0.8rem;
    }
    
    .footer h3::after {
        width: 25px;
        height: 2px;
        bottom: -4px;
    }
    
    .footer-links {
        margin-bottom: 1.2rem;
    }
    
    .footer-links a {
        font-size: 0.75rem;
    }
    
    .footer-links a i {
        font-size: 0.75rem;
        margin-right: 0.25rem;
    }
    
    .contact-info {
        margin-bottom: 1.2rem;
    }
    
    .contact-info li {
        font-size: 0.75rem;
        margin-bottom: 0.5rem;
    }
    
    .contact-info i {
        font-size: 0.75rem;
        margin-right: 0.3rem;
    }
    
    .social-links {
        gap: 0.5rem;
        margin-top: 0.5rem;
    }
    
    .social-link {
        width: 28px;
        height: 28px;
    }
    
    .social-link i {
        font-size: 0.8rem;
    }
    
    .newsletter {
        padding: 0.8rem;
        margin-top: 0.5rem;
        min-width: 200px;
        text-align: center;
        align-items: center;
    }
    
    .newsletter h4 {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }
    
    .newsletter p {
        font-size: 0.75rem;
        margin-bottom: 0.5rem;
    }
    
    .newsletter-input {
        padding: 0.4rem 0.6rem;
        font-size: 0.75rem;
        background: rgba(255, 255, 255, 0.2);
        border: 1px solid rgba(255, 255, 255, 0.3);
    }
    
    .newsletter-btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.75rem;
    }
    
    .footer-bottom {
        margin-top: 1.2rem;
        padding: 0.8rem 0;
    }
    
    .footer-bottom p {
        font-size: 0.75rem;
    }
    
    .legal-links-footer {
        flex-direction: column;
        gap: 0.25rem;
        margin-top: 0.4rem;
    }
    
    .legal-link-footer {
        font-size: 0.7rem;
        padding: 0.15rem 0.3rem;
    }
    
    .legal-links-footer .mx-2 {
        display: none;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 1.2rem 0 0.6rem;
    }
    
    .footer h3 {
        font-size: 0.9rem;
        margin-bottom: 0.6rem;
    }
    
    .footer h3::after {
        width: 20px;
        height: 2px;
        bottom: -3px;
    }
    
    .footer-links {
        margin-bottom: 1rem;
    }
    
    .footer-links a {
        font-size: 0.7rem;
    }
    
    .footer-links a i {
        font-size: 0.7rem;
        margin-right: 0.2rem;
    }
    
    .contact-info {
        margin-bottom: 1rem;
    }
    
    .contact-info li {
        font-size: 0.7rem;
        margin-bottom: 0.4rem;
    }
    
    .contact-info i {
        font-size: 0.7rem;
        margin-right: 0.25rem;
    }
    
    .social-links {
        gap: 0.4rem;
        margin-top: 0.4rem;
    }
    
    .social-link {
        width: 24px;
        height: 24px;
    }
    
    .social-link i {
        font-size: 0.7rem;
    }
    
    .newsletter {
        padding: 0.6rem;
        margin-top: 0.4rem;
        min-width: 180px;
        text-align: center;
        align-items: center;
    }
    
    .newsletter h4 {
        font-size: 0.8rem;
        margin-bottom: 0.4rem;
    }
    
    .newsletter p {
        font-size: 0.7rem;
        margin-bottom: 0.4rem;
    }
    
    .newsletter-input {
        padding: 0.3rem 0.5rem;
        font-size: 0.7rem;
        background: rgba(255, 255, 255, 0.2);
        border: 1px solid rgba(255, 255, 255, 0.3);
    }
    
    .newsletter-btn {
        padding: 0.3rem 0.6rem;
        font-size: 0.7rem;
    }
    
    .footer-bottom {
        margin-top: 1rem;
        padding: 0.6rem 0;
    }
    
    .footer-bottom p {
        font-size: 0.7rem;
    }
    
    .legal-links-footer {
        flex-direction: column;
        gap: 0.2rem;
        margin-top: 0.3rem;
    }
    
    .legal-link-footer {
        font-size: 0.65rem;
        padding: 0.1rem 0.25rem;
    }
    
    .legal-links-footer .mx-2 {
        display: none;
    }
}

/* Touch Device Optimizasyonları */
@media (hover: none) and (pointer: coarse) {
    .footer-links a:hover {
        transform: none;
    }
    
    .social-link:hover {
        transform: none;
    }
    
    .newsletter-btn:hover {
        transform: none;
    }
}

/* Landscape Orientation */
@media (orientation: landscape) and (max-height: 500px) {
    .footer {
        padding: 1rem 0 0.5rem;
    }
    
    .footer h3 {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }
    
    .footer-links {
        margin-bottom: 0.8rem;
    }
    
    .contact-info {
        margin-bottom: 0.8rem;
    }
    
    .newsletter {
        margin-top: 0.3rem;
    }
    
    .footer-bottom {
        margin-top: 0.8rem;
        padding: 0.5rem 0;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    .footer {
        background: #000;
        color: #fff;
    }
    
    .footer-links a,
    .contact-info li,
    .contact-info a {
        color: #ccc;
    }
    
    .footer-links a:hover,
    .contact-info a:hover {
        color: #fff;
    }
    
    .newsletter {
        background: #333;
        border: 1px solid #666;
    }
    
    .newsletter-input {
        background: #333;
        border: 1px solid #666;
    }
}

/* Print Styles */
@media print {
    .footer {
        background: #fff !important;
        color: #000 !important;
    }
    
    .footer h3 {
        color: #000 !important;
    }
    
    .footer-links a,
    .contact-info li,
    .contact-info a {
        color: #333 !important;
    }
    
    .social-links {
        display: none;
    }
    
    .newsletter {
        display: none;
    }
    
    .footer-bottom {
        background: #f5f5f5 !important;
        color: #333 !important;
    }
} 