/* 08/08/2025 Section More Tools - Style révolutionnaire */
.featured-tools {
    margin: 4rem auto;
    max-width: 1200px;
    padding: 60px 40px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 30px;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.15),
        0 8px 25px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    position: relative;
    overflow: hidden;
}

/* Effet de fond animé */
.featured-tools::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(76, 175, 80, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(33, 150, 243, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(255, 107, 107, 0.05) 0%, transparent 50%);
    animation: backgroundFloat 8s ease-in-out infinite alternate;
    z-index: 1;
}

@keyframes backgroundFloat {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(-10px, -10px) scale(1.05); }
}

.featured-tools h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    text-align: center;
    font-weight: 800;
    position: relative;
    z-index: 2;
    background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.featured-tools-subtitle {
    text-align: center;
    color: #7f8c8d;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.tool-grid {
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    position: relative;
    z-index: 2;
}
.tool-card {
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    padding: 35px 25px;
    border-radius: 20px;
    text-decoration: none;
    color: #2c3e50;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1), 0 3px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    transform: translateY(0);
}

.tool-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.05) 10%, transparent 80%);
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.tool-card:hover::before {
    opacity: 1;
    transform: rotate(45deg) scale(1.1);
}

.tool-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.15), 0 6px 20px rgba(0, 0, 0, 0.08);
    border-color: #3498db;
}

.tool-card .icon-container {
    font-size: 3.5rem;
    color: #3498db;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #e3f2fd, #bbdefb);
    padding: 15px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.2);
    transition: all 0.3s ease;
}

.tool-card:hover .icon-container {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(52, 152, 219, 0.3);
}

.tool-card h3 {
    font-size: 1.6rem;
    color: #2c3e50;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.tool-card p {
    font-size: 0.95rem;
    color: #7f8c8d;
    line-height: 1.6;
}

/* Media Queries for More Tools Section */
@media (max-width: 1024px) {
    .featured-tools {
        padding: 40px 30px;
        margin: 3rem auto;
    }

    .featured-tools h2 {
        font-size: 2.2rem;
    }

    .tool-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .featured-tools {
        padding: 30px 20px;
        border-radius: 20px;
        margin: 2rem auto;
    }

    .featured-tools h2 {
        font-size: 1.8rem;
    }

    .featured-tools-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .tool-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .tool-card {
        padding: 25px 20px;
    }

    .tool-card .icon-container {
        font-size: 3rem;
        width: 70px;
        height: 70px;
    }

    .tool-card h3 {
        font-size: 1.4rem;
    }

    .tool-card p {
        font-size: 0.9rem;
    }
}

/*Suite à conserver dans tous les cas  */




        .tool-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
            margin-bottom: 30px;
        }

        .tool-card {
            background: white;
            padding: 30px 25px;
            border-radius: 15px;
            text-decoration: none;
            color: inherit;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            border: 2px solid transparent;
            text-align: center;
        }

        .tool-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.15);
            border-color: #667eea;
            text-decoration: none;
        }

        .tool-card-icon {
            font-size: 2.5em;
            margin-bottom: 15px;
        }

        .tool-card strong {
            display: block;
            font-size: 1.3em;
            margin-bottom: 10px;
            color: #333;
        }

        .tool-card span {
            color: #666;
            line-height: 1.5;
        }

        .tools-cta-text {
            color: #667eea;
            font-weight: bold;
            font-size: 16px;
        }

