:root {
    --yellow: #ffd400;
    --yellow-dark: #d6b100;
    --black: #090909;
    --dark: #151515;
    --grey: #666;
    --light: #f5f5f5;
    --white: #fff;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    overflow-x: hidden;
    color: #1d1d1d;
    background: var(--white);
    font-family: "Inter", sans-serif;
}

h1, h2, h3, h4, h5, .navbar-brand {
    font-family: "Barlow Condensed", sans-serif;
    font-weight: 800;
}

a { text-decoration: none; }

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

.section-padding { padding: 90px 0; }

.section-kicker {
    display: inline-block;
    margin-bottom: 12px;
    color: #927900;
    font-size: .76rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.section-heading { max-width: 760px; }

.section-heading h2,
.display-heading {
    margin-bottom: 18px;
    color: var(--black);
    font-size: clamp(2.45rem, 5vw, 4.25rem);
    line-height: .94;
    text-transform: uppercase;
}

.section-heading p,
.lead-copy {
    color: var(--grey);
    font-size: 1.06rem;
    line-height: 1.8;
}

.btn {
    border-radius: 0;
    padding: 13px 24px;
    font-weight: 800;
}

.btn-brand {
    border: 2px solid var(--yellow);
    color: var(--black);
    background: var(--yellow);
}

.btn-brand:hover {
    border-color: var(--black);
    color: var(--white);
    background: var(--black);
}

.btn-dark {
    border-color: var(--black);
    background: var(--black);
}

.topbar {
    padding: 9px 0;
    color: var(--white);
    background: var(--black);
    font-size: .82rem;
}

.topbar a { color: var(--white); }
.topbar i { color: var(--yellow); }

.site-header {
    background: var(--white);
    box-shadow: 0 7px 25px rgba(0,0,0,.08);
}

.navbar { padding: 13px 0; }

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--black);
    font-size: 2rem;
    line-height: .8;
}

.brand-mark {
    display: grid;
    width: 56px;
    height: 52px;
    place-items: center;
    color: var(--black);
    background: var(--yellow);
    transform: skew(-7deg);
}

.brand-name { line-height: .8; }

.brand-name small {
    display: block;
    margin-top: 8px;
    font-family: "Inter", sans-serif;
    font-size: .5rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.navbar-nav { gap: 4px; }

.nav-link {
    position: relative;
    padding: 14px 11px !important;
    color: var(--black);
    font-size: .9rem;
    font-weight: 700;
}

.nav-link:hover,
.nav-link.active { color: #8c7300; }

.nav-link.active::after {
    position: absolute;
    right: 11px;
    bottom: 6px;
    left: 11px;
    height: 3px;
    content: "";
    background: var(--yellow);
}

.hero-section {
    position: relative;
    min-height: 730px;
    padding: 85px 0;
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(0,0,0,.96) 0%, rgba(0,0,0,.83) 47%, rgba(0,0,0,.48) 100%),
        url("../images/home-hero-v2.png") center/cover no-repeat;
}

.hero-section::after,
.inner-hero::before {
    position: absolute;
    width: 500px;
    height: 500px;
    content: "";
    border: 80px solid rgba(255,212,0,.16);
    border-radius: 50%;
}

.hero-section::after {
    right: -100px;
    bottom: -210px;
}

.hero-section .container,
.inner-hero .container { position: relative; z-index: 2; }

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    padding: 9px 14px;
    color: var(--black);
    background: var(--yellow);
    font-size: .77rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero-copy h1 {
    max-width: 760px;
    margin-bottom: 22px;
    color: var(--white);
    font-size: clamp(4rem, 8vw, 7rem);
    line-height: .82;
    text-transform: uppercase;
}

.hero-lead {
    max-width: 690px;
    margin-bottom: 30px;
    color: rgba(255,255,255,.82);
    font-size: 1.15rem;
    line-height: 1.75;
}

.hero-points {
    display: grid;
    gap: 12px;
    margin-bottom: 32px;
}

.hero-points div {
    display: flex;
    align-items: center;
    gap: 11px;
    color: var(--white);
    font-weight: 700;
}

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

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.quote-card,
.form-panel {
    overflow: hidden;
    border-top: 7px solid var(--yellow);
    background: var(--white);
    box-shadow: 0 30px 70px rgba(0,0,0,.28);
}

.quote-card-header,
.form-panel-header { padding: 28px 30px 18px; }

.quote-card-header span,
.form-panel-header span {
    color: #806900;
    font-size: .7rem;
    font-weight: 800;
    letter-spacing: 1.4px;
}

.quote-card-header h2,
.form-panel-header h2 {
    margin: 6px 0;
    color: var(--black);
    font-size: 2.2rem;
    line-height: 1;
    text-transform: uppercase;
}

.quote-card-header p,
.form-panel-header p {
    margin: 0;
    color: var(--grey);
    font-size: .9rem;
}

.quote-form,
.contact-form { padding: 10px 30px 30px; }

.form-label {
    color: var(--black);
    font-size: .8rem;
    font-weight: 800;
}

.form-control,
.form-select {
    min-height: 49px;
    border: 1px solid #d7d7d7;
    border-radius: 0;
    background: #fafafa;
}

textarea.form-control { min-height: 140px; }

.form-control:focus,
.form-select:focus {
    border-color: var(--yellow);
    box-shadow: 0 0 0 .2rem rgba(255,212,0,.2);
}

.reg-input {
    border: 3px solid var(--black);
    color: var(--black);
    background: var(--yellow);
    font-size: 1.3rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.form-check-input:checked {
    border-color: var(--black);
    background-color: var(--black);
}

.form-check-label {
    color: var(--grey);
    font-size: .76rem;
}

.form-note {
    margin: 14px 0 0;
    color: #777;
    font-size: .72rem;
    text-align: center;
}

.trust-strip {
    position: relative;
    z-index: 4;
    color: var(--black);
    background: var(--yellow);
}

.trust-item {
    display: flex;
    min-height: 105px;
    align-items: center;
    gap: 14px;
    padding: 22px;
    border-right: 1px solid rgba(0,0,0,.17);
}

.trust-item > i { font-size: 2rem; }

.trust-item strong,
.trust-item span { display: block; }

.trust-item strong {
    font-family: "Barlow Condensed", sans-serif;
    font-size: 1.25rem;
    text-transform: uppercase;
}

.trust-item span { font-size: .73rem; }

.card-lift,
.step-card,
.value-card,
.review-card,
.area-card {
    height: 100%;
    background: var(--white);
    box-shadow: 0 15px 45px rgba(0,0,0,.07);
    transition: .3s ease;
}

.card-lift:hover,
.step-card:hover,
.value-card:hover,
.area-card:hover { transform: translateY(-7px); }

.step-card,
.value-card,
.area-card {
    position: relative;
    padding: 36px;
    overflow: hidden;
    border-bottom: 5px solid var(--yellow);
}

.step-number,
.value-number {
    position: absolute;
    top: 5px;
    right: 18px;
    color: #ededed;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 5.5rem;
    font-weight: 800;
    line-height: 1;
}

.step-icon,
.value-icon,
.feature-icon,
.contact-icon {
    position: relative;
    display: grid;
    width: 64px;
    height: 64px;
    margin-bottom: 25px;
    place-items: center;
    color: var(--black);
    background: var(--yellow);
    font-size: 1.7rem;
}

.step-card h3,
.value-card h3,
.area-card h3 {
    position: relative;
    font-size: 1.8rem;
    text-transform: uppercase;
}

.step-card p,
.value-card p,
.area-card p {
    position: relative;
    color: var(--grey);
    line-height: 1.75;
}

.image-panel {
    position: relative;
    min-height: 500px;
}

.image-panel img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    filter: grayscale(18%);
}

.experience-badge {
    position: absolute;
    right: -20px;
    bottom: 30px;
    width: 190px;
    padding: 24px;
    color: var(--black);
    background: var(--yellow);
}

.experience-badge strong,
.experience-badge span { display: block; }

.experience-badge strong {
    font-family: "Barlow Condensed", sans-serif;
    font-size: 2.4rem;
    text-transform: uppercase;
}

.experience-badge span {
    font-size: .8rem;
    font-weight: 700;
}

.feature-list {
    display: grid;
    gap: 12px;
    margin: 25px 0 0;
    padding: 0;
    list-style: none;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--black);
    font-weight: 700;
}

.feature-list i {
    display: grid;
    width: 27px;
    height: 27px;
    place-items: center;
    color: var(--black);
    background: var(--yellow);
}

.dark-section,
.services-section,
.vehicle-types {
    position: relative;
    overflow: hidden;
    color: var(--white);
    background: var(--black);
}

.dark-section::before,
.services-section::before,
.vehicle-types::before {
    position: absolute;
    inset: 0;
    content: "";
    opacity: .035;
    background: repeating-linear-gradient(45deg,var(--yellow),var(--yellow) 15px,transparent 15px,transparent 30px);
}

.dark-section .container,
.services-section .container,
.vehicle-types .container { position: relative; z-index: 2; }

.service-card,
.condition-card {
    position: relative;
    height: 100%;
    padding: 34px;
    border: 1px solid #303030;
    background: #171717;
    transition: .3s ease;
}

.service-card:hover,
.condition-card:hover {
    border-color: var(--yellow);
    transform: translateY(-6px);
}

.service-card > i,
.condition-card > i {
    display: grid;
    width: 63px;
    height: 63px;
    margin-bottom: 24px;
    place-items: center;
    color: var(--black);
    background: var(--yellow);
    font-size: 1.7rem;
}

.service-card h3,
.condition-card h3 {
    color: var(--white);
    font-size: 1.9rem;
    text-transform: uppercase;
}

.service-card p,
.condition-card p {
    color: rgba(255,255,255,.62);
    line-height: 1.75;
}

.service-card a { color: var(--yellow); font-size: .84rem; font-weight: 800; text-transform: uppercase; }

.location-grid,
.coverage-locations {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 12px;
    margin-top: 25px;
}

.location-grid span,
.coverage-locations span {
    padding: 14px;
    color: var(--black);
    background: var(--light);
    font-size: .9rem;
    font-weight: 700;
}

.location-grid i { margin-right: 8px; color: #947900; }

.coverage-card {
    position: relative;
    display: flex;
    min-height: 430px;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: var(--white);
    background: var(--black);
    text-align: center;
}

.coverage-card::before {
    position: absolute;
    inset: 0;
    content: "";
    opacity: .12;
    background:
        linear-gradient(45deg,transparent 48%,var(--yellow) 49%,var(--yellow) 51%,transparent 52%),
        linear-gradient(-45deg,transparent 48%,var(--yellow) 49%,var(--yellow) 51%,transparent 52%);
    background-size: 55px 55px;
}

.coverage-content {
    position: relative;
    z-index: 2;
    max-width: 470px;
    padding: 40px;
}

.coverage-content > i { color: var(--yellow); font-size: 4rem; }

.coverage-content h3 {
    margin-top: 15px;
    font-size: 2.6rem;
    line-height: 1;
    text-transform: uppercase;
}

.coverage-content p { color: rgba(255,255,255,.68); line-height: 1.75; }

.review-card {
    padding: 32px;
    border-top: 5px solid var(--yellow);
}

.stars {
    margin-bottom: 18px;
    color: #cda800;
    letter-spacing: 3px;
}

.review-card p {
    min-height: 105px;
    color: #555;
    font-size: .96rem;
    font-style: italic;
    line-height: 1.8;
}

.review-person {
    display: flex;
    align-items: center;
    gap: 13px;
}

.review-person > span {
    display: grid;
    width: 46px;
    height: 46px;
    place-items: center;
    border-radius: 50%;
    color: var(--black);
    background: var(--yellow);
    font-weight: 800;
}

.review-person strong,
.review-person small { display: block; }

.review-person small { color: #777; }

.accordion-item { border-bottom: 1px solid #d8d8d8; }

.accordion-button {
    padding: 24px 10px;
    color: var(--black);
    background: var(--white);
    font-weight: 800;
}

.accordion-button:not(.collapsed) {
    color: var(--black);
    background: #fff9d8;
    box-shadow: none;
}

.accordion-button:focus { box-shadow: none; }

.accordion-body {
    padding: 5px 10px 25px;
    color: var(--grey);
    line-height: 1.8;
}

.inner-hero {
    position: relative;
    display: flex;
    min-height: 470px;
    align-items: center;
    overflow: hidden;
    color: var(--white);
    background:
        linear-gradient(90deg,rgba(0,0,0,.96) 0%,rgba(0,0,0,.82) 56%,rgba(0,0,0,.48) 100%),
        var(--page-hero, url("../images/home-hero-v2.png")) center/cover no-repeat;
}

.inner-hero::before {
    top: -180px;
    right: -120px;
}

.inner-hero::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 7px;
    content: "";
    background: var(--yellow);
}

.inner-hero-content {
    position: relative;
    z-index: 2;
    max-width: 880px;
    padding: 80px 0;
}

.inner-hero h1 {
    margin-bottom: 20px;
    color: var(--white);
    font-size: clamp(4rem,9vw,7rem);
    line-height: .84;
    text-transform: uppercase;
}

.inner-hero p {
    max-width: 730px;
    margin-bottom: 28px;
    color: rgba(255,255,255,.8);
    font-size: 1.12rem;
    line-height: 1.75;
}

.breadcrumb { margin: 0; }
.breadcrumb-item,
.breadcrumb-item.active { color: rgba(255,255,255,.58); font-size: .86rem; font-weight: 700; }
.breadcrumb-item a { color: var(--yellow); }
.breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,.4); }

.process-timeline { position: relative; max-width: 900px; margin: 0 auto; }

.process-timeline::before {
    position: absolute;
    top: 36px;
    bottom: 36px;
    left: 36px;
    width: 4px;
    content: "";
    background: var(--yellow);
}

.timeline-item {
    position: relative;
    display: grid;
    grid-template-columns: 75px 1fr;
    gap: 25px;
    margin-bottom: 22px;
}

.timeline-marker {
    position: relative;
    z-index: 2;
    display: grid;
    width: 75px;
    height: 75px;
    place-items: center;
    border: 7px solid var(--white);
    color: var(--black);
    background: var(--yellow);
    box-shadow: 0 8px 22px rgba(0,0,0,.13);
}

.timeline-marker span {
    font-family: "Barlow Condensed", sans-serif;
    font-size: 2rem;
    font-weight: 800;
}

.timeline-content {
    padding: 23px 30px;
    border-left: 4px solid var(--black);
    background: var(--light);
}

.timeline-content h3 {
    margin-bottom: 7px;
    font-size: 1.55rem;
    text-transform: uppercase;
}

.timeline-content p { margin: 0; color: var(--grey); line-height: 1.7; }

.info-card {
    height: 100%;
    padding: 32px;
    border-top: 5px solid var(--yellow);
    background: var(--white);
    box-shadow: 0 15px 45px rgba(0,0,0,.08);
}

.info-card h3 { font-size: 1.7rem; text-transform: uppercase; }
.info-card p { color: var(--grey); line-height: 1.75; }

.contact-details {
    display: grid;
    gap: 15px;
}

.contact-details a,
.contact-details div {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px;
    color: var(--black);
    background: var(--light);
}

.contact-details i {
    display: grid;
    width: 46px;
    height: 46px;
    place-items: center;
    color: var(--black);
    background: var(--yellow);
}

.map-wrap {
    min-height: 450px;
    overflow: hidden;
    border: 8px solid var(--white);
    box-shadow: 0 20px 55px rgba(0,0,0,.12);
}

.map-wrap iframe {
    width: 100%;
    height: 450px;
    border: 0;
}

.cta-section {
    position: relative;
    padding: 60px 0;
    overflow: hidden;
    color: var(--black);
    background: var(--yellow);
}

.cta-section::after {
    position: absolute;
    top: -80px;
    right: 5%;
    width: 240px;
    height: 240px;
    content: "";
    border: 45px solid rgba(0,0,0,.07);
    border-radius: 50%;
}

.cta-section span {
    font-size: .75rem;
    font-weight: 800;
    letter-spacing: 2px;
}

.cta-section h2 {
    margin: 5px 0 4px;
    font-size: clamp(2.4rem,5vw,4.2rem);
    line-height: .95;
    text-transform: uppercase;
}

.site-footer {
    padding-top: 75px;
    color: rgba(255,255,255,.68);
    background: #090909;
}

.footer-main { padding-bottom: 55px; }

.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 22px;
    color: var(--white);
    font-family: "Barlow Condensed", sans-serif;
    font-size: 2rem;
    font-weight: 800;
}

.footer-brand span {
    padding: 8px;
    color: var(--black);
    background: var(--yellow);
}

.site-footer p { font-size: .89rem; line-height: 1.8; }

.site-footer h3 {
    margin-bottom: 20px;
    color: var(--white);
    font-size: 1.4rem;
    text-transform: uppercase;
}

.site-footer ul {
    display: grid;
    gap: 11px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-footer li a,
.footer-contact a {
    color: rgba(255,255,255,.64);
    font-size: .86rem;
}

.site-footer li a:hover,
.footer-contact a:hover { color: var(--yellow); }

.footer-contact { display: grid; gap: 11px; }

.footer-meta {
    margin-top: 18px;
    color: rgba(255,255,255,.6);
    font-size: .82rem;
    line-height: 1.8;
}

.footer-meta a {
    color: var(--yellow);
    font-weight: 700;
}

.footer-meta a:hover {
    color: var(--white);
}

.footer-contact i,
.site-footer address i,
.opening i { margin-right: 9px; color: var(--yellow); }

.site-footer address {
    color: rgba(255,255,255,.66);
    font-size: .88rem;
    font-style: normal;
    line-height: 1.8;
}

.footer-bottom {
    padding: 24px 0;
    border-top: 1px solid #252525;
}

.footer-bottom p { margin: 0; }

.footer-bottom a {
    margin-left: 20px;
    color: rgba(255,255,255,.55);
    font-size: .78rem;
}

.mobile-actions {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1050;
    display: grid;
    grid-template-columns: repeat(2,1fr);
    box-shadow: 0 -5px 20px rgba(0,0,0,.2);
}

.mobile-actions a {
    display: flex;
    height: 62px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--white);
    background: var(--black);
    font-size: .78rem;
    font-weight: 800;
    text-transform: uppercase;
}

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

.legal-content {
    max-width: 920px;
    margin: 0 auto;
}

.legal-content h2 {
    margin-top: 35px;
    font-size: 2rem;
    text-transform: uppercase;
}

.legal-content p,
.legal-content li {
    color: var(--grey);
    line-height: 1.8;
}

.alert {
    border-radius: 0;
}

@media (max-width: 991.98px) {
    body { padding-bottom: 62px; }
    .navbar-collapse { margin-top: 15px; padding: 18px; background: var(--light); }
    .nav-link.active::after { display: none; }
    .hero-section { padding: 65px 0; }
    .experience-badge { right: 0; }
}

@media (max-width: 767.98px) {
    .section-padding { padding: 65px 0; }
    .topbar { display: none; }
    .brand-mark { width: 47px; height: 44px; }
    .navbar-brand { font-size: 1.65rem; }
    .hero-section { min-height: auto; background-position: 60% center; }
    .hero-copy h1 { font-size: 3.8rem; }
    .hero-actions .btn { width: 100%; }
    .quote-card-header, .quote-form, .form-panel-header, .contact-form { padding-right: 20px; padding-left: 20px; }
    .trust-item { min-height: 120px; border-bottom: 1px solid rgba(0,0,0,.15); }
    .trust-item > i { font-size: 1.5rem; }
    .trust-item strong { font-size: 1rem; }
    .image-panel, .image-panel img { min-height: 390px; height: 390px; }
    .experience-badge { width: 165px; }
    .location-grid, .coverage-locations { grid-template-columns: 1fr; }
    .inner-hero { min-height: 390px; background-position: 62% center; }
    .inner-hero-content { padding: 65px 0; }
    .inner-hero h1 { font-size: 4rem; }
    .timeline-item { grid-template-columns: 58px 1fr; gap: 14px; }
    .process-timeline::before { left: 27px; }
    .timeline-marker { width: 58px; height: 58px; border-width: 5px; }
    .timeline-content { padding: 19px; }
    .footer-bottom { padding-bottom: 35px; }
    .footer-bottom a { display: inline-block; margin: 8px 15px 0 0; }
}
