@charset "UTF-8";
/*
Theme Name: Skidex
Author: Sergey Manuylov
*/
:root {
    --bg-main: #f3f4f6;
    --bg-soft: #d1d6dc;
    --panel-slate: #74808c;
    --panel-dark: #252a31;
    --text: #121417;
    --muted: #49515b;
    --white: #ffffff;
    --accent: #f26a00;
    --border: #1e232a;
    --container: 1372px;
    --container-wide: 1574px;
}
/* Laptop scaling — JS-driven zoom applied via footer script.
   CSS calc() cannot produce a valid unitless zoom value from vw,
   so we use a tiny script instead.  See footer.php.             */
@font-face {
    font-family: 'aAtmospheric';
    src: url('assets/fonts/aAtmospheric.ttf') format('truetype');
    font-style: normal;
}
@font-face {
    font-family: 'D-DIN';
    src: url('assets/fonts/d-din.otf') format('opentype');
    font-style: normal;
    font-weight: 400;
}
@font-face {
    font-family: 'D-DIN';
    src: url('assets/fonts/d-din-bold.otf') format('opentype');
    font-style: normal;
    font-weight: 700;
}
@font-face {
    font-family: 'Inter_18pt';
    src: url('assets/fonts/inter_18pt-regular.ttf') format('truetype');
    font-style: normal;
    font-weight: 400;
}
*,
*::before,
*::after {
    box-sizing: border-box;
}
html,
body {
    margin: 0;
    padding: 0;
}
body {
    font-family: "Inter_18pt", sans-serif;
    color: var(--text);
    background: var(--bg-main);
    line-height: 1.45;
    font-size: 17px;
}
body.fixed {
    overflow: hidden;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}
a {
    color: inherit;
    text-decoration: none;
}
h1, h2, h3, h4 h5, h6 {
    margin-top: 0;
}
.container {
    width: 1600px;
    margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px;
}
.container.container-wide {
    width: 1750px;
}
.container.container-narrow {
    width: 1400px;
}
.site-header {
    background: #f6f6f7;
    border-bottom: 1px solid #d3d6dc;
}
.flex {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    min-height: 0.1vw;
}
.flex.flex-justify-center {
    justify-content: center;
}
.flex-column {
    flex-direction: column;
}
.flex.flex-space-around {
    -webkit-justify-content: space-around;
    -ms-flex-pack: distribute;
    justify-content: space-around;
}
.flex.flex-space-between {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.flex-align-center {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}
.flex-align-bottom {
    -webkit-align-items: flex-end;
    align-items: flex-end;
}
.flex-align-top {
    -webkit-align-items: flex-start;
    align-items: flex-start;
}
.flex.flex-top {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
}
.flex.flex-end {
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
}
.header-inner {
    min-height: 140px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    column-gap: 36px;
}
.site-logo img {
    width: 224px;
}
.main-nav {
    /* Main navigation container styling */
}
.main-nav-list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 34px;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0;
}
.main-nav-list li {
    position: relative;
}
.main-nav-list a {
    font-family: "D-DIN", sans-serif;
    font-size: 17px;
    white-space: nowrap;
    font-weight: 700;
    color: var(--text);
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
}
.main-nav-list a:hover {
    color: var(--accent);
}

/* Indicators for items with children */
.main-nav-list .menu-item-has-children > a::after {
    content: "";
    display: inline-block;
    width: 6px;
    height: 6px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: translateY(-2px) rotate(45deg);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-left: 8px;
}

.main-nav-list .menu-item-has-children:hover > a::after,
.main-nav-list .menu-item-has-children.focus > a::after {
    transform: translateY(1px) rotate(225deg);
}

/* Submenu container styling */
.main-nav-list .sub-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(15px);
    background: #ffffff;
    min-width: 240px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08), 0 1px 3px rgba(0, 0, 0, 0.02);
    border: 1px solid #eef2f5;
    padding: 12px 0;
    margin: 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.3s;
    z-index: 1000;
}

/* Show submenu on hover/focus */
.main-nav-list li:hover > .sub-menu,
.main-nav-list li.focus > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/* Submenu item styling */
.main-nav-list .sub-menu li {
    width: 100%;
    margin: 0;
    padding: 0;
}

.main-nav-list .sub-menu a {
    font-family: "Inter_18pt", sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: var(--text);
    padding: 10px 24px;
    display: block;
    width: 100%;
    white-space: nowrap;
    text-transform: none;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.main-nav-list .sub-menu a::after {
    display: none !important; /* No nested chevrons on desktop submenus */
}

.main-nav-list .sub-menu a:hover {
    background-color: #f7f9fa;
    color: var(--accent) !important;
}
.header-actions {
    display: flex;
    align-items: center;
    gap: 18px;
}
#mobile-menu-toggle.opened span:nth-child(1) {
    transform: translateY(10.5px) rotate(45deg);
    background-color: #fff !important;
}
#mobile-menu-toggle.opened span:nth-child(2) {
    opacity: 0;
}
#mobile-menu-toggle.opened span:nth-child(3) {
    transform: translateY(-10.5px) rotate(-45deg);
    background-color: #fff !important;
}
.site-header {
    position: relative;
    z-index: 1002;
    background: #fff !important;
}
#mobile-menu-toggle {
    display: none !important;
    flex-direction: column;
    justify-content: space-between;
    width: 35px;
    height: 24px;
    background: transparent !important;
    border: none !important;
    cursor: pointer;
    padding: 0 !important;
    z-index: 2001;
    position: relative;
}
#mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #000 !important;
    border-radius: 2px;
    transition: all 0.3s ease;
}
.text-accent {
    color: var(--accent) !important;
}
.btn, input[type="submit"] {
    height: 53px;
    padding: 0 28px;
    border: 1px solid var(--border);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: "D-Din", sans-serif;
    font-size: 17px;
    font-weight: 700;
    white-space: nowrap;
    transition: transform 0.2s ease, opacity 0.2s ease;
}
input[type="submit"] {
    width: 275px;
}
.wpcf7-spinner {
    display: none;
}
.home form {
    text-align: right;
}
.btn:hover {
    transform: translateY(-1px);
}
.btn-primary, input[type="submit"]  {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--white);
}
.btn-outline {
    background: transparent;
    color: var(--text);
}
.button-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.button-row.centered {
    justify-content: center;
}
.section-gray {
    background: var(--bg-soft);
}
.section-gray-light {
    background: var(--bg-main);
}
.hero {
    position: relative;
    min-height: 780px;
}
.hero img {
    width: 100%;
    height: 780px;
    object-fit: cover;
}
.hero-content {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
}
.hero h1 {
    max-width: 620px;
    margin: 0;
    color: var(--white);
    font-family: "aAtmospheric", "Arial Black", sans-serif;
    font-weight: 900;
    font-size: 64px;
}
.split {
    display: grid;
    gap: 0;
}
.split-team {
    padding: 160px 0 110px 0;
}
h2 {
    margin-top: 0;
    font-family: "aAtmospheric", sans-serif;
    font-size: 42px;
    letter-spacing: 0.01em;
}
.team-intro .heading {
    width: 38%;
    margin-top: -50px;
}
.team-intro .team-copy {
    width: 62%;
    padding-left: 120px;
}
.team-copy p {
    margin-bottom: 28px;
}
.equipment {
    padding-bottom: 110px;
    padding-top: 400px;
}
.feature-image {
    width: 100%;
    object-fit: cover;
    height: 100%;
}
.feature-image-wide {
    margin-bottom: -390px;
}
.centered-copy {
    text-align: center;
    padding-top: 74px;
}
.centered-copy h2 {
    margin-bottom: 28px;
}
.centered-copy p {
    max-width: 1300px;
    margin-inline: auto;
}
.centered-copy p + p {
    margin-top: 20px;
}
.categories-wrap {
    margin-top: 52px;
    text-align: center;
}
.categories-box {
    background: var(--bg-soft);
    border-radius: 8px;
    padding: 62px 64px 54px;
}
.categories-box h3 {
    font-size: 32px;
    margin-bottom: 36px;
    font-family: D-DIN;
}
.check-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 14px;
}
.check-list li {
    position: relative;
    padding-left: 36px;
    font-size: 33px;
    color: #2a2f35;
}
.check-list li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    top: 0.05em;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 2px solid var(--accent);
    color: var(--accent);
    font-size: 15px;
    line-height: 18px;
    text-align: center;
    font-weight: 700;
}
.list-columns-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    text-align: left;
    row-gap: 10px;
    column-gap: 22px;
}
.list-columns-5 li {
    font-size: 21px;
}
.categories-caption {
    max-width: 1160px;
    margin: 48px auto 34px;
    text-align: center;
    font-size: 24px;
}
.work {
    padding-bottom: 120px;
}
.split-media {
    grid-template-columns: 1fr 1fr;
}
.panel {
    padding: 115px 70px 77px 70px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.panel-slate {
    background: var(--panel-slate);
}
.panel-dark {
    background: var(--panel-dark);
}
.panel-slate h2,
.panel-dark h2 {
    color: var(--white);
    margin-bottom: 36px;
}
.panel-slate p,
.panel-dark p {
    color: #eef2f5;
    font-size: 17px;
    line-height: 1.42;
}
.panel p + p {
    margin-top: 26px;
}
.lead-strong {
    margin-top: 38px;
    font-size: 32px !important;
    font-weight: 700;
}
.means {
    padding-bottom: 120px;
}
.centered-title {
    text-align: center;
    margin-bottom: 62px;
}
.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}
.info-card {
    background: var(--bg-soft);
    padding: 36px 40px 36px 40px;
    min-height: 264px;
}
.info-card h3 {
    font-size: 24px;
    margin-bottom: 30px;
    font-family: D-DIN;
    font-weight: 700;
    text-transform: uppercase;
}
.info-card p {
    font-size: 17px;
}
.means .button-row {
    margin-top: 52px;
}
.fast {
    padding-bottom: 92px;
}
.panel-dark .check-list {
    margin-top: 26px;
}
.panel-dark .check-list li {
    color: #f0f4f7;
    font-size: 18px;
}
.fast-cta {
    margin-top: 66px;
    display: flex;
    justify-content: space-between;
    gap: 48px;
    align-items: flex-start;
}
.fast-cta h3 {
    font-size: 42px;
    text-transform: none;
    max-width: 980px;
}
.fast-cta p {
    font-size: 24px;
}
.stacked-actions {
    display: grid;
    gap: 8px;
    width: 230px;
}
.stacked-actions .btn {
    width: 100%;
}
.buy {
    padding-block: 84px;
}
.split-buy {
    grid-template-columns: 540px 1fr;
    gap: 96px;
    align-items: center;
}
.feature-image.square {
    width: 540px;
    height: 540px;
}
.buy-copy h2 {
    margin-bottom: 30px;
}
.buy-copy > p {
    margin-bottom: 28px;
}
.list-pair {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 28px;
}
.list-pair .check-list li {
    font-size: 17px;
    padding-left: 36px;
}
.buy .button-row {
    margin-top: 38px;
}
.locations {
    padding: 98px 0 112px;
    background: url("assets/images/counties-map.png") right 8% center / 560px auto no-repeat,
    var(--bg-main);
}
.locations-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    align-items: start;
}
.locations-about h2 {
    margin-bottom: 38px;
}
.locations-card {
    background: var(--bg-soft);
    padding: 52px 46px 44px;
    max-width: 620px;
}
.locations-card h3 {
    text-transform: none;
    margin-bottom: 24px;
    font-size: 32px;
}
.locations-card .check-list {
    margin-bottom: 26px;
}
.locations-card .check-list li {
    font-size: 17px;
}
.locations-card .check-list li a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}
.locations-card .check-list li a:hover {
    color: var(--accent);
    text-decoration: underline;
}
.locations-card p {
    margin-bottom: 28px;
}
.dealer {
    padding-bottom: 108px;
}
.dealer .panel .btn {
    width: max-content;
    margin-top: 36px;
}
.contact-section {
    padding: 84px 0 485px;
    background: url("assets/images/contact-bg.jpg") center top / cover no-repeat;
}
.contact-section-form {
    padding-top: 70px;
}
.contact-content {
    max-width: 1200px;
}
.contact-content h2 {
    max-width: 900px;
}
.contact-content > p {
    max-width: 1220px;
    margin-top: 26px;
}
.contact-form {
    margin-top: 52px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
    align-items: start;
}
.contact-left {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
.contact-left select {
    grid-column: 1 / -1;
}
.contact-right {
    display: grid;
    gap: 14px;
}
.contact-right .btn {
    justify-self: end;
    min-width: 278px;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    border: 0;
    background: rgba(255, 255, 255, 0.94);
    color: #161b21;
    font-size: 24px;
    font-family: inherit;
    padding: 18px 20px;
    outline: none;
    margin-bottom: 15px;
}
.contact-form textarea {
    min-height: 192px;
    resize: vertical;
}
.site-footer {
    background: #272a2d;
    color: var(--white);
}
.footer-top {
    padding: 62px 0 44px;
    display: grid;
    grid-template-columns: auto auto auto;
    gap: 48px;
    align-items: start;
}
.footer-logo img {
    width: 328px;
}
.footer-nav-group {
    display: grid;
    gap: 14px;
}
.footer-nav-group ul {
    column-count: 2;
}

.footer-nav-group ul li {
    list-style: none;
    margin-bottom: 10px;
}
.footer-nav-group a {
    font-family: "D-Din", "Arial Black", sans-serif;
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;

}
.footer-actions {
    display: grid;
    gap: 20px;
    justify-items: end;
}
.footer-actions .button-row {
    justify-content: flex-end;
    margin-bottom: 20px;
}
.footer-actions a.btn {
    text-transform: uppercase;
}
.footer-outline {
    border-color: #dce1e6;
    color: #111;
    background: #f1f4f7;
}
.socials {
    display: flex;
    gap: 12px;
}
.socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.17);
}
.footer-bottom-inner {
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.footer-bottom p,
.footer-bottom a {
    color: #d3d8dd;
    font-size: 15px;
}
form span {
    display: block;
    margin-bottom: 20px;
}
form span input, form span select {
    width: 100%;
    border: 0;
    color: #000000;
    font-size: 17px;
    font-family: inherit;
    height: 50px;
    outline: none;
    padding-left: 25px;
}
form .flex {
    flex-wrap: wrap;
    justify-content: space-between;
}
form .half {
    width: calc(50% - 10px);
}
form textarea {
    height: 190px;
    width: 100%;
    border: 0;
    padding-left: 25px;
    resize: none;
    font-size: 17px;
    padding-top: 15px;
    font-family: Inter_18pt;
    outline: none;
}
::-webkit-input-placeholder { /* WebKit, Blink, Edge */
    color: #000;
}
:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
    color: #000;
    opacity: 1;
}
::-moz-placeholder { /* Mozilla Firefox 19+ */
    color: #000;
    opacity: 1;
}
:-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: #000;
}
::-ms-input-placeholder { /* Microsoft Edge */
    color: #000;
}
::placeholder { /* Most modern browsers support this now. */
    color: #000;
}
.form-flex-wrapper  > .half{
    width: calc(50% - 15px);
}
/* 1460 px tweaks removed — JS zoom handles laptop scaling */

/* ---- Mobile / Tablet ---- */
@media (max-width: 1200px) {
    .container,
    .container.container-wide,
    .container.container-narrow {
        width: 100%;
        max-width: 100%;
    }
    .header-inner {
        display: flex;
        justify-content: space-between;
        align-items: center;
        min-height: 80px;
        padding-top: 10px;
        padding-bottom: 10px;
    }
    .main-nav, .header-actions {
        display: none;
    }
    #mobile-menu-toggle {
        display: flex !important;
        margin-left: auto;
    }
    #overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.5);
        z-index: 999;
        display: none;
    }
    #overlay.opened {
        display: block;
    }
    #mobile-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: #252a31;
        z-index: 2000;
        padding: 40px 20px;
        display: none;
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        overflow-y: auto;
    }
    .mobile-menu-header {
        width: 100%;
        margin-bottom: 40px;
    }
    .mobile-menu-header .site-logo img {
        width: 180px;
    }
    .mobile-nav {
        margin-bottom: 40px;
        width: 100%;
    }
    .mobile-nav-list {
        display: flex;
        flex-direction: column;
        gap: 20px;
        margin: 0;
        padding: 0;
        list-style: none;
        width: 100%;
    }
    .mobile-nav-list li {
        width: 100%;
        position: relative;
    }
    .mobile-nav-list a {
        font-family: "aAtmospheric", sans-serif;
        font-size: 20px;
        font-weight: 700;
        text-transform: uppercase;
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        padding: 4px 0;
    }
    .mobile-nav-list .menu-item-has-children > a::after {
        content: "";
        display: inline-block;
        width: 8px;
        height: 8px;
        border-right: 2px solid #fff;
        border-bottom: 2px solid #fff;
        transform: rotate(45deg);
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        margin-right: 8px;
    }
    .mobile-nav-list .menu-item-has-children.opened > a::after {
        transform: rotate(225deg);
    }
    .mobile-nav-list .sub-menu {
        display: none; /* Hidden by default, toggled via JS */
        list-style: none;
        padding-left: 20px;
        margin: 10px 0;
        width: 100%;
    }
    .mobile-nav-list .sub-menu li {
        margin: 0;
    }
    .mobile-nav-list .sub-menu a {
        font-family: "D-DIN", sans-serif;
        font-size: 16px;
        font-weight: 700;
        text-transform: none;
        color: #d1d6dc;
        padding: 8px 0;
        display: block;
    }
    .mobile-nav-list .sub-menu a::after {
        display: none !important;
    }
    .mobile-nav-list .sub-menu a:hover {
        color: var(--accent) !important;
    }
    .mobile-actions {
        display: flex;
        flex-direction: column;
        gap: 15px;
        width: 100%;
        margin-bottom: 40px;
    }
    .mobile-actions .btn {
        width: 100% !important;
        justify-content: center;
    }
    .mobile-actions .btn-outline {
        background: #fff !important;
        color: #252a31 !important;
        border-color: #fff !important;
    }
    .mobile-socials {
        display: flex;
        gap: 20px;
        font-size: 24px;
        color: #fff;
        margin-top: auto;
    }
    .mobile-socials a {
        color: #fff;
    }
    .hero {
        min-height: auto;
        display: flex;
        flex-direction: column;
        background: #000;
    }
    .hero img {
        height: auto !important;
        aspect-ratio: 16 / 9;
        position: relative;
    }
    .hero-content {
        position: relative;
        inset: auto;
        padding: 40px 20px;
        background: #000;
        text-align: center;
        width: 100%;
        max-width: 100%;
    }
    .hero h1 {
        font-size: 32px;
        max-width: 100%;
        margin: 0 auto;
        color: #fff;
    }
    .flex {
        flex-direction: column;
    }
    .team-intro {
        padding: 80px 0;
        text-align: center;
    }
    .team-intro .heading, .team-intro .team-copy {
        width: 100%;
        padding-left: 0;
    }
    .team-intro .heading {
        margin-top: 0;
        margin-bottom: 30px;
    }
    .team-intro .button-row {
        justify-content: center;
        margin-top: 40px;
    }
    .feature-image-wide {
        margin-bottom: 0;
        margin-top: 40px;
    }
    .equipment {
        padding-top: 80px;
        padding-bottom: 80px;
    }
    .split-team,
    .split-media,
    .split-buy,
    .locations-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .feature-image.square {
        width: 100%;
        height: auto;
    }
    .locations {
        background: var(--bg-main);
    }
    .locations-card {
        max-width: none;
    }
    .cards-grid {
        grid-template-columns: 1fr 1fr;
    }
    .list-columns-5 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .footer-top {
        grid-template-columns: 1fr 1fr;
        row-gap: 34px;
    }
    .footer-actions {
        justify-items: start;
    }
    .footer-actions .button-row {
        justify-content: flex-start;
    }
    /* --- Typography scaling for mobile --- */
    h2 {
        font-size: 28px !important;
    }
    h3 {
        font-size: 22px !important;
    }
    p,
    .list-columns-5 li,
    .locations-card .check-list li,
    .check-list li,
    .list-pair .check-list li,
    .panel-dark .check-list li,
    .locations-card p,
    .categories-caption {
        font-size: 16px !important;
    }
    .lead-strong {
        font-size: 22px !important;
    }
    .categories-box h3,
    .locations-card h3 {
        font-size: 22px;
    }
    .info-card h3 {
        font-size: 18px;
    }
    .info-card p {
        font-size: 15px !important;
    }
    .btn, input[type="submit"] {
        font-size: 14px;
        height: 46px;
        padding: 0 20px;
    }
    .fast-cta h3 {
        font-size: 26px;
    }
    .fast-cta p {
        font-size: 16px !important;
    }
    .panel {
        padding: 50px 30px;
    }
    .contact-section {
        padding: 60px 0 200px;
    }
    .contact-content h2 {
        max-width: 100%;
    }
    .contact-content > p {
        font-size: 16px !important;
    }
    .contact-form input,
    .contact-form select {
        font-size: 16px !important;
        padding: 14px 16px;
    }
    .contact-form textarea {
        font-size: 16px !important;
        padding: 14px 16px;
        min-height: 140px;
    }
    .split-buy {
        gap: 30px;
    }
    .work, .means, .fast, .dealer {
        padding-bottom: 60px;
    }
    .buy {
        padding-block: 60px;
    }
    .locations {
        padding: 60px 0;
    }
}
@media (max-width: 840px) {
    .cards-grid {
        grid-template-columns: 1fr;
    }
    .fast-cta {
        flex-direction: column;
        margin-top: 40px;
    }
    .stacked-actions {
        width: 100%;
    }
    .list-pair {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .contact-form {
        grid-template-columns: 1fr;
        margin-top: 30px;
        text-align: center;
    }
    .contact-left {
        grid-template-columns: 1fr;
    }
    .contact-section-form .flex,
    .contact-section-form .half,
    .contact-section-form .form-flex-wrapper {
        display: block !important;
        width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    .contact-section-form br {
        display: none !important;
    }
    .contact-section-form p {
        margin-bottom: 0 !important;
    }
    .contact-section-form span.wpcf7-form-control-wrap {
        display: block !important;
        margin-bottom: 20px !important;
        width: 100% !important;
    }
    .contact-section-form input,
    .contact-section-form select,
    .contact-section-form textarea,
    .contact-section-form .wpcf7-form-control {
        font-size: 16px !important;
        padding: 16px !important;
        margin-bottom: 0 !important;
        display: block !important;
        width: 100% !important;
        max-width: 100% !important;
        min-width: 100% !important;
        box-sizing: border-box !important;
    }
    .contact-section-form input[type="submit"] {
        width: 100% !important;
        margin-top: 10px !important;
        height: 56px !important;
    }
    .contact-right .btn {
        justify-self: center;
        min-width: 200px;
        width: 100%;
    }
    .hero h1 {
        font-size: 24px;
    }
    .hero-content {
        padding: 30px 20px;
    }
    .mobile-nav a {
        font-size: 20px;
    }
    .footer-top {
        grid-template-columns: 1fr;
        text-align: center;
        justify-items: center;
    }
    .footer-logo {
        margin-bottom: 30px;
    }
    .footer-nav-group ul {
        column-count: 1;
        padding: 0;
    }
    .footer-actions {
        justify-items: center;
        width: 100%;
    }
    .footer-actions .button-row {
        justify-content: center;
    }
    .footer-actions .socials {
        justify-content: center;
    }
    .footer-bottom-inner {
        flex-direction: column;
        justify-content: center;
        padding-block: 20px;
        text-align: center;
    }
    .split-team {
        padding: 40px 0;
    }
    .panel {
        padding: 30px 20px;
    }
    .categories-box {
        padding: 30px 20px;
    }
    .locations-card {
        padding: 30px 20px;
    }
    .cards-grid {
        grid-template-columns: 1fr;
    }
    .list-columns-5 {
        grid-template-columns: 1fr;
    }
    .footer-nav-group ul {
        column-count: 1;
    }
}
.cta-content {
    position: relative;
    z-index: 1;
}
.cta-content h2 {
    color: #fff;
    margin-bottom: 15px;
    text-transform: uppercase;
}

/* General Layout Tweaks */
.text-primary {
    color: #d94b15;
}
.font-bold {
    font-weight: 700;
}
.uppercase {
    text-transform: uppercase;
}
.text-xl {
    font-size: 1.5rem;
}
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.justify-center { justify-content: center; }
.text-center { text-align: center; }
.text-right { text-align: right; }


/* ==========================================================================
   Product Page Styles
   ========================================================================== */

/* Hero */
.product-hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    color: #fff;
    overflow: hidden;
    background-color: #000;
}
.product-hero .hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}
/* Removed overlay ::after */
.product-hero .hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    padding-left: 80px; /* Added left margin/padding */
}
.product-hero .hero-subtitle {
    font-family: "aAtmospheric", sans-serif;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 10px;
    font-size: 24px;
    color: #fff;
}
.product-hero h1 {
    font-family: "aAtmospheric", sans-serif;
    font-size: 82px;
    line-height: 1.1;
    margin-bottom: 0;
    text-transform: uppercase;
    color: #fff;
    max-width: 1000px; /* Increased max-width */
    text-shadow: 0 4px 30px rgba(0,0,0,0.3);
}
.hero-description {
    font-size: 20px;
    margin-top: 20px;
    max-width: 600px;
    color: rgba(255,255,255,0.9);
}

/* Product Intro */
.product-intro {
    padding: 100px 0;
    background-color: #d1d6dc; /* Restored light grey */
    color: var(--text);
}
.product-intro .intro-copy .description {
    color: var(--muted);
}
.split-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.intro-copy h2 {
    font-family: "aAtmospheric", sans-serif;
    font-size: 42px;
    margin-bottom: 30px;
    line-height: 1.1;
}
.intro-copy .description {
    font-size: 18px;
    line-height: 1.6;
    color: var(--muted);
}

/* Built For Section */
.built-for {
    padding: 60px 0 0; /* Added top padding/margin */
}
.boxed-card {
    border-radius: 4px;
    background: var(--panel-dark);
}
.split-built-for {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 0;
    align-items: stretch;
}
.built-for-copy {
    background: var(--panel-dark);
    color: #fff;
    padding: 100px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.built-for-copy h2 {
    font-family: "aAtmospheric", sans-serif;
    font-size: 36px;
    margin-bottom: 24px;
}
.built-for-copy .check-list li {
    color: #fff;
    font-size: 20px;
}
.built-for-copy .check-list li::before {
    border-color: var(--accent);
    color: var(--accent);
}
.built-for .feature-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Why Choose Section */
.why-choose {
    padding: 100px 0;
}
.why-choose .centered-title {
    margin-bottom: 60px;
}
.accordion-container {
    max-width: 900px;
    margin: 0 auto;
}
.accordion-item {
    background: #fff;
    border: 1px solid #e1e4e8;
    margin-bottom: 12px;
    border-radius: 4px;
    overflow: hidden;
    transition: all 0.3s ease;
}
.accordion-item.active {
    border-color: var(--accent);
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}
.accordion-item.active > .accordion-header {
    background: #dce1e6; /* Grey when opened */
    border-color: #dce1e6;
}
.accordion-header {
    width: 100%;
    text-align: left;
    padding: 24px 30px;
    background: #fff;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: "D-Din", sans-serif;
    font-weight: 700;
    font-size: 20px;
    text-transform: uppercase;
    color: var(--text);
}
.accordion-icon {
    width: 24px;
    height: 24px;
    position: relative;
    flex-shrink: 0;
}
.accordion-icon::before, .accordion-icon::after {
    content: '';
    position: absolute;
    background: var(--accent);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.accordion-icon::before {
    width: 14px;
    height: 2px;
}
.accordion-icon::after {
    width: 2px;
    height: 14px;
    transition: transform 0.3s;
}
.accordion-item.active > .accordion-header .accordion-icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
}
.accordion-inner {
    padding: 0 30px 30px;
    font-size: 17px;
    line-height: 1.6;
    color: var(--muted);
}

/* Nested Accordion Styles */
.nested-accordion-container {
    border-top: 1px solid #e1e4e8;
    padding-top: 20px;
}
.nested-item {
    border: none;
    border-bottom: 1px solid #f1f4f7;
    margin-bottom: 0;
    border-radius: 0;
}
.nested-header {
    padding: 15px 0;
    font-size: 18px;
    background: transparent !important;
}
.nested-item.active .nested-header {
    background: transparent !important;
    border-color: transparent;
}
.nested-item .accordion-inner {
    padding: 0 0 20px 20px;
    font-size: 16px;
}
.nested-item .accordion-icon {
    width: 18px;
    height: 18px;
}
.nested-item .accordion-icon::before { width: 10px; }
.nested-item .accordion-icon::after { height: 10px; }

/* Attachments Section */
.attachments {
    padding: 0;
}
.split-attachments {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 0;
    align-items: stretch;
}
.attachments-copy {
    background: var(--panel-dark);
    color: #fff;
    padding: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.attachments-copy h2 {
    font-family: "aAtmospheric", sans-serif;
    font-size: 36px;
    margin-bottom: 24px;
    color: #fff;
    text-transform: uppercase;
}
.attachments-copy .description p,
.attachments-copy .bottom-text p {
    color: #fff;
    font-size: 18px;
    line-height: 1.6;
}
.attachments-copy .check-list li {
    color: #fff;
    font-size: 20px;
}
.attachments-media .feature-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.check-orange li::before {
    border-color: var(--accent) !important;
    color: var(--accent) !important;
}

/* Specifications */
.specs {
    padding: 100px 0;
}
.split-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}
.specs-copy h2 {
    font-family: "aAtmospheric", sans-serif;
    font-size: 36px;
    margin-bottom: 20px;
}
.specs-links .btn-text-accent {
    color: var(--accent);
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 0.5px;
}
.specs-links.mb-8 a,
.specs-links a {
    color: #f26a00;
    font-weight: 700;
}
.bg-gray-200 { background-color: #f1f4f7 !important; }
.specs-header {
    letter-spacing: 1px;
    font-weight: 900;
}
.specs-accordion-container .accordion-item {
    margin-bottom: 8px;
    border: none;
    border-radius: 0;
}
.specs-accordion-container .accordion-header {
    background: #D1D5DB;
    color: #252a31;
    padding: 10px 20px; /* Reduced padding */
    font-size: 14px;
    border: none;
    flex-wrap: nowrap; /* Ensure single line */
}
.specs-accordion-container .accordion-header h3 {
    margin: 0;
    font-size: 18px;
    white-space: nowrap !important;
    flex-grow: 1 !important;
}
.specs-accordion-container .accordion-item.active .accordion-header {
    background: #000;
    color: #fff;
}
.specs-accordion-container .accordion-icon::before,
.specs-accordion-container .accordion-icon::after {
    background: #252a31;
}
.specs-accordion-container .accordion-item.active .accordion-header .accordion-icon::before,
.specs-accordion-container .accordion-item.active .accordion-header .accordion-icon::after {
    background: #fff;
}
.specs-accordion-container .accordion-title span.text-accent {
    color: var(--accent);
}
.specs-accordion-container .accordion-content {
    background: #fff;
    border: 1px solid #dce1e6;
    border-top: none;
}
.specs-accordion-container .units-switcher {
    margin-left: auto !important;
    margin-right: 30px !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 10px !important;
}
.specs-accordion-container .units-switcher span.text-xs.font-bold {
    color: #252a31 !important;
    font-size: 16px !important;
    font-weight: 700 !important;
}
.specs-accordion-container .accordion-item.active .units-switcher span.text-xs.font-bold {
    color: #fff !important;
}
.specs-accordion-container .units-switcher select {
    background: #fff !important;
    color: #000 !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    padding: 6px 12px !important;
    border: 1px solid #000 !important;
    border-radius: 0 !important;
    cursor: pointer !important;
    font-family: inherit !important;
}
.spec-value {
    color: var(--text);
    font-size: 18px;
}
.specs-table tr:nth-child(even) {
    background-color: #fcfcfc;
}
.specs-table-container {
    background: #fff;
    border: 1px solid #dce1e6;
    border-radius: 4px;
    overflow: hidden;
}
.specs-table {
    width: 100%;
    border-collapse: collapse;
}
.specs-table th {
    background: #f1f4f7;
    padding: 20px;
    text-align: left;
    font-family: "D-Din", sans-serif;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    color: var(--muted);
    border-bottom: 1px solid #dce1e6;
}
.specs-table td {
    padding: 18px 20px;
    border-bottom: 1px solid #f1f4f7;
    font-size: 17px;
    color: var(--text);
}
.specs-table tr:last-child td {
    border-bottom: none;
}
.specs-action {
    padding: 20px;
    background: #fff;
    border-top: 1px solid #dce1e6;
}

/* Specs Footer Diagrams */
.specs-footer-images {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 60px;
    margin-top: 0;
    margin-bottom: -320px; /* Strong overlap with Why Buy */
    position: relative;
    z-index: 10;
}
.spec-image-box {
    flex: 1;
    max-width: 650px;
}
.spec-image-box:last-child {
    margin-top: 140px; /* Offset to the right */
}
.spec-image-box img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 50px rgba(0,0,0,0.08));
}

/* Why Buy Section */
.why-buy {
    padding: 240px 0 100px; /* Increased top padding for overlap */
    background: #f8f9fa;
    position: relative;
    z-index: 1;
}
.why-buy-title {
    font-family: "aAtmospheric", sans-serif;
    font-size: 58px;
    line-height: 1.1;
    margin-bottom: 80px;
    max-width: 900px;
}
.why-buy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.why-buy-grid .intro-text {
    padding-right: 30px;
}
.why-buy-grid .intro-text p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}
.why-buy-grid .intro-text p:last-child {
    margin-bottom: 0;
    font-weight: 700;
}
.info-card {
    background: #dce1e6; /* Design-aligned light grey */
    padding: 40px;
    border-radius: 0;
    height: 100%;
}
.info-card h3 {
    font-family: "aAtmospheric", sans-serif;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    color: #000;
}
.info-card .card-text p {
    font-size: 14px;
    line-height: 1.5;
    color: #333;
    margin: 0;
}

/* CTA */
.product-cta {
    position: relative;
    padding: 160px 0 500px;
    color: var(--text);
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    background-color: #f8f9fa;
}
.product-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, #fff 0%, #fff 35%, rgba(255, 255, 255, 0.95) 55%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
    pointer-events: none;
}
.cta-content {
    position: relative;
    z-index: 2;
}
.cta-content h2 {
    font-family: "aAtmospheric", sans-serif;
    font-size: 54px;
    margin-bottom: 24px;
    color: var(--text);
}
.cta-description p {
    font-size: 18px;
    color: var(--muted);
    max-width: 900px;
    margin-inline: auto;
    line-height: 1.6;
}
.cta-label {
    font-size: 15px;
    letter-spacing: 2px;
    color: var(--muted);
    font-family: "D-Din", sans-serif;
    font-weight: 700;
}
.cta-phone {
    font-size: 36px;
    margin-top: 40px;
}
.cta-phone a {
    color: var(--text);
    text-decoration: none;
}
.cta-address p {
    font-size: 24px;
    font-weight: 700;
    color: var(--text);
    margin: 0;
}
.product-cta .btn-primary {
    background: #d94b15;
    border-color: #d94b15;
}
.product-cta .btn-outline {
    background: #fff;
    border: 2px solid var(--text);
    color: var(--text);
}

/* Responsiveness */
@media (max-width: 1200px) {
    .product-hero h1 { font-size: 56px; }
    .split-intro, .split-built-for, .split-media, .split-specs, .why-buy-grid {
        grid-template-columns: 1fr;
    }
    .built-for-copy, .attachments .panel-slate {
        padding: 60px 40px;
    }
    .intro-copy { padding-left: 0; }
    .built-for-copy { padding-right: 40px; }
}

@media (max-width: 768px) {
    .product-hero h1 { font-size: 42px; }
    .product-hero .hero-subtitle { font-size: 18px; }
    .intro-copy h2, .built-for-copy h2, .attachments .panel-slate h2, .specs-copy h2, .cta-content h2 {
        font-size: 32px;
    }
}

/* Trade In Page Styles */
.trade-in-page .hero {
    min-height: 500px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    color: #fff;
}
.trade-in-page .hero::after {
    display: none;
}
.trade-in-page .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}
.trade-in-page .hero h1 {
    font-size: 56px !important;
    line-height: 1.1;
    font-family: "aAtmospheric", sans-serif;
    text-transform: uppercase;
    text-align: left !important;
    color: #fff !important;
}

.trade-in-page .hero-content {
    text-align: left !important;
    padding-left: 0 !important;
}
.benefit-box h3 {
    letter-spacing: 1px;
}
.form-tab-btn {
    border: none;
    background: none;
    color: var(--muted);
    transition: all 0.3s;
    border-bottom: 3px solid transparent;
}
.form-tab-btn.active {
    color: var(--accent);
    border-bottom-color: var(--accent);
}
.form-content.hidden {
    display: none;
}
.h-screen-50 {
    height: 50vh;
}
.min-h-500 {
    min-height: 500px;
}
.max-w-4xl {
    max-width: 56rem;
}
.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.trade-in-intro {
    background-color: #d1d5db !important;
    padding-top: 80px !important;
    padding-bottom: 80px !important; 
}

.benefits-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 32px !important;
    margin-top: 40px !important;
}

.benefit-item h3 {
    font-size: 14px !important;
    letter-spacing: 0.5px;
    margin-bottom: 8px !important;
}

.instruction-text {
    font-size: 14px !important;
    font-style: italic !important;
    line-height: 1.6 !important;
    margin-bottom: 30px !important;
    color: var(--muted);
}

.trade-in-form-area {
    padding-top: 0 !important;
    padding-bottom: 485px !important; /* Matched homepage contact-section */
    background-size: cover;
    background-position: center bottom !important; 
    background-repeat: no-repeat;
    position: relative;
}
.form-tabs {
    border-bottom: none !important;
}

.form-tabs-wrapper {
    width: 100%;
}

.form-tab-btn {
    border: 1px solid #000 !important;
    background: #fff !important;
    color: #000 !important;
    padding: 15px 10px !important; /* Reduced side padding to allow width to control size */
    width: 280px !important; /* Fixed width to ensure center alignment of the seam */
    margin: 0 !important;
    font-size: 18px !important;
    position: relative;
    bottom: -1px; /* Align with the line */
}

.form-tab-btn.active {
    background: #d1d5db !important;
}

.form-tab-btn:first-child {
    border-right: none !important;
}

.form-tabs-line {
    height: 1px;
    background: #000;
    width: 100%;
}

/* Form Styles */
.trade-in-page input[type="text"],
.trade-in-page input[type="email"],
.trade-in-page input[type="tel"],
.trade-in-page select,
.trade-in-page textarea {
    background: #fff !important;
    border: none !important;
    padding: 15px 20px !important;
    font-size: 16px !important;
}

.trade-in-page .wpcf7-form {
    padding-top: 50px !important;
}

.trade-in-page .btn-submit, 
.trade-in-page input[type="submit"] {
    background: var(--accent) !important;
    color: #fff !important;
    text-transform: uppercase !important;
    font-weight: 700 !important;
    border: none !important;
    padding: 15px 40px !important;
    cursor: pointer !important;
}

/* Radio Button Styling */
.trade-in-page .wpcf7-radio,
.trade-in-page .wpcf7-checkbox {
    display: flex !important;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}
.trade-in-page .wpcf7-radio .wpcf7-list-item,
.trade-in-page .wpcf7-checkbox .wpcf7-list-item {
    margin: 0 !important;
}
.trade-in-page .wpcf7-radio .wpcf7-list-item label,
.trade-in-page .wpcf7-checkbox .wpcf7-list-item label {
    display: flex;
    align-items: center;
    gap: 0;
    padding: 10px 28px 8px;
    border: 2px solid #d1d5db;
    border-radius: 6px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    line-height: 1;
    color: var(--text);
    background: #fff;
    transition: all 0.2s ease;
    user-select: none;
}
.trade-in-page .wpcf7-list-item-label {
    display: inline-block;
    margin: 0 !important;
    padding: 0 !important;
    line-height: 1 !important;
}
.trade-in-page .wpcf7-radio .wpcf7-list-item label:hover,
.trade-in-page .wpcf7-checkbox .wpcf7-list-item label:hover {
    border-color: var(--accent);
    background: rgba(242, 106, 0, 0.04);
}
/* Hide the native radio/checkbox input */
.trade-in-page .wpcf7-radio input[type="radio"],
.trade-in-page .wpcf7-checkbox input[type="checkbox"] {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    border: 0 !important;
}
/* Selected state */
.trade-in-page .wpcf7-radio input[type="radio"]:checked + .wpcf7-list-item-label,
.trade-in-page .wpcf7-checkbox input[type="checkbox"]:checked + .wpcf7-list-item-label {
    /* We target the parent label via JS or via the structure */
}
.trade-in-page .wpcf7-radio .wpcf7-list-item:has(input:checked) label,
.trade-in-page .wpcf7-checkbox .wpcf7-list-item:has(input:checked) label {
    border-color: var(--accent);
    background: var(--accent);
    color: #fff;
}

.mobile-only-hero-img {
    display: none;
}

@media (max-width: 768px) {
    .trade-in-page .hero h1 {
        font-size: 21px !important; /* Requested size */
        text-align: center !important; /* Center text */
    }
    .mobile-only-hero-img {
        display: block !important;
        width: 100% !important;
        height: auto !important;
    }
    .trade-in-hero {
        min-height: auto !important;
        background-image: none !important; /* Turn off the desktop bg image */
        padding-top: 0 !important; /* Remove the hack */
        background-color: #000 !important;
    }
    .trade-in-hero .hero-content {
        background: #000 !important;
        padding: 40px 20px !important;
        text-align: center !important; /* Ensure content box centers items */
    }
    .trade-in-intro {
        padding-top: 60px !important;
        padding-bottom: 60px !important;
    }
    .benefits-grid {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }
    .equipment-row {
        flex-direction: row !important; /* Override global .flex column on mobile */
        flex-wrap: nowrap !important;
        margin-top: -20px !important;
        gap: 8px !important;
        overflow: hidden; /* Prevent horizontal scroll if they misbehave */
    }
    .equipment-img {
        width: 25% !important; /* Force 4 across explicitly */
        flex: 1 1 0;
        min-width: 0; /* Allow flex item to shrink smaller than content */
    }
    .equipment-img img {
        width: 100% !important; /* Force image to scale down */
        height: auto !important;
    }
    .trade-in-selection {
        padding-bottom: 30px !important;
    }
    .trade-in-form-area {
        padding-top: 40px !important;
        padding-bottom: 180px !important;
    }
    .form-tabs {
        flex-wrap: nowrap;
        width: 100%;
    }
    .form-tab-btn {
        padding: 12px 10px !important;
        font-size: 14px !important;
        flex: 1;
        width: auto !important;
        text-align: center;
    }
    .trade-in-page .wpcf7-form {
        padding-top: 30px !important;
    }
    .trade-in-page form .flex,
    .trade-in-page form .form-flex-wrapper,
    .trade-in-page form .half {
        display: block !important;
        width: 100% !important;
    }
    .trade-in-page form .half {
        margin-bottom: 15px !important;
    }
    .trade-in-page input[type="text"],
    .trade-in-page input[type="email"],
    .trade-in-page input[type="tel"],
    .trade-in-page select,
    .trade-in-page textarea,
    .trade-in-page .wpcf7-form-control {
        width: 100% !important;
        box-sizing: border-box !important;
        margin-bottom: 15px !important;
    }
    .trade-in-page .btn-submit, 
    .trade-in-page input[type="submit"] {
        width: 100% !important;
    }
}

/* Trade-In Page Benefits Desktop Borders */
@media (min-width: 768px) {
    .trade-in-intro .benefits-grid .benefit-item {
        position: relative;
    }
    .trade-in-intro .benefits-grid .benefit-item:not(:last-child)::after {
        content: '';
        position: absolute;
        top: 10%;
        bottom: 10%;
        right: -16px; /* Centered in the 32px gap */
        width: 2px;
        background-color: #6b7280; /* Darker grey so it's visible against the #d1d5db background */
    }
}

/* Hide the Google reCAPTCHA v3 floating badge */
.grecaptcha-badge { 
    visibility: hidden !important}

/* ═══════════════════════════════════════════════
   Suwannee County Page — Scoped Styles
   ═══════════════════════════════════════════════ */

.skidex-suwannee-page h2 {
    font-weight: 500;
}

.skidex-suwannee-page .what-done .panel .check-list,
.skidex-suwannee-page .tough-conditions .panel .check-list {
    margin-bottom: 26px;
}

/* --- 1. Hero --- */
.skidex-suwannee-page .hero {
    background: #252a31;
    min-height: 420px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.skidex-suwannee-page .hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('https://skidex.com/wp-content/uploads/2026/05/Hero.png') right center / auto 100% no-repeat;
    opacity: 0.35;
    z-index: 1;
}
.skidex-suwannee-page .hero .hero-content {
    position: relative;
    z-index: 2;
    padding-top: 80px;
    padding-bottom: 80px;
}
.skidex-suwannee-page .hero h1 {
    margin-bottom: 18px;
    font-size: 46px;
    line-height: 1.15;
    max-width: 100%;
    white-space: normal;
}
.skidex-suwannee-page .hero .subheadline {
    color: var(--white);
    font-size: 22px;
    font-weight: 400;
    margin-top: 8px;
}

/* --- 2. Intro Section ---
   Design shows a noticeable blue-gray background. */
.skidex-suwannee-page .intro-sales {
    background: #d1d6dc;
    padding-block: 80px;
}
.skidex-suwannee-page .intro-sales .split-media {
    grid-template-columns: 0.45fr 0.55fr;
    align-items: center;
    gap: 60px;
}
.skidex-suwannee-page .intro-sales .feature-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: contain;
}
.skidex-suwannee-page .intro-sales .panel {
    padding: 0;
}
.skidex-suwannee-page .intro-sales .panel .intro-tagline {
    font-size: 18px;
    font-weight: 700;
    margin-top: 24px;
    color: var(--text);
}

/* --- 3/4/5. Split sections ---
   Design shows generous white space around these blocks. */
.skidex-suwannee-page .what-done {
    background: #f3f4f6;
    padding-top: 120px;
    padding-bottom: 120px;
}
.skidex-suwannee-page .tough-conditions {
    background: #f3f4f6;
    padding-top: 120px;
    padding-bottom: 120px;
}
.skidex-suwannee-page .what-done .split-media,
.skidex-suwannee-page .tough-conditions .split-media {
    max-width: 1400px;
    margin-inline: auto;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
}
.skidex-suwannee-page .what-done .split-media img,
.skidex-suwannee-page .tough-conditions .split-media img {
    object-fit: cover;
    height: 100%;
    width: 100%;
}
.skidex-suwannee-page .what-done .panel,
.skidex-suwannee-page .tough-conditions .panel {
    padding: 70px 60px;
}

/* --- Equipment cards — 5 across --- */
.skidex-suwannee-page .equipment-cards {
    background: #f3f4f6;
    padding-block: 80px;
}
.skidex-suwannee-page .equipment-cards .centered-copy {
    padding-top: 0;
}
.skidex-suwannee-page .equipment-cards .cards-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
}
.skidex-suwannee-page .equipment-cards .info-card {
    min-height: 200px;
    padding: 28px 22px;
}
.skidex-suwannee-page .equipment-cards .info-card h3 {
    font-size: 18px;
    margin-bottom: 14px;
}
.skidex-suwannee-page .equipment-cards .info-card p {
    font-size: 15px;
}
.skidex-suwannee-page .equipment-cards .cta-row {
    text-align: center;
    margin-top: 40px;
}
.skidex-suwannee-page .equipment-cards .cta-row p {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 20px;
}

/* --- 6. Service cards — 4 across ---
   Clearly outlined cards with visible borders. */
.skidex-suwannee-page .service-maintenance {
    background: #f3f4f6;
    padding-block: 80px;
}
.skidex-suwannee-page .service-maintenance .centered-copy {
    padding-top: 0;
}
.skidex-suwannee-page .service-maintenance .cards-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}
.skidex-suwannee-page .service-maintenance .info-card {
    background: #ffffff;
    border: 2px solid #252a31;
    min-height: 220px;
    padding: 35px 28px;
    display: flex;
    flex-direction: column;
}
.skidex-suwannee-page .service-maintenance .info-card h3 {
    font-size: 18px;
    margin-bottom: 8px;
    text-transform: none;
}
.skidex-suwannee-page .service-maintenance .info-card p {
    font-size: 15px;
    font-family: 'Inter_18pt', sans-serif;
    font-weight: 400;
}
.skidex-suwannee-page .service-maintenance .cta-row {
    text-align: center;
    margin-top: 40px;
    margin-bottom: 20px;
}
.skidex-suwannee-page .service-maintenance .cta-row p {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 20px;
}

/* --- 7. Wide Image + Local Team Bridge ---
   Image overlaps across the light→gray background transition. */
.skidex-suwannee-page .local-team {
    background: #d1d6dc;
    padding-top: 0;
    padding-bottom: 90px;
    position: relative;
}
.skidex-suwannee-page .wide-image-bridge {
    position: relative;
    z-index: 2;
    padding-top: 60px;
    margin-bottom: 80px;
}
.skidex-suwannee-page .wide-image-bridge img {
    width: 100%;
    height: auto;
    display: block;
}
.skidex-suwannee-page .local-team::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 280px;
    background: #f3f4f6;
    z-index: 1;
}
.skidex-suwannee-page .local-team > * {
    position: relative;
    z-index: 2;
}

/* --- 8. Local Team grid --- */
.skidex-suwannee-page .locations-grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 80px;
    align-items: start;
}
.skidex-suwannee-page .locations-about h2 {
    font-size: 36px;
    margin-bottom: 24px;
}
.skidex-suwannee-page .locations-about p {
    font-size: 17px;
    line-height: 1.55;
}
.skidex-suwannee-page .locations-card {
    background: transparent;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
}
.skidex-suwannee-page .locations-card h3 {
    font-family: 'aAtmospheric', sans-serif;
    font-size: 24px;
    margin-bottom: 24px;
    color: #252a31;
}
.skidex-suwannee-page .locations-card .check-list li {
    margin-bottom: 10px;
}

/* --- 9. Serving Area Box --- */
.skidex-suwannee-page .serving-suwannee {
    background: #ffffff;
    padding-top: 100px;
    padding-bottom: 80px;
}
.skidex-suwannee-page .serving-suwannee .centered-title {
    margin-bottom: 40px;
}
.skidex-suwannee-page .service-area-box {
    background: #d1d6dc;
    padding: 40px 45px 0;
    border-radius: 4px;
    overflow: hidden;
}
.skidex-suwannee-page .service-area-box h3 {
    font-size: 22px;
    margin-bottom: 20px;
    font-family: 'D-DIN', sans-serif;
    text-align: left;
    color: #252a31;
}
.skidex-suwannee-page .service-area-box .locations-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px 20px;
    margin-bottom: 30px;
    text-align: left;
}
.skidex-suwannee-page .service-area-box .locations-list li {
    font-size: 19px;
}
.skidex-suwannee-page .service-area-box .bottom-bar {
    background: #5d6872;
    color: white;
    padding: 16px 55px;
    margin: 0 -55px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.skidex-suwannee-page .service-area-box .bottom-bar p {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
}
.skidex-suwannee-page .service-area-box .bottom-bar .button-row {
    gap: 10px;
    flex-wrap: nowrap;
}

/* --- 10. Bottom Contact Section ---
   Stronger fog overlay keeps headline + form readable. */
.skidex-suwannee-page .contact-section {
    background: url('https://skidex.com/wp-content/uploads/2026/05/Big-BG.png') center bottom / cover no-repeat;
    padding-top: 80px;
    padding-bottom: 500px;
    position: relative;
}
.skidex-suwannee-page .contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 80%;
    background: linear-gradient(to bottom,
        rgba(255,255,255,1) 0%,
        rgba(255,255,255,1) 15%,
        rgba(255,255,255,0.95) 35%,
        rgba(255,255,255,0.6) 65%,
        rgba(255,255,255,0) 100%);
    z-index: 1;
}
.skidex-suwannee-page .contact-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}
.skidex-suwannee-page .contact-content h2 {
    color: #252a31 !important;
    margin-bottom: 16px;
}
.skidex-suwannee-page .contact-content p {
    color: #49515b !important;
}

/* ═══  Responsive  ═══ */
@media (max-width: 1440px) {
    .skidex-suwannee-page .equipment-cards .cards-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}
@media (max-width: 1200px) {
    .skidex-suwannee-page .equipment-cards .cards-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .skidex-suwannee-page .service-maintenance .cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .skidex-suwannee-page .locations-grid {
        gap: 40px;
    }
}
@media (max-width: 991px) {
    .skidex-suwannee-page .intro-sales .split-media {
        grid-template-columns: 1fr;
    }
    .skidex-suwannee-page .what-done .split-media,
    .skidex-suwannee-page .tough-conditions .split-media {
        grid-template-columns: 1fr;
    }
    .skidex-suwannee-page .locations-grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 768px) {
    .skidex-suwannee-page .hero h1 {
        font-size: 32px;
    }
    .skidex-suwannee-page .what-done,
    .skidex-suwannee-page .tough-conditions {
        padding-top: 50px;
        padding-bottom: 50px;
    }
    .skidex-suwannee-page .equipment-cards .cards-grid {
        grid-template-columns: 1fr 1fr;
    }
    .skidex-suwannee-page .service-maintenance .cards-grid {
        grid-template-columns: 1fr;
    }
    .skidex-suwannee-page .service-area-box .locations-list {
        grid-template-columns: repeat(2, 1fr);
    }
    .skidex-suwannee-page .service-area-box .bottom-bar {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    .skidex-suwannee-page .service-area-box {
        padding: 28px 22px 0;
    }
    .skidex-suwannee-page .service-area-box .bottom-bar {
        margin: 0 -22px;
        padding: 16px 22px;
    }
}


/* --- 1. Hero --- */
.skidex-suwannee-page .hero {
    background: #252a31;
    min-height: 420px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.skidex-suwannee-page .hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('https://skidex.com/wp-content/uploads/2026/05/Hero.png') right center / auto 100% no-repeat;
    opacity: 0.35;
    z-index: 1;
}
.skidex-suwannee-page .hero .hero-content {
    position: relative;
    z-index: 2;
    padding-top: 80px;
    padding-bottom: 80px;
}
.skidex-suwannee-page .hero h1 {
    margin-bottom: 18px;
    font-size: 46px;
    line-height: 1.15;
    max-width: 100%;
    white-space: normal;
}
.skidex-suwannee-page .hero .subheadline {
    color: var(--white);
    font-size: 22px;
    font-weight: 400;
    margin-top: 8px;
}

/* --- 2/3. Intro Section --- */
.skidex-suwannee-page .intro-sales {
    background: #f3f4f6;
    padding-block: 70px;
}
.skidex-suwannee-page .intro-sales .split-media {
    grid-template-columns: 0.45fr 0.55fr;
    align-items: center;
    gap: 60px;
}
.skidex-suwannee-page .intro-sales .feature-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: contain;
}
.skidex-suwannee-page .intro-sales .panel {
    padding: 0;
}

/* --- 4/6. Split sections (what-done, tough-conditions) --- */
.skidex-suwannee-page .what-done {
    background: #e8eaee;
    padding-top: 80px;
    padding-bottom: 80px;
}
.skidex-suwannee-page .tough-conditions {
    background: #e8eaee;
    padding-top: 80px;
    padding-bottom: 80px;
}
.skidex-suwannee-page .what-done .split-media,
.skidex-suwannee-page .tough-conditions .split-media {
    max-width: 1400px;
    margin-inline: auto;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
}
.skidex-suwannee-page .what-done .split-media img,
.skidex-suwannee-page .tough-conditions .split-media img {
    object-fit: cover;
    height: 100%;
    width: 100%;
}
.skidex-suwannee-page .what-done .panel,
.skidex-suwannee-page .tough-conditions .panel {
    padding: 70px 60px;
}

/* --- 5. Equipment cards — 5 across --- */
.skidex-suwannee-page .equipment-cards {
    background: #f3f4f6;
    padding-block: 80px;
}
.skidex-suwannee-page .equipment-cards .centered-copy {
    padding-top: 0;
}
.skidex-suwannee-page .equipment-cards .cards-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
}
.skidex-suwannee-page .equipment-cards .info-card {
    min-height: 200px;
    padding: 28px 22px;
}
.skidex-suwannee-page .equipment-cards .info-card h3 {
    font-size: 18px;
    margin-bottom: 14px;
}
.skidex-suwannee-page .equipment-cards .info-card p {
    font-size: 15px;
}
.skidex-suwannee-page .equipment-cards .cta-row {
    text-align: center;
    margin-top: 40px;
}
.skidex-suwannee-page .equipment-cards .cta-row p {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 20px;
}

/* --- 7. Service cards — 4 across --- */
.skidex-suwannee-page .service-maintenance {
    background: #f3f4f6;
    padding-block: 80px;
}
.skidex-suwannee-page .service-maintenance .centered-copy {
    padding-top: 0;
}
.skidex-suwannee-page .service-maintenance .cards-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}
.skidex-suwannee-page .service-maintenance .info-card {
    background: #ffffff;
    border: 2px solid #252a31;
    min-height: auto;
    padding: 35px 28px;
}
.skidex-suwannee-page .service-maintenance .info-card h3 {
    font-size: 18px;
    margin-bottom: 8px;
    font-family: 'D-DIN', sans-serif;
    text-transform: none;
}
.skidex-suwannee-page .service-maintenance .info-card p {
    font-size: 15px;
    font-family: 'Inter_18pt', sans-serif;
    font-weight: 400;
}
.skidex-suwannee-page .service-maintenance .cta-row {
    text-align: center;
    margin-top: 40px;
}
.skidex-suwannee-page .service-maintenance .cta-row p {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 20px;
}
.skidex-suwannee-page .service-maintenance .cta-row .btn-outline {
    border-color: #252a31;
}

/* --- Wide Image + Local Team Bridge ---
   The image sits INSIDE the local-team section and uses
   negative margin to pull up into the white service area above,
   creating the overlap/bridge effect from the design. */
.skidex-suwannee-page .local-team {
    background: #d1d6dc;
    padding-top: 0;
    padding-bottom: 80px;
    position: relative;
}
.skidex-suwannee-page .wide-image-bridge {
    position: relative;
    z-index: 2;
    margin-top: -40px;
    margin-bottom: 70px;
}
.skidex-suwannee-page .wide-image-bridge img {
    width: 100%;
    height: auto;
    display: block;
}
/* Pseudo-element creates the white upper portion that sits
   behind the top half of the image so the overlap looks layered */
.skidex-suwannee-page .local-team::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: #e6ebf0;
    z-index: 1;
}
.skidex-suwannee-page .local-team > * {
    position: relative;
    z-index: 2;
}

.skidex-suwannee-page .locations-grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 70px;
    align-items: start;
}
.skidex-suwannee-page .locations-about h2 {
    font-size: 36px;
    margin-bottom: 20px;
}
.skidex-suwannee-page .locations-about p {
    font-size: 17px;
    line-height: 1.55;
}
.skidex-suwannee-page .locations-card {
    background: transparent;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
}
.skidex-suwannee-page .locations-card h3 {
    font-family: 'aAtmospheric', sans-serif;
    font-size: 24px;
    margin-bottom: 24px;
    color: #252a31;
}
.skidex-suwannee-page .locations-card .check-list li {
    margin-bottom: 10px;
}

/* --- 9. Serving Area Box --- */
.skidex-suwannee-page .serving-suwannee {
    background: #ffffff;
    padding-block: 80px;
}
.skidex-suwannee-page .serving-suwannee .centered-title {
    margin-bottom: 40px;
}
.skidex-suwannee-page .service-area-box {
    background: #d1d6dc;
    padding: 40px 45px 0;
    border-radius: 4px;
    overflow: hidden;
}
.skidex-suwannee-page .service-area-box h3 {
    font-size: 22px;
    margin-bottom: 20px;
    font-family: 'D-DIN', sans-serif;
    text-align: left;
    color: #252a31;
}
.skidex-suwannee-page .service-area-box .locations-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px 20px;
    margin-bottom: 30px;
    text-align: left;
}
.skidex-suwannee-page .service-area-box .locations-list li {
    font-size: 19px;
}
.skidex-suwannee-page .service-area-box .bottom-bar {
    background: #5d6872;
    color: white;
    padding: 16px 55px;
    margin: 0 -55px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.skidex-suwannee-page .service-area-box .bottom-bar p {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
}
.skidex-suwannee-page .service-area-box .bottom-bar .button-row {
    gap: 10px;
    flex-wrap: nowrap;
}

/* --- 10. Bottom Contact Section --- */
.skidex-suwannee-page .contact-section {
    background: url('https://skidex.com/wp-content/uploads/2026/05/Big-BG.png') center bottom / cover no-repeat;
    padding-top: 80px;
    padding-bottom: 450px;
    position: relative;
}
.skidex-suwannee-page .contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 75%;
    background: linear-gradient(to bottom,
        rgba(255,255,255,1) 0%,
        rgba(255,255,255,0.97) 20%,
        rgba(255,255,255,0.85) 45%,
        rgba(255,255,255,0) 100%);
    z-index: 1;
}
.skidex-suwannee-page .contact-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}
.skidex-suwannee-page .contact-content h2 {
    color: #252a31 !important;
    margin-bottom: 16px;
}
.skidex-suwannee-page .contact-content p {
    color: #49515b !important;
}

/* ═══  Responsive  ═══ */
@media (max-width: 1440px) {
    .skidex-suwannee-page .equipment-cards .cards-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}
@media (max-width: 1200px) {
    .skidex-suwannee-page .equipment-cards .cards-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .skidex-suwannee-page .service-maintenance .cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .skidex-suwannee-page .locations-grid {
        gap: 40px;
    }
}
@media (max-width: 991px) {
    .skidex-suwannee-page .intro-sales .split-media {
        grid-template-columns: 1fr;
    }
    .skidex-suwannee-page .what-done .split-media,
    .skidex-suwannee-page .tough-conditions .split-media {
        grid-template-columns: 1fr;
    }
    .skidex-suwannee-page .locations-grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 768px) {
    .skidex-suwannee-page .hero h1 {
        font-size: 32px;
    }
    .skidex-suwannee-page .what-done,
    .skidex-suwannee-page .tough-conditions {
        padding-top: 40px;
        padding-bottom: 40px;
    }
    .skidex-suwannee-page .equipment-cards .cards-grid {
        grid-template-columns: 1fr 1fr;
    }
    .skidex-suwannee-page .service-maintenance .cards-grid {
        grid-template-columns: 1fr;
    }
    .skidex-suwannee-page .service-area-box .locations-list {
        grid-template-columns: repeat(2, 1fr);
    }
    .skidex-suwannee-page .service-area-box .bottom-bar {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    .skidex-suwannee-page .service-area-box {
        padding: 28px 22px 0;
    }
    .skidex-suwannee-page .service-area-box .bottom-bar {
        margin: 0 -22px;
        padding: 16px 22px;
    }
}


/* ==========================================================================
   Suwannee County Page Custom Styles
   ========================================================================== */

/* 1. Intro Section Background */
.skidex-suwannee-page .intro-sales {
    background-color: #e6ebf0;
    padding: 60px 0;
}

/* 3. 50/50 Sections Padding */
.skidex-suwannee-page .what-done,
.skidex-suwannee-page .tough-conditions {
    padding: 120px 0;
    background-color: #ffffff; /* 4. Sit cleanly in white space */
}

/* 6. Service Card Styling */
.skidex-suwannee-page .service-maintenance .info-card {
    background-color: #ffffff;
    border: 2px solid #252a31;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
}
.skidex-suwannee-page .service-maintenance .info-card h3 {
    text-transform: none;
}
.skidex-suwannee-page .service-maintenance .cards-grid {
    gap: 30px;
    align-items: stretch; /* equal heights */
}

/* 7. Mower Image Transition */
.skidex-suwannee-page .local-team {
    position: relative;
    background-color: #e6ebf0;
    padding-top: 320px;
    padding-bottom: 120px;
    margin-top: 200px;
}
.skidex-suwannee-page .wide-image-bridge {
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1400px;
    z-index: 2;
}
.skidex-suwannee-page .wide-image-bridge img {
    width: 100%;
    height: auto;
    display: block;
}

/* 8. Local Team Spacing */
.skidex-suwannee-page .local-team .locations-grid {
    gap: 80px;
}
.skidex-suwannee-page .local-team .locations-card {
    background: transparent;
    padding: 0;
}

/* 9. Serving All Section */
.skidex-suwannee-page .serving-suwannee {
    padding-top: 100px;
    padding-bottom: 100px;
}
.skidex-suwannee-page .serving-suwannee .serving-subtitle {
    text-align: center;
    font-size: 17px;
    color: #49515b;
    max-width: 720px;
    margin: 0 auto 0;
    line-height: 1.5;
}
.skidex-suwannee-page .serving-suwannee .service-area-box {
    background-color: #d1d6dc;
    padding: 50px 55px 0;
    border-radius: 8px;
}
.skidex-suwannee-page .serving-suwannee .service-area-box h3 {
    text-transform: none;
    font-weight: 700;
}

/* 10. Bottom Form Visuals */
.skidex-suwannee-page .contact-section {
    background-position: center bottom;
    padding-top: 140px;
    position: relative;
}
.skidex-suwannee-page .contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 70%;
    background: linear-gradient(to bottom, rgba(255,255,255,1) 0%, rgba(255,255,255,0.9) 40%, rgba(255,255,255,0) 100%);
    z-index: 1;
}
.skidex-suwannee-page .contact-content {
    position: relative;
    z-index: 2;
}

@media (max-width: 1200px) {
    .skidex-suwannee-page .local-team {
        padding-top: 100px;
        margin-top: 80px;
    }
    .skidex-suwannee-page .wide-image-bridge {
        position: relative;
        top: 0;
        margin-bottom: 40px;
        transform: none;
        left: 0;
    }
}


/* ==========================================================================
   Suwannee County Page Custom Styles - 50/50 Sections Refinement
   ========================================================================== */

/* 1. Headline sizing is off */
.skidex-suwannee-page .panel-dark h2 {
    font-size: 58px !important;
    line-height: 1.1 !important;
    margin-bottom: 48px !important;
    letter-spacing: 0.02em;
}

/* 2. Internal padding inside the dark text panels */
.skidex-suwannee-page .panel-dark {
    padding: 100px 90px !important;
}

/* 3. Paragraph and list spacing */
.skidex-suwannee-page .panel-dark p {
    font-size: 19px !important;
    line-height: 1.5;
    margin-bottom: 40px !important;
}

.skidex-suwannee-page .panel-dark .check-list {
    margin-top: 0 !important;
}

.skidex-suwannee-page .panel-dark .check-list li {
    font-size: 20px !important;
}
.skidex-suwannee-page .panel-dark .check-list li:last-child {
    margin-bottom: 0 !important;
}

/* 4. Buttons need to match the design */
.skidex-suwannee-page .panel-dark .button-row {
    margin-top: 60px !important;
    gap: 24px !important;
    align-items: center;
}

.skidex-suwannee-page .panel-dark .button-row .btn {
    padding: 22px 36px;
    font-size: 18px;
    line-height: 1;
}

@media (max-width: 1200px) {
    .skidex-suwannee-page .panel-dark {
        padding: 60px 40px !important;
    }
    .skidex-suwannee-page .panel-dark h2 {
        font-size: 42px !important;
        margin-bottom: 30px !important;
    }
    .skidex-suwannee-page .panel-dark p {
        font-size: 17px !important;
        margin-bottom: 30px !important;
    }
    .skidex-suwannee-page .panel-dark .check-list li {
        font-size: 18px !important;
        margin-bottom: 16px !important;
    }
    .skidex-suwannee-page .panel-dark .button-row {
        margin-top: 40px !important;
        gap: 16px !important;
    }
}

/* ==========================================================================
   Product Page Mobile Optimizations
   ========================================================================== */

@media (max-width: 1200px) {
    /* 1. Product Hero Mobile Layout */
    .product-hero {
        display: flex !important;
        flex-direction: column !important;
        min-height: auto !important;
        height: auto !important;
        background: #000 !important;
    }
    .product-hero .hero-bg {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        width: 100% !important;
        height: auto !important;
        aspect-ratio: 16 / 9 !important;
        object-fit: cover !important;
        display: block !important;
        order: 1 !important; /* Put image above text */
    }
    .product-hero .hero-content {
        position: relative !important;
        inset: auto !important;
        order: 2 !important; /* Put text below image */
        padding: 40px 20px !important;
        background: #000 !important;
        text-align: center !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
    .product-hero .button-row {
        justify-content: center !important;
    }

    /* 2. Product Intro */
    .product-intro {
        padding: 60px 0;
        text-align: center;
    }
    .product-intro .intro-copy {
        padding-left: 0;
    }
    .product-intro .button-row {
        justify-content: center;
    }

    /* 3. Built For */
    .built-for {
        padding: 60px 0 0;
    }

    /* 4. Why Choose */
    .why-choose {
        padding: 60px 0;
    }

    /* 5. Attachments Layout Bug Fix */
    .split-attachments {
        grid-template-columns: 1fr;
    }
    .attachments-copy {
        padding: 60px 40px;
    }

    /* 6. Specifications & Accordion Header Flex Column Override */
    .specs {
        padding: 60px 0;
    }
    .specs-accordion-container .accordion-header {
        display: flex !important;
        flex-direction: row !important;
        justify-content: space-between !important;
        align-items: center !important;
        text-align: left !important;
    }
    .specs-accordion-container .accordion-header h3 {
        text-align: left !important;
        margin: 0 !important;
        font-size: 18px !important;
        white-space: nowrap !important;
    }
    .specs-accordion-container .units-switcher {
        margin-left: auto !important;
        margin-right: 20px !important;
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
    }
}

@media (max-width: 768px) {
    /* 1. Typography & Spacings */
    .intro-copy h2, 
    .built-for-copy h2, 
    .attachments-copy h2, 
    .specs-copy h2, 
    .cta-content h2,
    .why-buy-title {
        font-size: 32px !important;
        line-height: 1.2 !important;
    }
    .why-buy-title {
        margin-bottom: 40px !important;
    }

    /* 2. Built For Media */
    .built-for-copy {
        padding: 40px 20px;
    }
    .built-for-media img {
        height: 250px !important;
        object-fit: cover;
        width: 100%;
    }

    /* 3. Why Choose Accordions styling */
    .accordion-header {
        padding: 16px 20px;
        font-size: 16px;
    }
    .accordion-inner {
        padding: 0 20px 20px;
        font-size: 15px;
    }
    .nested-header {
        font-size: 15px;
    }
    .nested-item .accordion-inner {
        padding: 0 0 15px 15px;
        font-size: 14px;
    }

    /* 4. Attachments Copy */
    .attachments-copy {
        padding: 40px 20px;
    }
    .attachments-media img {
        height: 250px !important;
        object-fit: cover;
        width: 100%;
    }

    /* 5. Specs Footer Diagrams (Side-by-side with offset) & Why Buy Top Padding */
    .specs-footer-images {
        display: flex !important;
        flex-direction: row !important;
        align-items: flex-start !important;
        justify-content: center !important;
        gap: 20px !important;
        margin-top: 30px !important;
        margin-bottom: -120px !important;
        position: relative;
        z-index: 10;
    }
    .spec-image-box {
        flex: 1 !important;
        max-width: 50% !important;
    }
    .spec-image-box:last-child {
        margin-top: 40px !important; /* Offset right one lower than left one */
    }
    .why-buy {
        padding: 160px 0 60px !important;
    }

    /* 5.5 Mobile Specifications & Units Switcher overrides */
    .specs-accordion-container .accordion-header h3 {
        white-space: normal !important; /* Allow wrapping on actual mobile screen widths */
    }
    .specs-accordion-container .units-switcher {
        margin-left: 10% !important;
        margin-right: 15px !important;
    }
    .specs-accordion-container .units-switcher span.text-xs.font-bold {
        display: none !important;
    }
    .specs-accordion-container .units-switcher select {
        border: 1px solid #000 !important;
        background: #f0f2f5 !important;
        color: #252a31 !important;
        font-weight: bold !important;
        padding: 6px 12px !important;
        font-family: 'D-DIN', sans-serif !important;
        text-transform: uppercase !important;
        font-size: 14px !important;
        border-radius: 0 !important;
        cursor: pointer !important;
    }

    /* 6. Product CTA */
    .product-cta {
        padding: 80px 0 250px !important;
    }
    .cta-phone {
        font-size: 26px !important;
        margin-top: 20px !important;
    }
    .cta-address p {
        font-size: 18px !important;
    }
}




