/* CSS styling for the whole body of the document */


body {
    margin: 0;
    padding: 10px;

    background: #d8d8d8;
    font-family: "Montserrat", sans-serif;
}


/* CSS styling for the brochure style of the document */


.brochure {
    font-family: "Montserrat", sans-serif;
    width: min(1070px, 92vw);
    margin: auto;
    background: #f7f7f7;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15),
                0 25px 60px rgba(0,0,0,0.25);
}


/* CSS styling for the logo banner at the top */


.logo-banner {
    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 15px 80px;
    background: white;
}

.logo {
    height: 75px;
    width: auto;
}

.phone-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.5px;
}

.phone-text-top,
.phone-text-bottom {
    font-size: 8px;
    font-weight: bold;
    color: #333;
}

.phone-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 5px 15px;

    background: #ff751f;
    color: white;

    text-decoration: none;

    font-size: 1.2rem;
    font-weight: bold;

    border-radius: 50px;

    transition: 0.3s ease;
}

.phone-btn:hover {
    background: #e46f10;
    transform: translateY(-2px);
}

.phone-icon {
    font-size: 1.2rem;
    color: black;
}


/* CSS styling for the hero/image section */


.hero {
    position: relative;
    height: 520px;
    overflow: hidden;
}

.hero > img {
    width: 100%;
    height: 100%;
}

.hero-icons {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    padding-left: 20px;
    margin-bottom: 30px;
}

.hero-icons img {
    height: 55px;
    width: auto;
    display: block;
}

.hero-icons img:first-child {
    height: 85px;
}

.hero-icons img:nth-child(2),
.hero-icons img:nth-child(3) {
    transform: translateY(12px);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.35);
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 60px;
    transform: translateY(-50%);
    color: white;
    max-width: 600px;
}

.hero-content h1 {
    font-size: 2rem;
    margin-bottom: 15px;
    line-height: 1.25;
    margin: 0;
    padding-left: 20px;
}

.hero-content p {
    font-size: 1rem;
    line-height: 1.5;
    margin: 0;
    padding-left: 20px;
    margin-bottom: 15px;
    padding-top: 50px;
}

.hero-content li {
    margin-bottom: 10px;
    line-height: 1.6;
}


/* CSS styling for the types of door section */


.doors-section {
    padding: 20px;
}

.door-grid {
    display: grid;
    grid-template-columns: repeat(4, 180px);
    justify-content: center;    
    column-gap: 80px;
    row-gap: 40px;
}

.door-card {
    width: 150px;
    background: #fff;
    padding: 10px 10px 16px;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.door-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    display: block;
}

.door-card h3 {
    margin: 12px 0 0;
    text-align: center;
    font-size: 11px;
    font-weight: 600;
}


/* CSS styling for the need a door fitted section */


.fitted-section {
    background: #ff751f;
    color: #fff;
    padding: 10px 20px;
    text-align: center;
}

.fitted-content {
    max-width: 900px;
    margin: 0 auto;
}

.fitted-section h1 {
    margin: 0 0 20px;
    font-size: 2.2rem;
    font-weight: 700;
    text-align: center;
    padding-bottom: 20px;
}

.fitted-section p {
    margin: 0;
    font-size: 1rem;
    text-align: left;
}

.fitted-section h2 {
    margin: 0 0 20px;
    font-size: 1.2rem;
    font-weight: 700;
    text-align: left;
}

.quote-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 10px 20px;

    background: #fff;
    color: black;

    text-decoration: none;

    font-size: 1.2rem;
    font-weight: bold;

    border-radius: 50px;

    transition: 0.3s ease;
}

.quote-btn:hover {
    background: #e8e8e8;
    transform: translateY(-2px);
}


/* CSS styling for the business opening hours section */


.opening-section {
    background: #fff;
    padding: 20px 80px;
}

.opening-card {
    background: #f7f7f7;
    display: grid;
    grid-template-columns: 1fr 550px;
    align-items: start;
    padding: 20px;
    border-radius: 8px;
}

.opening-text {
    max-width: 520px;
}

.opening-text h1 {
    margin-top: 0;
    color: #ff751f;
    font-size: 2.2rem;
    line-height: 1.15;
}

.opening-text h2 {
    margin-top: 0;
    color: #ff751f;
    font-size: 1.2rem;
    line-height: 1.15;
}

.opening-text h3 {
    margin-top: 0;
    color: black;
    font-size: 1.2rem;
    line-height: 1.15;
}

.opening-map {
    height: 100%;
}

.opening-map iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 8px;
}

.hours-table {
    margin-top: 18px;
    border-collapse: collapse;
}

.hours-table td {
    padding: 2px 0;
}

.hours-table td:first-child {
    padding-right: 60px;
    font-weight: bold;
}


/* CSS styling for the meet the boss section */


.boss-section {
    background: #fff;
    padding: 60px 80px;
}

.boss-card {
    position: relative;
    min-height: 360px;
    background: #000;
    color: #fff;
    display: grid;
    grid-template-columns: 52% 35%;
    gap: 50px;
    align-items: center;
    padding: 35px 25px;
    border-radius: 8px;
    overflow: visible;
}

.boss-image {
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    width: 360px;
    height: 520px;   
}

.boss-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 8px;
}

.boss-text h1 {
    font-size: 1.4rem;
    line-height: 1.15;
    margin: 0 0 20px;
    color: #ff751f;
}

.boss-text p {
    font-size: 0.8rem;
    line-height: 1.7;
    margin: 0;
    margin-bottom: 10px;
}


/* CSS styling for the Google reviews section */

.reviews-section {
    background: #f7f7f7;
    padding: 40px 60px;
    text-align: center;
}

.reviews-section h1 {
    margin: 0 0 30px;
    color: #ff751f;
    font-size: 1.4rem;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 28px;
    align-items: stretch;
}

.review-link {
    display: flex;
    height: 100%;

    color: inherit;
    text-decoration: none;
}

.review-card {
    display: flex;
    flex-direction: column;

    width: 100%;
    height: 100%;
    min-height: 270px;

    padding: 22px;
    box-sizing: border-box;

    background: #fff;
    border-radius: 10px;

    text-align: center;

    transition:
        background-color 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.reviews-img {
    display: block;

    width: 120px;
    max-width: 100%;
    height: auto;

    margin: 0 auto 20px;
}

.review-text {
    flex-grow: 1;

    margin: 0;

    font-size: 0.7rem;
    line-height: 1.5;
}

.review-name {
    margin: 20px 0 0;

    color: black;

    font-size: 0.9rem;
    line-height: 1.2;
}

.review-link:hover .review-card {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.review-link:focus-visible {
    outline: 3px solid #ff751f;
    outline-offset: 4px;
    border-radius: 10px;
}

.review-link:active .review-card {
    transform: translateY(-2px);
}


/* CSS styling for the most popular doors section */


.popular-doors-section {
    background: #fff;
    padding: 30px 175px;
}

.popular-doors-section h1 {
    color: #ff751f;
    text-align: center;
    font-size: 1.2rem;
    margin: 0 0 40px;
}

.popular-doors-card p {
    margin: 8px 0;
    font-size: 0.75rem;
    font-weight: 700;
}

.popular-doors-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    justify-items: center;
    column-gap: 70px;
    row-gap: 45px;
}

.popular-doors-card {
    width: 100px;
    text-align: center;
}

.popular-doors-card img {
    width: 75px;
    display: block;
    margin: 0 auto;
}

.door-btn {
    display: inline-block;
    margin-top: 2px;
    padding: 1px 14px;
    background: #ff751f;
    color: #eee;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: bold;
    border-radius: 30px;
    transition: 0.3s ease;
}

.door-btn:hover {
    background: #e46f10;
    transform: translateY(-2px);
}


/* CSS styling for the why choose us section */


.choose-section {
    background: #ff751f;
    padding: 20px 200px;
}

.choose-section h1 {
    color: #fff;
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 45px;
}

.choose-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.choose-card {
    background: #fff;
    text-align: center;
    padding: 10px 10px 40px;
    border-radius: 8px;
    position: relative;
    border-bottom: 6px solid #000;
}

.choose-card h2 {
    margin: 0 0 15px;
    font-size: 1.2rem;
}

.choose-card p {
    font-size: 0.8rem;
    margin: 0;
    line-height: 1,6;
    color: #555;
}

.choose-card img {
    padding-top: 20px;
    height:50px;
    width: 50px;
}


/* CSS styling for the what is a composite door section */


.whatis-section {
    background: #f7f7f7;
    padding: 70px 80px;
}

.whatis-content {
    max-width: 670px;
    margin: 0 auto;
    text-align: left;
}

.whatis-content h1 {
    color: #ff751f;
    font-size: 1.6rem;
    margin: 0 0 25px;
}

.whatis-content p {
    color: #222;
    font-size: 0.75rem;
    line-height: 1.8;
    margin: 0;
    text-align: left;
    font-weight: bold;
}


/* CSS styling for the frequently asked questions section */


.faq-section {
    background: #fff;
    padding: 70px 80px;
}

.faq-section h1 {
    color: #ff751f;
    text-align: center;
    font-size: 1.5rem;
    margin: 0 0 20px;
}

.faq-section p {
    color: #000;
    text-align: center;
    font-size: 0.8rem;
}

.faq-container {
    max-width: 1100px;
    margin: 0 auto;
}

.faq {
    margin-bottom: 16px;
    margin-top: 20px;
}

.faq-question {
    width: 100%;
    min-height: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 25px;
    padding: 8px 18px 8px 20px;
    background: #ff751f;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-family: inherit;
    font-size: 1rem;
    text-align: left;
    cursor: pointer;
}

.faq-question:hover {
    background: #e46f10;
}

.faq-question:focus-visible {
    outline: 3px solid #000;
    outline-offset: 3px;
}

.faq-icon {
    width: 20px;
    height: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    background: #fff;
    color: #000;
    border-radius: 50px;
}

.faq-icon i {
    font-size: 0.95rem;
    transition: transform 0.3s ease;
}

.faq-answer {
    display: none;
    background: #fff;
    color: #000;
    padding: 11px 15px;
    border: 1px solid #ddd;
    border-top: none;
    border-radius: 0 0 6px 6px;
}

.faq-answer p {
    margin: 0;
    font-size: 0.75rem;
    line-height: 1.65;
    text-align: left;
}

.faq.active .faq-answer {
    display: block;
}

.faq.active .faq-icon i {
    transform: rotate(180deg);
}


/* CSS styling for the locations banner section */


.locations-section {
    background: #000;
    color: #fff;
    padding: 20px 80px;
}

.locations-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.logoblack {
    width: auto;
    height: 75px;
    flex-shrink: 0;
}

.locations-text {
    flex: 1;
}

.locations-text h1 {
    margin: 0;
    color: #fff;
    font-size: 1.6rem;
    line-height: 1.2;
}

.location-select-wrapper {
    position: relative;
    width: 350px;
    max-width: 100%;
    flex-shrink: 0;
}

.location-select {
    display: block;
    width: 100%;
    box-sizing: border-box;

    padding: 9px 45px 9px 16px;

    background: #fff;
    color: #000;

    border: none;
    border-radius: 50px;

    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;

    cursor: pointer;

    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.location-select:focus {
    outline: 3px solid #fff;
    outline-offset: 3px;
}

.location-select-wrapper i {
    position: absolute;
    top: 50%;
    right: 20px;

    transform: translateY(-50%);

    color: #000;
    font-size: 0.9rem;

    pointer-events: none;
}

.logoblack {
    height: 75px;
    width: auto;
}


/* CSS Styling for the Contact/Email page */


.logo-banner-contact {
    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 15px 80px;
    background: white;
}

.contact-form {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 20px;
    margin-bottom: 40px;
}

.contact-form form {
    width: 500px;
    display: flex;
    flex-direction: column;
}

.contact-form h1 {
    font-size: 1.4rem;
}

.contact-form label {
    margin-bottom: 8px;
    font-size: 15px;
    font-weight: 600;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 9px;
    margin-bottom: 2px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 16px;
    box-sizing: border-box;
}

.contact-form textarea {
    height: 130px;
    resize: vertical;
}

.contact-form button {
    background: #ff751f;
    color: white;
    border: none;
    border-radius: 30px;
    padding: 15px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s ease;

}

.contact-form button:hover {
    background: #e46f10;
    transform: translateY(-2px);

}


/* CSS Styling to make page responsive on middle size tablet size screens - Anything up to 900 pixels */


@media (max-width: 900px) {
    body {
        padding: 20px;
    }

    .logo-banner {
        padding: 10px 30px;
    }

    .hero {
        height: auto;
        min-height: 0;
    }

    .hero > img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .hero-content {
        position: relative;
        top: auto;
        left: auto;
        transform: none;

        max-width: 520px;
        padding: 50px 35px 55px;
    }

    .hero-icons {
        flex-wrap: wrap;
        margin-bottom: 0;
    }
    
    .door-grid {
        grid-template-columns: repeat(2, 180px);
        column-gap: 50px;
    }

    .fitted-section {
        padding: 50px 40px;
    }

    .fitted-section h1 {
        font-size: 2.1rem;
    }

    .fitted-section h2 {
        font-size: 1.6rem;
    }

    .fitted-section p {
        max-width: 100%;
        font-size: 1.1rem;
    }

    .opening-section {
        padding: 50px 40px;
    }

    .opening-card {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 40px
    }

    .opening-map img {
        height: 320px;
    }

    .boss-section {
        padding: 80px 40px;
    }

    .boss-card {
        min-height: auto;
        padding:  40px;
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .boss-image {
        position : relative;
        right: auto;
        top: auto;
        transform: none;
        width: 100%;
        height: auto;
    }

    .boss-image img {
        height: 420px;
    }

    .reviews-section {
        padding: 40px;
    }

    .reviews-section h1 {
        font-size: 1.4rem;
        line-height: 1.3;
        margin-bottom: 30px;
    }

    .reviews-grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 25px;
    }

    .review-card {
        width: 100%;
        min-height: 320px;
        box-sizing: border-box;
        padding: 22px;
    }

    .review-card img {
        max-width: 120px;
        height: auto;
        margin: 0 auto 20px;
    }

    .review-text {
        font-size: 0.95rem;
        line-height: 1.5;
    }

    .review-name {
        font-size: 1.1rem;
    }

    .popular-doors-section {
        padding: 55px 40px;
    }

    .popular-doors-section h1 {
        font-size: 1.8rem;
        margin-bottom: 28px;
    }

    .popular-doors-grid {
        grid-template-columns: repeat(2, 1fr);
        column-gap: 45px;
        row-gap: 40px;
    }

    .popular-doors-card {
        width: 135px;
    }

    .popular-doors-card img {
        width: 115px;
    }

    .popular-doors-card p {
        font-size: 0.75rem;
    }

    .door-btn {
        padding: 6px 16px;
        font-size: 0.82rem;
    }

    .choose-section {
        padding: 55px 40px;
    }

    .choose-section h1 {
        font-size: 2rem;
        margin-bottom: 35px;
    }

    .choose-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .choose-card {
        padding: 30px 22px 26px;
    }

    .choose-card i {
        font-size: 2.5rem;
        margin-bottom: 16px;
    }

    .choose-card h3 {
        font-size: 1.25rem;
        margin-bottom: 12px;
    }

    .choose-card p {
        font-size: 1rem;
        line-height: 1.5;
    }

    .locations-section {
        padding: 25px 35px;
    }

    .locations-content {
        gap: 25px;
    }

    .logoblack {
        height: 60px;
    }

    .locations-text h1 {
        font-size: 1.35rem;
    }

    .location-select-wrapper {
        width: 260px;
        max-width: 100%;
    }

    .location-select {
        width: 100%;
        padding: 9px 45px 9px 16px;
        font-size: 0.9rem;
    }

    .logo-banner-contact {
        padding: 15px 40px;
        justify-content: center;
    }

    .contact-form {
        width: 90%;
        max-width: 650px;
        margin: 50px auto;
        padding: 35px;
        box-sizing: border-box;
    }

    .contact-form h1 {
        font-size: 2rem;
        text-align: center;
    }

    .contact-form input,
    .contact-form textarea {
        width: 100%;
        box-sizing: border-box;
        font-size: 1rem;
    }

    .contact-form button {
        width: 100%;
        font-size: 1rem;
        padding: 14px;
    }

}


/* CSS Styling for intermediate size screens: small laptops and large tablets */

@media (min-width: 901px) and (max-width: 1050px) {

    .brochure {
        width: min(100%, 960px);
    }

    .logo-banner {
        padding: 15px 45px;
    }

    .hero-content {
        left: 40px;
        max-width: 560px;
    }

    .quote-banner {
        padding: 16px 40px;
    }

    .banner-content {
        gap: 15px;
    }

    .banner-content h2 {
        font-size: 16px;
    }

    .quote-form input {
        width: 170px;
    }

    .door-grid {
        grid-template-columns: repeat(4, 150px);
        column-gap: 45px;
    }

    .door-card {
        width: 140px;
        box-sizing: border-box;
    }

    .opening-section {
        padding: 30px 40px;
    }

    .opening-card {
        grid-template-columns: 1fr 430px;
        gap: 25px;
    }

    .boss-section {
        padding: 60px 40px;
    }

    .boss-card {
        grid-template-columns: 50% 40%;
        gap: 30px;
    }

    .boss-image {
        right: 25px;
        width: 320px;
        height: 470px;
    }

    .reviews-section {
        padding: 40px;
    }

    .reviews-grid {
        display: grid;
        grid-template-columns: repeat(2, 320px);
        justify-content: center;
        gap: 30px;
    }

    .review-card {
        width: 320px;
        min-height: 280px;
        padding: 22px;
        box-sizing: border-box;
    }

    .reviews-img {
        width: 110px;
        margin: 0 auto 18px;
    }

    .review-text {
        font-size: 0.95rem;
        line-height: 1.5;
    }

    .review-name {
        font-size: 1.05rem;
    }

    .popular-doors-section {
        padding: 40px 80px;
    }

    .popular-doors-grid {
        column-gap: 40px;
    }

    .choose-section {
        padding: 30px 70px;
    }

    .whatis-section,
    .faq-section {
        padding-left: 50px;
        padding-right: 50px;
    }

    .locations-section {
        padding: 20px 40px;
    }

    .locations-content {
        gap: 25px;
    }

    .logoblack {
        height: 60px;
    }

    .locations-text h1 {
        font-size: 1.35rem;
    }

    .location-select-wrapper {
        width: 280px;
        max-width: 100%;
        flex-shrink: 1;
    }

    .location-select {
        width: 100%;
        box-sizing: border-box;
        padding: 9px 45px 9px 16px;
        font-size: 0.9rem;
    }
}


/* CSS styling to make page responsive on smaller mobile size screens - Anything under 600 pixels */


@media (max-width: 600px) {
    body {
        padding: 10px;
    }

    .logo-banner {
        flex-direction :column;
        gap: 15px;
        padding: 18px 20px;
    }

    .logo {
        height: 60px;
    }

    .hero {
        height: auto;
        min-height: 0;
        overflow: hidden;
    }

    .hero > img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .hero-content {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        transform: none;

        max-width: none;
        padding: 45px 20px 50px;
    }

    .hero-content h1 {
        font-size: 1.7rem;
        padding-left: 0;
    }

    .hero-content p {
        font-size: 1rem;
        padding: 0;
    }

    .hero-content ul {
        padding-left: 20px;
    }

    .hero-icons {
        justify-content: flex-start;
        flex-wrap: wrap;
        gap: 12px;
        padding-left: 0;
        margin-top: 18px;
        margin-bottom: 0;
    }

    .hero-icons img {
        height: 34px;
        max-width: 100%;
    }

    .hero-icons img:first-child {
        height: 52px;
    }

    .hero-icons img:nth-child(2),
    .hero-icons img:nth-child(3) {
        transform: translateY(7px);
    }
    
    .door-grid {
        grid-template-columns: 1fr;
        justify-items: center;
    }

    .door-card {
        width: 180px;
    }

    .fitted-section {
        padding: 40px 20px;
    }

    .fitted-section h1 {
        font-size: 1.7rem;
        line-height: 1.2;
        margin-bottom: 20px;
    }

    .fitted-section h2 {
        font-size: 0.8rem;
        line-height: 0.8;
        margin-bottom: 20px;
    }

    .fitted-section p {
        max-width: 100%;
        font-size: 1rem;
        line-height: 1.7;
        text-align: left;
    }

    .opening-section {
        padding: 40px 20px;
    }

    .opening-card {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 30px 20px;
    }

    .opening-text h1 {
        font-size: 1.8rem;
    }

    .opening-text h2 {
        font-size: 1.4rem;
    }

    .opening-text h3 {
        font-size: 1.4rem;
    }

    .hours-table td:first-child {
        width: 120px;
    }

    .hours-table td {
        font-size: 0.95rem;
        padding: 2px 0;
    }

    .opening-map img {
        height: 260px;
    }

    .boss-section {
        padding: 60px 20px;
    }

    .boss-card {
        min-height: auto;
        padding: 30px 20px;
        grid-template-columns: 1fr;
        gap: 25px;
        text-align: left;
    }

    .boss-text h1 {
        font-size: 1.7rem;
        line-height: 1.2;
    }

    .boss-text p {
        font-size: 1rem;
        line-height: 1.6;
    }

    .boss-image {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        width: 100%;
        height: auto;
    }

    .boss-image img {
        height: 330px;
        object-fit: cover;
    }

     .reviews-section {
        padding: 35px 20px;
    }

    .reviews-section h1 {
        font-size: 1.25rem;
        line-height: 1.3;
        margin-bottom: 25px;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .review-card {
        width: 100%;
        max-width: 380px;
        min-height: 300px;
        margin: 0 auto;
        padding: 22px 18px;
    }

    .review-card img {
        max-width: 110px;
        margin-bottom: 18px;
    }

    .review-text {
        font-size: 0.95rem;
        line-height: 1.5;
    }

    .review-name {
        font-size: 1.05rem;
        margin-top: 18px;
    }

    .popular-doors-section {
        padding: 45px 20px;
    }

    .popular-doors-section h1 {
        font-size: 1.6rem;
        margin-bottom: 25px;
    }

    .popular-doors-grid {
        grid-template-columns: repeat(2, 1fr);
        column-gap: 20px;
        row-gap: 32px;
    }

    .popular-doors-card {
        width: 120px;
    }

    .popular-doors-card img {
        width: 100px;
    }

    .popular-doors-card p {
        margin: 7px 0;
        font-size: 0.75rem;
    }

    .door-btn {
        padding: 5px 14px;
        font-size: 0.78rem;
    }

    .choose-section {
        padding: 45px 20px;
    }

    .choose-section h1 {
        font-size: 1.7rem;
        line-height: 1.2;
        margin-bottom: 30px;
    }

    .choose-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .choose-card {
        padding: 28px 20px 24px;
    }

    .choose-card i {
        font-size: 2.3rem;
        margin-bottom: 14px;
    }

    .choose-card h3 {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }

    .choose-card p {
        font-size: 0.95rem;
        line-height: 1.5;
    }

    .locations-section {
        padding: 25px 20px;
    }

    .locations-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 18px;
    }

    .logoblack {
        height: 60px;
        max-width: 100%;
    }

    .locations-text {
        width: 100%;
    }

    .locations-text h1 {
        font-size: 1.4rem;
        margin: 0;
    }

    .location-select-wrapper {
        width: 100%;
        max-width: 320px;
    }

    .location-select {
        width: 100%;
        padding: 10px 45px 10px 16px;
        font-size: 0.9rem;
    }

    .location-select-wrapper i {
        right: 18px;
    }

    .logo-banner-contact {
        padding: 20px;
        justify-content: center;
    }

    .logo-banner-contact .logo {
        height: 65px;
    }

    .contact-form {
        width: calc(100% - 40px);
        margin: 35px auto;
        padding: 25px 20px;
        box-sizing: border-box;
    }

    .contact-form h1 {
        font-size: 1.7rem;
        text-align: center;
        margin-bottom: 30px;
    }

    .contact-form label {
        font-size: 0.95rem;
    }

    .contact-form input,
    .contact-form textarea {
        width: 100%;
        box-sizing: border-box;
        padding: 12px 14px;
        font-size: 0.95rem;
    }

    .contact-form textarea {
        min-height: 160px;
    }

    .contact-form button {
        width: 100%;
        padding: 14px;
        font-size: 1rem;
    }
       
}


/* CSS Styling to fix locations banner between 601px and 665px */


@media (min-width: 601px) and (max-width: 665px) {
    .locations-section {
        padding: 24px 25px;
    }

    .locations-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 16px;
    }

    .logoblack {
        height: 60px;
        max-width: 100%;
    }

    .locations-text {
        width: 100%;
    }

    .locations-text h1 {
        margin: 0;
        font-size: 1.4rem;
    }

    .location-select-wrapper {
        width: 100%;
        max-width: 320px;
    }

    .location-select {
        width: 100%;
        box-sizing: border-box;
        padding: 10px 45px 10px 16px;
        font-size: 0.9rem;
    }

    .location-select-wrapper i {
        right: 18px;
    }
}