/* ==========================================================================
   SUPPORTED APPLICATIONS STYLES
   ========================================================================== */

.supported-apps-section {
    background: #ffffff !important;
    padding-top: 90px;
    padding-bottom: 80px;
}

.app-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    padding: 30px 24px;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.35s ease;
}

.app-card:hover {
    background: #ffffff;
    border-color: #ff7b2c;
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(255, 123, 44, 0.12);
}

.app-card-icon {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.app-card-icon.wordpress { background: rgba(33, 117, 155, 0.1); color: #21759b; }
.app-card-icon.laravel { background: rgba(255, 45, 32, 0.1); color: #ff2d20; }
.app-card-icon.custom-code { background: rgba(255, 123, 44, 0.1); color: #ff7b2c; }
.app-card-icon.agency { background: rgba(7, 26, 82, 0.1); color: #071a52; }

.app-card:hover .app-card-icon {
    transform: scale(1.08);
}

.app-card h4 {
    font-size: 19px;
    font-weight: 800;
    color: #071a52;
    margin-bottom: 10px;
}

.app-card p {
    font-size: 13.5px;
    color: #64748b;
    line-height: 1.65;
    margin-bottom: 20px;
}

.app-tags {
    margin-top: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding-top: 14px;
    border-top: 1px dashed #cbd5e1;
}

.app-tags span {
    font-size: 11.5px;
    font-weight: 700;
    color: #071a52;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    padding: 3px 10px;
    border-radius: 6px;
}

.app-tags span i {
    color: #ff7b2c;
    margin-right: 4px;
}