@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&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;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    width: 100%;
    min-height: 100vh;
    margin: 0;
    overflow-x: hidden;
}

.top-banner {
    background-color: #001d3d;
    padding: 2rem;
    color: white;
    text-align: center;
    font-size: 1.8rem;
    font-weight: 500;

    @media(max-width:1024px) {
        padding: .75rem;
        font-size: 1rem;
    }

    span {
        color: #00b4d8;
    }
}

.nav-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
    padding-bottom: 1rem;
    padding-top: 1rem;

    padding-top: 1rem;
    @media(max-width:1024px) {
        gap: .5rem;
    }


    div {
        display: flex;
        align-items: center;
        justify-content: center;
        flex: 1;
    }
}

.nav-banner-left-logos {
    width: 380px;
    height: auto;

    @media(max-width:1024px) {
        width: 240px;
    }
}

.nav-banner-middle-logo {
    width: 380px;
    height: auto;

    @media(max-width:1024px) {
        width: 240px;
    }
}

.nav-banner-phone {
    color: #00b4d8;
    font-size: 2.8rem;
    font-weight: 600;
    text-decoration: none;
    min-width: 220px;

    @media(max-width:1024px) {
        font-size: 1.6rem;
    }
}

.nav-banner-right{
    display: flex;
    gap: 1rem;
    
    svg{
        fill: #00b4d8;
        width: 28px;

        @media(max-width:1024px) {
            width: 20px;
        }
    }
}

.main-banner {
    background-image: url("../img/bathroom.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 800px;

    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    padding: 2rem 10rem;
    gap: 4rem;

    @media(max-width:1024px) {
        gap: 2rem;
        padding: .5rem;
    }
}

.main-banner-image {
    width: 600px;
    height: auto;

    @media(max-width:1024px) {
        width: 300px;
    }
}

.main-banner-form-div {
    padding: 1rem;
    border-radius: 10px;
    width: 700px;

    @media(max-width:1024px) {
        width: 80%;
    }

    @media(max-width:789px) {
        width: 100%;
    }
}

.offer-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;

    @media(max-width:1024px) {
        gap: .75rem;
    }
}

.form-row {
    display: flex;
    gap: 1rem;
}

.full-width {
    width: 100%;
}

input[type="text"],
input[type="email"],
input[type="tel"] {
    width: 100%;
    padding: 1.2rem;
    font-size: 1rem;
    background-color: white;
    border-radius: 5px;

    @media(max-width:1024px) {
        padding: 1rem;
    }
}

.form-button {
    padding: 1.2rem;
    font-size: 1.4rem;
    text-transform: uppercase;
    font-weight: 600;
    border: 3px solid white;
    /* background: rgb(2,0,36);
    background: linear-gradient(180deg, rgba(2,0,36,1) 0%, rgba(0,212,255,1) 0%, rgba(63,63,171,1) 93%); */

    background: rgb(20,85,113);
    background: linear-gradient(0deg, rgba(20,85,113,1) 14%, rgba(39,170,225,1) 90%);
    color: white;
    border-radius: 12px;
    cursor: pointer;

    @media(max-width:1024px) {
        padding: 1rem;
        font-size: 1rem;
    }
}

.disclaimer {
    font-size: 0.9rem;
    color: black;
}

.disclaimer a {
    color: inherit;
}

.claim-offer {
    color: white;
    font-size: 3.4rem;
    font-weight: 900;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 1rem;
    text-shadow: 1px 1px 2px black;

    @media(max-width:1024px) {
        font-size: 2rem
    }
}

.second-banner {
    background-color: #00b4d8;
    height: 350px;
    margin-top: 8rem;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6rem;

    @media(max-width:1189px) {
        margin-top: 4rem;
    }
}

.second-banner-frame {
    width: 600px;
    height: 400px;

    @media(max-width:1189px) {
        display: none;
    }
}

.second-banner-first {
    color: white;
    font-size: 3rem;
    font-weight: 900;
    text-transform: uppercase;
    text-align: left;

    @media(max-width:1189px) {
        font-size: 2rem;
    }
}

.second-banner-second {
    color: white;
    font-size: 4rem;
    text-align: center;
    font-weight: 900;
    text-transform: uppercase;

    @media(max-width:1189px) {
        font-size: 3rem;
    }
}

.second-banner-third {
    color: white;
    font-size: 2.6rem;
    text-transform: uppercase;
    text-align: center;

    @media(max-width:1189px) {
        font-size: 2rem;
    }
}

.claim-offer-container {
    margin-top: 6rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.why-choose-div{
    display: flex;
    gap: 2rem;
    align-items: center;
}

.why-choose-line {
    border: 1px solid black;
    width: 120px;
    height: 1px;

    @media(max-width:678px) {
        display: none;
    }
}

.why-choose {
    font-size: 2.2rem;
    text-align: center;

    @media(max-width:1024px) {
        font-size: 1.8rem;
    }
}

.elegance-quality {
    font-size: 3.2rem;
    font-weight: 600;
    text-align: center;
    color: #00b4d8;
    text-transform: uppercase;
    margin-top: 1rem;

    @media(max-width:1024px) {
        font-size: 2rem;
    }
}

.claim-offer-icons {
    margin-top: 2rem;
    padding-left: 1rem;
    padding-right: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.claim-offer-single-icon {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex: 1;
    min-width: 180px;

    p {
        text-transform: uppercase;
        text-align: center;
        font-size: 1.2rem;
        font-weight: 600;
        width: 75%;

        @media(max-width:1024px) {
            font-size: 1rem;
        }
    }

    svg {
        width: 80px;
        height: 80px;

        @media(max-width:1024px) {
            width: 48px;
            height: 48px;
        }
    }
}

.claim-button {
    margin-top: 4rem;
    width: 600px;
    padding: 1.2rem;
    font-size: 1.4rem;
    text-transform: uppercase;
    font-weight: 600;
    border: 3px solid white;
    background: rgb(20,85,113);
    background: linear-gradient(0deg, rgba(20,85,113,1) 14%, rgba(39,170,225,1) 90%);
    color: white;
    border-radius: 12px;
    cursor: pointer;

    @media(max-width:1024px) {
        width: 100%;
        margin-left: auto;
        margin-right: auto;
        padding: 1rem;
        font-size: 1rem;
    }
}

.superior-products {
    margin-top: 6rem;
    background-color: #001d3d;
    min-height: 750px;
    padding: 2rem;

    @media(max-width:1024px) {
        padding: 1rem .5rem;
    }
}

.superior-heading {
    text-align: center;
    font-size: 3rem;
    color: white;

    @media(max-width:1024px) {
        font-size: 2.4rem;
    }
}

.superior-offer {
    background-color: white;
    display: flex;
    flex-wrap: wrap;
    width: 65%;
    margin: 4rem auto;

    @media(max-width:1024px) {
        width: 95%;
        margin: 2rem auto;
    }
}

.superior-offer-left {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    flex: 4;
    padding: 2rem;

    button {
        padding: 1.2rem;
        font-size: 1.4rem;
        text-transform: uppercase;
        font-weight: 600;
        border: 3px solid white;
        background: rgb(20,85,113);
        background: linear-gradient(0deg, rgba(20,85,113,1) 14%, rgba(39,170,225,1) 90%);
        color: white;
        border-radius: 12px;
        cursor: pointer;
        display: block;
        margin-left: auto;
        margin-right: auto;

        @media(max-width:1024px) {
            font-size: 1rem;
            padding: 1rem;
        }
    }

    p {
        line-height: 24px;
        font-weight: 500;

        @media(max-width:1024px) {
            font-size: .8rem;
        }
    }
}

.superior-offer-right {
    background-image: url("../img/Image\ 1.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    flex: 3;

    @media(max-width:1149px) {
        display: none;
    }
}

.single-review {
    background-color: #f1f1f1;
    width: 450px;
    height: 350px;
    border-radius: 18px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;

    svg {
        width: 28px;

        @media(max-width:1024px) {
            width: 20px;
        }
    }

    @media(max-width:1024px) {
        padding: 1rem;
        width: 400px;
        height: 300px;
    }
}

.reviews-div {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: -2rem;
}

.review-heading {
    text-transform: uppercase;
    font-weight: 600;
    font-size: 1.4rem;

    @media(max-width:1024px) {
        font-size: 1rem;
    }
}

.single-review-stars {
    display: flex;
    margin-top: 1rem;
}

.review-text {
    font-weight: 500;
    font-size: 1rem;
    margin-top: 1rem;

    @media(max-width:1024px) {
        font-size: .9rem;
    }
}

.review-author {
    font-weight: 600;
    margin-top: 2rem;
}

.reviews-image {
    display: block;
    width: 600px;
    height: auto;
    margin: 4rem auto;

    @media(max-width:1024px) {
        width: 90%;
    }
}

.review-button {
    width: 600px;
    padding: 1.2rem;
    font-size: 1.4rem;
    text-transform: uppercase;
    font-weight: 600;
    border: 3px solid white;
    background: rgb(20,85,113);
    background: linear-gradient(0deg, rgba(20,85,113,1) 14%, rgba(39,170,225,1) 90%);
    color: white;
    border-radius: 12px;
    cursor: pointer;
    display: block;
    margin-left: auto;
    margin-right: auto;


    @media(max-width:1024px) {
        font-size: 1rem;
        padding: 1rem;
        width: 90%;
    }
}

.footer {
    margin-top: 6rem;
    background-color: #001d3d;
    min-height: 500px;
    padding: 2rem 8rem;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    align-items: center;

    @media(max-width:1024px) {
        padding: 2rem;
    }

    @media(max-width: 768px) { /* For smaller mobile screens */
        flex-direction: column;
        padding: 2rem 1rem;
    }
}

.footer-left {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;

    img {
        width: 400px;
        height: auto;

        @media(max-width:1024px) {
            width: 350px;
        }

        @media(max-width:768px) {
            width: 250px; /* Adjust for mobile */
        }
    }
}

.footer-right {
    flex: 1;
    display: flex;
    gap: 2rem;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    width: 100%; /* Set to 100% for better responsiveness */
    max-width: 100%; /* Ensure it does not exceed the screen width */

    @media(max-width:1024px) {
        width: 100%;
        align-items: center;
        text-align: center; /* Center the text on mobile */
    }

    p {
        color: white;
        line-height: 24px;
        word-wrap: break-word; /* Ensure long words don't overflow */

        @media(max-width:1024px) {
            font-size: .9rem;
        }

        @media(max-width:768px) {
            font-size: .85rem;
            line-height: 20px; /* Adjust line height for mobile */
        }
    }
}

.footer-right a {
    color: inherit;
}

#successContent {
    display: none;
    padding: 8rem 4rem;
    background-color: white;
    border-radius: 12px;
}

#thankYou {
    color: #00b4d8;
    font-size: 4rem;
    font-family: "Bree Serif", serif;
    text-align: center;
    font-weight: 300;
  }
  
  #yourRequest {
    color: #00b4d8;
    text-align: center;
    font-size: 1.5rem;
    font-weight: 800;
  }
  
  #successCheckIcon {
    width: 200px;
    fill: #00b4d8;
    margin-left: auto;
    margin-right: auto;
    display: block;
  }

  .error-message {
    color: red;
    display: none;
    font-weight: 500
  }

  .floating-container {
    font-family: 'Roboto', 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: linear-gradient(180deg, rgba(2, 0, 36, 1) 0%, rgba(0, 212, 255, 1) 0%, rgba(63, 63, 171, 1) 93%);
    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: 'Open Sans', 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: 'Open Sans', 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;

    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: 2.5rem;
        }
    }

    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: 2rem;
        }
    }
  }

  .form-last-row{
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background-color: white;
    padding: 1.2rem;
    border-radius: 5px;
  }