/* ==========================================================================
   MODERN SOFTWARE SERVICES SECTION
   ========================================================================== */

.modern-services-section {
    background: #f8fafc;
    padding-top: 100px;
    padding-bottom: 90px;
}

.services-title {
    font-size: 38px;
    font-weight: 800;
    color: #071a52;
    margin-bottom: 14px;
    line-height: 1.25;
}

.services-subtitle {
    color: #64748b;
    font-size: 16.5px;
    line-height: 1.7;
    max-width: 720px;
    margin: 0 auto;
}

/* Service Cards Base */
.software-service-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 35px 28px;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    transition: all 0.35s ease;
}

.software-service-card:hover {
    transform: translateY(-8px);
    border-color: #ffd6be;
    box-shadow: 0 20px 40px rgba(255, 123, 44, 0.12);
}

.featured-service {
    border: 2px solid #ff7b2c;
}

.popular-pill {
    position: absolute;
    top: -12px;
    right: 24px;
    background: linear-gradient(135deg, #ff7b2c 0%, #ff5e00 100%);
    color: #ffffff;
    font-size: 10px;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 99px;
    letter-spacing: 0.5px;
}

/* Card Icons Container Base */
.card-icon-wrap {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin-bottom: 22px;
    flex-shrink: 0;
}

.card-icon-wrap i {
    font-size: 26px !important;
    line-height: 1 !important;
    display: inline-block !important;
}

/* Soft Tinted Backgrounds with High-Contrast Icons */
.icon-orange { background: #fff3eb !important; }
.icon-orange i { color: #ff7b2c !important; }

.icon-blue   { background: #eff6ff !important; }
.icon-blue i   { color: #2563eb !important; }

.icon-purple { background: #f3e8ff !important; }
.icon-purple i { color: #9333ea !important; }

.icon-cyan   { background: #ecfeff !important; }
.icon-cyan i   { color: #0891b2 !important; }

.icon-green  { background: #f0fdf4 !important; }
.icon-green i  { color: #16a34a !important; }

.icon-amber  { background: #fffbeb !important; }
.icon-amber i  { color: #d97706 !important; }

/* Multi-Icon Layout (Telegram + WhatsApp) */
.card-icon-wrap.multi-icon-wrap {
    display: inline-flex !important;
    gap: 8px !important;
    width: auto !important;
    min-width: 60px;
    padding: 0 14px;
}

.card-icon-wrap.multi-icon-wrap i {
    font-size: 22px !important;
}

/* Card Content */
.card-tag {
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #94a3b8;
    margin-bottom: 6px;
}

.software-service-card h3 {
    font-size: 21px;
    font-weight: 800;
    color: #071a52;
    margin-bottom: 12px;
}

.software-service-card p {
    font-size: 14.5px;
    color: #64748b;
    line-height: 1.65;
    margin-bottom: 22px;
}

/* Feature Checklists */
.card-feature-list {
    list-style: none;
    padding: 0;
    margin: auto 0 0 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    border-top: 1px dashed #e2e8f0;
    padding-top: 18px;
}

.card-feature-list li {
    font-size: 13.5px;
    font-weight: 600;
    color: #334155;
    display: flex;
    align-items: center;
    gap: 10px;
}

.card-feature-list li i {
    color: #ff7b2c;
    font-size: 13px;
}

@media (max-width: 991px) {
    .services-title { font-size: 30px; }
}