/* ================================
   Feature Section
================================ */

.feature-icon-box { 
    display: flex; 
    gap: 1.75rem; 
    flex-wrap: wrap; 
    margin-bottom: 2.5rem; 
}

.feature-item { 
    flex: 1 1 260px; 
    background: #f8faff; 
    padding: 1.8rem 1.5rem; 
    border-radius: 1rem; 
    border-top: 5px solid; 
}

.feature-item:hover { 
    background: #f8faff; 
    transform: none; 
    box-shadow: none; 
}

.feature-item h4 { 
    font-size: 1.3rem; 
    margin-bottom: 0.75rem; 
    font-weight: 700; 
}

.feature-item p { 
    color: #4a5a6e; 
    margin-bottom: 0; 
    line-height: 1.6; 
}


/* ================================
   Installation Process
================================ */

.process-step { 
    display: flex; 
    align-items: center; 
    gap: 1.2rem; 
    background: #f9fbfd; 
    padding: 1.1rem 1.5rem; 
    border-radius: 50px; 
    margin-bottom: 0.75rem; 
    border-left: 5px solid; 
}

.step-num { 
    width: 38px; 
    height: 38px; 
    background: #0a5c8c; 
    color: #fff; 
    border-radius: 50%; 
    display: inline-flex; 
    align-items: center; 
    justify-content: center; 
    font-weight: 700; 
    flex-shrink: 0; 
}


/* ================================
   Benefits Cards
================================ */

.benefit-card { 
    background: #fff; 
    padding: 2rem 1.5rem; 
    border-radius: 1.5rem; 
    box-shadow: 0 10px 25px rgba(0,0,0,0.03); 
    text-align: center; 
    height: 100%; 
    transition: all 0.2s ease; 
    border: 1px solid #edf2f7; 
}

.benefit-card:hover { 
    box-shadow: 0 15px 35px rgba(10,92,140,0.08); 
    border-color: #cbd5e0; 
}

.benefit-icon { 
    width: 64px; 
    height: 64px; 
    background: #eef6fc; 
    border-radius: 50%; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    margin: 0 auto 1.2rem; 
}


/* ================================
   Emergency CTA
================================ */

.emergency-cta { 
    background: #f2f8ff; 
    padding: 1.8rem; 
    border-radius: 20px; 
    border-left: 6px solid #0a5c8c; 
    margin: 2rem 0 1.5rem; 
    box-shadow: 0 10px 25px rgba(0,60,120,0.04); 
}

.emergency-cta h4 { 
    color: #0a5c8c; 
    font-weight: 700; 
}


/* ================================
   Call Buttons
================================ */

.btn-call { 
    display: inline-flex; 
    align-items: center; 
    gap: 0.6rem; 
    background: linear-gradient(145deg, #0a5c8c, #1b6d9e); 
    color: #fff; 
    padding: 0.7rem 1.7rem; 
    border-radius: 40px; 
    font-weight: 600; 
    text-decoration: none; 
    transition: 0.2s ease; 
    border: none; 
}

.btn-call-alt { 
    background: linear-gradient(145deg, #e67e22, #f39c12); 
}

.btn-call:hover { 
    transform: translateY(-3px); 
    color: #fff; 
    opacity: 0.95; 
}


/* ================================
   Tables
================================ */

.table th, 
.table td { 
    vertical-align: middle; 
}


/* ================================
   Service Inline List
================================ */

.service-list-inline { 
    display: flex; 
    flex-wrap: wrap; 
    gap: 0.5rem; 
    list-style: none; 
    padding-left: 0; 
}

.service-list-inline li a { 
    background: #fff; 
    padding: 0.45rem 1.4rem; 
    border-radius: 50px; 
    font-size: 0.9rem; 
    font-weight: 500; 
    border: 1px solid #e2e8f0; 
    color: #1e293b; 
    transition: 0.2s ease; 
    display: inline-block; 
    text-decoration: none; 
}

.service-list-inline li a:hover { 
    background: #0a5c8c; 
    color: #fff; 
    border-color: #0a5c8c; 
}
