/* Tools Section Styles */
#fh5co-tools {
    padding: 80px 0;
    background-color: #1a2332;
    background: linear-gradient(135deg, #1a2332 0%, #2F3C4F 100%);
}

#fh5co-tools .fh5co-heading h2 {
    color: #fff;
}

#fh5co-tools .fh5co-heading p {
    color: #b8c5d1;
}

.tool-card {
    background: #fff;
    border-radius: 12px;
    padding: 30px 25px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.tool-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.tool-card.coming-soon {
    opacity: 0.7;
    cursor: not-allowed;
}

.tool-card.coming-soon:hover {
    transform: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.tool-icon {
    text-align: center;
    margin-bottom: 20px;
}

.tool-icon i {
    font-size: 48px;
    color: #2F3C4F;
    transition: color 0.3s ease;
}

.tool-card:hover .tool-icon i {
    color: #f39c12;
}

.tool-content {
    flex-grow: 1;
    text-align: center;
    margin-bottom: 20px;
}

.tool-content h3 {
    font-size: 24px;
    font-weight: 600;
    color: #2F3C4F;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.tool-card:hover .tool-content h3 {
    color: #f39c12;
}

.tool-content p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.tool-features {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.feature-tag {
    background: #e9ecef;
    color: #495057;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.tool-card:hover .feature-tag {
    background: #f39c12;
    color: #fff;
}

.tool-action {
    text-align: center;
    margin-top: auto;
}

.tool-link {
    color: #2F3C4F;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.tool-link i {
    transition: transform 0.3s ease;
}

.tool-card:hover .tool-link {
    color: #f39c12;
}

.tool-card:hover .tool-link i {
    transform: translateX(4px);
}

.tool-link.disabled {
    color: #adb5bd;
    cursor: not-allowed;
}

.tool-link.disabled:hover {
    color: #adb5bd;
}

.tool-link.disabled i {
    transform: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    #fh5co-tools {
        padding: 60px 0;
    }
    
    .tool-card {
        padding: 25px 20px;
        margin-bottom: 20px;
    }
    
    .tool-icon i {
        font-size: 40px;
    }
    
    .tool-content h3 {
        font-size: 20px;
    }
    
    .tool-content p {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .tool-card {
        padding: 20px 15px;
    }
    
    .tool-icon i {
        font-size: 36px;
    }
    
    .tool-content h3 {
        font-size: 18px;
    }
}
