/* =========================================================
   REPAIR SERVICES
========================================================= */

.repair-services {

    padding: 60px 40px;

    background: var(--color-white);

}

/* =========================================================
   HEADER
========================================================= */

.repair-services__header {

    text-align: center;

    margin-bottom: 35px;

}

/* =========================================================
   TITLE
========================================================= */

.repair-services__title {

    font-size: 30px;

    font-weight: 800;

    line-height: 1.3;

    color: var(--color-primary);

}

.repair-services__title span {

    color: var(--color-secondary);

}

/* =========================================================
   GRID
========================================================= */

.repair-services__grid {

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 16px;

}

/* =========================================================
   CARD
========================================================= */

.repair-services__card {

    background: linear-gradient(
        135deg,
        #03143f 0%,
        #07194b 55%,
        #0d2a78 100%
    );

    border-radius: var(--radius-md);

    padding: 22px;

    min-height: 220px;

    display: flex;

    flex-direction: column;

    justify-content: space-between;

    box-shadow: var(--shadow-sm);

    transition: var(--transition-fast);

}

.repair-services__card:hover {

    transform: translateY(-4px);

    box-shadow: var(--shadow-md);

}

/* =========================================================
   TOP
========================================================= */

.repair-services__top {

    display: flex;

    align-items: flex-start;

    gap: 16px;

}

/* =========================================================
   ICON
========================================================= */

.repair-services__icon {

    width: 44px;
    height: 44px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

}

.repair-services__icon svg {

    width: 34px;
    height: 34px;

    stroke: #ffffff;

    stroke-width: 1.8;

}

/* =========================================================
   CONTENT
========================================================= */

.repair-services__content {

    flex: 1;

    min-width: 0;

}

/* =========================================================
   TITLE
========================================================= */

.repair-services__content h3 {

    font-size: 17px;

    font-weight: 700;

    line-height: 1.4;

    color: #ffffff;

    margin-bottom: 8px;

}

/* =========================================================
   TEXT
========================================================= */

.repair-services__content p {

    font-size: 13px;

    line-height: 1.7;

    color: rgba(255,255,255,0.82);

    word-break: break-word;

}

/* =========================================================
   BUTTON
========================================================= */

.repair-services__btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 8px;

    height: 34px;

    padding: 0 14px;

    margin-top: 18px;

    margin-left: 60px;

    border: 1px solid rgba(255,255,255,0.22);

    border-radius: var(--radius-sm);

    font-size: 12px;

    font-weight: 600;

    color: #ffffff;

    background: rgba(255,255,255,0.04);

    transition: var(--transition-fast);

    width: fit-content;

}

.repair-services__btn:hover {

    background: rgba(255,255,255,0.10);

    border-color: rgba(255,255,255,0.35);

}

.repair-services__btn svg {

    width: 14px;
    height: 14px;

    stroke-width: 2.2;

}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1200px) {

    .repair-services__grid {

        grid-template-columns: repeat(2, 1fr);

    }

}

@media (max-width: 768px) {

    .repair-services {

        padding: 50px 25px;

    }

    .repair-services__title {

        font-size: 26px;

    }

    .repair-services__grid {

        grid-template-columns: 1fr;

    }

    .repair-services__card {

        min-height: auto;

        padding: 20px;

    }

    .repair-services__top {

        gap: 14px;

    }

    .repair-services__icon {

        width: 40px;
        height: 40px;

    }

    .repair-services__icon svg {

        width: 28px;
        height: 28px;

    }

    .repair-services__content h3 {

        font-size: 16px;

    }

    .repair-services__content p {

        font-size: 13px;

    }

    .repair-services__btn {

        margin-left: 0;

    }

}