/* ============================================
   FEATURES WITH IMAGE COMPONENT STYLES
   ============================================ */

/* Ana Container */
.features-with-image-section {
    position: relative;
    padding: 100px 40px;
    background: #ffffff;
    overflow: hidden;
}

.features-with-image-container {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 45% 55%;
    gap: 0px;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Sol Taraf - Özellik Listesi */
.features-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding: 40px 20px;
    width: max-content!important;
    max-width: max-content!important;
}

.feature-badge {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 20px 35px;
    border-radius: 50px;
    font-size: 1.4rem;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    width: fit-content;
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.feature-badge:nth-child(1) {
    animation-delay: 0.1s;
}

.feature-badge:nth-child(2) {
    animation-delay: 0.2s;
}

.feature-badge:nth-child(3) {
    animation-delay: 0.3s;
}

.feature-badge:nth-child(4) {
    animation-delay: 0.4s;
}

.feature-badge:nth-child(5) {
    animation-delay: 0.5s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-badge:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.feature-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: bold;
    flex-shrink: 0;
}

/* Renk Temaları */

/* Mavi Tema */
.feature-badge.blue {
    background: #DBEAFE;
    color: #1E40AF;
}

.feature-badge.blue .feature-number {
    background: #3B82F6;
    color: white;
}

/* Mor Tema */
.feature-badge.purple {
    background: #EDE9FE;
    color: #5B21B6;
}

.feature-badge.purple .feature-number {
    background: #7C3AED;
    color: white;
}

/* Pembe Tema */
.feature-badge.pink {
    background: #FCE7F3;
    color: #BE185D;
}

.feature-badge.pink .feature-number {
    background: #EC4899;
    color: white;
}

/* Yeşil Tema */
.feature-badge.green {
    background: #D1FAE5;
    color: #065F46;
}

.feature-badge.green .feature-number {
    background: #10B981;
    color: white;
}

/* Turuncu Tema */
.feature-badge.orange {
    background: #FFEDD5;
    color: #9A3412;
}

.feature-badge.orange .feature-number {
    background: #F97316;
    color: white;
}

/* Kırmızı Tema */
.feature-badge.red {
    background: #FEE2E2;
    color: #991B1B;
}

.feature-badge.red .feature-number {
    background: #EF4444;
    color: white;
}

/* Cyan Tema */
.feature-badge.cyan {
    background: #CFFAFE;
    color: #155E75;
}

.feature-badge.cyan .feature-number {
    background: #06B6D4;
    color: white;
}

/* İndigo Tema */
.feature-badge.indigo {
    background: #E0E7FF;
    color: #3730A3;
}

.feature-badge.indigo .feature-number {
    background: #6366F1;
    color: white;
}

/* Sağ Taraf - Görsel */
.features-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 500px;
}

/* Arka Plan Şekilleri */
.background-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.15;
}

.shape-1 {
    width: 600px;
    height: 600px;
    background: #93C5FD;
    top: -100px;
    right: -100px;
}

.shape-2 {
    width: 400px;
    height: 400px;
    background: #BFDBFE;
    bottom: -50px;
    right: 100px;
}

.shape-3 {
    width: 300px;
    height: 300px;
    background: #DBEAFE;
    top: 50%;
    right: -50px;
    transform: translateY(-50%);
}

/* Ana Görsel */
.features-main-image {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 900px;
    height: 600px;
    border-radius: 50%;
    object-fit: cover;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .features-with-image-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .features-list {
        order: 2;
        align-items: center;
    }

    .features-image-wrapper {
        order: 1;
        min-height: 400px;
    }

    .feature-badge {
        width: 100%;
        max-width: 400px;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .features-with-image-section {
        padding: 60px 20px;
    }

    .features-list {
        gap: 25px;
        padding: 20px;
    }

    .feature-badge {
        font-size: 1.1rem;
        padding: 15px 25px;
    }

    .feature-number {
        width: 35px;
        height: 35px;
        font-size: 1.1rem;
    }

    .features-main-image {
        max-width: 100%;
    }

    .shape-1 {
        width: 400px;
        height: 400px;
    }

    .shape-2 {
        width: 250px;
        height: 250px;
    }

    .shape-3 {
        width: 200px;
        height: 200px;
    }
}

@media (max-width: 480px) {
    .feature-badge {
        font-size: 1rem;
        padding: 12px 20px;
        gap: 12px;
    }

    .feature-number {
        width: 30px;
        height: 30px;
        font-size: 1rem;
    }
}