﻿
.content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    text-align: center;
}

    .content h1 {
        font-size: 3rem;
        color: #006d5b;
        margin-bottom: 20px;
    }

    .content p {
        font-size: 1.2rem;
        max-width: 800px;
        color: #555;
        line-height: 1.8;
    }

/* Footer Stilleri */
footer {
    background: linear-gradient(135deg, #004d40 0%, #006d5b 100%);
    color: #fff;
    padding: 70px 0 0;
    position: relative;
    overflow: hidden;
}

    footer::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 5px;
        background: linear-gradient(to right, #00c9a7, #ffd700);
        z-index: 1;
    }

    footer::after {
        content: "";
        position: absolute;
        top: 0;
        left: -100px;
        width: 300px;
        height: 300px;
        background: rgba(255, 255, 255, 0.03);
        border-radius: 50%;
        z-index: 0;
    }

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 2;
}

.footer-item {
    margin-bottom: 30px;
}

    .footer-item h4 {
        font-size: 1.5rem;
        margin-bottom: 25px;
        position: relative;
        padding-bottom: 15px;
    }

        .footer-item h4::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: 0;
            width: 50px;
            height: 3px;
            background: #00c9a7;
            border-radius: 2px;
        }

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

    .social-icons a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 45px;
        height: 45px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
        color: white;
        font-size: 1.2rem;
        transition: all 0.3s ease;
    }

        .social-icons a:hover {
            background: #00c9a7;
            transform: translateY(-5px);
        }

.menu-list {
    list-style: none;
}

    .menu-list li {
        margin-bottom: 15px;
    }

    .menu-list a {
        color: #e0e0e0;
        text-decoration: none;
        font-size: 1.1rem;
        display: flex;
        align-items: center;
        gap: 10px;
        transition: all 0.3s ease;
    }

        .menu-list a i {
            color: #00c9a7;
            transition: transform 0.3s ease;
        }

        .menu-list a:hover {
            color: white;
            transform: translateX(5px);
        }

            .menu-list a:hover i {
                transform: translateX(5px);
            }

.contact-info {
    list-style: none;
}

    .contact-info li {
        margin-bottom: 20px;
        display: flex;
        gap: 15px;
    }

    .contact-info i {
        color: #00c9a7;
        font-size: 1.3rem;
        min-width: 25px;
        margin-top: 5px;
    }

    .contact-info a {
        color: #e0e0e0;
        text-decoration: none;
        transition: all 0.3s ease;
    }

        .contact-info a:hover {
            color: white;
        }

    .contact-info span {
        display: block;
        line-height: 1.6;
    }

.policy-button {
    display: block;
    background: transparent;
    border: none;
    color: #e0e0e0;
    text-align: left;
    padding: 0;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

    .policy-button:hover {
        color: white;
        transform: translateX(5px);
    }

    .policy-button i {
        color: #00c9a7;
    }

.sub-footer {
    background: rgba(0, 0, 0, 0.2);
    padding: 25px 0;
    margin-top: 50px;
    text-align: center;
    position: relative;
    z-index: 2;
}

    .sub-footer p {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 20px;
        font-size: 1.1rem;
        color: #b0b0b0;
    }

    .sub-footer a {
        color: #00c9a7;
        text-decoration: none;
        transition: all 0.3s ease;
    }

        .sub-footer a:hover {
            color: #ffd700;
            text-decoration: underline;
        }

.footer-logo {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    display: inline-block;
}

    .footer-logo span {
        color: #00c9a7;
    }

/* Responsive Tasarım */
@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .content h1 {
        font-size: 2.2rem;
    }

    .content p {
        font-size: 1rem;
    }

    .footer-item h4 {
        font-size: 1.3rem;
        margin-bottom: 20px;
    }
}

/* Animasyonlar */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.footer-item {
    animation: fadeInUp 0.6s ease forwards;
}

    .footer-item:nth-child(1) {
        animation-delay: 0.1s;
    }

    .footer-item:nth-child(2) {
        animation-delay: 0.2s;
    }

    .footer-item:nth-child(3) {
        animation-delay: 0.3s;
    }

    .footer-item:nth-child(4) {
        animation-delay: 0.4s;
    }
