/* HERO */
.hero-title{
    font-family: "Nunito", sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 0.8rem;
    color: var(--color-scheme-1-text);
    /* responsive font-sizing with clamp */
    font-size: clamp(2rem, 6vw, 5.2rem);
    letter-spacing: .5px;
    display: inline-flex;
    white-space: nowrap;
    justify-content: center;
}
.hero-img{
    position: relative;
    max-height: 80vh;
    object-fit: contain;
    display:block;
}
.btn-faq{
    background: linear-gradient(135deg, var(--dodger) 0%, var(--mountain) 100%);
    border: 1px solid var(--dodger);
    border-radius: 0.5rem;
    color: var(--color-white);
}

/* WARRANTY COVERAGE */
.warranty-img {
    max-height: 550px;
    width: auto;
    margin: 0 auto;
}
.warranty-title{
    font-family: Nunito;
    text-transform: uppercase;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 500;
    margin-top: .35rem;
    color: var(--color-scheme-1-text);
}
.warranty-sub{
    font-family: Raleway;
    font-size: 1.125rem;
    line-height: 1.6;
    margin-top: .5rem;
    color: var(--color-scheme-1-text);
}


/* POPULAR */
.btn-offer{
    background: linear-gradient(135deg, var(--dodger) 0%, var(--mountain) 100%);
    border: 1px solid var(--dodger);
    border-radius: 0.5rem;
    color: var(--color-white);
}


/* Experience */
.review-card {
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.review-card:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
}
.star-rating i {
    font-size: 1rem;
    color: #fbbc04;
}


/* Modals */
.modal{
    font-family: Raleway;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: var(--color-scheme-1-text);
    position: fixed !important;
    z-index: 2147483647 !important;
}
.modal-dialog, .modal-backdrop.show {
    z-index: 2147483646 !important;
}
.modal-header{
    color: var(--color-scheme-1-text);
    border-bottom: 0px;
    background: linear-gradient(135deg, var(--dodger), var(--mountain)) bottom / 100% 2px no-repeat;
}
.modal-footer{
    border-top: 0px;
}
.btn-send{
    background: linear-gradient(135deg, var(--dodger) 0%, var(--mountain) 100%);
    border: 1px solid var(--dodger);
    border-radius: 0.5rem;
    color: var(--color-white);
}
.check-input-hide{
    background: linear-gradient(135deg, var(--dodger) 0%, var(--mountain) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
    opacity: 0%;
    transform: translate(0, 150%);
    z-index: -1;
    transition: transform 800ms, opacity 400ms, z-index 800ms;
}
.check-input{
    opacity: 100%;
    transform: translate(0, 15%);
    z-index: 0;
    transition: transform 800ms, opacity 400ms, z-index 800ms;
}
label {
    color: var(--color-scheme-1-text);
    transition: all 500ms ease-in-out;
}


/* Extra small devices (phones, portrait) */
@media (max-width: 575.98px) {
    .sticky-top{
        position: inherit;
    }
}

/* Small devices (phones, landscape) */
@media (min-width: 576px) and (max-width: 767.98px) {
    /* CSS for larger phones / small tablets */
}

/* Only for medium screens */
@media (min-width: 768px) and (max-width: 1199.98px) {
    .hero-title{
        margin-top: 5rem;
    }
    .sticky-top-wrapper{
        margin-top: -6vh !important;
    }
    .left-sticky-top{
        padding-top: 10vh;
        margin-bottom: 32rem;
    }
    .right-warranty-column{
        margin-top: -30rem;
    }
    .warranty-img {
        max-height: 400px;
    }
    .coverage{
        margin-bottom: 8vh;
    }
}

/* Large devices (desktops) */
@media (min-width: 1200px) {
    .left-sticky-top{
        top: 54%;
        transform: translate(0, -50%);
        margin-bottom: 7vh;
    }
    .coverages{
        margin-top: 2vh;
    }
    .coverage{
        margin-bottom: 15vh;
    }
    .contact-sub{
        width: 60%;
    }
    .message-form-sub{
        width: 45%;
    }
}