/* garage-ops.css - styles moved from GarageOperatingSystem.cshtml inline attributes */

/* Six-column feature strip */
.garage-strip-6 {
    grid-template-columns: repeat(6,1fr);
    padding: 22px;
}
.garage-strip-6 .feature-item {
    padding: 18px 12px;
}
.garage-strip-6 .feature-item i {
    font-size: 28px;
    color: #2563eb;
}
.garage-strip-6 .feature-divider {
    border-left: 1px solid rgba(14, 35, 73, 0.04);
}
.garage-strip-6 .feature-item h5 {
    margin: 8px 0 6px;
    font-size: 16px;
    font-weight: 800;
    color: #07162f;
}
.garage-strip-6 .feature-item p {
    margin: 0;
    color: #64748b;
    font-size: 14px;
}

/* Everything Connected timeline */
.everything-connected-title {
    text-align: center;
    margin-bottom: 32px;
}
.everything-connected-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}
.everything-connected-step {
    flex: 1 1 0;
    text-align: center;
}
.everything-connected-step .step-icon {
    background: #e6f0ff;
    color: #2563eb;
}
.everything-connected-step h4 {
    margin-top: 12px;
    font-weight: 800;
}
.everything-connected-step p {
    margin-top: 8px;
    color: #475569;
}

.everything-connected-connector {
    width: 60px;
    height: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
}
.everything-connected-line {
    width: 100%;
    height: 2px;
    border-bottom: 2px dashed #b9cdf8;
}

/* Responsive behavior to match site patterns */
@media (max-width: 992px) {
    .everything-connected-wrapper {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 24px 16px;
    }
    .everything-connected-connector { display: none; }
}

@media (max-width: 768px) {
    .everything-connected-wrapper { grid-template-columns: 1fr; }
    .everything-connected-title { font-size: 22px; }
}
