
/* =====================================================
   WIRRAL DRAINAGE 24/7
   CLEAN RESPONSIVE STYLESHEET
   ===================================================== */

* {
    box-sizing: border-box;
}

html {
    width: 100%;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    font-family: Arial, Helvetica, sans-serif;
    color: #263746;
    background: #ffffff;
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea {
    font-family: inherit;
}

img {
    max-width: 100%;
}


/* =====================================================
   GLOBAL
   ===================================================== */

.container {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

.section {
    width: 100%;
    padding: 70px 0;
}

.light-section {
    background: #f6f8fa;
}

.section-heading {
    max-width: 720px;
    margin: 0 auto 40px;
    text-align: center;
}

.section-heading .eyebrow {
    margin-bottom: 12px;
}

.section-heading h2 {
    margin: 0 0 14px;
    color: #071b2c;
    font-size: 34px;
    line-height: 1.15;
}

.section-heading p {
    margin: 0;
    color: #687886;
    font-size: 16px;
}


/* =====================================================
   EYEBROW
   ===================================================== */

.eyebrow {
    display: inline-block;
    margin-bottom: 12px;
    color: #f47b20;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
}


/* =====================================================
   BUTTONS
   ===================================================== */

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 44px;
    padding: 9px 17px;

    border: 2px solid transparent;
    border-radius: 5px;

    font-size: 14px;
    font-weight: 800;

    text-align: center;
    cursor: pointer;
}

.button-orange {
    background: #f47b20;
    color: #ffffff;
}

.button-outline {
    border-color: rgba(255,255,255,0.65);
    color: #ffffff;
}

.button-outline:hover {
    background: #ffffff;
    color: #071b2c;
}

.full-width {
    width: 100%;
}


/* =====================================================
   HEADER
   ===================================================== */

.site-header {
    width: 100%;
    background: #ffffff;
    border-bottom: 1px solid #e2e7eb;
}

.header-inner {
    min-height: 72px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 15px;
}

.logo {
    display: flex;
    margin-left: -18px;
    flex-direction: column;
    flex-shrink: 1;
    line-height: .95;
}

.logo span {
    color: #071b2c;
    font-size: 21px;
    font-weight: 900;
    letter-spacing: 1px;
}

.logo strong {
    margin-top: 4px;
    color: #657583;
    font-size: 10px;
    letter-spacing: 2px;
}

.logo em {
    color: #f47b20;
    font-style: normal;
}

.navigation {
    display: none;
}

.header-call {
    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 10px 14px;

    background: #f47b20;
    color: #ffffff;

    border-radius: 5px;

    font-size: 13px;
    font-weight: 800;
}


/* =====================================================
   HERO
   ===================================================== */

.hero {
    width: 100%;
    background: linear-gradient(135deg, #071b2c, #0c2b43);
    color: #ffffff;
    overflow: hidden;
  padding-bottom: 25px;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 35px;

    padding-top: 35px;
    padding-bottom: 35px;
}

.hero-text {
    width: 100%;
    min-width: 0;
    text-align: center;
}

.hero h1 {
    margin: 0 auto 18px;
    color: #ffffff;
    font-size: 42px;
    line-height: 1.08;
    letter-spacing: -1px;
}

.hero h1 span {
    display: block;
    color: #f47b20;
}

.hero-text > p {
    max-width: 570px;
    margin: 0 auto 22px;
    color: #d5e0e7;
    font-size: 15px;
    line-height: 1.55;
}

.hero-buttons {
    width: 100%;

    display: flex;
    justify-content: center;
    align-items: center;

    gap: 10px;
}

.hero-buttons .button {
    width: auto;
}

.hero-points {
    width: 100%;

    display: flex;
    flex-direction: column;
    align-items: center;

    gap: 5px;

    margin-top: 18px;

    color: #d5e0e7;
    font-size: 13px;
    text-align: center;
}

.hero-points span {
    display: block;
    width: 100%;
    text-align: center;
}


/* =====================================================
   HERO BOX
   ===================================================== */

.hero-box {
    width: 100%;
    max-width: 390px;

    margin: 0 auto;
    padding: 24px;

    background: #ffffff;
    color: #263746;

    border-radius: 8px;
    border-top: 4px solid #f47b20;

    box-shadow: 0 15px 40px rgba(0,0,0,0.22);

    text-align: center;
}

.box-label {
    display: inline-block;

    color: #f47b20;

    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1.5px;
}

.hero-box h2 {
    margin: 8px 0 10px;

    color: #071b2c;

    font-size: 23px;
    line-height: 1.2;

    text-align: center;
}

.hero-box p {
    margin: 0 0 17px;

    color: #687886;

    font-size: 14px;
    line-height: 1.5;

    text-align: center;
}

.hero-box .button {
    width: 100%;
}

.hero-phone {
    display: block;

    margin-top: 12px;

    color: #071b2c;

    font-size: 18px;
    font-weight: 900;

    text-align: center;
}


/* =====================================================
   TRUST STRIP
   ===================================================== */

.trust-strip {
    width: 100%;
    background: #f47b20;
    color: #ffffff;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.trust-grid > div {
    padding: 17px 10px;

    text-align: center;

    border-right: 1px solid rgba(255,255,255,.25);
    border-bottom: 1px solid rgba(255,255,255,.25);
}

.trust-grid > div:nth-child(2n) {
    border-right: 0;
}

.trust-grid > div:nth-last-child(-n+2) {
    border-bottom: 0;
}

.trust-grid strong {
    display: block;
    font-size: 17px;
}

.trust-grid span {
    display: block;
    font-size: 11px;
}


/* =====================================================
   SERVICES
   ===================================================== */

.service-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.service-card {
    width: 100%;
    min-width: 0;

    padding: 25px;

    background: #ffffff;

    border: 1px solid #e0e6ea;
    border-radius: 7px;

    box-shadow: 0 5px 18px rgba(7,27,44,.04);

    text-align: left;
}

.service-number {
    width: 42px;
    height: 42px;

    display: grid;
    place-items: center;

    margin-bottom: 18px;

    background: #071b2c;
    color: #ffffff;

    border-radius: 5px;

    font-size: 12px;
    font-weight: 900;
}

.service-card h3 {
    margin: 0 0 8px;

    color: #071b2c;
    font-size: 21px;

    text-align: left;
}

.service-card p {
    margin: 0 0 16px;

    color: #687886;

    text-align: left;
}

.service-card a {
    color: #d96512;
    font-size: 14px;
    font-weight: 800;

    text-align: left;
}


/* =====================================================
   WHY US
   ===================================================== */

.dark-section {
    background: #071b2c;
    color: #ffffff;
}

.two-column {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

/* CENTRE ONLY THE LEFT SIDE OF WHY US */

.dark-section > .container > div:first-child {
    text-align: center;
}

.dark-section > .container > div:first-child .eyebrow {
    display: block;
    width: 100%;
    text-align: center;
}

.dark-section h2 {
    margin: 0 0 15px;

    color: #ffffff;

    font-size: 34px;
    line-height: 1.1;

    text-align: center;
}

.dark-section > .container > div:first-child > p {
    max-width: 600px;

    margin: 0 auto 24px;

    color: #bdcad2;

    text-align: center;
}

.dark-section > .container > div:first-child .button {
    display: inline-flex;
    margin-left: auto;
    margin-right: auto;
}

.benefits {
    display: grid;
    gap: 12px;
}

.benefit {
    width: 100%;
    min-width: 0;

    display: grid;
    grid-template-columns: 34px minmax(0,1fr);

    gap: 12px;

    padding: 17px;

    background: rgba(255,255,255,.04);

    border: 1px solid rgba(255,255,255,.1);
    border-radius: 6px;

    text-align: left;
}

.benefit > span {
    width: 30px;
    height: 30px;

    display: grid;
    place-items: center;

    background: #f47b20;
    color: #ffffff;

    border-radius: 50%;

    font-weight: 900;
}

.benefit h3 {
    margin: 0 0 3px;

    color: #ffffff;
    font-size: 17px;

    text-align: left;
}

.benefit p {
    margin: 0;

    color: #bdcad2;
    font-size: 13px;

    text-align: left;
}


/* =====================================================
   AREAS
   ===================================================== */

.area-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: 10px;
}

.area-grid a {
    min-width: 0;

    padding: 15px 12px;

    background: #ffffff;

    border: 1px solid #e0e6ea;
    border-radius: 5px;

    color: #071b2c;

    font-size: 14px;
    font-weight: 800;

    text-align: center;
}


/* =====================================================
   HOW IT WORKS
   ===================================================== */

.steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.step {
    padding: 15px;
    text-align: center;
}

.step > span {
    width: 50px;
    height: 50px;

    display: grid;
    place-items: center;

    margin: 0 auto 15px;

    background: #f47b20;
    color: #ffffff;

    border-radius: 50%;

    font-size: 19px;
    font-weight: 900;
}

.step h3 {
    margin: 0 0 6px;
    color: #071b2c;
}

.step p {
    margin: 0;
    color: #687886;
}


/* =====================================================
   FAQ
   ===================================================== */

.faq-container {
    width: 100%;
    max-width: 850px;
}

details {
    width: 100%;

    padding: 19px 0;

    border-top: 1px solid #e0e6ea;
}

details:last-child {
    border-bottom: 1px solid #e0e6ea;
}

summary {
    cursor: pointer;
    list-style: none;

    padding-right: 25px;

    color: #071b2c;

    font-weight: 800;

    text-align: left;
}

summary::-webkit-details-marker {
    display: none;
}

details p {
    margin: 10px 0 0;

    color: #687886;

    text-align: left;
}


/* =====================================================
   CONTACT
   ===================================================== */

.contact-section {
    width: 100%;

    padding: 70px 0;

    background: #071b2c;
    color: #ffffff;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.contact-information {
    min-width: 0;
  text-align: center;
}

.contact-information h2 {
    margin: 0 0 15px;

    color: #ffffff;

    font-size: 34px;
    line-height: 1.1;
}

.contact-information > p {
    margin: 0 0 22px;
    color: #bdcad2;
}

.large-phone {
    display: inline-block;

    max-width: 100%;

    color: #f47b20;

    font-size: 34px;
    font-weight: 900;

    overflow-wrap: anywhere;
}

.small-text {
    font-size: 12px !important;
}

.contact-form {
    width: 100%;
    min-width: 0;

    padding: 24px;

    background: #ffffff;
    color: #263746;

    border-radius: 8px;

    text-align: left;
}

.contact-form h3 {
    margin: 0 0 18px;

    color: #071b2c;
    font-size: 26px;

    text-align: left;
}

.contact-form label {
    display: block;

    margin: 13px 0 6px;

    color: #071b2c;

    font-size: 13px;
    font-weight: 800;

    text-align: left;
}

.contact-form input,
.contact-form textarea {
    display: block;

    width: 100%;
    max-width: 100%;

    padding: 12px;

    border: 1px solid #ccd5db;
    border-radius: 4px;

    font-size: 16px;

    background: #ffffff;
    color: #263746;
}

.contact-form textarea {
    resize: vertical;
}

.form-note {
    margin: 10px 0 0;

    color: #687886;

    font-size: 11px;

    text-align: center;
}


/* =====================================================
   FOOTER
   ===================================================== */

.footer {
    width: 100%;

    padding-top: 50px;

    background: #04111c;
    color: #b8c5cd;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;

    padding-bottom: 35px;
}

.footer p {
    margin: 15px 0 0;
}

.footer h3 {
    margin: 0 0 12px;
    color: #ffffff;
}

.footer-grid a,
.footer-grid span {
    display: block;
    margin: 6px 0;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 7px;

    padding: 18px 0;

    border-top: 1px solid rgba(255,255,255,.1);

    font-size: 11px;
}


/* =====================================================
   TABLET
   ===================================================== */

@media (min-width: 651px) {

    .hero h1 {
        font-size: 48px;
    }

    .hero-buttons {
        flex-direction: row;
    }

    .service-grid {
        grid-template-columns: repeat(2, minmax(0,1fr));
    }

    .area-grid {
        grid-template-columns: repeat(3, minmax(0,1fr));
    }

    .steps {
        grid-template-columns: repeat(3, minmax(0,1fr));
    }

    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr;
    }
}


/* =====================================================
   DESKTOP
   ===================================================== */

@media (min-width: 951px) {

    .site-header {
        position: sticky;
        top: 0;
        z-index: 1000;
    }

    .header-inner {
        min-height: 80px;
    }

    .logo span {
        font-size: 24px;
    }

    .logo strong {
        font-size: 12px;
    }

    .navigation {
        display: flex;
        align-items: center;
        gap: 26px;

        color: #263746;

        font-size: 14px;
        font-weight: 700;
    }

    .hero-content {
        grid-template-columns: minmax(0,1.2fr) minmax(320px,.8fr);
        align-items: center;

        gap: 55px;

        padding-top: 75px;
        padding-bottom: 75px;
    }

    .hero h1 {
        font-size: 54px;
    }

    .hero-buttons {
        flex-direction: row;
    }

    .hero-points {
        flex-direction: column;
    }

    .service-grid {
        grid-template-columns: repeat(3, minmax(0,1fr));
    }

    .area-grid {
        grid-template-columns: repeat(4, minmax(0,1fr));
    }

    .two-column {
        grid-template-columns: minmax(0,1fr) minmax(0,1fr);
        gap: 70px;
    }

    .contact-grid {
        grid-template-columns: minmax(0,.9fr) minmax(0,1.1fr);
        gap: 70px;
    }

    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }

  .footer .footer-logo {
    display: block;
    width: 100px !important;
    margin: 0 !important;
    padding: 0 !important;
}

.footer .footer-logo img {
    display: block;
    width: 60px !important;
    max-width: 100px !important;
    height: auto !important;
    margin: 0 !important;
}

  .hero-image {
    width: 100%;
    margin-top: -50px;
    margin-bottom: 20px;
    overflow: hidden;
}

.hero-image img {
    display: block;
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: 8px;
}
}
