/* * SA Coating - ESTIMATE PAGE STYLES
 * Focus: Conversion, Trust Signals, Process Steps
 */

/* --- 1. HERO SECTION --- */
.estimate-hero {
    background-color: #0f1115;
    padding: 120px 0 100px;
    position: relative;
    overflow: hidden;
    min-height: 90vh; /* Full screen feel */
    display: flex;
    align-items: center;
}

.trust-badge-row {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.trust-pill {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 8px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    color: #ccc;
    font-family: var(--font-mono);
}
.trust-pill i { color: var(--accent); }

/* --- 2. PROCESS STEPS (Horizontal) --- */
.steps-wrapper {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-top: 50px;
    margin-bottom: 30px;
}
/* Connecting Line */
.steps-wrapper::before {
    content: '';
    position: absolute;
    top: 25px;
    left: 40px;
    right: 40px;
    height: 2px;
    background: rgba(255,255,255,0.1);
    z-index: 0;
}

.step-node {
    position: relative;
    z-index: 1;
    text-align: center;
    width: 30%;
}

.step-icon-circle {
    width: 50px; height: 50px;
    background: var(--dark);
    border: 2px solid var(--primary);
    color: var(--primary);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 15px;
    font-size: 1.2rem;
    transition: 0.3s;
    box-shadow: 0 0 0 5px #0f1115; /* Spacing from line */
}

.step-node:hover .step-icon-circle {
    background: var(--primary);
    color: white;
    box-shadow: 0 0 20px rgba(0, 174, 239, 0.4);
}

.step-text h5 { color: white; margin-bottom: 5px; font-size: 0.95rem; font-weight: 700; }
.step-text p { color: #888; font-size: 0.8rem; margin: 0; }

/* --- 3. VALUE PROPS (Right Side / Bottom) --- */
.value-grid-small {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 30px;
}
.value-card-small {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05);
    padding: 15px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 15px;
}
.vcs-icon {
    font-size: 1.5rem;
    color: var(--secondary);
}
.vcs-text {
    line-height: 1.2;
}
.vcs-text span {
    display: block;
    color: white;
    font-weight: 700;
    font-size: 0.9rem;
}
.vcs-text small {
    color: #666;
    font-size: 0.75rem;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .estimate-hero { padding: 100px 0; text-align: center; }
    .trust-badge-row { justify-content: center; }
    .steps-wrapper { flex-direction: column; gap: 30px; align-items: center; margin-top: 40px; }
    .steps-wrapper::before { display: none; }
    .step-node { width: 100%; }
    .value-grid-small { text-align: left; }
}