/* ==================================================
   Elm City Plumbing
   Premium Plumbing Website Demo
   Designed by CodeBreeze Solutions LLC
================================================== */


/* ==================================================
   RESET / VARIABLES
================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {

    --navy: #071826;
    --navy-light: #0d2436;
    --navy-card: #102b40;

    --blue: #168cff;
    --blue-light: #69b8ff;

    --orange: #ff8a1f;
    --orange-light: #ffb15d;

    --white: #ffffff;
    --text: #f5f8fb;
    --text-muted: #aebdca;

    --border: rgba(255,255,255,.10);

    --shadow:
        0 25px 60px rgba(0,0,0,.35);

    --max-width: 1380px;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--navy);
    color: var(--text);
    font-family:
        Arial,
        Helvetica,
        sans-serif;
    overflow-x: hidden;
}

body::selection {
    background: var(--blue);
    color: #fff;
}

img {
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font: inherit;
}

.container {
    width: min(92%, var(--max-width));
    margin: 0 auto;
}




/* ==================================================
   HEADER / NAV
================================================== */

.site-header {

    position: sticky;
    top: 0;

    z-index: 1200;

    background:
        rgba(7,24,38,.88);

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    border-bottom:
        1px solid rgba(255,255,255,.08);

    box-shadow:
        0 10px 30px rgba(0,0,0,.18);
}

.nav-container {

    min-height: 84px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;
}

.brand {

    display: inline-flex;
    align-items: center;

    gap: 12px;

    flex-shrink: 0;
}

/* Navigation logo */
.brand-logo {
    width: 120px;
    height: auto;
    display: block;
}

.brand-icon {

    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 14px;

    background:
        linear-gradient(
            135deg,
            var(--blue),
            #0060c9
        );

    color: #fff;

    font-size: 1.35rem;

    box-shadow:
        0 12px 30px rgba(22,140,255,.35);

    transform: rotate(-7deg);
}

.brand-text {

    display: flex;
    flex-direction: column;

    line-height: 1;
}

.brand-text span {

    font-size: .83rem;
    font-weight: 700;

    letter-spacing: 3px;

    color: var(--blue-light);
}

.brand-text strong {

    margin-top: 5px;

    color: #fff;

    font-size: 1.28rem;
    letter-spacing: 1px;
}

.main-nav {

    display: flex;
    align-items: center;

    gap: 30px;
}

.main-nav a {

    position: relative;

    color: #dce8f2;

    font-size: .97rem;
    font-weight: 700;

    transition:
        color .25s ease;
}

.main-nav a::after {

    content: "";

    position: absolute;
    left: 0;
    bottom: -8px;

    width: 0;
    height: 2px;

    background: var(--blue);

    transition: width .25s ease;
}

.main-nav a:hover {
    color: #fff;
}

.main-nav a:hover::after {
    width: 100%;
}

.nav-call {

    display: inline-flex;
    align-items: center;

    gap: 10px;

    padding: 13px 20px;

    border-radius: 50px;

    background:
        linear-gradient(
            135deg,
            var(--orange),
            #ff6d00
        );

    color: #171717;

    font-weight: 900;

    box-shadow:
        0 12px 30px rgba(255,138,31,.25);

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}

.nav-call:hover {

    transform: translateY(-2px);

    box-shadow:
        0 18px 36px rgba(255,138,31,.34);
}

.mobile-menu-button {

    display: none;

    border: none;
    background: none;

    color: #fff;

    font-size: 1.7rem;

    cursor: pointer;
}


/* ==================================================
   HERO
================================================== */

.hero {
    position: relative;
    min-height: 760px;
    display: flex;
    align-items: flex-start;
    overflow: hidden;
}

.hero-background {

    position: absolute;
    inset: 0;

    background:
        url("images/Plumber-hero01.png")
        center / cover no-repeat;

    transform: scale(1.03);
}

.hero-overlay {

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(3,14,23,.90) 0%,
            rgba(3,14,23,.82) 38%,
            rgba(3,14,23,.52) 64%,
            rgba(3,14,23,.18) 100%
        );
}

.hero::after {

    content: "";

    position: absolute;

    width: 600px;
    height: 600px;

    border-radius: 50%;

    right: -250px;
    top: -180px;

    background:
        radial-gradient(
            circle,
            rgba(22,140,255,.22),
            transparent 65%
        );

    pointer-events: none;
}

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns:
        minmax(0, 1.25fr)
        minmax(340px, .75fr);
    gap: 70px;
    align-items: center;
    padding-top: 35px;
    padding-bottom: 55px;
}

.hero-content {
    max-width: 780px;
}

.eyebrow {

    display: inline-flex;
    align-items: center;

    gap: 8px;

    padding: 9px 14px;

    margin-bottom: 24px;

    border:
        1px solid rgba(105,184,255,.35);

    border-radius: 50px;

    background:
        rgba(22,140,255,.10);

    color: var(--blue-light);

    font-size: .9rem;
    font-weight: 700;

    letter-spacing: .5px;
}

.hero h1 {
    max-width: 800px;
    font-size: clamp(3.4rem, 6vw, 5.8rem);
    line-height: .95;
    letter-spacing: -3px;
    margin-bottom: 24px;
}

.hero h1 span {

    display: block;

    margin-top: 10px;

    color: var(--blue-light);
}

.hero-copy {

    max-width: 720px;

    color: #ced9e3;

    font-size: 1.2rem;
    line-height: 1.75;

    margin-bottom: 32px;
}


/* ==================================================
   BUTTONS
================================================== */

.hero-buttons {

    display: flex;
    flex-wrap: wrap;

    gap: 16px;
}

.btn {

    min-height: 56px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    padding: 16px 27px;

    border-radius: 50px;

    border: none;

    font-weight: 800;

    cursor: pointer;

    transition:
        transform .25s ease,
        box-shadow .25s ease,
        background .25s ease;
}

.btn-primary {

    background:
        linear-gradient(
            135deg,
            var(--blue),
            #006ad8
        );

    color: #fff;

    box-shadow:
        0 14px 35px rgba(22,140,255,.32);
}

.btn-primary:hover {

    transform: translateY(-3px);

    box-shadow:
        0 20px 45px rgba(22,140,255,.40);
}

.btn-secondary {

    border:
        1px solid rgba(255,255,255,.28);

    background:
        rgba(255,255,255,.06);

    color: #fff;
}

.btn-secondary:hover {

    transform: translateY(-3px);

    background:
        rgba(255,255,255,.12);
}


/* ==================================================
   HERO TRUST ITEMS
================================================== */

.hero-trust {

    display: grid;

    grid-template-columns:
        repeat(3, minmax(0,1fr));

    gap: 14px;

    margin-top: 42px;
}

.trust-item {

    display: flex;

    gap: 12px;

    align-items: center;

    padding: 15px;

    border-radius: 16px;

    background:
        rgba(255,255,255,.055);

    border:
        1px solid rgba(255,255,255,.08);

    backdrop-filter: blur(10px);
}

.trust-item i {

    color: var(--orange);

    font-size: 1.25rem;
}

.trust-item span {

    display: flex;
    flex-direction: column;

    gap: 3px;

    color: var(--text-muted);

    font-size: .82rem;
}

.trust-item strong {

    color: #fff;

    font-size: .9rem;
}


/* Hero service card */
.hero-service-card {
    padding: 38px;
    border-radius: 28px;
    background: rgba(7, 24, 38, 0.03);
    border: 1px solid rgba(105, 184, 255, 0.30);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    position: relative;
    overflow: hidden;
}

.hero-service-card::before {

    content: "";

    position: absolute;

    width: 170px;
    height: 170px;

    border-radius: 50%;

    top: -80px;
    right: -70px;

    background:
        rgba(22,140,255,.14);
}

.urgent-label {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    margin-bottom: 18px;

    color: var(--orange-light);

    font-size: .85rem;
    font-weight: 800;

    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-service-card h2 {

    font-size: 2.4rem;

    margin-bottom: 18px;
}

.hero-service-card > p {

    color: var(--text-muted);

    line-height: 1.7;

    margin-bottom: 24px;
}

.hero-service-card ul {

    list-style: none;

    margin-bottom: 28px;
}

.hero-service-card li {

    display: flex;

    gap: 10px;

    align-items: center;

    padding: 10px 0;

    color: #dce7ef;

    border-bottom:
        1px solid rgba(255,255,255,.06);
}

.hero-service-card li i {

    color: var(--blue-light);
}

.full-button {

    width: 100%;

    margin-top: 6px;
}

.emergency-phone {

    display: flex;
    flex-direction: column;

    align-items: center;

    gap: 5px;

    margin-top: 22px;

    color: #fff;
}

.emergency-phone small {

    color: var(--text-muted);
}

.emergency-phone strong {

    color: var(--orange-light);

    font-size: 1.25rem;
}



/* ==================================================
   GENERAL SECTIONS
================================================== */

.section {

    padding: 120px 0;

    background: var(--navy);
}

.section-dark {

    background:
        linear-gradient(
            180deg,
            #0a1f2f,
            #071826
        );
}

.section-heading {

    max-width: 850px;

    margin:
        0 auto 70px;

    text-align: center;
}

.section-heading > span,
.section-label {

    display: block;

    margin-bottom: 15px;

    color: var(--blue-light);

    font-size: .85rem;
    font-weight: 800;

    letter-spacing: 3px;

    text-transform: uppercase;
}

.section-heading h2,
.why-content h2,
.contact-info h2,
.service-area-grid h2 {

    font-size:
        clamp(2.5rem, 5vw, 4.6rem);

    line-height: 1.04;

    letter-spacing: -1.5px;
}

.section-heading h2 {

    margin-bottom: 22px;
}

.section-heading p {

    max-width: 760px;

    margin: 0 auto;

    color: var(--text-muted);

    font-size: 1.12rem;
    line-height: 1.8;
}


/* ==================================================
   SERVICES
================================================== */

.services-grid {

    display: grid;

    grid-template-columns:
        repeat(3, minmax(0,1fr));

    gap: 26px;
}

.service-card {

    position: relative;

    padding: 38px 32px;

    border-radius: 24px;

    background:
        linear-gradient(
            180deg,
            rgba(255,255,255,.065),
            rgba(255,255,255,.025)
        );

    border:
        1px solid rgba(255,255,255,.09);

    box-shadow:
        0 18px 40px rgba(0,0,0,.18);

    overflow: hidden;

    transition:
        transform .3s ease,
        border-color .3s ease,
        box-shadow .3s ease;
}

.service-card::after {

    content: "";

    position: absolute;

    width: 120px;
    height: 120px;

    top: -70px;
    right: -70px;

    border-radius: 50%;

    background:
        rgba(22,140,255,.10);
}

.service-card:hover {

    transform: translateY(-8px);

    border-color:
        rgba(105,184,255,.45);

    box-shadow:
        0 25px 55px rgba(0,0,0,.30);
}

.service-icon {

    width: 58px;
    height: 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 24px;

    border-radius: 18px;

    background:
        linear-gradient(
            135deg,
            rgba(22,140,255,.22),
            rgba(22,140,255,.08)
        );

    border:
        1px solid rgba(105,184,255,.20);

    color: var(--blue-light);

    font-size: 1.5rem;
}

.service-card h3 {

    margin-bottom: 14px;

    font-size: 1.45rem;
}

.service-card p {

    color: var(--text-muted);

    line-height: 1.75;
}


/* ==================================================
   WHY US
================================================== */

.why-grid {

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 80px;

    align-items: center;
}

.why-content h2 {

    margin-bottom: 25px;
}

.why-content > p {

    color: var(--text-muted);

    font-size: 1.08rem;

    line-height: 1.85;

    margin-bottom: 20px;
}

.why-list {

    margin-top: 35px;

    display: grid;

    gap: 16px;
}

.why-list > div {

    display: flex;

    gap: 15px;

    padding: 18px;

    border-radius: 16px;

    background:
        rgba(255,255,255,.04);

    border:
        1px solid rgba(255,255,255,.07);
}

.why-list i {

    color: var(--blue-light);

    margin-top: 4px;

    font-size: 1.15rem;
}

.why-list span {

    display: flex;
    flex-direction: column;

    gap: 5px;

    color: var(--text-muted);

    line-height: 1.55;
}

.why-list strong {

    color: #fff;
}

/* Why section buttons */
.why-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
    margin-top: 45px;
}

.why-actions .btn {
    min-height: 54px;
    padding: 14px 24px;
}

/* ==================================================
   WHY IMAGE
================================================== */

.why-image-card {

    position: relative;

    border-radius: 30px;

    overflow: hidden;

    box-shadow:
        0 30px 70px rgba(0,0,0,.40);
}

.why-image-card img {

    width: 100%;
    min-height: 600px;

    object-fit: cover;

    display: block;
}

.why-image-card::after {

    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            180deg,
            transparent 55%,
            rgba(0,0,0,.65)
        );
}

.experience-badge {

    position: absolute;

    z-index: 2;

    bottom: 24px;
    left: 24px;

    display: flex;
    align-items: center;

    gap: 16px;

    padding: 18px 22px;

    border-radius: 18px;

    background:
        rgba(7,24,38,.92);

    border:
        1px solid rgba(255,255,255,.12);

    backdrop-filter: blur(12px);
}

.experience-badge strong {

    color: var(--orange-light);

    font-size: 2.3rem;
}

.experience-badge span {

    max-width: 130px;

    font-size: .9rem;
    line-height: 1.35;
}


/* ==================================================
   PROCESS
================================================== */

.process-grid {

    display: grid;

    grid-template-columns:
        repeat(4, minmax(0,1fr));

    gap: 22px;
}

.process-card {

    position: relative;

    padding: 35px 28px;

    border-radius: 22px;

    background:
        rgba(255,255,255,.045);

    border:
        1px solid rgba(255,255,255,.08);
}

.process-number {

    display: block;

    margin-bottom: 25px;

    color:
        rgba(105,184,255,.38);

    font-size: 3rem;
    font-weight: 900;
}

.process-card h3 {

    margin-bottom: 13px;

    font-size: 1.3rem;
}

.process-card p {

    color: var(--text-muted);

    line-height: 1.7;
}

/* ABOUT */

.about-section {
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: "";
    position: absolute;
    width: 650px;
    height: 650px;
    border-radius: 50%;
    left: -350px;
    bottom: -350px;
    background: radial-gradient(circle, rgba(22,140,255,.10), transparent 68%);
    pointer-events: none;
}

.about-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(340px, .85fr) minmax(0, 1.15fr);
    gap: 80px;
    align-items: center;
}

.about-image-wrap {
    position: relative;
    max-width: 520px;
}

.about-image {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    border-radius: 24px;
    border: 1px solid rgba(22, 140, 255, .35);
    box-shadow: 0 30px 80px rgba(0, 0, 0, .35);
}

.about-image-wrap::before {
    display: none;
}



.about-image-badge {
    position: absolute;
    left: 28px;
    right: 28px;
    bottom: 28px;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 20px;
    background: rgba(3,14,23,.90);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 14px;
    backdrop-filter: blur(12px);
    box-shadow: 0 14px 35px rgba(0,0,0,.35);
}

.about-image-badge i {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    border-radius: 50%;
    background: rgba(22,140,255,.15);
    color: #168cff;
    font-size: 1.1rem;
}

.about-image-badge strong,
.about-image-badge span {
    display: block;
}

.about-image-badge strong {
    color: #fff;
    font-size: .95rem;
}

.about-image-badge span {
    margin-top: 3px;
    color: rgba(255,255,255,.68);
    font-size: .82rem;
}

.about-content h2 {
    max-width: 700px;
    margin: 14px 0 24px;
}

.about-content h2 span {
    display: block;
    color: #168cff;
}

.about-content > p {
    max-width: 720px;
    margin-bottom: 18px;
    line-height: 1.8;
}

.about-lead {
    font-size: 1.15rem;
}

.about-lead strong {
    color: #fff;
}

.about-quote {
    position: relative;
    display: flex;
    gap: 18px;
    margin: 30px 0;
    padding: 24px 26px;
    background: rgba(22,140,255,.08);
    border-left: 4px solid #168cff;
    border-radius: 0 14px 14px 0;
}

.about-quote i {
    color: #168cff;
    font-size: 1.5rem;
}

.about-quote p {
    margin: 0;
    color: #fff;
    font-size: 1.05rem;
    font-weight: 600;
    line-height: 1.6;
}

.about-values {
    display: grid;
    gap: 14px;
    margin-top: 30px;
}

.about-values > div {
    display: flex;
    align-items: center;
    gap: 16px;
}

.about-values i {
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    border-radius: 12px;
    background: rgba(22,140,255,.12);
    color: #168cff;
}

.about-values strong,
.about-values span {
    display: block;
}

.about-values strong {
    margin-bottom: 2px;
    color: #fff;
}

.about-values span {
    color: rgba(255,255,255,.68);
    line-height: 1.45;
}

.about-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

@media (max-width: 900px) {

    .about-grid {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .about-image-wrap {
        width: 100%;
        max-width: 600px;
        margin: 0 auto;
    }

}

@media (max-width: 600px) {

    .about-grid {
        gap: 45px;
    }

    .about-image-wrap::before {
        inset: 10px -8px -10px 8px;
    }

    .about-image {
        border-radius: 18px;
    }

    .about-image-badge {
        left: 16px;
        right: 16px;
        bottom: 16px;
        padding: 14px 16px;
    }

    .about-content h2 span {
        display: inline;
    }

    .about-quote {
        padding: 20px;
    }

    .about-actions {
        flex-direction: column;
    }

    .about-actions .btn {
        width: 100%;
        justify-content: center;
    }

}


/* ==================================================
   REVIEWS
================================================== */

.reviews-grid {

    display: grid;

    grid-template-columns:
        repeat(3, minmax(0,1fr));

    gap: 28px;
}

.review-card {

    padding: 36px;

    border-radius: 24px;

    background:
        linear-gradient(
            180deg,
            rgba(255,255,255,.065),
            rgba(255,255,255,.03)
        );

    border:
        1px solid rgba(255,255,255,.09);

    box-shadow:
        0 18px 45px rgba(0,0,0,.18);
}

.stars {

    margin-bottom: 22px;

    color: #ffc34d;

    letter-spacing: 4px;

    font-size: 1.25rem;
}

.review-card p {

    margin-bottom: 26px;

    color: #d9e3eb;

    font-size: 1.06rem;

    line-height: 1.8;

    font-style: italic;
}

.review-card strong {

    display: block;

    margin-bottom: 5px;
}

.review-card > span {

    color: var(--text-muted);

    font-size: .9rem;
}

.demo-review-note {

    margin-top: 30px;

    text-align: center;

    color: #8193a2;

    font-size: .85rem;
}


/* ==================================================
   SERVICE AREA
================================================== */

.service-area-grid {

    display: grid;

    grid-template-columns:
        1.25fr .75fr;

    gap: 70px;

    align-items: center;
}

.service-area-grid h2 {

    margin-bottom: 25px;
}

.service-area-grid > div > p {

    max-width: 720px;

    color: var(--text-muted);

    font-size: 1.08rem;

    line-height: 1.8;
}

.city-grid {

    display: grid;

    grid-template-columns:
        repeat(2, minmax(0,1fr));

    gap: 12px;

    margin-top: 32px;
}

.city-grid span {

    display: flex;
    align-items: center;

    gap: 10px;

    padding: 14px 16px;

    border-radius: 14px;

    background:
        rgba(255,255,255,.04);

    border:
        1px solid rgba(255,255,255,.07);

    color: #dce6ee;
}

.city-grid i {
    color: var(--blue-light);
}

.service-area-cta {

    padding: 45px 35px;

    text-align: center;

    border-radius: 26px;

    background:
        linear-gradient(
            160deg,
            rgba(22,140,255,.18),
            rgba(255,255,255,.03)
        );

    border:
        1px solid rgba(105,184,255,.22);

    box-shadow: var(--shadow);
}

.service-area-cta > i {

    margin-bottom: 24px;

    color: var(--blue-light);

    font-size: 3rem;
}

.service-area-cta h3 {

    margin-bottom: 14px;

    font-size: 1.7rem;
}

.service-area-cta p {

    margin-bottom: 25px;

    color: var(--text-muted);
}


/* ==================================================
   FAQ
================================================== */

.faq-container {

    max-width: 900px;

    margin: 0 auto;

    display: grid;

    gap: 14px;
}

.faq-container details {

    border-radius: 18px;

    background:
        rgba(255,255,255,.045);

    border:
        1px solid rgba(255,255,255,.08);

    overflow: hidden;
}

.faq-container summary {

    position: relative;

    padding: 24px 60px 24px 25px;

    cursor: pointer;

    color: #fff;

    font-weight: 700;

    list-style: none;
}

.faq-container summary::-webkit-details-marker {
    display: none;
}

.faq-container summary::after {

    content: "+";

    position: absolute;

    right: 25px;
    top: 50%;

    transform:
        translateY(-50%);

    color: var(--blue-light);

    font-size: 1.8rem;
}

.faq-container details[open]
summary::after {

    content: "–";
}

.faq-container details p {

    padding:
        0 25px 25px;

    color: var(--text-muted);

    line-height: 1.8;
}


/* ==================================================
   CONTACT
================================================== */

.contact-section {

    background:
        linear-gradient(
            180deg,
            #071826,
            #06131e
        );
}

.contact-grid {

    display: grid;

    grid-template-columns:
        .85fr 1.15fr;

    gap: 70px;

    align-items: start;
}

.contact-info h2 {

    margin-bottom: 24px;
}

.contact-info > p {

    margin-bottom: 35px;

    color: var(--text-muted);

    line-height: 1.8;

    font-size: 1.08rem;
}

.contact-item {

    display: flex;

    align-items: center;

    gap: 17px;

    margin-bottom: 18px;

    padding: 17px 18px;

    border-radius: 16px;

    background:
        rgba(255,255,255,.045);

    border:
        1px solid rgba(255,255,255,.07);
}

.contact-item > i {

    width: 45px;
    height: 45px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 14px;

    background:
        rgba(22,140,255,.14);

    color: var(--blue-light);

    font-size: 1.15rem;
}

.contact-item div {

    display: flex;
    flex-direction: column;

    gap: 4px;
}

.contact-item small {

    color: var(--text-muted);

    font-size: .8rem;
}

.contact-item a,
.contact-item span {

    color: #fff;

    font-weight: 700;
}


/* ==================================================
   CONTACT FORM
================================================== */

.contact-form-card {

    padding: 42px;

    border-radius: 28px;

    background:
        linear-gradient(
            180deg,
            rgba(255,255,255,.07),
            rgba(255,255,255,.025)
        );

    border:
        1px solid rgba(255,255,255,.10);

    box-shadow:
        0 30px 70px rgba(0,0,0,.30);
}

.contact-form-card h3 {

    margin-bottom: 28px;

    font-size: 2rem;
}

.contact-form-card form {

    display: flex;
    flex-direction: column;

    gap: 10px;
}

.form-grid {

    display: grid;

    grid-template-columns:
        repeat(2, minmax(0,1fr));

    gap: 16px;
}

.contact-form-card label {

    margin-top: 8px;

    color: #e8f0f6;

    font-size: .9rem;

    font-weight: 700;
}

.contact-form-card input,
.contact-form-card textarea,
.contact-form-card select {

    width: 100%;

    border:
        1px solid rgba(255,255,255,.12);

    border-radius: 14px;

    background:
        rgba(0,0,0,.22);

    color: #fff;

    padding: 15px 16px;

    outline: none;

    transition:
        border-color .25s ease,
        box-shadow .25s ease,
        background .25s ease;
}

.contact-form-card select {

    color: #e5edf4;
}

.contact-form-card select option {

    background: #0d2436;

    color: #fff;
}

.contact-form-card input:focus,
.contact-form-card textarea:focus,
.contact-form-card select:focus {

    border-color:
        rgba(105,184,255,.75);

    box-shadow:
        0 0 0 3px rgba(22,140,255,.12);

    background:
        rgba(0,0,0,.34);
}

.contact-form-card textarea {

    resize: vertical;

    min-height: 150px;
}

.form-button {

    width: 100%;

    margin-top: 15px;
}

.honeypot {
    display: none;
}

.form-error {

    margin-bottom: 20px;

    padding: 14px 16px;

    border-radius: 12px;

    background:
        rgba(255,70,70,.12);

    border:
        1px solid rgba(255,70,70,.35);

    color: #ffb4b4;
}

.form-success {

    text-align: center;

    padding: 35px 15px;
}

.form-success i {

    margin-bottom: 20px;

    color: #54d899;

    font-size: 3.6rem;
}

.form-success h3 {

    margin-bottom: 15px;

    font-size: 2rem;
}

.form-success p {

    color: var(--text-muted);

    line-height: 1.75;
}


/* ==================================================
   FINAL CTA
================================================== */

.final-cta {

    position: relative;

    padding: 105px 20px;

    text-align: center;

    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            #0c3c64,
            #071826
        );
}

.final-cta::before {

    content: "";

    position: absolute;

    width: 700px;
    height: 700px;

    left: 50%;
    top: 50%;

    transform:
        translate(-50%, -50%);

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(22,140,255,.23),
            transparent 65%
        );
}

.final-cta .container {

    position: relative;
    z-index: 2;
}

.final-cta > .container > span {

    display: block;

    margin-bottom: 12px;

    color: var(--orange-light);

    font-weight: 800;

    letter-spacing: 3px;

    text-transform: uppercase;
}

.final-cta h2 {

    margin-bottom: 17px;

    font-size:
        clamp(3rem, 6vw, 5rem);
}

.final-cta p {

    margin-bottom: 30px;

    color: #c6d5e1;

    font-size: 1.1rem;
}

.final-cta .hero-buttons {
    justify-content: center;
}


/* ==================================================
   FOOTER
================================================== */

.site-footer {

    padding: 80px 0 25px;

    background: #03101a;

    border-top:
        1px solid rgba(255,255,255,.07);
}

.footer-grid {

    display: grid;

    grid-template-columns:
        1.5fr 1fr 1fr 1.1fr;

    gap: 50px;

    padding-bottom: 55px;
}

.footer-brand-logo {

    margin-bottom: 22px;
}

.footer-brand > p {

    max-width: 370px;

    color: var(--text-muted);

    line-height: 1.75;
}

.footer-grid h3 {

    margin-bottom: 19px;

    font-size: 1.1rem;
}

.footer-grid > div:not(.footer-brand) {

    display: flex;
    flex-direction: column;

    gap: 11px;
}

.footer-grid a,
.footer-grid span {

    color: var(--text-muted);

    font-size: .95rem;

    transition:
        color .25s ease;
}

.footer-grid a:hover {
    color: var(--blue-light);
}

.footer-bottom {

    display: flex;
    justify-content: space-between;

    gap: 20px;

    padding-top: 25px;

    border-top:
        1px solid rgba(255,255,255,.07);

    color: #7f919e;

    font-size: .85rem;
}

.footer-bottom a {

    color: var(--blue-light);

    font-weight: 700;
}


/* ==================================================
   MOBILE CALL BAR
================================================== */

.mobile-call-bar {

    display: none;

    position: fixed;

    left: 0;
    right: 0;
    bottom: 0;

    z-index: 2000;

    box-shadow:
        0 -10px 30px rgba(0,0,0,.35);
}

.mobile-call-bar a {

    width: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 9px;

    padding: 16px 10px;

    font-weight: 900;
}

.mobile-call-bar a:first-child {

    background: var(--orange);

    color: #171717;
}

.mobile-call-bar a:last-child {

    background: var(--blue);

    color: #fff;
}


/* ==================================================
   TABLET
================================================== */

@media (max-width: 1100px) {

    .main-nav {
        gap: 18px;
    }

    .nav-call span {
        display: none;
    }

    .hero-grid {

        grid-template-columns:
            1fr .75fr;

        gap: 40px;
    }

    .hero h1 {

        font-size:
            clamp(3rem, 6vw, 5rem);
    }

    .services-grid {
        grid-template-columns:
            repeat(2, minmax(0,1fr));
    }

    .process-grid {
        grid-template-columns:
            repeat(2, minmax(0,1fr));
    }

    .reviews-grid {
        grid-template-columns:
            repeat(2, minmax(0,1fr));
    }

    .review-card:last-child {
        grid-column: 1 / -1;
    }

}


/* ==================================================
   MOBILE
================================================== */

@media (max-width: 800px) {

    body {
        padding-bottom: 62px;
    }

    .demo-notice {
        font-size: .78rem;
    }

    .nav-container {

        min-height: 72px;
    }

    .brand-icon {

        width: 42px;
        height: 42px;
    }

    .brand-text span {

        font-size: .72rem;
    }

    .brand-text strong {

        font-size: 1.05rem;
    }

    .mobile-menu-button {
        display: block;
    }

    .nav-call {
        display: none;
    }

    .main-nav {

        position: absolute;

        top: 72px;
        left: 0;
        right: 0;

        display: none;

        flex-direction: column;

        align-items: stretch;

        gap: 0;

        padding: 12px 20px 20px;

        background:
            rgba(5,20,31,.98);

        border-bottom:
            1px solid rgba(255,255,255,.08);
    }

    .main-nav.active {
        display: flex;
    }

    .main-nav a {

        padding: 15px 5px;

        border-bottom:
            1px solid rgba(255,255,255,.06);
    }

    .main-nav a::after {
        display: none;
    }


    /* HERO */

    .hero {

        min-height: auto;
    }

    .hero-background {

        background-position:
            64% center;
    }

    .hero-overlay {

        background:
            linear-gradient(
                180deg,
                rgba(3,14,23,.90) 0%,
                rgba(3,14,23,.86) 55%,
                rgba(3,14,23,.98) 100%
            );
    }

    .hero-grid {

        grid-template-columns: 1fr;

        gap: 40px;

        padding-top: 80px;
        padding-bottom: 70px;
    }

    .hero h1 {

        font-size:
            clamp(3rem, 13vw, 4.8rem);

        letter-spacing: -2px;
    }

    .hero-copy {

        font-size: 1.05rem;
    }

    .hero-buttons {

        flex-direction: column;
    }

    .hero-buttons .btn {

        width: 100%;
    }

    .hero-trust {

        grid-template-columns: 1fr;
    }

    .hero-service-card {

        padding: 30px 24px;
    }


    /* EMERGENCY STRIP */

    .emergency-strip-content {

        padding: 22px 0;

        flex-direction: column;

        text-align: center;
    }

    .emergency-strip-content div {

        flex-direction: column;

        gap: 5px;
    }


    /* GENERAL SECTIONS */

    .section {

        padding: 80px 0;
    }

    .section-heading {

        margin-bottom: 45px;
    }

    .section-heading h2,
    .why-content h2,
    .contact-info h2,
    .service-area-grid h2 {

        font-size:
            clamp(2.3rem, 10vw, 3.4rem);
    }


    /* GRIDS */

    .services-grid,
    .process-grid,
    .reviews-grid,
    .why-grid,
    .service-area-grid,
    .contact-grid,
    .footer-grid {

        grid-template-columns: 1fr;
    }

    .review-card:last-child {
        grid-column: auto;
    }

    .why-grid,
    .service-area-grid,
    .contact-grid {

        gap: 45px;
    }

    .why-image-card img {

        min-height: 430px;
    }

    .city-grid {

        grid-template-columns: 1fr;
    }

    .form-grid {

        grid-template-columns: 1fr;
    }

    .contact-form-card {

        padding: 30px 22px;
    }


    /* FOOTER */

    .footer-grid {

        gap: 35px;
    }

    .footer-bottom {

        flex-direction: column;

        text-align: center;
    }

    .mobile-call-bar {
        display: flex;
    }

}


/* ==================================================
   SMALL MOBILE
================================================== */

@media (max-width: 480px) {

    .container {
        width: min(92%, 100%);
    }

    .hero-grid {

        padding-top: 65px;
    }

    .hero h1 {

        font-size: 2.95rem;

        line-height: .98;
    }

    .hero-service-card {

        border-radius: 22px;
    }

    .service-card,
    .process-card,
    .review-card {

        padding: 28px 22px;
    }

    .why-image-card img {

        min-height: 360px;
    }

    .experience-badge {

        left: 14px;
        right: 14px;

        bottom: 14px;
    }

    .final-cta {

        padding:
            80px 18px;
    }

}

