/* * SA Coating - SERVICES DIRECTORY STYLES
 * Focus: Catalog Grid, Industries, Process
 */

/* --- 1. HERO --- */
.services-hero {
    background-color: #0f1115;
    padding: 140px 0 100px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

/* --- 2. CATALOG GRID --- */
.catalog-card {
    background: white;
    border: 1px solid #e0e5eb;
    border-radius: 6px;
    overflow: hidden;
    transition: 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
}
.catalog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    border-color: var(--primary);
}

.catalog-icon-wrapper {
    background: #f8f9fa;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid #eee;
    transition: 0.3s;
}
.catalog-card:hover .catalog-icon-wrapper {
    background: var(--primary-dim);
}
.catalog-icon-wrapper i {
    font-size: 3rem;
    color: var(--dark);
    transition: 0.3s;
}
.catalog-card:hover .catalog-icon-wrapper i {
    color: var(--primary);
    transform: scale(1.1);
}

.catalog-body { padding: 30px; flex-grow: 1; }
.catalog-footer { 
    padding: 20px 30px; 
    border-top: 1px solid #eee;
    display: flex; justify-content: space-between; align-items: center;
}

/* --- 3. INDUSTRIES SECTORS --- */
.sector-card {
    position: relative;
    height: 300px;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    background: #000;
}
.sector-bg {
    position: absolute; top:0; left:0; width:100%; height:100%;
    object-fit: cover; opacity: 0.6; transition: 0.5s;
}
.sector-card:hover .sector-bg { opacity: 0.4; transform: scale(1.1); }
.sector-content {
    position: relative; z-index: 2;
    padding: 30px;
    width: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
}
.sector-icon {
    font-size: 2rem; color: var(--primary); margin-bottom: 10px;
}

/* --- 4. PROCESS STEPS (Horizontal) --- */
.process-step-h {
    text-align: center;
    position: relative;
    padding: 0 20px;
}
.ps-number {
    font-size: 4rem;
    font-weight: 900;
    color: rgba(0,0,0,0.05);
    line-height: 1;
    margin-bottom: -20px;
    position: relative; z-index: 0;
}
.ps-icon {
    width: 80px; height: 80px;
    background: white; border: 1px solid #eee;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; color: var(--primary);
    margin: 0 auto 20px;
    position: relative; z-index: 1;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* Mobile */
@media (max-width: 768px) {
    .process-step-h { margin-bottom: 40px; }
}