:root {
    --color-black: #0d1116;
    --color-dark: #141820;
    --color-slate: #20242c;
    --color-card: #0b0d11;
    --color-red: #b8302d;
    --color-red-dark: #982622;
    --color-gold: #f6b51d;
    --color-white: #ffffff;
    --color-muted: #c7cbd3;
    --color-soft: #f5f5f5;
    --font-main: 'Plus Jakarta Sans', Arial, sans-serif;
    --container: 1180px;
    --radius: 14px;
    --shadow: 0 24px 60px rgba(0, 0, 0, .28);
    --section-pad: 96px;
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    font-family: var(--font-main);
    background: var(--color-black);
    color: var(--color-white);
    font-size: 16px;
    line-height: 1.65
}

img {
    max-width: 100%;
    display: block
}

a {
    color: inherit;
    text-decoration: none
}

p {
    margin: 0 0 18px;
    color: var(--color-muted)
}

h1,
h2,
h3 {
    margin: 0 0 18px;
    line-height: 1.12;
    color: var(--color-white);
    letter-spacing: -.04em
}

h1 {
    font-size: clamp(42px, 5.4vw, 78px)
}

h2 {
    font-size: clamp(32px, 4vw, 54px)
}

h3 {
    font-size: 20px
}

.container {
    width: min(var(--container), calc(100% - 40px));
    margin-inline: auto
}

.narrow {
    max-width: 760px
}

.center {
    text-align: center
}

.section {
    padding: var(--section-pad) 0
}

.section-black {
    background: var(--color-black)
}

.section-slate {
    background: var(--color-slate)
}

.section-red {
    background: var(--color-red)
}

.eyebrow {
    color: var(--color-red);
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 8px
}

.eyebrow-light {
    color: #ffd9d7
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 0;
    border-radius: 7px;
    padding: 13px 22px;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .02em;
    line-height: 1;
    cursor: pointer;
    transition: .2s ease
}

.btn-primary {
    background: var(--color-red);
    color: #fff
}

.btn-primary:hover {
    background: var(--color-red-dark);
    transform: translateY(-1px)
}

.btn-light {
    background: #fff;
    color: var(--color-red)
}

.btn-dark {
    background: #20242c;
    color: #fff
}

.btn-full {
    width: 100%
}

.button-row {
    display: flex;
    gap: 14px;
    flex-wrap: wrap
}

.button-row-cta {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap
}

.image-bg {
    position: relative;
    background-image: linear-gradient(90deg, rgba(10, 12, 15, .9), rgba(10, 12, 15, .72)), var(--bg-image);
    background-position: center;
    background-size: cover
}

.image-bg>* {
    position: relative;
    z-index: 1
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 999;
    background: #0d1116;
    border-bottom: 1px solid rgba(255, 255, 255, .06)
}

.header-inner {
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px
}

.brand img {
    width: 172px;
    max-height: 44px;
    object-fit: contain
}

.main-nav ul {
    display: flex;
    align-items: center;
    gap: 22px;
    margin: 0;
    padding: 0;
    list-style: none
}

.main-nav a {
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 700;
    color: #d7d9de
}

.main-nav a.active,
.main-nav a:hover {
    color: var(--color-red)
}

.has-dropdown {
    position: relative
}

.dropdown {
    position: absolute!important;
    top: 100%;
    left: 0;
    display: none!important;
    min-width: 260px;
    background: #fff;
    padding: 10px!important;
    border-radius: 0 0 10px 10px;
    box-shadow: var(--shadow)
}

.dropdown a {
    display: block;
    color: #111!important;
    padding: 8px 12px
}

.dropdown a:hover {
    background: #111;
    color: #fff!important
}

.has-dropdown:hover .dropdown {
    display: block!important
}

.header-btn {
    padding: 12px 20px;
    white-space: nowrap
}

.nav-toggle {
    display: none;
    width: 42px;
    height: 42px;
    background: transparent;
    border: 0;
    padding: 0
}

.nav-toggle span {
    display: block;
    width: 26px;
    height: 2px;
    margin: 6px auto;
    background: #fff
}

.hero {
    padding: 88px 0 70px
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) 420px;
    align-items: center;
    gap: 78px
}

.rating-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    font-size: 13px;
    color: #e4e4e4
}

.google-dot {
    display: grid;
    place-items: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #fff;
    color: #4285f4;
    font-weight: 900
}

.stars {
    color: var(--color-gold);
    letter-spacing: 1px
}

.hero-copy {
    max-width: 720px
}

.enquiry-card {
    background: #fff;
    color: #111;
    border-radius: 14px;
    padding: 30px 20px 0 20px;
    box-shadow: var(--shadow)
}

.enquiry-card h2 {
    color: #2b2e35;
    text-align: center;
    font-size: 25px;
    letter-spacing: -.02em
}

.enquiry-card label {
    display: block;
    color: #353941;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 10px
}

.enquiry-card input,
.enquiry-card textarea {
    width: 100%;
    margin-top: 4px;
    border: 1px solid #d7dbe2;
    border-radius: 5px;
    padding: 10px 12px;
    font: inherit;
    font-size: 13px;
    outline: 0
}

.enquiry-card input:focus,
.enquiry-card textarea:focus {
    border-color: var(--color-red)
}

.feature-strip {
    background: var(--color-red);
    padding: 28px 0
}

.feature-strip-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    text-align: center
}

.mini-feature i {
    color: var(--color-gold);
    font-size: 22px;
    margin-bottom: 10px
}

.mini-feature h3 {
    font-size: 16px;
    margin-bottom: 4px
}

.mini-feature p {
    font-size: 13px;
    margin: 0;
    color: #ffe8e8
}

.split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 84px;
    align-items: center
}

.section-copy {
    max-width: 520px
}

.check-list {
    list-style: none;
    padding: 0;
    margin: 26px 0
}

.check-list li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 10px;
    font-weight: 800
}

.check-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-gold)
}

.image-card {
    position: relative;
    background: #111;
    border-radius: var(--radius);
    padding: 28px;
    box-shadow: var(--shadow);
    overflow: visible
}

.image-card img {
    border-radius: 0 0 var(--radius) var(--radius);
    margin-top: 18px;
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.quote-mark {
    font-size: 54px;
    line-height: 0;
    color: #fff
}

.stat-badge {
    position: absolute;
    right: -50px;
    top: -42px;
    width: 170px;
    height: 170px;
    border-radius: 50%;
    background: #252a33;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding: 18px;
    box-shadow: var(--shadow)
}

.stat-badge strong {
    font-size: 28px
}

.stat-badge span {
    font-size: 11px;
    color: #cfd3da
}

.services-wrap {
    margin-top: 46px
}

.service-label {
    text-align: center;
    color: var(--color-gold);
    font-size: 13px;
    font-weight: 800;
    margin: 24px 0 18px
}

.card-grid {
    display: grid;
    gap: 24px
}

.three-col {
    grid-template-columns: repeat(3, 1fr)
}

.service-card {
    background: var(--color-card);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 18px 35px rgba(0, 0, 0, .22)
}

.service-card img {
    width: 100%;
    height: 210px;
    object-fit: cover
}

.service-card div {
    padding: 20px
}

.service-card h3 {
    font-size: 20px
}

.service-card p {
    font-size: 14px;
    min-height: 72px
}

.service-card a {
    color: var(--color-red);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase
}

.chat-card {
    background: var(--color-red);
    border-radius: 12px;
    padding: 42px 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 360px
}

.chat-card p {
    color: #ffe4e4
}

.reviews-section {
    position: relative;
    overflow: hidden
}

.reviews-section:before {
    content: '';
    position: absolute;
    left: 4%;
    bottom: -20%;
    width: 360px;
    height: 360px;
    border: 2px solid rgba(0, 0, 0, .25);
    transform: rotate(28deg)
}

.reviews-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: end
}

.review-summary {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: flex-end
}

.review-summary strong {
    font-size: 32px
}

.review-summary small {
    display: block
}

.review-cards {
    grid-column: 1/-1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px
}

.review-card {
    background: #fff;
    color: #111;
    border-radius: 10px;
    padding: 20px;
    min-height: 150px
}

.review-card p {
    color: #24272d;
    font-size: 13px
}

.review-card span {
    color: var(--color-gold)
}

.review-card small {
    color: #7b808a
}

.cta-section {
    padding: 90px 0
}

.cta-section p {
    max-width: 760px;
    margin-inline: auto
}

.site-footer {
    background: var(--color-slate);
    padding: 64px 0 24px
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 52px
}

.footer-brand img {
    width: 250px;
    margin-bottom: 22px
}

.site-footer h3,
.site-footer h4 {
    margin: 0 0 14px
}

.site-footer ul {
    list-style: none;
    margin: 0;
    padding: 0
}

.site-footer li {
    margin-bottom: 9px;
    color: #c9ced6;
    font-size: 13px;
    text-transform: uppercase
}

.site-footer a {
    color: #c9ced6
}

.site-footer a:hover {
    color: #fff
}

.socials {
    display: flex;
    gap: 10px
}

.socials a {
    display: grid;
    place-items: center;
    width: 32px;
    height: 32px;
    background: var(--color-red);
    color: #fff;
    border-radius: 4px
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .08);
    margin-top: 44px;
    padding-top: 22px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    color: #aeb4bd;
    font-size: 12px
}

.footer-bottom a {
    margin-left: 18px
}

@media (max-width:1100px) {
    .header-inner {
        gap: 16px
    }
    .main-nav ul {
        gap: 14px
    }
    .main-nav a {
        font-size: 11px
    }
    .hero-grid {
        gap: 40px
    }
    .stat-badge {
        right: -20px
    }
}

@media (max-width:920px) {
     :root {
        --section-pad: 72px
    }
    .nav-toggle {
        display: block;
        order: 3
    }
    .header-btn {
        display: none
    }
    .main-nav {
        display: none;
        position: absolute;
        left: 0;
        right: 0;
        top: 72px;
        background: #0d1116;
        border-top: 1px solid rgba(255, 255, 255, .08);
        padding: 18px 20px
    }
    .main-nav.is-open {
        display: block
    }
    .main-nav ul {
        display: block
    }
    .main-nav li {
        border-bottom: 1px solid rgba(255, 255, 255, .08)
    }
    .main-nav a {
        display: block;
        padding: 13px 0
    }
    .dropdown {
        position: static!important;
        display: none!important;
        background: #171b22;
        box-shadow: none;
        border-radius: 8px;
        margin: 0 0 12px!important
    }
    .dropdown a {
        color: #fff!important;
        padding: 10px!important
    }
    .has-dropdown.is-open .dropdown {
        display: block!important
    }
    .hero-grid,
    .split-grid,
    .reviews-grid,
    .footer-grid {
        grid-template-columns: 1fr
    }
    .hero {
        padding-top: 64px
    }
    .enquiry-card {
        max-width: 560px
    }
    .three-col {
        grid-template-columns: repeat(2, 1fr)
    }
    .review-summary {
        justify-content: flex-start
    }
    .stat-badge {
        right: 20px;
        top: -50px
    }
    .footer-bottom {
        display: block
    }
    .footer-bottom span {
        display: block;
        margin-bottom: 12px
    }
}

@media (max-width:640px) {
    body {
        font-size: 15px
    }
    .container {
        width: min(100% - 28px, var(--container))
    }
    .header-inner {
        height: 66px
    }
    .brand img {
        width: 150px
    }
    .main-nav {
        top: 66px
    }
    .hero {
        padding: 52px 0
    }
    .feature-strip-grid,
    .three-col,
    .review-cards {
        grid-template-columns: 1fr
    }
    .service-card img {
        height: 190px
    }
    .section {
        padding: 60px 0
    }
    .enquiry-card {
        padding: 22px
    }
    .stat-badge {
        position: static;
        width: 140px;
        height: 140px;
        margin: 20px auto -10px
    }
    .image-card img {
        height: 220px
    }
    .footer-brand img {
        width: 220px
    }
}

.page-hero {
    min-height: 205px;
    display: flex;
    align-items: center;
    padding: 48px 0;
    background-position: center
}

.about-hero {
    background-image: linear-gradient(90deg, rgba(11, 14, 19, .91), rgba(11, 14, 19, .77)), var(--bg-image)
}

.page-hero h1 {
    font-size: clamp(38px, 4vw, 58px);
    margin: 8px 0 0
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #b9bec7;
    font-size: 12px;
    font-weight: 800
}

.breadcrumb a {
    color: var(--color-red)
}

.breadcrumb span {
    color: #767b84
}

.breadcrumb strong {
    color: #d6d9df
}

.about-intro-section {
    padding-top: 72px
}

.about-intro-grid {
    display: grid;
    grid-template-columns: 360px minmax(0, 1fr);
    gap: 58px;
    align-items: center;
}

.about-photo,
.stand-photo {
    width: 100%;
    height: 470px;
    object-fit: cover;
    border-radius: 14px
}

.about-copy h2 {
    max-width: 720px
}

.narrow-copy {
    max-width: 650px
}

.about-copy p {
    font-size: 14px;
    line-height: 1.85
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-red);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    margin-top: 4px
}

.text-link span {
    font-size: 16px
}

.values-photo-section {
    padding: 76px 0
}

.values-photo-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 430px;
    gap: 76px;
    align-items: center;
}

.icon-list {
    list-style: none;
    margin: 28px 0 0;
    padding: 0
}

.icon-list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 22px
}

.icon-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--color-gold);
    font-weight: 900
}

.icon-list strong {
    display: block;
    text-transform: uppercase;
    color: #fff;
    font-size: 13px;
    line-height: 1.25;
    margin-bottom: 4px
}

.icon-list span {
    display: block;
    color: var(--color-muted);
    font-size: 13px;
    line-height: 1.55
}

.stand-photo {
    height: 295px
}

.full-btn {
    width: 100%;
    margin-top: 18px
}

.about-reviews-section {
    padding: 78px 0;
    min-height: 330px
}

.reviews-section {
    position: relative;
    overflow: hidden
}

.reviews-section:before {
    content: '';
    position: absolute;
    left: 10%;
    bottom: -24%;
    width: 360px;
    height: 360px;
    border: 2px solid rgba(0, 0, 0, .25);
    transform: rotate(28deg)
}

.reviews-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: end
}

.review-summary {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: flex-end
}

.stars {
    color: var(--color-gold);
    letter-spacing: 1px
}

.review-summary strong {
    font-size: 32px;
    line-height: 1
}

.review-summary small {
    display: block;
    color: #fff
}

.review-cards {
    grid-column: 1/-1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px
}

.review-card {
    background: #fff;
    color: #111;
    border-radius: 10px;
    padding: 20px;
    min-height: 128px
}

.review-card p {
    color: #24272d;
    font-size: 13px
}

.review-card span {
    color: var(--color-gold)
}

.review-card small {
    color: #7b808a
}

.who-section {
    padding: 84px 0
}

.who-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 430px;
    gap: 74px;
    align-items: center;
}

.large-list li {
    margin-bottom: 18px
}

.large-list strong {
    text-transform: none;
    font-size: 17px;
    line-height: 1.35
}

.who-image-grid {
    display: grid;
    grid-template-columns: 1.4fr .9fr;
    gap: 18px;
    align-items: stretch
}

.who-image-grid img {
    height: 385px;
    width: 100%;
    object-fit: cover;
    border-radius: 16px
}

.who-image-grid img:nth-child(2) {
    height: 345px;
    align-self: center
}

.cta-section {
    padding: 90px 0
}

.cta-section h2 {
    font-size: clamp(36px, 4vw, 56px)
}

.cta-section p {
    max-width: 850px;
    margin-inline: auto;
    font-size: 14px
}

.site-footer {
    background: var(--color-slate);
    padding: 64px 0 24px
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 52px
}

.footer-brand img {
    width: 250px;
    margin-bottom: 22px
}

.site-footer h3,
.site-footer h4 {
    margin: 0 0 14px
}

.site-footer ul {
    list-style: none;
    margin: 0;
    padding: 0
}

.site-footer li {
    margin-bottom: 9px;
    color: #c9ced6;
    font-size: 13px;
    text-transform: uppercase
}

.site-footer a {
    color: #c9ced6
}

.site-footer a:hover {
    color: #fff
}

.socials {
    display: flex;
    gap: 10px
}

.socials a {
    display: grid;
    place-items: center;
    width: 32px;
    height: 32px;
    background: var(--color-red);
    color: #fff;
    border-radius: 4px
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .08);
    margin-top: 44px;
    padding-top: 22px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    color: #aeb4bd;
    font-size: 12px
}

.footer-bottom a {
    margin-left: 18px
}

@media (max-width:1100px) {
    .main-nav ul {
        gap: 14px
    }
    .main-nav a {
        font-size: 11px
    }
    .values-photo-grid,
    .who-grid,
    .about-intro-grid {
        max-width: 100%
    }
}

@media (max-width:920px) {
     :root {
        --section-pad: 72px
    }
    .nav-toggle {
        display: block;
        order: 3
    }
    .header-btn {
        display: none
    }
    .main-nav {
        display: none;
        position: absolute;
        left: 0;
        right: 0;
        top: 82px;
        background: #0d1116;
        border-top: 1px solid rgba(255, 255, 255, .08);
        padding: 18px 20px
    }
    .main-nav.is-open {
        display: block
    }
    .main-nav ul {
        display: block
    }
    .main-nav li {
        border-bottom: 1px solid rgba(255, 255, 255, .08)
    }
    .main-nav a {
        display: block;
        padding: 13px 0
    }
    .dropdown {
        position: static!important;
        display: none!important;
        background: #171b22;
        box-shadow: none;
        border-radius: 8px;
        margin: 0 0 12px!important
    }
    .dropdown a {
        color: #fff!important;
        padding: 10px!important
    }
    .has-dropdown.is-open .dropdown {
        display: block!important
    }
    .about-intro-grid,
    .values-photo-grid,
    .who-grid,
    .reviews-grid,
    .footer-grid {
        grid-template-columns: 1fr
    }
    .about-photo {
        height: 420px
    }
    .values-photo-grid,
    .who-grid,
    .about-intro-grid {
        gap: 38px
    }
    .stand-photo {
        height: 360px
    }
    .review-summary {
        justify-content: flex-start
    }
    .review-cards {
        grid-template-columns: 1fr 1fr
    }
    .footer-bottom {
        display: block
    }
    .footer-bottom span {
        display: block;
        margin-bottom: 12px
    }
}

@media (max-width:640px) {
    body {
        font-size: 15px
    }
    .container {
        width: min(100% - 28px, var(--container))
    }
    .header-inner {
        height: 66px
    }
    .brand img {
        width: 150px
    }
    .main-nav {
        top: 66px
    }
    .page-hero {
        min-height: 175px
    }
    .section {
        padding: 60px 0
    }
    .about-intro-section,
    .values-photo-section,
    .who-section {
        padding: 60px 0
    }
    .about-photo,
    .stand-photo {
        height: 320px
    }
    .review-cards {
        grid-template-columns: 1fr
    }
    .who-image-grid {
        grid-template-columns: 1fr
    }
    .who-image-grid img,
    .who-image-grid img:nth-child(2) {
        height: 260px
    }
    .footer-brand img {
        width: 220px
    }
    .button-row.left {
        justify-content: flex-start
    }
}


/* Products Page */

.products-section {
    padding: 84px 0 74px;
    background: var(--color-slate)
}

.products-section .section-head {
    max-width: 880px;
    margin: 0 auto 42px;
    text-align: center
}

.section-rule {
    width: 170px;
    height: 2px;
    background: var(--color-red);
    margin: 0 auto 34px
}

.products-section .section-head h2 {
    font-size: clamp(34px, 4vw, 54px);
    max-width: 780px;
    margin-left: auto;
    margin-right: auto
}

.products-section .section-head p {
    max-width: 780px;
    margin: 0 auto;
    color: var(--color-muted);
    font-size: 14px;
    line-height: 1.8
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    max-width: 840px;
    margin: 0 auto
}

.product-card {
    background: #fff;
    border-radius: 9px;
    overflow: hidden;
    box-shadow: 0 18px 45px rgba(0, 0, 0, .18)
}

.product-card img {
    width: 100%;
    height: 285px;
    object-fit: cover
}

.product-card-body {
    padding: 25px 26px 28px
}

.product-card h3 {
    color: var(--color-red);
    font-size: 28px;
    letter-spacing: -.04em;
    margin-bottom: 14px
}

.product-card p {
    color: #1b1d22;
    font-size: 14px;
    line-height: 1.75;
    margin: 0
}

.products-actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 34px
}

.products-cta h2 {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto
}

.products-cta p {
    max-width: 620px
}

@media (max-width:920px) {
    .product-card img {
        height: 240px
    }
    .product-card h3 {
        font-size: 24px
    }
}

@media (max-width:640px) {
    .products-section {
        padding: 60px 0
    }
    .product-grid {
        grid-template-columns: 1fr
    }
    .products-section .section-head {
        text-align: left
    }
    .section-rule {
        margin-left: 0
    }
    .product-card-body {
        padding: 22px
    }
    .product-card img {
        height: 230px
    }
    .products-actions {
        justify-content: flex-start
    }
}


/* Areas We Service Page */

.service-area-section {
    background: var(--color-slate);
    padding: 76px 0 88px
}

.service-area-section .section-head {
    max-width: 850px;
    margin: 0 auto 62px;
    text-align: center
}

.service-area-section .section-head h2 {
    font-size: clamp(34px, 4vw, 54px);
    max-width: 820px;
    margin-left: auto;
    margin-right: auto
}

.service-area-section .section-head p {
    max-width: 760px;
    margin: 0 auto;
    color: var(--color-muted);
    font-size: 14px;
    line-height: 1.8
}

.service-area-grid {
    display: grid;
    grid-template-columns: minmax(0, 520px) minmax(0, 1fr);
    gap: 48px;
    align-items: center;
    max-width: 940px;
    margin: 0 auto
}

.map-card {
    background: var(--color-red);
    border-radius: 7px;
    padding: 8px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .22)
}

.map-card img {
    width: 100%;
    height: 390px;
    object-fit: cover;
    border-radius: 4px
}

.service-area-copy h2 {
    font-size: clamp(34px, 4vw, 48px);
    margin-bottom: 24px
}

.service-area-copy p {
    font-size: 15px;
    line-height: 1.85;
    color: var(--color-text);
    max-width: 520px
}

.service-area-copy strong {
    color: #fff;
    font-weight: 900
}

.service-area-copy .btn {
    margin-top: 16px
}

@media (max-width:920px) {
    .service-area-grid {
        grid-template-columns: 1fr;
        gap: 36px
    }
    .map-card img {
        height: 360px
    }
    .service-area-section .section-head {
        text-align: left
    }
    .service-area-section .section-head p,
    .service-area-section .section-head h2 {
        margin-left: 0
    }
    .service-area-section .section-rule {
        margin-left: 0
    }
}

@media (max-width:640px) {
    .service-area-section {
        padding: 60px 0
    }
    .map-card img {
        height: 280px
    }
    .service-area-grid {
        gap: 30px
    }
}


/* Contact Page */

.contact-section {
    padding: 82px 0 92px;
    background: var(--color-black)
}

.contact-section .section-head {
    max-width: 960px;
    margin: 0 auto 56px;
    text-align: center
}

.contact-section .section-head h2 {
    font-size: clamp(34px, 4vw, 50px)
}

.contact-section .section-head p {
    max-width: 940px;
    margin: 0 auto;
    color: var(--color-text);
    font-size: 14px;
    line-height: 1.75
}

.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 430px) minmax(0, 500px);
    gap: 86px;
    align-items: start;
    max-width: 980px;
    margin: 0 auto
}

.contact-details h2 {
    font-size: clamp(30px, 3vw, 40px);
    margin-bottom: 42px
}

.contact-group {
    margin-bottom: 34px
}

.contact-group-title {
    display: block;
    color: var(--color-gold);
    font-size: 18px;
    font-weight: 900;
    margin-bottom: 16px
}

.contact-row {
    display: grid;
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 18px;
    align-items: center;
    margin-bottom: 18px
}

.contact-icon {
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    border-radius: 6px;
    background: #20242c;
    color: #fff;
    font-size: 18px
}

.contact-row strong {
    display: block;
    color: #fff;
    font-size: 15px;
    line-height: 1.25;
    margin-bottom: 2px
}

.contact-row a,
.contact-row span {
    /**display: block; **/
    color: var(--color-text);
    font-size: 14px;
    line-height: 1.45;
    text-transform: none
}

.contact-social-title {
    color: var(--color-gold);
    font-size: 18px;
    font-weight: 900;
    margin: 28px 0 12px
}

.contact-form-card {
    background: #fff;
    color: #111;
    border-radius: 15px;
    padding: 34px 34px 38px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, .35)
}

.contact-form-card h3 {
    color: #292d33;
    text-align: center;
    font-size: clamp(28px, 3vw, 36px);
    margin-bottom: 18px
}

.contact-form-card>p {
    color: #333942;
    text-align: center;
    font-size: 14px;
    line-height: 1.7;
    max-width: 405px;
    margin: 0 auto 28px
}

.contact-form label {
    display: block;
    color: #343941;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 8px
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 1px solid #bfc4ca;
    border-radius: 7px;
    padding: 11px 14px;
    font: inherit;
    font-size: 13px;
    color: #111;
    background: #fff;
    outline: none;
    transition: .2s ease
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--color-red);
    box-shadow: 0 0 0 3px rgba(185, 50, 47, .13)
}

.contact-form textarea {
    min-height: 64px;
    resize: vertical
}

.form-field {
    margin-bottom: 16px
}

.contact-form .btn {
    width: 100%;
    margin-top: 6px;
    text-transform: none;
    font-size: 13px;
    padding: 14px 22px
}

.contact-cta h2 {
    max-width: 970px;
    margin-left: auto;
    margin-right: auto
}

.contact-cta p {
    max-width: 520px
}

@media (max-width:920px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 44px
    }
    .contact-section .section-head {
        text-align: left
    }
    .contact-section .section-head .section-rule {
        margin-left: 0
    }
    .contact-details h2 {
        margin-bottom: 28px
    }
    .contact-form-card {
        padding: 28px
    }
}

@media (max-width:640px) {
    .contact-section {
        padding: 60px 0
    }
    .contact-row {
        grid-template-columns: 46px minmax(0, 1fr);
        gap: 14px
    }
    .contact-icon {
        width: 46px;
        height: 46px
    }
    .contact-form-card {
        border-radius: 12px;
        padding: 24px 18px
    }
    .contact-form-card h3 {
        text-align: left
    }
    .contact-form-card>p {
        text-align: left
    }
    .contact-social-title {
        margin-top: 18px
    }
}


/**********/

.service-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 44px;
    align-items: start
}

.service-image img,
.rounded-image img {
    width: 100%;
    border-radius: var(--radius);
    aspect-ratio: 1/1.05;
    object-fit: cover
}

.service-content h2,
.choice-section h2,
.faq-section h2 {
    font-size: clamp(30px, 4vw, 45px);
    line-height: 1.12;
    margin: 0 0 24px
}

.service-content p,
.service-subcopy p,
.choice-section p,
.faq-section p {
    color: var(--muted);
    font-size: 15px
}

.service-subcopy h3 {
    font-size: 23px;
    margin: 18px 0 14px
}

.section-muted {
    background: var(--panel);
    background-color: #171b22;
}

.split-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 80px;
    align-items: center
}

.check-list {
    padding: 0;
    margin: 28px 0;
    list-style: none
}

.check-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 14px;
    font-weight: 800
}

.check-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--yellow)
}

.cta-section {
    padding: 80px 0;
    text-align: center;
    background-image: linear-gradient(rgba(13, 15, 18, .88), rgba(13, 15, 18, .88)), var(--bg-image);
    background-size: cover;
    background-position: center
}

.cta-section h2 {
    font-size: clamp(34px, 5vw, 55px);
    line-height: 1.12;
    margin: 0 auto 20px;
    max-width: 980px
}

.cta-section p {
    color: var(--muted);
    max-width: 720px;
    margin: 0 auto 28px
}

.eyebrow {
    color: var(--red)!important;
    font-size: 12px;
    font-weight: 700
}

.button-row-cta {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap
}

.faq-grid {
    display: grid;
    grid-template-columns: 1.25fr .85fr;
    gap: 70px;
    align-items: center
}

.faq-list {
    display: grid;
    gap: 12px
}

details {
    background: #20242a;
    border-radius: 12px;
    overflow: hidden
}

summary {
    cursor: pointer;
    padding: 18px 24px;
    font-size: 16px;
    font-weight: 800;
    list-style: none;
    display: flex;
    justify-content: space-between;
    gap: 18px
}

summary:after {
    content: "⌄";
    color: var(--red)
}

details[open] summary:after {
    content: "⌃";
    color: var(--yellow)
}

details p {
    padding: 0 24px 20px;
    margin: 0
}

.tall-image img {
    aspect-ratio: .8/1.15
}

@media(max-width:980px) {
    .service-intro-grid,
    .split-grid,
    .faq-grid,
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 34px
    }
}

@media(max-width:640px) {
    .container {
        width: min(100% - 28px, var(--container))
    }
}


/*********************/


/* Lighting page reusable cards */

.center {
    text-align: center
}

.section-heading {
    max-width: 760px
}

.section-line {
    width: 170px;
    height: 2px;
    background: var(--red);
    margin: 0 auto 24px
}

.section-heading h2 {
    font-size: clamp(30px, 4vw, 44px);
    line-height: 1.15;
    margin: 0 0 18px
}

.section-heading p {
    color: var(--muted);
    font-size: 15px;
    margin: 0 auto 12px
}

.lighting-card-stack {
    margin-top: 36px;
    display: grid;
    gap: 20px
}

.lighting-feature-card {
    display: grid;
    grid-template-columns: .9fr 1.35fr;
    align-items: center;
    background: #24282e;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .04)
}

.lighting-feature-card.image-right {
    grid-template-columns: 1.35fr .9fr
}

.lighting-feature-card .feature-image img {
    width: 100%;
    height: 210px;
    object-fit: cover
}

.lighting-feature-card .feature-copy {
    padding: 30px
}

.lighting-feature-card h3 {
    font-size: clamp(24px, 3vw, 32px);
    line-height: 1.15;
    margin: 0 0 14px
}

.lighting-feature-card p {
    color: var(--muted);
    font-size: 14px;
    margin: 0 0 22px
}

.lighting-feature-card .btn {
    min-height: 38px;
    padding: 10px 18px;
    font-size: 11px
}

.service-content.narrow-copy h2 {
    max-width: 560px
}

.about-intro-section {
    background: var(--bg)
}

.choice-section .rounded-image img {
    aspect-ratio: 1.05/1
}

.faq-section {
    background: var(--bg)
}

@media(max-width:760px) {
    .lighting-feature-card,
    .lighting-feature-card.image-right {
        grid-template-columns: 1fr
    }
    .lighting-feature-card.image-right .feature-image {
        order: -1
    }
    .lighting-feature-card .feature-image img {
        height: 240px
    }
    .lighting-feature-card .feature-copy {
        padding: 24px
    }
    .section-line {
        width: 120px
    }
}


/* EV charger page reusable blocks */

.ev-charger-section .compact-split {
    grid-template-columns: 1fr .95fr;
}

.image-with-button img {
    width: 100%;
    border-radius: var(--radius);
    aspect-ratio: 1.25/1;
    object-fit: cover
}

.full-btn {
    width: 100%;
    margin-top: 14px
}

.ev-advice-grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 42px;
    align-items: center;
}

.ev-advice-images .large {
    border-radius: 18px;
    width: 100%;
    aspect-ratio: 1.45/1;
    object-fit: cover
}

.mini-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 18px
}

.mini-row img {
    border-radius: 14px;
    aspect-ratio: 1.25/1;
    object-fit: cover
}

.ev-advice-copy h2 {
    font-size: clamp(30px, 4vw, 42px);
    line-height: 1.15;
    margin: 0 0 20px
}

.ev-advice-copy p {
    color: var(--muted);
    font-size: 15px
}

.button-row.left {
    justify-content: flex-start;
    display: flex;
    gap: 14px;
    flex-wrap: wrap
}

.section-red {
    background-color: #A82E2C;
    position: relative;
    overflow: hidden
}

.ev-property-section .container {
    position: relative;
    z-index: 1;
    max-width: 850px
}

.ev-property-section h2 {
    font-size: clamp(30px, 4vw, 42px);
    line-height: 1.15;
    margin: 0 0 18px
}

.ev-property-section p {
    color: #fff;
    max-width: 790px;
    margin: 0 auto 12px
}

.ev-property-section .btn {
    margin-top: 18px
}

.ev-choice-section {
    background: var(--bg)
}

.two-image-stack {
    display: grid;
    grid-template-columns: 1fr .78fr;
    gap: 18px;
    align-items: stretch
}

.two-image-stack img {
    width: 100%;
    height: 100%;
    min-height: 300px;
    border-radius: 18px;
    object-fit: cover
}

.two-image-stack img:nth-child(2) {
    min-height: 300px
}

.service-intro-grid {}

.service-intro .service-image img {
    aspect-ratio: 1.05/1
}

.ev-intro-section .service-content h2 {
    font-size: clamp(30px, 4vw, 42px)
}

@media(max-width:980px) {
    .ev-charger-section .compact-split,
    .ev-advice-grid {
        grid-template-columns: 1fr
    }
    .two-image-stack {
        grid-template-columns: 1fr 1fr
    }
    .ev-advice-images {
        order: 2
    }
    .ev-advice-copy {
        order: 1
    }
}

@media(max-width:640px) {
    .mini-row,
    .two-image-stack {
        grid-template-columns: 1fr
    }
    .two-image-stack img {
        min-height: 220px
    }
    .section-red:before {
        display: none
    }
}