:root {
    --navy: #063f44;
    --navy-2: #07565d;
    --blue: #008080;
    --blue-dark: #006666;
    --yellow: #ffbf3f;
    --ink: #10272b;
    --muted: #5b7073;
    --line: #cde6e6;
    --soft: #edf8f8;
    --white: #ffffff;
    --shadow: 0 14px 34px rgba(0, 64, 64, 0.14);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.55;
    background: var(--white);
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
}

.container {
    width: min(1120px, calc(100% - 32px));
    margin-inline: auto;
}

.skip-link {
    position: absolute;
    left: 16px;
    top: -50px;
    z-index: 11000;
    padding: 10px 14px;
    color: var(--white);
    background: var(--navy);
}

.skip-link:focus {
    top: 16px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    isolation: isolate;
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(10px);
}

.site-header.menu-open {
    z-index: 10000;
}

.site-header::after {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    visibility: hidden;
    opacity: 0;
    background: rgba(6, 63, 68, 0.42);
    transition: opacity 180ms ease, visibility 180ms ease;
}

.site-header.menu-open::after,
.site-header:has(.menu-details[open])::after {
    visibility: visible;
    opacity: 1;
}

.header-inner {
    display: flex;
    position: relative;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    min-height: 74px;
    overflow: visible;
}

.brand {
    display: inline-flex;
    flex: 0 1 auto;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    min-width: 0;
    text-decoration: none;
}

.brand picture {
    display: block;
}

.brand-logo {
    width: auto;
    max-width: 190px;
    height: clamp(56px, 7vw, 72px);
    object-fit: contain;
}

.brand-location {
    color: var(--blue);
    font-size: 0.78rem;
    font-weight: 800;
    line-height: 1;
    padding-bottom: 4px;
    white-space: nowrap;
}

.menu-details {
    position: relative;
    flex: 0 0 auto;
    margin-left: auto;
}

.nav-desktop {
    display: none;
}

.menu-details summary {
    list-style: none;
}

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

.menu-details .nav {
    position: fixed;
    top: 86px;
    right: 16px;
    left: auto;
    z-index: 10010;
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-left: auto;
    width: min(360px, calc(100vw - 32px));
    max-height: calc(100vh - 100px);
    overflow: auto;
    padding: 10px;
    color: var(--navy);
    font-weight: 700;
    font-size: 1rem;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 12px;
    box-shadow: 0 24px 60px rgba(0, 64, 64, 0.24);
    visibility: hidden;
    opacity: 0;
    transform: translateY(-8px) scale(0.98);
    transform-origin: top right;
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.menu-details[open] .nav {
    visibility: visible;
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.nav a,
.text-link {
    text-decoration: none;
}

.nav a {
    padding: 13px 14px;
    border-radius: 8px;
}

.nav a:hover,
.text-link:hover {
    color: var(--blue);
}

.nav a:hover {
    background: var(--soft);
}

.nav a[aria-current="page"] {
    color: var(--blue);
}

.header-actions {
    display: none;
    align-items: center;
    gap: 14px;
}

.nav-toggle {
    position: relative;
    display: flex;
    flex: 0 0 44px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    width: 44px;
    height: 44px;
    padding: 10px;
    background: var(--blue);
    border: 0;
    border-radius: 8px;
    cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
    position: relative;
    display: block;
    width: 24px;
    height: 2px;
    margin: 3px 0;
    background: var(--white);
    border-radius: 999px;
    transition: transform 180ms ease, opacity 180ms ease;
}

.menu-details[open] .nav-toggle span:not(.sr-only):nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-details[open] .nav-toggle span:not(.sr-only):nth-child(2) {
    opacity: 0;
}

.menu-details[open] .nav-toggle span:not(.sr-only):nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 18px;
    color: #062f33;
    font-weight: 800;
    text-decoration: none;
    background: var(--yellow);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.button:hover {
    color: #062f33;
    background: #f5ad21;
}

.button.secondary {
    color: #062f33;
    background: var(--yellow);
}

.button.small {
    min-height: 42px;
    padding: 10px 14px;
    box-shadow: none;
}

.hero {
    position: relative;
    min-height: 680px;
    display: grid;
    align-items: center;
    overflow: hidden;
    color: var(--white);
    background: var(--navy);
}

.hero-media,
.hero-media img,
.hero-overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero-media img {
    object-fit: cover;
}

.hero-overlay {
    background: linear-gradient(90deg, rgba(3, 43, 46, 0.93), rgba(3, 73, 76, 0.68) 45%, rgba(0, 128, 128, 0.12));
}

.hero-content {
    position: relative;
    padding-block: 82px;
}

.hero-status {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 8px 14px;
    margin: 0 0 24px;
    color: var(--blue-dark);
    font-size: 0.88rem;
    font-weight: 900;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 999px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
}

.hero-status span {
    width: 10px;
    height: 10px;
    background: #22c55e;
    border-radius: 999px;
    box-shadow: 0 0 0 5px rgba(34, 197, 94, 0.16);
}

.hero h1 {
    max-width: 700px;
    margin: 0;
    font-size: clamp(2.35rem, 5vw, 4.8rem);
    line-height: 0.98;
    letter-spacing: 0;
}

.lead {
    max-width: 610px;
    margin: 22px 0 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: clamp(1.08rem, 2vw, 1.35rem);
}

.eyebrow {
    margin: 0 0 10px;
    color: var(--blue);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero .eyebrow {
    color: var(--yellow);
}

.hero-benefits {
    display: grid;
    gap: 12px;
    max-width: 560px;
    padding: 0;
    margin: 26px 0 0;
    list-style: none;
}

.hero-benefits li {
    position: relative;
    padding-left: 34px;
    color: rgba(255, 255, 255, 0.94);
    font-size: 1.06rem;
    font-weight: 800;
}

.hero-benefits li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.2em;
    width: 18px;
    height: 22px;
    background: linear-gradient(180deg, #62e1e1, var(--blue));
    border-radius: 50% 50% 55% 55%;
    transform: rotate(45deg);
    box-shadow: 0 4px 12px rgba(0, 128, 128, 0.34);
}

.cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.trust-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 0;
    margin: 28px 0 0;
    list-style: none;
}

.trust-list li {
    padding: 8px 12px;
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 999px;
}

.proof-band {
    color: var(--white);
    background: radial-gradient(circle at 20% 0%, rgba(0, 128, 128, 0.5), transparent 34%),
        linear-gradient(135deg, #052f34, #004a4f 52%, #063f44);
}

.proof-panel {
    padding-block: 46px;
}

.proof-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 8px;
}

.proof-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 16px;
    align-items: center;
    min-width: 0;
    padding: 24px 20px;
    border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.proof-item:first-child {
    border-left: 0;
}

.proof-icon {
    width: 76px;
    height: 76px;
    object-fit: contain;
    filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.24));
}

.proof-grid strong,
.proof-grid span {
    display: block;
}

.proof-grid strong {
    color: var(--white);
    font-size: clamp(1.5rem, 2.4vw, 1.3rem);
    line-height: 1;
    text-shadow: 0 3px 10px rgba(0, 0, 0, 0.22);
}

.proof-grid span {
    margin-top: 6px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.04rem;
}

.proof-call {
    display: flex;
    max-width: 520px;
    margin: 28px auto 0;
    font-size: 1.2rem;
}

.section {
    padding-block: 78px;
}

.intro,
.split {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 48px;
    align-items: start;
}

h2 {
    margin: 0;
    color: var(--navy);
    font-size: clamp(2rem, 3vw, 3.1rem);
    line-height: 1.08;
}

h3 {
    margin: 0;
    color: var(--navy);
    font-size: 1.2rem;
}

.section-heading {
    max-width: 680px;
    margin-bottom: 30px;
}

.services,
.areas {
    background: var(--soft);
}

.section-photo {
    margin: 0;
    border: 1px solid rgba(0, 128, 128, 0.18);
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--white);
    box-shadow: var(--shadow);
}

.section-photo img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 260px;
    object-fit: cover;
}

.intro-photo {
    margin-top: 24px;
}

.side-photo {
    margin-top: 0;
}

.areas {
    position: relative;
    overflow: hidden;
    color: var(--white);
    background: #063f44;
}

.areas::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(90deg, rgba(3, 43, 46, 0.92), rgba(0, 128, 128, 0.64));
}

.areas .split {
    position: relative;
    z-index: 2;
}

.area-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.area-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.areas h2,
.areas .eyebrow {
    color: var(--white);
}

.areas p {
    color: rgba(255, 255, 255, 0.88);
}

.service-grid,
.review-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.review-carousel {
    position: relative;
}

.review-track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: calc((100% - 36px) / 3);
    gap: 18px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}

.review-track::-webkit-scrollbar {
    display: none;
}

.service-card,
.review-card {
    padding: 24px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
}

.service-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: 196px;
    text-align: center;
    transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.service-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 128, 128, 0.38);
    box-shadow: 0 18px 36px rgba(0, 64, 64, 0.13);
}

.service-card-link {
    color: inherit;
    text-decoration: none;
}

.service-card-link h3 {
    color: var(--navy);
}

.service-icon {
    width: auto;
    height: 54px;
    max-width: 68px;
    margin-bottom: 16px;
    object-fit: contain;
}

.service-card p,
.review-card blockquote {
    margin: 10px 0 0;
    color: var(--muted);
}

.emergency {
    color: var(--white);
    background: linear-gradient(135deg, #063f44, #008080);
}

.emergency .split {
    grid-template-columns: minmax(0, 0.9fr) minmax(260px, 0.75fr) minmax(280px, 0.75fr);
    align-items: center;
}

.emergency h2 {
    color: var(--white);
}

.emergency .eyebrow,
.final-cta .eyebrow {
    display: inline-block;
    padding: 5px 9px;
    color: var(--white);
    background: rgba(6, 63, 68, 0.34);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 6px;
}

.emergency p {
    color: rgba(255, 255, 255, 0.82);
}

.emergency-photo {
    border-color: rgba(255, 255, 255, 0.26);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.22);
}

.call-panel {
    padding: 30px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 8px;
}

.call-panel span,
.call-panel strong {
    display: block;
}

.call-panel strong {
    margin: 4px 0 18px;
    font-size: 2.5rem;
    line-height: 1;
}

.call-panel .text-link {
    display: inline-block;
    margin-top: 16px;
    color: var(--white);
    font-weight: 800;
}

.content-list,
.related-list {
    display: grid;
    gap: 14px;
    padding: 0;
    margin: 22px 0 0;
    list-style: none;
}

.content-list li,
.related-list a {
    padding: 16px;
    background: var(--soft);
    border: 1px solid var(--line);
    border-radius: 8px;
}

.content-list strong {
    display: block;
    margin-bottom: 4px;
    color: var(--navy);
}

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

.related-list a {
    display: block;
    color: var(--navy);
    font-weight: 800;
    text-decoration: none;
    transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.related-list a:hover {
    transform: translateY(-3px);
    border-color: rgba(0, 128, 128, 0.38);
    box-shadow: 0 14px 26px rgba(0, 64, 64, 0.11);
}

.stars {
    display: inline-flex;
    gap: 2px;
    color: #ffc400 !important;
    font-size: 1.18rem;
    line-height: 1;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.55);
    -webkit-text-fill-color: #ffc400;
}

.stars span {
    color: #ffc400 !important;
    -webkit-text-fill-color: #ffc400;
}

.review-card {
    margin: 0;
    scroll-snap-align: start;
}

.carousel-controls {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.carousel-button {
    min-height: 42px;
    padding: 8px 14px;
    color: var(--white);
    font: inherit;
    font-weight: 800;
    background: var(--blue);
    border: 0;
    border-radius: 8px;
    cursor: pointer;
}

.carousel-button:hover {
    background: var(--blue-dark);
}

.review-card figcaption {
    margin-top: 18px;
    color: var(--navy);
    font-weight: 800;
}

.review-card span {
    display: block;
    color: var(--muted);
    font-size: 0.92rem;
    font-weight: 400;
}

.review-card .stars span {
    display: inline;
    color: #ffc400 !important;
    font-size: inherit;
    font-weight: inherit;
    -webkit-text-fill-color: #ffc400;
}

.area-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.area-list li {
    padding: 0;
    color: var(--navy);
    font-weight: 700;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.82);
    border-radius: 6px;
    box-shadow: 0 10px 24px rgba(0, 38, 43, 0.18);
    transform: skewX(-7deg);
    transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.area-list li.area-link {
    padding: 0;
}

.area-list a {
    display: block;
    min-width: 104px;
    padding: 10px 16px;
    color: var(--navy);
    text-align: center;
    text-decoration: none;
    transform: skewX(7deg);
}

.area-list li.area-link:hover,
.area-list li.area-link:focus-within {
    background: var(--yellow);
    border-color: rgba(255, 196, 59, 0.95);
    box-shadow: 0 16px 30px rgba(0, 38, 43, 0.24);
    transform: translateY(-4px) skewX(-7deg);
}

.area-list a:hover,
.area-list a:focus-visible {
    color: var(--navy);
}

.area-list a:focus-visible {
    outline: 3px solid rgba(255, 255, 255, 0.9);
    outline-offset: 4px;
}

.location-hero {
    min-height: 640px;
}

.map-section {
    background: var(--soft);
}

.photo-map-section {
    position: relative;
    overflow: hidden;
    color: var(--white);
    background: #063f44;
}

.photo-map-section::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(90deg, rgba(3, 43, 46, 0.92), rgba(0, 128, 128, 0.66));
}

.photo-map-section .split {
    position: relative;
    z-index: 2;
}

.photo-map-section h2,
.photo-map-section .eyebrow {
    color: var(--white);
}

.photo-map-section p {
    color: rgba(255, 255, 255, 0.88);
}

.map-frame {
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.map-frame iframe {
    display: block;
    width: 100%;
    min-height: 420px;
    border: 0;
}

.single-review {
    grid-template-columns: minmax(0, 720px);
}

.faq details {
    padding: 20px 0;
    border-bottom: 1px solid var(--line);
}

.faq summary {
    color: var(--navy);
    cursor: pointer;
    font-weight: 900;
    font-size: 1.08rem;
}

.faq p {
    max-width: 780px;
    margin-bottom: 0;
    color: var(--muted);
}

.final-cta {
    text-align: center;
    color: var(--white);
    background: linear-gradient(135deg, #006666, #008080);
}

.final-cta h2 {
    max-width: 780px;
    margin-inline: auto;
    color: var(--white);
}

.final-cta p:not(.eyebrow) {
    max-width: 650px;
    margin-inline: auto;
    color: rgba(255, 255, 255, 0.86);
}

.final-cta .cta-row {
    justify-content: center;
}

.site-footer {
    padding: 34px 0 90px;
    color: rgba(255, 255, 255, 0.78);
    background: #063f44;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr auto;
    gap: 24px;
    align-items: start;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 16px;
    min-width: 0;
}

.footer-logo-card {
    display: inline-flex;
    flex: 0 0 auto;
    width: 166px;
    padding: 8px 10px;
    background: var(--white);
    border-radius: 8px;
}

.footer-logo {
    width: 100%;
    height: auto;
}

.footer-contact {
    min-width: max-content;
}

.footer-copy {
    text-align: right;
}

.site-footer strong,
.site-footer a {
    color: var(--white);
}

.site-footer p {
    margin: 6px 0 0;
}

.mobile-contact {
    display: none;
}

@media (min-width: 1101px) {
    .menu-details {
        display: none;
    }

    .nav-desktop {
        display: flex;
        align-items: center;
        flex-direction: row;
        gap: 14px;
        margin-left: auto;
        width: auto;
        color: var(--muted);
        font-weight: 700;
        font-size: 0.95rem;
    }

    .nav-desktop a {
        padding: 0;
        border-radius: 0;
    }

    .nav-desktop a:hover {
        background: transparent;
    }

    .nav-toggle {
        display: none;
    }

    .header-actions {
        display: flex;
    }
}

@media (max-width: 900px) {
    .hero {
        min-height: 620px;
    }

    .hero-overlay {
        background: linear-gradient(90deg, rgba(3, 43, 46, 0.94), rgba(3, 73, 76, 0.74));
    }

    .service-grid,
    .intro,
    .split,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .proof-grid {
        grid-template-columns: 1fr;
    }

    .footer-copy {
        text-align: left;
    }

    .emergency .split {
        grid-template-columns: 1fr;
    }

    .review-grid {
        grid-template-columns: 1fr;
    }

    .related-list {
        grid-template-columns: 1fr;
    }

    .review-track {
        grid-auto-columns: calc((100% - 18px) / 2);
    }

    .proof-item {
        border-left: 0;
        border-top: 1px solid rgba(255, 255, 255, 0.16);
    }

    .proof-item:first-child {
        border-top: 0;
    }
}

@media (max-width: 640px) {
    .container {
        width: min(100% - 24px, 1120px);
    }

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

    .menu-details .nav {
        top: 76px;
        right: 12px;
        width: min(360px, calc(100vw - 24px));
    }

    .header-inner {
        gap: 10px;
        min-height: 66px;
    }

    .header-actions {
        display: none;
    }

    .brand-logo {
        width: auto;
        padding-top: 6px;
        height: clamp(50px, 15vw, 64px);
    }

    .hero {
        min-height: 640px;
    }

    .hero-media img {
        object-position: right center;
    }

    .proof-panel {
        padding-block: 34px;
    }

    .proof-item {
        grid-template-columns: 86px 1fr;
        gap: 18px;
        padding: 20px 14px;
    }

    .proof-icon {
        width: 82px;
        height: 82px;
    }

    .hero-content {
        padding-block: 54px;
    }

    .hero h1 {
        font-size: 2.55rem;
    }

    .button,
    .cta-row {
        width: 100%;
    }

    .button {
        font-weight: 900 !important;
        -webkit-text-stroke: 0.25px currentColor;
        text-shadow: 0 0 0 currentColor;
        font-size: 1.45rem;
    }

    .review-track {
        grid-auto-columns: 100%;
    }

    .carousel-controls {
        justify-content: stretch;
    }

    .carousel-button {
        flex: 1;
    }

    .section {
        padding-block: 54px;
    }

    .call-panel strong {
        font-size: 2rem;
    }

    .mobile-contact {
        position: fixed;
        right: 12px;
        bottom: 12px;
        left: 12px;
        z-index: 30;
        display: grid;
        padding: 8px;
        background: rgba(255, 255, 255, 0.96);
        border: 1px solid var(--line);
        border-radius: 8px;
        box-shadow: var(--shadow);
    }

    .mobile-contact a {
        display: grid;
        place-items: center;
        min-height: 48px;
        color: var(--navy);
        font-weight: 900 !important;
        -webkit-text-stroke: 0.25px currentColor;
        text-shadow: 0 0 0 currentColor;
        text-decoration: none;
        background: var(--yellow);
        border-radius: 6px;
    }

    .mobile-contact a:first-child {
        color: var(--navy);
        background: var(--yellow);
    }

    .mobile-contact a:last-child {
        color: var(--navy);
        background: var(--yellow);
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .service-card {
        transition: none;
    }

    .service-card:hover {
        transform: none;
    }
}
