/* Video BG, İkon Stilleri, Genel Yardımcı Sınıflar */

.feature-icon {
  display: inline-flex; /* ikon ve kutu hizalaması */
  align-items: center;
  justify-content: center;
}

.material-symbols-outlined.custom-icon {
  font-variation-settings:
    'FILL' 0,
    'wght' 400,
    'GRAD' 0,
    'opsz' 24;
  color: #fff; /* beyaz renk */
  font-size: 30px; /* Bunu SVG ile aynı boy yap */
  line-height: 1;
}

* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
            background-color: #f8f9fa;
        }

        .features-section {
            background-color: #ffffff;
            padding: 80px 20px;
            position: relative;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            width: 100%;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 40px;
            align-items: stretch;
        }

        .feature-card {
            background: #ffffff;
            border: 2px solid #f0f0f0;
            border-radius: 15px;
            padding: 40px 30px;
            text-align: center;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(243, 156, 18, 0.05), transparent);
            transition: left 0.5s ease;
        }

        .feature-card:hover::before {
            left: 100%;
        }

        .feature-card:hover {
            transform: translateY(-8px);
            border-color: #f26538;
            box-shadow: 0 15px 35px rgba(243, 156, 18, 0.15);
        }

        .feature-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 30px;
            background: linear-gradient(135deg, #f26538, #f26538);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            transition: all 0.3s ease;
            box-shadow: 0 8px 20px rgba(243, 156, 18, 0.3);
        }

        .feature-card:hover .feature-icon {
            transform: scale(1.1);
            box-shadow: 0 12px 25px rgba(243, 156, 18, 0.4);
        }

        .feature-icon svg {
            width: 40px;
            height: 40px;
            stroke: white;
            stroke-width: 2;
            fill: none;
        }

        /* BAŞLIK - boşluk şişmesi olmadan dengeli satır kırımı */
        .feature-title {
            text-align: center;          
            text-wrap: balance;         
            line-height: 1.25;
            min-height: calc(1.25em * 3);
            display: flex;
            align-items: center;
            justify-content: center;
            text-transform: uppercase;
        }

        .feature-title::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background: #f26538;
            border-radius: 2px;
            transition: width 0.3s ease;
        }

        .feature-card:hover .feature-title::after {
            width: 80px;
        }

        /* AÇIKLAMA - iki yana yaslı, kelime bölme aktif */
        .feature-description {
            color: #6c757d;
            font-size: 16px;
            line-height: 1.6;
            position: relative;
            z-index: 1;
            text-align: justify;
            text-justify: inter-word;
            hyphens: auto;
            word-spacing: normal;
        }

       .features-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 0;
            background: linear-gradient(135deg, #f26538 0%, #f26538 100%);
            opacity: 0.05;
        }

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

            .features-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .feature-card {
                padding: 30px 20px;
            }

            .feature-title {
                font-size: 20px;
            }

            .feature-description {
                font-size: 15px;
            }

            .feature-icon {
                width: 70px;
                height: 70px;
            }

            .feature-icon svg {
                width: 35px;
                height: 35px;
            }
        }

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

        .feature-card {
            animation: fadeInUp 0.6s ease forwards;
            opacity: 0;
        }

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

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

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

        .feature-card:hover .feature-description {
            color: #495057;
        }
        /* Mobil için ek responsive düzeltmeler */

/* Çok küçük ekranlar için */
@media (max-width: 480px) {
    .features-section {
        padding: 40px 10px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin: 0 auto;
    }

    .feature-card {
        padding: 25px 15px;
        margin: 0 auto;
        max-width: 100%;
        border-radius: 12px;
    }

    .feature-icon {
        width: 60px;
        height: 60px;
        margin: 0 auto 20px;
        border-radius: 15px;
    }

    .feature-icon svg {
        width: 30px;
        height: 30px;
    }

    .feature-title {
        font-size: 18px;
        margin-bottom: 15px;
        min-height: auto;
        padding: 0 5px;
        line-height: 1.3;
    }

    .feature-description {
        font-size: 14px;
        line-height: 1.5;
        text-align: left;
        padding: 0;
        margin: 0;
    }

    .feature-title::after {
        width: 40px;
        height: 2px;
    }

    .feature-card:hover .feature-title::after {
        width: 50px;
    }
}

/* Tablet portrait için */
@media (min-width: 481px) and (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .feature-card {
        max-width: 500px;
        margin: 0 auto;
    }
}

/* Küçük tablet/büyük telefon için */
@media (min-width: 769px) and (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .feature-card {
        padding: 35px 25px;
    }
}

/* Grid düzeltmeleri */
@media (max-width: 350px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .feature-card {
        min-width: auto;
        margin: 0 5px;
    }
}

/* Container genişlik düzeltmeleri */
@media (max-width: 768px) {
    .container {
        max-width: 100%;
        padding: 0 10px;
    }
}

/* Hover efektlerini mobilde devre dışı bırak */
@media (hover: none) {
    .feature-card:hover {
        transform: none;
    }
    
    .feature-card:hover .feature-icon {
        transform: none;
    }
}