@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
    box-sizing: border-box;
    border: none;
    outline: none;
    font-family: "Poppins", sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Poppins", sans-serif;
    width: 100%;
    min-height: 100vh;
    margin: 0;
    overflow-x: hidden;
}

.top-banner {
    font-family: "Poppins", sans-serif;
    background-color: black;
    text-transform: uppercase;
    padding-top: 1rem;
    padding-bottom: 1rem;
    padding-left: 10%;
    padding-right: 10%;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;

    p{
        font-weight: 600;
        font-size: 1.2rem;
        margin: 0;
    }

    span{
        color: #FD7F00;
    }

    @media(max-width:768px) {
        padding-left: 5%;
        padding-right: 5%;
        padding-top: 0.75rem;
        padding-bottom: 0.75rem;
        justify-content: center;
        text-align: center;

        p {
            font-size: 0.9rem;
        }
    }

    @media(max-width:480px) {
        padding-left: 2%;
        padding-right: 2%;
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;

        p {
            font-size: 0.75rem;
        }
    }
}

.phone-number-header {
    color: white;
}

.nav-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 4rem;
    padding: 1rem;
    width: 85%;
    margin: 0 auto;

    @media(max-width:1149px) {
        width: 95%;
    }

    @media(max-width:768px) {
        justify-content: center;
        padding: 0.75rem;
        gap: 1rem;
    }

    @media(max-width:480px) {
        padding: 0.5rem;
    }

    img {
        max-width: 100%;
        height: auto;

        @media(max-width:768px) {
            max-width: 120px;
        }
    }
}

.main-banner {
    background-image: url("/assets/deckimages/hero.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 600px;
    padding: 1rem 1rem;
    position: relative;
    gap: 2rem;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;

    @media(max-width:768px) {
        min-height: 400px;
        padding: 1.5rem 0.5rem;
        gap: 1.5rem;
    }

    @media(max-width:480px) {
        min-height: 350px;
        padding: 1rem 0.5rem;
        gap: 1rem;
    }
}

.main-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 0;
}

.main-banner > * {
    position: relative;
    z-index: 1;
}

.main-banner-title {
    color: white;
    font-size: 6rem;
    text-align: center;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 1;

    @media(max-width:768px) {
        font-size: 4rem;
    }

    @media(max-width:480px) {
        font-size: 3rem;
    }
}

.main-banner-content {
    max-width: 580px;
    padding: 1rem;
    border: 4px dashed;
    border-color: #FD7F00;
    color: white;
    font-size: 1.8rem;
    text-align: center;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 1.2;

    span{
        color: #5AACF7;
    }

    @media(max-width:768px) {
        font-size: 1.4rem;
    }

    @media(max-width:480px) {
        font-size: 1.1rem;
    }
}

.first-section{
    display: flex;

    @media(max-width:1380px) {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin-bottom: 2rem;
    }
}

.first-left {
    width: 50%;
    min-width: 720px;
    padding: 2rem 6rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: left;

    @media(max-width:1380px) {
        width: 100%;
        min-width: 100%;
    }

    @media(max-width:768px) {
        padding: 1rem;
    }
}

.first-left-title {
    text-transform: uppercase;
    font-size: 1.4rem;
    color: #2E6DA6;

    @media(max-width:480px) {
        font-size: 1rem;
    }
}

.greyline {
    width: 160px;
    height: 2px;
    background-color: lightgray;
    margin-bottom: 1rem;
}

.first-left-subtitle{
    color: #2E6DA6;
    font-size: 1.6rem;
    font-weight: 700;
    max-width: 560px;

    @media(max-width:480px) {
        font-size: 1.2rem;
    }
}

.first-left-content {
    color: black;
    line-height: 1.6;
    max-width: 820px;
    margin-top: 2rem;

    @media(max-width:480px) {
        font-size: 0.9rem;
        margin-top: 1rem;
        line-height: 1.6;
    }
}

.first-left-bottom-text {
    margin-top: 2rem;
    text-transform: uppercase;
    color: #FD7F00;
    font-size: 2rem;
    font-weight: 600;

    @media(max-width:480px) {
        font-size: 1.2rem;
        margin-top: 1rem;
    }
}

.first-right {
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url("/assets/deckimages/first_section.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 650px;
    width: 50%;

    @media(max-width:1380px) {
        width: 100%;
        height: 550px;
    }

    @media(max-width:768px) {
        height: 420px;
    }

    @media(max-width:480px) {
        height: 320px;
    }
}

.second-section{
    display: flex;

    @media(max-width:1380px) {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin-bottom: 2rem;
    }
}

.second-left {
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url("/assets/deckimages/second_section.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 650px;
    width: 50%;

    @media(max-width:1380px) {
        order: 2;
        width: 100%;
        height: 550px;
    }

    @media(max-width:768px) {
        height: 420px;
    }

    @media(max-width:480px) {
        height: 320px;
    }
}

.second-left img {
    display: none;
}

.second-right {
    width: 50%;
    padding: 2rem 6rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: left;

    @media(max-width:1380px) {
        width: 100%;
    }

    @media(max-width:768px) {
        padding: 1rem;
    }
}

.second-left-title {
    text-transform: uppercase;
    font-size: 1.4rem;
    color: #2E6DA6;

    @media(max-width:480px) {
        font-size: 1rem;
    }
}

.second-left-subtitle{
    color: #2E6DA6;
    font-size: 1.6rem;
    font-weight: 700;
    max-width: 560px;

    @media(max-width:480px) {
        font-size: 1.2rem;
    }
}

.second-left-content {
    color: black;
    line-height: 1.6;
    max-width: 820px;
    margin-top: 2rem;

    @media(max-width:480px) {
        font-size: 0.9rem;
        margin-top: 1rem;
        line-height: 1.6;
    }
}

.second-left-bottom-text {
    margin-top: 2rem;
    text-transform: uppercase;
    color: #FD7F00;
    font-size: 2rem;
    font-weight: 600;

    @media(max-width:480px) {
        font-size: 1.2rem;
        margin-top: 1rem;
    }
}

.third-section{
    display: flex;
    background-color: black;

    @media(max-width:1180px) {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
}

.third-left {
    width: 50%;
    padding: 4rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    @media(max-width:1180px) {
        width: 100%;
    }

    @media(max-width:768px) {
        padding: 1rem;
    }
}

.third-left-title {
    color: white;
    font-weight: 700;
    font-size: 2rem;
    max-width: 720px;
    text-align: center;

    @media(max-width:480px) {
        font-size: 1.4rem;
    }
}

.third-border {
    max-width: 580px;
    padding: 1rem;
    border: 4px dashed;
    border-color: #FD7F00;
    margin-top: 2rem;

    @media(max-width:480px) {
        margin-top: 1rem;
    }
}

.third-border-text {
    color: white;
    text-align: center;
    font-size: 1.6rem;

    @media(max-width:480px) {
        font-size: 1.2rem;
    }
}

.third-border-text span {
    color:#2E6DA6;
}

.third-left-button {
    background-color: #FD7F00;
    color: white;
    padding: .75rem 2rem;
    border-radius: 2px;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    margin-top: 2rem;

    @media(max-width:480px) {
        font-size: 1rem;
        margin-top: 1rem;
    }
}

.third-right {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;

    @media(max-width:1180px) {
        width: 100%;
    }

    @media(max-width:480px) {
        padding-top: 1rem;
    }
}

.third-right img {
    @media(max-width:768px) {
        width: 420px;
    }

    @media(max-width:480px) {
        width: 300px;
    }
}

.third-right-title {
    color:#FD7F00;
    font-weight: 700;
    line-height: 1.2;
    font-size: 2.5rem;
    max-width: 420px;
    text-align: center;

    @media(max-width:480px) {
        font-size: 2rem;
    }
}

.fourth-section {
    background-color: #2E6DA6;
    padding: 4rem 6rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    @media(max-width:768px) {
        padding: 1rem;
    }
}

.fourth-section-title {
    color: white;
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    text-transform: uppercase;

    @media(max-width:768px) {
        font-size: 2rem;
    }

    @media(max-width:480px) {
        font-size: 1.5rem;
    }
}

.fourth-section-subtitle {
    color: white;
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 3rem;
    max-width: 800px;

    @media(max-width:768px) {
        font-size: 1.2rem;
        margin-bottom: 2rem;
    }

    @media(max-width:480px) {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
}

.reviews-carousel {
    position: relative;
    width: 100%;
    max-width: 840px;
    display: flex;
    align-items: center;
    justify-content: center;

    @media(max-width:768px) {
        padding: 0 1rem;
    }

    @media(max-width:480px) {
        padding: 0 0.5rem;
    }
}

.reviews-container {
    display: flex;
    gap: 2rem;
    overflow: hidden;
    width: 100%;
    justify-content: center;
    flex: 1;
    padding: 0 1rem;

    @media(max-width:768px) {
        gap: 1rem;
        padding: 0;
    }

    @media(max-width:480px) {
        gap: 0.5rem;
    }
}

.review-box {
    background-color: white;
    padding: 2.5rem;
    width: clamp(280px, 90vw, 650px);
    max-width: 650px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);

    @media(max-width:768px) {
        width: clamp(260px, 92vw, 500px);
        max-width: 500px;
        padding: 2rem;
    }

    @media(max-width:480px) {
        width: 100%;
        max-width: 100%;
        padding: 1.25rem;
    }
}

.review-box.active {
    display: flex;
}

.review-stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1.5rem;
}

.review-stars .star {
    color: #2E6DA6;
    font-size: 1.5rem;
    line-height: 1;

    @media(max-width:768px) {
        font-size: 1.3rem;
    }

    @media(max-width:480px) {
        font-size: 1.2rem;
    }
}

.review-text {
    color: black;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;

    @media(max-width:768px) {
        font-size: 0.95rem;
    }

    @media(max-width:480px) {
        font-size: 0.8rem;
        line-height: 1.4;
    }
}

.reviewer-name {
    color: black;
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: auto;

    @media(max-width:768px) {
        font-size: 1rem;
    }

    @media(max-width:480px) {
        font-size: 0.95rem;
    }
}

.carousel-arrow {
    background-color: transparent;
    color: white;
    border: none;
    font-size: 3rem;
    font-weight: 700;
    width: 50px;
    height: 50px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;

    @media(max-width:768px) {
        width: 45px;
        height: 45px;
        font-size: 2.5rem;
    }

    @media(max-width:480px) {
        width: 40px;
        height: 40px;
        font-size: 2rem;
    }
}

.carousel-arrow:hover {
    opacity: 0.8;
    transform: scale(1.1);
}

.carousel-arrow:active {
    transform: scale(0.95);
}

.footer {
    background-color: #2F2F2F;
    padding: 4rem 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;

    @media(max-width:768px) {
        padding: 2rem 1rem;
        gap: 1.5rem;
    }

    @media(max-width:480px) {
        padding: 1.5rem 1rem;
        gap: 1rem;
    }

    p {
        max-width: 1020px;
        color: white;
        text-align: center;
        padding: 0 1rem;
        font-size: 0.9rem;
        line-height: 1.6;

        @media(max-width:768px) {
            font-size: 0.85rem;
        }

        @media(max-width:480px) {
            font-size: 0.8rem;
        }

        a {
            color: white;
            text-decoration: underline;
        }
    }
}

#successContent {
    display: none;
    padding: 4rem;
    background-color: white;
    border-radius: 12px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    box-sizing: border-box;

    @media(max-width:1024px) {
        padding: 2rem;
        width: 85%;
    }

    @media(max-width:768px) {
        padding: 1.5rem;
        width: 90%;
        max-width: 400px;
        top: 50%;
        transform: translate(-50%, -50%);
    }

    @media(max-width:480px) {
        padding: 1rem;
        width: 95%;
        max-width: 350px;
        top: 50%;
        transform: translate(-50%, -50%);
    }
}

#thankYou {
    color: #24225F;
    font-size: 4rem;
    font-family: "Poppins", sans-serif;
    text-align: center;
    font-weight: 300;
    margin-top: 1rem;

    @media(max-width:1024px) {
       font-size: 2rem;
    }
  }
  
  #yourRequest {
    color: #24225F;
    text-align: center;
    font-size: 1.5rem;
    font-weight: 800;
    margin-top: 1rem;
    width: 100%;

    @media(max-width:1024px) {
        font-size: 1rem;
     }
  }
  
  #successCheckIcon {
    width: 200px;
    fill: #24225F;
    margin-left: auto;
    margin-right: auto;
    display: block;

    @media(max-width:1024px) {
        width: 80px;
     }
  }

  .error-message {
    color: red;
    display: none;
    font-weight: 600;
    font-size: .9rem;

    @media(max-width:768px) {
        font-size: .7rem;
    }
  }

  .floating-container {
    font-family: "Poppins", sans-serif;
    background-color: white;
    padding: 1.5rem;
    border-radius: 24px 24px 0 24px;
    box-shadow: 3px 5px 8px rgba(0,0,0,.15);
    position: fixed;
    right: 2%;
    bottom: 3%;
    text-align: left;
    font-size: .9rem;
    line-height: 1.5rem;
    width: 540px;
    z-index: 9;
  
    @media(max-width:1024px) {
        width: 75%;
        padding: 1.5rem;
    }
  
    @media(max-width:768px) {
        width: 95%;
    }
  
    a{
        color: #0077b6;
    }
  }
  
  .floating-container-buttons{
    margin-top: 1rem;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 1rem;
  }
  
  .floating-button {
    padding: 1rem;
    font-size: 1rem;
    min-width: 140px;
    margin: 0;
    cursor: pointer;
    background-color: #204D9C;
    color: white;
    border-radius: 12px;
  
    @media(max-width:1024px) {
        padding: .75rem;
    }
  }
  
  .floating-fake-button{
    text-decoration: underline;
    cursor: pointer;
    font-size: .95rem;
  }
  
  .declined-content {
    text-align: center;
    color: white;
    margin-top: 30%;
    
    @media (max-width: 1373px) {
        margin-top: 50%;
    }
    
    @media (max-width: 1024px) {
        margin-top: 0;
    }
    
    
  }
  
  .declined-content h2 {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-size: 3rem;
    color: white;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, .5);
  
    @media(max-width:1373px) {
        font-size: 2rem;
    }
  
  }
  
  .declined-content p {
    font-family: "Poppins", sans-serif;
    font-size: 2.5rem;
    font-weight: 400;
    margin: 5px 0;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, .5);
  
    @media(max-width:1373px) {
        font-size: 1.6rem;
    }
      
  }
  
  .reset-span {
    text-decoration: underline;
    cursor: pointer;
  }


  .not-accepted-disclaimer{
    display: none;
    min-width: 320px;

    h2{
        color: white;
        font-size: 3.5rem;
        text-align: center;
        text-shadow: 1px 1px 5px rgba(0, 0, 0, .5);

        @media (max-width: 1024px) {
            font-size: 2rem;
        }
    }

    p{
        color: white;
        font-size: 2.5rem;
        text-align: center;
        text-shadow: 1px 1px 5px rgba(0, 0, 0, .5);

        @media (max-width: 1024px) {
            font-size: 1.4rem;
        }
    }
  }

  .checkbox_label{
    margin-right: .5rem;
  }