/* V3 Features Section Styles */
.v3-features-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.v3-features-section .features-container {
    width: 100%;
    margin: 0;
    padding: 0 20px;
}

.v3-features-section .features-header {
    text-align: center;
    margin-bottom: 60px;
}

.v3-features-section .features-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    line-height: 1.2;
}

.v3-features-section .title-icon {
    width: 40px;
    height: 40px;
    margin-left: 15px;
    border-radius: 50%;
    object-fit: cover;
    transition: transform 0.3s ease-in-out;
}

.v3-features-section .title-icon:hover {
    transform: scale(1.1);
}

.v3-features-section .features-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.v3-features-section .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.v3-features-section .feature-item {
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease-in-out;
    position: relative;
    overflow: hidden;
}

.v3-features-section .feature-item:hover {
    transform: translateY(-5px);
    will-change: transform;
}

.v3-features-section .feature-image {
    width: 100%;
    height: 400px;
    margin-bottom: 25px;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.6s ease-in-out;
    position: relative;
}

.v3-features-section .feature-image:hover {
    transform: scale(1.02);
    will-change: transform;
}

.v3-features-section .feature-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.6s ease-in-out;
    border-radius: 8px;
}

.v3-features-section .feature-image:hover img {
    transform: scale(1.03);
    will-change: transform;
}

.v3-features-section .feature-content {
    text-align: center;
}

.v3-features-section .feature-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.4;
}

.v3-features-section .feature-description {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Animasyon */
@keyframes v3FadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.v3-features-section {
    opacity: 1;
    transform: translateY(0);
    animation: v3FadeInUp 0.8s ease-out forwards;
    animation-play-state: paused;
}

.v3-features-section.animate {
    animation-play-state: running;
}

.v3-features-section.visible {
    opacity: 1;
    transform: translateY(0);
    animation: none;
    visibility: visible;
}

/* Responsive Design */
@media (max-width: 768px) {
    .v3-features-section {
        padding: 60px 0;
    }

    .v3-features-section .features-title {
        font-size: 2rem;
        flex-direction: column;
        gap: 10px;
    }

    .v3-features-section .title-icon {
        width: 35px;
        height: 35px;
        margin-left: 0;
    }

    .v3-features-section .features-subtitle {
        font-size: 1rem;
        padding: 0 20px;
    }

    .v3-features-section .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 0 10px;
    }

    .v3-features-section .feature-item {
        padding: 20px 15px;
    }

    .v3-features-section .feature-image {
        height: 250px;
    }

    .v3-features-section .feature-title {
        font-size: 1.1rem;
    }

    .v3-features-section .feature-description {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .v3-features-section .features-title {
        font-size: 1.8rem;
    }

    .v3-features-section .features-subtitle {
        font-size: 0.95rem;
    }

    .v3-features-section .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .v3-features-section .feature-item {
        padding: 15px 10px;
    }

    .v3-features-section .feature-title {
        font-size: 1rem;
    }

    .v3-features-section .feature-description {
        font-size: 0.85rem;
    }

    .v3-features-section .feature-image {
        height: 220px;
    }
}
