/* =========================================================
   HERO REPAIR
========================================================= */

.hero-repair {

    position: relative;

    min-height: 720px;

    overflow: hidden;

    display: flex;
    align-items: center;

    padding: 60px 40px;

    background: #03143f;

}


/* =========================================================
   REMOVE ORANGE OUTLINE
========================================================= */

.hero-repair__title {

    color: #ffffff;

    -webkit-text-stroke: 0px transparent;

    text-shadow:
        0 3px 18px rgba(0,0,0,0.55);

}

/* =========================================================
   TEXT
========================================================= */

.hero-repair__text {

    color: rgba(255,255,255,0.96);

    -webkit-text-stroke: 0px transparent;

    text-shadow:
        0 2px 12px rgba(0,0,0,0.45);

}

/* =========================================================
   LIST
========================================================= */

.hero-repair__item span {

    color: rgba(255,255,255,0.96);

    -webkit-text-stroke: 0px transparent;

    text-shadow:
        0 2px 10px rgba(0,0,0,0.45);

}

/* =========================================================
   BETTER OVERLAY
========================================================= */

.hero-repair::before {

    content: "";

    position: absolute;

    inset: 0;

    z-index: 2;

    background: linear-gradient(
        90deg,
        rgba(3,20,63,0.96) 0%,
        rgba(3,20,63,0.88) 32%,
        rgba(3,20,63,0.58) 58%,
        rgba(3,20,63,0.18) 100%
    );

}

/* =========================================================
   IMAGE
========================================================= */

.hero-repair__image {

    position: absolute;

    inset: 0;

    z-index: 1;

}

.hero-repair__image img {

    width: 100%;
    height: 100%;

    object-fit: cover;

    object-position: center;

    display: block;

}

/* =========================================================
   CONTENT
========================================================= */

.hero-repair__content {

    position: relative;

    z-index: 5;

    max-width: 520px;

    color: #ffffff;
    margin-top: 5rem;

}

/* =========================================================
   BREADCRUMB
========================================================= */

.hero-repair__breadcrumb {

    display: flex;

    align-items: center;

    gap: 10px;

    margin-bottom: 24px;

    font-size: 13px;

    color: rgba(255,255,255,0.72);

}

.hero-repair__breadcrumb a {

    color: rgba(255,255,255,0.72);

    text-decoration: none;

    transition: var(--transition-fast);

}

.hero-repair__breadcrumb a:hover {

    color: #ffffff;

}

/* =========================================================
   SUBTITLE
========================================================= */

.hero-repair__subtitle {

    display: inline-block;

    font-size: 16px;

    font-weight: 800;

    letter-spacing: 0.5px;

    color: var(--color-secondary);

    margin-bottom: 18px;

}

/* =========================================================
   TITLE
========================================================= */

.hero-repair__title {

    font-size: 58px;

    font-weight: 800;

    line-height: 1.05;

    letter-spacing: -2px;

    color: #ffffff;

    margin-bottom: 24px;

}

/* =========================================================
   TEXT
========================================================= */

.hero-repair__text {

    font-size: 18px;

    line-height: 1.7;

    color: rgba(255,255,255,0.88);

    margin-bottom: 32px;

}

/* =========================================================
   LIST
========================================================= */

.hero-repair__list {

    display: flex;

    flex-direction: column;

    gap: 14px;

    margin-bottom: 38px;

}

/* =========================================================
   ITEM
========================================================= */

.hero-repair__item {

    display: flex;

    align-items: center;

    gap: 12px;

}

.hero-repair__item svg {

    width: 18px;
    height: 18px;

    stroke: #2563eb;

    stroke-width: 2.5;

    flex-shrink: 0;

}

.hero-repair__item span {

    font-size: 15px;

    font-weight: 500;

    color: #ffffff;

}

/* =========================================================
   ACTIONS
========================================================= */

.hero-repair__actions {

    display: flex;

    align-items: center;

    gap: 14px;

    flex-wrap: wrap;

}

/* =========================================================
   BTN
========================================================= */

.hero-repair__btn {

    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 10px;

    height: 48px;

    padding: 0 22px;

    border-radius: var(--radius-md);

    text-decoration: none;

    font-size: 14px;

    font-weight: 700;

    transition: var(--transition-fast);

}

.hero-repair__btn svg {

    width: 16px;
    height: 16px;

    stroke-width: 2.4;

}

/* =========================================================
   PRIMARY
========================================================= */

.hero-repair__btn--primary {

    background: var(--color-secondary);

    color: #ffffff;

}

.hero-repair__btn--primary:hover {

    background: var(--color-secondary-hover);

    transform: translateY(-2px);

}

/* =========================================================
   OUTLINE
========================================================= */

.hero-repair__btn--outline {

    border: 1px solid rgba(255,255,255,0.28);

    color: #ffffff;

    background: rgba(255,255,255,0.03);

}

.hero-repair__btn--outline:hover {

    background: rgba(255,255,255,0.08);

    border-color: rgba(255,255,255,0.45);

}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1200px) {

    .hero-repair {

        min-height: auto;

        padding: 60px 35px;

    }

    .hero-repair__title {

        font-size: 48px;

    }

}

@media (max-width: 768px) {

    .hero-repair {

        padding: 50px 25px;

    }

    .hero-repair__content {

        max-width: 100%;

    }

    .hero-repair__breadcrumb {

        margin-bottom: 18px;

        font-size: 12px;

    }

    .hero-repair__subtitle {

        font-size: 14px;

    }

    .hero-repair__title {

        font-size: 38px;

        line-height: 1.08;

    }

    .hero-repair__text {

        font-size: 15px;

    }

    .hero-repair__item span {

        font-size: 14px;

    }

    .hero-repair__actions {

        flex-direction: column;

        align-items: stretch;

    }

    .hero-repair__btn {

        width: 100%;

    }

}