/* ==========================================================================
   SHARED HOSTING FEATURES / SERVICES SECTION
   ========================================================================== */

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

@media (max-width: 767px) {
    .modern-services-section {
        padding-top: 70px !important;
        padding-bottom: 60px !important;
    }
}

/* Section Header Styles */
.section-badge {
    display: inline-block;
    background: rgba(255, 123, 44, 0.12);
    border: 1px solid rgba(255, 123, 44, 0.3);
    color: #ff7b2c;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.5px;
    padding: 5px 14px;
    border-radius: 999px;
    margin-bottom: 14px;
}

.section-heading h2 {
    font-size: 36px !important;
    font-weight: 800 !important;
    color: #071a52;
    margin-bottom: 14px;
    line-height: 1.25;
}

.text-slate {
    color: #64748b !important;
    font-size: 16px;
    line-height: 1.6;
}

/* Feature Cards Grid */
.modern-service-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 32px 26px;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    transition: all 0.35s ease;
}

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

/* Icon Box Fix */
.modern-service-card .service-icon {
    width: 58px;
    height: 58px;
    border-radius: 16px;
    background: #ff7b2c;
    background: linear-gradient(135deg, #ff7b2c 0%, #ff5e00 100%);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin-bottom: 22px;
    box-shadow: 0 8px 18px rgba(255, 123, 44, 0.3);
    flex-shrink: 0;
}

.modern-service-card .service-icon i {
    color: #ffffff !important;
    font-size: 22px !important;
    line-height: 1 !important;
    display: inline-block;
}

/* Typography */
.modern-service-card h4 {
    font-size: 19px;
    font-weight: 800;
    color: #071a52;
    margin-bottom: 10px;
}

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

/* Feature Checklist */
.service-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;
}

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

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