.hero{

    position:relative;

    width:100%;

    height:100vh;

    overflow:hidden;
}

.garage-image{

    width:100%;

    height:100%;

    object-fit:cover;
}

/* Dark overlay */

.overlay{

    position:absolute;

    inset:0;

    background:rgba(0,0,0,.35);
}

/* Center text */

.hero-text{

    position:absolute;

    top:50%;

    left:50%;

    transform:translate(-50%,-50%);

    text-align:center;

    z-index:10;
}

.hero-text h1{

    font-size:70px;

    letter-spacing:5px;

    margin-bottom:15px;
}

.hero-text p{

    font-size:24px;

    margin-bottom:40px;

    color:#ddd;
}

.hero-button{

    padding:18px 40px;

    background:#d62828;

    color:white;

    text-decoration:none;

    border-radius:6px;

    font-size:20px;

    transition:.3s;
}

.hero-button:hover{

    background:#ef233c;

    transform:scale(1.05);
}


/* WELCOME */

.welcome{

    padding:120px 20px;

    background:#171717;
}

.welcome-text{

    max-width:900px;

    margin:auto;

    text-align:center;
}

.welcome h2{

    font-size:48px;

    margin-bottom:30px;
}

.welcome p{

    color:#bdbdbd;

    font-size:22px;

    line-height:1.8;
}

/* SERVICES */

/* Shared section headings */

.section-heading {
    max-width: 760px;
    margin: 0 auto 55px;
    text-align: center;
}

.section-label {
    margin-bottom: 12px;
    color: #d62828;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.section-heading h2 {
    margin-bottom: 18px;
    font-size: clamp(36px, 5vw, 52px);
}

.section-heading > p:last-child {
    color: #bdbdbd;
    font-size: 18px;
    line-height: 1.7;
}

/* Services */

.services-preview {
    padding: 110px 6%;
    background: #111;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1300px;
    margin: 0 auto;
}

.service-card {
    position: relative;
    min-height: 310px;
    padding: 34px;
    overflow: hidden;
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.055),
            rgba(255, 255, 255, 0.015)
        );
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        background 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(214, 40, 40, 0.7);
    background:
        linear-gradient(
            145deg,
            rgba(214, 40, 40, 0.1),
            rgba(255, 255, 255, 0.025)
        );
}

.service-number {
    margin-bottom: 36px;
    color: rgba(255, 255, 255, 0.16);
    font-size: 42px;
    font-weight: 700;
}

.service-card h3 {
    margin-bottom: 18px;
    font-size: 25px;
}

.service-card p {
    margin-bottom: 28px;
    color: #b8b8b8;
    line-height: 1.7;
}

.service-card a {
    color: white;
    font-weight: 700;
    text-decoration: none;
}

.service-card a:hover {
    color: #ef4444;
}

/* Recent work */

.work-preview {
    padding: 110px 6%;
    background: #181818;
}

.work-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1300px;
    margin: 0 auto;
}

.work-card {
    position: relative;
    min-height: 420px;
    overflow: hidden;
    border-radius: 12px;
    text-decoration: none;
}

.work-card img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.work-card:hover img {
    transform: scale(1.07);
}

.work-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 28px;
    background:
        linear-gradient(
            to top,
            rgba(0, 0, 0, 0.9),
            rgba(0, 0, 0, 0.05) 65%
        );
}

.work-overlay h3 {
    margin-bottom: 8px;
    color: white;
    font-size: 25px;
}

.work-overlay span {
    color: #dedede;
}

.section-action {
    margin-top: 45px;
    text-align: center;
}

.secondary-button {
    display: inline-block;
    padding: 14px 28px;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 5px;
    text-decoration: none;
    transition:
        background 0.25s ease,
        border-color 0.25s ease;
}

.secondary-button:hover {
    background: #d62828;
    border-color: #d62828;
}

/* Reviews */

.reviews-preview {
    padding: 110px 6%;
    background: #111;
}

.review-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.review-card {
    padding: 36px;
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.05),
            rgba(255, 255, 255, 0.015)
        );
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
}

.review-stars {
    margin-bottom: 22px;
    color: #d62828;
    font-size: 20px;
    letter-spacing: 4px;
}

.review-text {
    margin-bottom: 24px;
    color: #d0d0d0;
    font-size: 17px;
    line-height: 1.8;
}

.review-author {
    color: #888;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

@media (max-width: 1000px) {
    .service-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .work-grid {
        grid-template-columns: 1fr;
    }

    .work-card {
        min-height: 360px;
    }

    .review-grid {
    grid-template-columns: 1fr;
    }
}

@media (max-width: 650px) {
    .services-preview,
    .work-preview,
    .reviews-preview {
    padding: 80px 20px;
}

    .service-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        min-height: auto;
    }
}