/* ==========================================
   ALL TOOLS PAGE
========================================== */

.all-tools-page{
    padding:130px 0 80px;
}

/* ======================
   PAGE HEADER
====================== */

.page-header{
    text-align:center;
    margin-bottom:45px;
}

.page-header h1{
    font-size:52px;
    color:#fff;
    margin-bottom:18px;
    font-weight:700;
}

.page-header p{
    max-width:850px;
    margin:0 auto;
    color:#94a3b8;
    font-size:18px;
    line-height:1.8;
}

/* ======================
   SEARCH BOX
====================== */

.tool-search{
    max-width:700px;
    margin:0 auto 45px;
}

.tool-search input{
    width:100%;
    height:60px;
    padding:0 22px;
    border:none;
    border-radius:14px;
    background:#1f2937;
    color:#fff;
    font-size:17px;
    outline:none;
    border:2px solid transparent;
    transition:.3s;
}

.tool-search input::placeholder{
    color:#94a3b8;
}

.tool-search input:focus{
    border-color:#8b5cf6;
    box-shadow:0 0 20px rgba(139,92,246,.25);
}

/* ======================
   CATEGORY BUTTONS
====================== */

.tool-categories{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:15px;
    margin-bottom:70px;
}

.tool-categories a{
    padding:12px 22px;
    border-radius:50px;
    background:#1f2937;
    color:#fff;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
    border:1px solid rgba(255,255,255,.08);
}

.tool-categories a:hover{
    background:#8b5cf6;
    transform:translateY(-2px);
}

/* ======================
   TOOL SECTIONS
====================== */

.tool-section{
    margin-bottom:80px;
}

.tool-section h2{
    color:#fff;
    font-size:34px;
    margin-bottom:30px;
    display:flex;
    align-items:center;
    gap:10px;
}

/* ======================
   GRID
====================== */

.tools-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

/* ======================
   CARD
====================== */

.tool-card{
    background:#1f2937;
    border:1px solid rgba(255,255,255,.08);
    border-radius:18px;
    padding:28px;
    text-decoration:none;
    transition:.3s;
}

.tool-card:hover{
    transform:translateY(-6px);
    border-color:#8b5cf6;
    box-shadow:0 15px 35px rgba(139,92,246,.18);
}

.tool-card i{
    font-size:34px;
    color:#8b5cf6;
    margin-bottom:18px;
}

.tool-card h3{
    color:#fff;
    font-size:22px;
    margin-bottom:12px;
}

.tool-card p{
    color:#94a3b8;
    line-height:1.7;
    margin-bottom:18px;
    min-height:55px;
}

.tool-card span{
    color:#8b5cf6;
    font-weight:600;
    display:inline-flex;
    align-items:center;
    gap:8px;
}

/* ======================
   RESPONSIVE
====================== */

@media(max-width:991px){

.tools-grid{
    grid-template-columns:repeat(2,1fr);
}

.page-header h1{
    font-size:42px;
}

}

@media(max-width:768px){

.all-tools-page{
    padding:110px 0 60px;
}

.page-header h1{
    font-size:34px;
}

.page-header p{
    font-size:16px;
}

.tool-section{
    margin-bottom:60px;
}

.tool-section h2{
    font-size:28px;
}

.tools-grid{
    grid-template-columns:1fr;
}

.tool-card{
    padding:24px;
}

.tool-search input{
    height:54px;
    font-size:16px;
}

.tool-categories{
    gap:10px;
}

.tool-categories a{
    padding:10px 18px;
    font-size:15px;
}

}


/* ======================
   No Results
====================== */

.no-results{
    text-align:center;
    padding:70px 20px;
}

.no-results h3{
    color:#fff;
    font-size:32px;
    margin-bottom:12px;
}

.no-results p{
    color:#94a3b8;
    font-size:18px;
}