/* Regular */
@font-face {
    font-family: 'Gilroy';
    src: url('font/Gilroy-Regular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

/* SemiBold */
@font-face {
    font-family: 'Gilroy';
    src: url('font/Gilroy-SemiBold.otf') format('opentype');
    font-weight: bold;
    font-style: normal;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #f8f9fa;
}

header {
    background-color: #2d2d2d;
    color: white;
    padding: 10px 0;
}

.container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    background-color: #e0e0e0;
    color: #0046a8;
    font-weight: bold;
    padding: 20px 80px;
    border-radius: 5px;
}

nav {
    margin-left: auto;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 20px;
    font-size: small;
    font-family: halyard-display, sans-serif;
    font-weight: 200;
    font-style: normal;
}

nav a {
    color: white;
    text-decoration: none;
    position: relative;
}

nav a::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: white;
    transition: width 0.3s;
    position: absolute;
    bottom: -2px;
    left: 0;
}

nav a:hover::after {
    width: 100%;
}

.status {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: small;
    font-family: halyard-display, sans-serif;
    font-weight: 200;
    font-style: normal;
}

.divider {
    width: 1px;
    height: 20px;
    background-color: white;
    transform: rotate(15deg);
    margin: 0 10px;
}

.availability {
    display: flex;
    align-items: center;
    
}

.dot {
    display: inline-block;
    width: 5px;
    height: 5px;
    background-color: #2fb80c;
    box-shadow: 0px 0px 1px 1px #2fb80c;
    border-radius: 50%;
    margin-left: 10px;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.time {
    margin-left: 5px;
    font-family: halyard-display, sans-serif;
    font-weight: 200;
    font-style: normal;
}

.quote-btn, .phone-btn {
    padding: 10px 20px;
    border: none;
    cursor: pointer;
}

.quote-btn {
    background-color: #00aaff;
    color: white;
    transform: skew(-15deg);
    font-family: halyard-display, sans-serif;
    font-weight: 700;
    font-style: normal;
    transition: background-color 0.3s;
}

.quote-btn:hover {
    background-color: #004881;
}

.phone-btn {
    background-color: #2d2d2d;
    color: white;
    border: 1px solid white;
    transform: skew(-15deg);
    font-family: 'Gilroy', sans-serif;
    font-weight: bold;
    transition: background-color 0.8s;
}

.phone-btn:hover {
    background-color: white;
    color: #2d2d2d;
}

.hero-section {
    position: relative;
    width: 100%;
    height: 750px;
    background-color: black;
    background-image: url('imgs/plumbing-cost-hydro-blog-cont-img.jpg');
    background-size: contain;
    background-position: left;
    background-repeat: repeat-x;
    display: flex;
    justify-content: center;
    color: white;
    z-index: 1; /* Ensure hero section has a z-index */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0,0,0);
    background: linear-gradient(90deg, rgba(0,0,0,0.7847514005602241) 0%, rgba(0,0,0,0.7819502801120448) 49%, rgba(0,0,0,1) 62%);
    z-index: 2; /* Ensure overlay is below other elements */
}

.hero-content {
    position: relative;
    z-index: 3; /* Ensure content is above the overlay */
    max-width: 1600px;
    width: 100%;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.hero-text {
    max-width: 600px;
}

.hero-text h1 {
    font-size: 96px;
    margin-bottom: 20px;
}

.break-after {
    display: inline-block;
}

h1 {
    line-height: 1.2; /* Adjust line height as necessary */
}

.highlight {
    position: relative;
    display: inline-block;
    padding: 0 10px;
    padding-right: 50px;
}

.highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgb(0,125,255);
    background: linear-gradient(168deg, rgba(0,125,255,1) 0%, rgba(0,125,255,1) 49%, rgba(0,112,255,1) 51%, rgba(0,112,255,1) 100%);
    clip-path: polygon(0 0, 100% 0, calc(100% - 30px) 100%, 0 100%);
    z-index: -1;
}

h1 .highlight {
    z-index: 1;
}

.info-blocks {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-block {
    display: flex;
    align-items: center;
    gap: 20px;
    font-family: poppins, sans-serif;
font-weight: 700;
font-style: oblique;

}

.info-block img {
    width: 60px;
    height: 60px;
}

.info-block h2 {
    margin: 0;
    font-size: 24px;
}

.info-block p {
    margin: 5px 0 0;
    font-family: poppins, sans-serif;
font-weight: 400;
font-style: normal;
}

.hero-image {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    z-index: 4; /* Ensure image is above the overlay */
}

.hero-image img {
    height: 100%;
}

.additional-info {
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: flex;
    gap: 20px;
    z-index: 5; /* Ensure additional-info is above everything else */
}

.rating {
    display: flex;
    gap: 20px;
}

.rating-block {
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 10px;
    
    text-align: center;
    font-family: 'Gilroy', sans-serif;
    font-weight: bold;
    transform: skew(-10deg);
}

.rating-block span {
    font-size: 32px;
    font-weight: bold;
}

.rating-block p {
    margin: 5px 0 0;
    justify-content: center;
}

.quote-section {
    background-color: #f5f5f5;
    padding: 40px 20px;
    padding-bottom: 0px;
}

.quote-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.quote-text {
    max-width: 600px;
}

.quote-text h1 {
    font-size: 72px;
    margin-bottom: 20px;
    font-family: halyard-display, sans-serif;
font-weight: 600;
font-style: normal;
}

.highlight-quote {
    color: #00aaff;
}

.quote-text p {
    font-size: 18px;
    line-height: 1.6;
    font-family: poppins, sans-serif;
font-weight: 400;
font-style: oblique;

}

.quote-image {
    display: flex;
    align-items: center;
    gap: 20px;
}

.no-callout-fees {
    
    color: white;
    padding: 20px;
    text-align: center;
    
}

.no-callout-fees img {
    width: 160px;
    height: 160px;
}



.phone-hand {
    height: 400px;
}

.quote-form-container {
    background-color: white;
    padding: 20px;
    border-radius: 0px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    max-width: 1200px;
    margin: 0 auto; /* Center horizontally */
    margin-top: -15px;
    position: relative;
    z-index: 0;
    
}

.form-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    font-family: 'Gilroy', sans-serif;
    font: bold;
}

.quote-form-container h2 {
    font-size: 24px;
    font-family: halyard-display, sans-serif;
font-weight: 600;
font-style: normal;
}

.highlight-form {
    color: #00aaff;
}

.quote-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}



.form-row {
    display: flex;
    gap: 20px;
}

.form-row input, .form-row button {
    flex: 1;
    padding: 10px;
    font-size: 12px;
    color: #b1b1b1;
    font-weight: bold;
    border: 1px solid #b1b1b1;
    border-radius: 0px;
}

.form-row button {
    background-color: #00aaff;
    color: white;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
}

.form-row button:hover {
    background-color: #0078aa;
}

.form-notes {
    display: flex;
    gap: 20px;
}

.form-notes p {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    color: #666;
}

.lock-icon::before {
    content: '🔒';
}

.response-icon::before {
    content: '🔒';
}



.unique-plumbing-section {
    padding: 20px;
    text-align: center;
    background-color: #f8f9fa;
    padding-top: 0px;
}

.unique-plumbing-section-services {
    max-width: 1200px;
    display: contents;
}

.unique-promo-banner {
    display: inline-block;
    margin-bottom: 20px;
}

.unique-promo-text {
    color: #000;
}

.unique-heading {
    font-size: 72px;
    font-weight: bold;
    font-family: halyard-display, sans-serif;
font-weight: 600;
font-style: normal;
margin: auto;
}

.highlight-services {
    color: #007bff;
}

.unique-description {
    font-size: 16px;
    margin-bottom: 30px;
    font-family: poppins, sans-serif;
font-weight: 200;
font-style: oblique;

}

.unique-services-container {
    display: flex;
    max-width: 1200px;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin: auto;
    
}

.unique-service-card {
    flex: 1 1 calc(20% - 10px); /* Adjust for maximum 4 per row */
    max-width: calc(25% - 10px); /* Adjust for maximum 4 per row */
    background-color: #ccc;
    overflow: hidden;
    position: relative;
    margin: 10px; /* Add margin if necessary for spacing */
    transition: transform 0.3s ease; /* Smooth transition effect */
    
}

.unique-service-card:hover {
    transform: scale(1.05); /* Scale up the card on hover */
}

.unique-service-image {
    height: 200px;
    background-color: #999;
    background-size: cover;
    background-position: center;
}

.unique-service-title {
    display: flex;
    align-items: center;
    justify-content: left;
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    position: absolute;
    bottom: 0;
    width: 70%;
    height: 40px; /* Adjust as needed */
    padding-left: 0px; /* Adjust padding as needed */
    z-index: 1; /* Ensure the text is on top */
}

.unique-service-title::before {
    content: '';
    position: absolute;
    top: 0;
    left: -10px;
    width: 120%;
    height: 100%;
    background-color: #002d5b;
    transform: skew(-20deg); /* Adjust the skew angle as needed */
    transform-origin: left;
    z-index: -1; /* Place the background behind the text */
}

.unique-service-icon {
    width: 40px;
    height: 100%;
    background-color: #00aeff;
    justify-content: center;
    margin-right: 10px;
}

.unique-service-icon img {
    width: 40px;
    height: 40px;
}

.brand-section {
    text-align: -webkit-center;

    margin: 20px 0;
}

.brand-section-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
    font-family: halyard-display, sans-serif;
    font-weight: 600;
    font-style: normal;
}

.brand-logos {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
 
}


.brand-logo {
    max-height: 50px;
    max-width: 100px;
    transition: transform 0.3s ease; /* Smooth transition effect */
}

.brand-logo:hover {
    transform: scale(1.05); /* Scale up the card on hover */
}

.brand-section-content {
    width: 1200px;
    text-align: left;
}   

.brand-section-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.brand-section-divider {
    flex-grow: 1;
    height: 1px;
    background-color: #d9d9d9; /* Adjust color as needed */
}

.custom-quote-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, #0073e6 70%, #004080 50%); /* Adjust the colors as needed */
    padding: 20px;
  }
  
.custom-quote-content span {
font-size: 46px;
color: white;
font-family: halyard-display, sans-serif;
font-weight: 600;
font-style: normal;
margin-left: 100px;
}


.custom-quote-buttons {
    display: flex;
    gap: 10px;
    padding: 15px 20px;
    border: none;
    cursor: pointer;
}



.custom-quote-button {
    background-color: #fff;
    color: #00aaff;
    transform: skew(-15deg);
    font-family: halyard-display, sans-serif;
    font-weight: 600;
    font-style: normal;
    transition: background-color 0.3s;
    border: none;
    padding: 10px 20px;
}

.custom-quote-button:hover {
    background-color: #00aaff;
    color: #fff;
}

.custom-phone-button {
    background-color: #004080;
    color: white;
    border: 1px solid white;
    transform: skew(-15deg);
    font-family: halyard-display, sans-serif;
    font-weight: 600;
    font-style: normal;
    transition: background-color 0.8s;
    padding: 15px 20px;
}

.custom-phone-button:hover {
    background-color: white;
    color: #2d2d2d;
}




.delivery-banner {
    width: 100%;
    height: 600px;
    display: flex;
    align-items: center;
    position: relative;
    background: #00aeff; /* Blue background */
}

.delivery-left {
    background: #00aeff; /* Blue background */
    color: white;
    padding: 10px 100px;
    width: 50%;
    box-sizing: border-box;
    transform: skew(-10deg);
    z-index: 2;
    height: 100%;
}

.delivery-content {
    transform: skew(10deg);
}

.delivery-heading {
    font-size: 72px;
    margin-bottom: 10px;
    text-align: center;
    font-family: halyard-display, sans-serif;
    font-weight: 600;
    font-style: oblique;
}

.delivery-paragraph {
    font-size: 16px;
    margin-bottom: 20px;
    line-height: 2.2;
    font-family: poppins, sans-serif;
    font-weight: 400;
    font-style: normal;
}

.delivery-info {
    display: flex;
    justify-content: space-between;
}

.delivery-info-box {
    background: white;
    color: black;
    padding: 10px;
    margin-right: 10px;
    transform: skew(-10deg);
    width: 45%;
    box-sizing: border-box;
    height: 120px;
}

.info-header {
    display: flex;
    align-items: center;
    margin: 0;
}

.info-image {
    width: 50px; /* Adjust the size as needed */
    height: auto;
    margin-right: 10px; /* Space between the image and heading */
}

.delivery-info-heading {
    font-size: 16px;
    font-family: halyard-display, sans-serif;
font-weight: 600;
font-style: normal;
    color: #00aeff;
    margin: 0;
}

.delivery-info-text {
    font-size: 12px;
    margin: 0;
    font-family: poppins, sans-serif;
    font-weight: 400;
    font-style: normal;
}

.delivery-right {
    position: absolute;
    width: 60%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    background-size: cover;
    left: 40%;
    background-image: url("imgs/I-am-a-plumber-ΓÇô-what-do-I-need-in-my-business-terms-and-conditions1.webp");
}

.delivery-image {
    width: 100%;
    height: auto;
}

.delivery-banner::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 5px;
    background: white;
    transform: skew(-10deg);
    z-index: 3;
}

.delivery-right::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0%;
    height: 5px;
    width: 100%;
    background: white;
    z-index: 3;
}
.delivery-left::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: -50%;
    height: 5px;
    width: 200%;
    background: white;
    z-index: 3;
}



.PayLater-section {
    width: 1280px;
    text-align: center;
    margin: auto;
    background-color: #f8f9fa;
    filter: drop-shadow(0px 8px 5px #606467);
    margin-top: -50px;
    z-index: 10;
    position: relative;
}

.PayLater-banner {
    background-color: #004881;
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-around;
    
    position: relative;
}

.PayLater-logo {
    background-color: white;
    color: #004f9e;
    border-radius: 100%;
    padding: 80px;
    font-size: 24px;
    font-weight: bold;
}

.PayLater-content h2 {
    margin: 0;
    font-size: 18px;
    font-family: poppins, sans-serif;
    font-weight: 400;
    font-style: normal;
}

.PayLater-content h1 {
    margin: 0px 0;
    margin-bottom: 10px;
    font-size: 72px;
    font-family: halyard-display, sans-serif;
    font-weight: 600;
    font-style: normal;
}



.PayLater-contact {
    display: flex;
    gap: 10px;
}

.PayLater-button {
    background-color: #004881;
    border: white;
    border-style: solid;
    border-width: 1px;
    padding: 10px 20px;
    color: white;
    cursor: pointer;
    font-size: 16px;
    font:bold;
    transition: 0.8s;
    font-family: halyard-display, sans-serif;
    font-weight: 600;
    font-style: normal;
}

.PayLater-quote {
    background-color: white;
    border: white;
    border-style: solid;
    border-width: 1px;
    padding: 10px 20px;
    color: #00aeff;
    cursor: pointer;
    font-size: 16px;
    font:bold;
    transition: 0.8s;
    font-family: halyard-display, sans-serif;
    font-weight: 600;
    font-style: normal;
}


.PayLater-quote:hover {
    background-color: #004881;
    color: white;
}

.PayLater-button:hover {
    background-color: #fff;
    color: #00aeff;
}


.PayLater-card {
    height: 300px;
}

.PayLater-card img {
    padding: 0;
    height: 450px;
    margin: 0;
    margin-top: -150px;
    z-index: 0;
    position: relative;
}
.PayLater-info {
    display: flex;
    justify-content: space-around;
    padding: 20px;
    background-color: #f2f2f2;
    z-index: 1;
    position: relative;
}

.PayLater-step {
    display: flex;
    align-items: center;
    max-width: 300px; /* Adjusted for more space */
    padding-right: 20px; /* Space for the pseudo-element */
    position: relative;
    text-align: left;
    font-family: halyard-display, sans-serif;
    font-weight: 600;
    font-style: normal;

}

.PayLater-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -10px; /* Position the line in the middle of the space */
    height: 70%; /* Adjust height as needed */
    border-right: 1px solid #ccc; /* Grey vertical line */
}

.PayLater-step h3 {
    margin: 0;
    font-size: 36px;
    color: #00aeff;
    flex-shrink: 0; /* Prevent shrinking */
}

.PayLater-step-content {
    margin-left: 10px;
}

.PayLater-step h4 {
    margin: 0;
    font-size: 20px;
}

.PayLater-step p {
    margin: 0;
    font-size: 14px;
    color: #666;
    font-family: poppins, sans-serif;
    font-weight: 400;
    font-style: normal;
}



.FAQ-section {
    padding: 20px;
    max-width: 1200px;
    margin: auto;
    background-color: #f8f9fa;
}

.FAQ-title {
    font-size: 72px;
    margin-bottom: 10px;
    text-transform: capitalize;
    font-family: halyard-display, sans-serif;
    font-weight: 600;
    font-style: normal;
}

.FAQ-highlight {
    color: #00aaff;
}

.FAQ-description {
    font-size: 16px;
    margin-bottom: 20px;
    color: #555;
    font-family: poppins, sans-serif;
    font-weight: 400;
    font-style: normal;
    line-height: 2.2;
    
}



.FAQ-questions {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.FAQ-question {
    flex-basis: calc(50% - 20px);
    padding: 15px 0;
    border-bottom: 2px dotted #ddd;
    cursor: pointer;
    margin: 10px 0;
}

.FAQ-question-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.FAQ-question-text {
    font-size: 1.2em;
    color: #333;
    font-family: halyard-display, sans-serif;
font-weight: 500;
font-style: normal;
}

.FAQ-toggle {
    font-size: 1.5em;
    color: black;
    transition: transform 0.8s;
}

.FAQ-question:hover .FAQ-question-text {
    color: #00aaff;
}
.FAQ-answer {
    display: none;
    margin-top: 10px;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    font-family: poppins, sans-serif;
    font-weight: 400;
    font-style: normal;
}

.FAQ-question.active .FAQ-answer {
    display: block;
    opacity: 1;
    animation: fadeIn 0.5s ease-in-out;
}

.FAQ-question.active .FAQ-toggle {
    transform: rotate(405deg); /* Changes the + to x when open */
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.brandcallout-container {
    display: flex;
    align-items: center;
    background-color: #e5e7eb; /* light gray background */
    padding: 80px 20px;
    border-radius: 8px;
    justify-content: center;
}

.brandcallout-logo {
    background-color: white;
    border-radius: 50%;
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    color: #1d4ed8; /* blue color */
    margin-right: 20px;
}

.brandcallout-content {
    max-width: 800px;

}

.brandcallout-content h2 {
    font-size: 36px;
        font-family: halyard-display, sans-serif;
    font-weight: 600;
    font-style: normal;
    color: #1f2937; /* dark gray color */
    margin: 0;
}

.brandcallout-content p {
    font-size: 16px;
    color: #374151; /* medium gray color */
    margin: 10px 0;
    font-family: poppins, sans-serif;
    font-weight: 400;
    font-style: normal;
    line-height: 2.2;
}

.brandcallout-link {
    font-size: 16px;
    color: #1d4ed8; /* blue color */
    text-decoration: underline;
    font-weight: bold;
    font-family: poppins, sans-serif;
    font-weight: 800;
    font-style: normal;
}

.brandcallout-link:hover {
    text-decoration: underline;
}


.testimonials-container {
    text-align: center;
    padding: 50px 20px;
    position: relative;
}

.testimonials-title {
    font-size: 72px;
    font-family: halyard-display, sans-serif;
    font-weight: 600;
    font-style: normal;
    margin-bottom: 20px;
}

.testimonials-slider {
    display: flex;
    overflow: hidden;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.testimonial-item {
    min-width: 300px;
    margin: 0 10px;
    padding: 20px;
    background: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    position: relative;
}

.testimonial-quote img {
    
    color: #00aaff;

   
}

.testimonial-name {
    font-size: 1.8em;
    font-weight: bold;
    margin-bottom: 10px;
    margin-top: 0;
    font-family: halyard-display, sans-serif;
    font-weight: 600;
    font-style: normal;
}

.testimonial-text {
    font-size: 1em;
    color: #555;
    margin-bottom: 15px;
    font-family: poppins, sans-serif;
    font-weight: 400;
    font-style: normal;
}

.testimonial-rating {
    font-size: 1.2em;
    color: #ffd700;
    margin-bottom: 10px;
}

.testimonial-location {
    font-size: 1em;
    color: #00aaff;
    font-family: poppins, sans-serif;
    font-weight: 400;
    font-style: normal;
}

.testimonials-slider-wrapper {
    position: relative;
    overflow: hidden;
}

.testimonials-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    
    
    background: linear-gradient(90deg, rgba(248,249,250,1) 25%, rgba(248,249,250,0) 30%, rgba(248,249,250,0) 70%, rgba(248,249,250,1) 75%);
    
    pointer-events: none;
}

.book-plumber-section {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    padding: 20px;
    max-width: 1200px;
    align-items: center;
    margin: auto;
}

.book-plumber-container {
    display: flex;
    flex-direction: column;
    width: 60%;
}

.book-plumber-text {
    margin-bottom: 20px;
    font-family: halyard-display, sans-serif;
    font-weight: 600;
    font-style: normal;

}

.book-plumber-text h1 {
    font-size: 48px;
}

.book-plumber-highlight {
    color: #00aaff;
}

.book-plumber-form-container {
    display: flex;
    flex-direction: column;
}

.book-plumber-form {
    display: flex;
    flex-direction: column;
    font-family: poppins, sans-serif;
    font-weight: 400;
    font-style: normal;

}

.book-plumber-form-row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-bottom: 10px;
    gap: 5px;
}

.book-plumber-input, .book-plumber-textarea {
    width: 48%;
    padding: 10px;
    margin: 5px 0;
    border: 1px solid #ccc;
    font-family: poppins, sans-serif;
    font-weight: 400;
    font-style: normal;
    
}

.book-plumber-input[name="additional-info"] {
    width: 48%;
}

.book-plumber-textarea {
    width: 100%;
    height: 80px;
    resize: none;
}

.book-plumber-button {
    width: 48%;
    padding: 10px;
    background-color: #00aaff;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 5px;
    margin-left: 4%;
    font-family: halyard-display, sans-serif;
    font-weight: 400;
    font-style: normal;
    
}

.book-plumber-info {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    font-size: 12px;
    color: #888;
    margin-top: 10px;
}

.book-plumber-info p {
    display: flex;
    align-items: center;
}

.book-plumber-lock-icon::before, .book-plumber-response-icon::before {
    content: "\1F512"; /* Unicode for lock icon */
    margin-right: 5px;
}

.book-plumber-map {
    width: 35%; /* Adjust the width as needed */
    height: 400px; /* Set a specific height for the map */
}

#book-plumber-map {
    width: 100%;
    height: 100%;
}

.footer {
    background-color: #002b5c;
    color: #ffffff;
    padding: 20px 0;
    font-family: Arial, sans-serif;
  }
  
  .footer-container {
    display: flex;
    justify-content: space-around;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
  }
  
  .footer-logo {
    display: flex;
    align-items: center;
    width: 500px;
  }
  

  
  .footer-services, .footer-quick-links, .footer-contact {
    flex: 1;
  }
  
  .footer-services h3, .footer-quick-links h3, .footer-contact h3 {
    color: #ffffff;
    position: relative;
    font-family: halyard-display, sans-serif;
    font-weight: 600;
    font-style: normal;
  }
  
  .footer-services h3::after, .footer-quick-links h3::after, .footer-contact h3::after {
    content: '';
    display: block;
    width: 25%;
    height: 2px;
    background-color: #00aaff;
    position: absolute;
    bottom: -3;
    left: 0;
  }
  
  .footer-services ul, .footer-quick-links ul {
    list-style-type: none;
    padding: 0;
  }
  
  .footer-services ul li, .footer-quick-links ul li {
    margin: 5px 0;
  }
  
  .footer-services ul li a, .footer-quick-links ul li a {
    color: #ffffff;
    text-decoration: none;
    font-family: halyard-display, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 14px;

  }
  
  .footer-quote-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #00aaff;
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 10px;
  }
  
  .footer-bottom {
    display: flex;
    justify-content: space-between;
    border-top: 3px solid #003356;
    padding-top: 10px;
    margin-top: 20px;
    max-width: 1200px;
    font-weight: 300;
    font-style: normal;
    font-size: 14px;
  }
  
  .footer-bottom p {
    margin: 5px 0;
  }
  
  .footer-bottom a {
    color: #00aaff;
    text-decoration: none;
  }
  
  

.footer-bottom-wrapper {
    text-align: -webkit-center;
}

.footer-services-by img {
    height: auto;
    width: 70px;
}