/* AEM Labs Limited - CSS Module: Quick Tools Section */
/* ================================================== */

.quick-tools-section {
    padding: 30px 0 60px;
    background: #1a1a1a;
    color: white;
}

.quick-tools-container {
    max-width: min(90%, var(--section-max-width));
    margin: 0 auto;
}

.quick-tools-section .section-label {
    background: linear-gradient(270deg, #a71c1c, #6907c5);
}

.quick-tools-section .section-header h2 {
    color: white;
}

.quick-tools-section .section-header h2::after {
    opacity: 0.75;
    width: 10%;
}

.quick-tools-section .section-header p {
    color: #ccc;
}

.tools-grid {
    padding-top: 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.tool-category {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px 24px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.tool-category h4 {
    font-size: 18px;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--accent-color);
}

.tool-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.tool-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 13px;
}

.tool-link:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent-color);
    transform: translateX(5px);
}

.tool-link i:first-child {
    color: var(--accent-color);
    width: 20px;
}

.tool-link span {
    flex: 1;
    margin-left: 12px;
    font-weight: 500;
}

.tool-link i:last-child {
    opacity: 0.5;
    font-size: 12px;
}

.tool-link:hover i:last-child {
    opacity: 1;
}

@media (max-width: 1440px) {
    .quick-tools-container {
        max-width: min(95%, var(--section-max-width));
    }

    .tools-grid {
        gap: 20px;
    }

    .tool-category {
        padding: 20px 22px;
    }

    .tool-category h4 {
        font-size: 16px;
        padding-bottom: 8px;
        margin-bottom: 16px;
    }

    .tool-link {
        padding: 12px 16px;
    }
}

@media (max-width: 480px) {
    .quick-tools-section .section-header h2::after {
        width: 25%;
    }

    .quick-tools-section {
        padding: 15px 0;
    }

    .quick-tools-container {
        max-width: min(85%, var(--section-max-width));
    }

    .tools-grid {
        padding: 0;
        gap: 12px;
    }

    .tool-category {
        padding: 15px 20px;
    }

    .tool-category h4 {
        font-size: 15px;
        padding-bottom: 6px;
    }

    .tool-link {
        padding: 10px 14px;
        border-radius: 10px;
    }

    .tool-link span {
        font-size: 12px;
    }

}