* {
    box-sizing: border-box;
}

body {
    margin: 0;
    color: #004274;
    font-family: Arial, Helvetica, sans-serif;
}

a {
    text-decoration: none;
}

.site-header {
    position: relative;
    z-index: 10;
    background: #ffffff;
}

.brand-column {
    display: flex;
    min-height: 148px;
    align-items: center;
    justify-content: center;
    background: #004274;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 24px;
    color: #ffffff;
}

.brand:hover {
    color: #ffffff;
}

.brand-icon {
    display: grid;
    width: 58px;
    height: 58px;
    place-items: center;
    border: 7px solid #ff8c35;
    border-radius: 50%;
    color: #ff8c35;
    font-size: 27px;
}

.brand-copy {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.brand-copy strong {
    font-size: 27px;
    letter-spacing: -1px;
}

.brand-copy small {
    margin-top: 8px;
    color: #2cace2;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
}

.topbar {
    min-height: 50px;
    align-items: center;
    justify-content: center;
    gap: 38px;
    padding: 0 38px;
    border-bottom: 1px solid #dedede;
    color: #004274;
    font-size: 14px;
}

.topbar a,
.topbar span {
    color: #004274;
    white-space: nowrap;
}

.topbar i {
    margin-right: 8px;
    color: #2cace2;
}

.navbar {
    min-height: 98px;
    padding: 0;
}

.nav-inner {
    padding: 0 5%;
}

.navbar-nav {
    gap: 9px;
}

.navbar .nav-link {
    position: relative;
    padding: 38px 10px;
    color: #004274;
    font-size: 15px;
    font-weight: 600;
}

.navbar .nav-link::after {
    position: absolute;
    right: 10px;
    bottom: 27px;
    left: 10px;
    height: 2px;
    background: #ff8c35;
    content: "";
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s ease;
}

.navbar .nav-link:hover::after,
.navbar .nav-link.active::after {
    transform: scaleX(1);
}

.quote-button,
.primary-button {
    display: inline-flex;
    min-height: 54px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 28px;
    border: 2px solid #ff8c35;
    background: #ff8c35;
    color: #080808;
    font-weight: 800;
    transition: background 0.25s ease, color 0.25s ease;
}

.quote-button:hover,
.primary-button:hover {
    background: transparent;
    color: #ffffff;
}

.quote-button:hover {
    color: #004274;
}

.hero-section {
    position: relative;
    display: flex;
    min-height: 725px;
    align-items: center;
    overflow: hidden;
    background-image: url("../img/garage-door-plainfield-in.webp");
    background-position: center;
    background-size: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 66, 116, 0.9) 0%, rgba(0, 66, 116, 0.69) 43%, rgba(0, 66, 116, 0.12) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 80px;
    padding-bottom: 100px;
}

.hero-kicker {
    margin: 0 0 18px;
    color: #2cace2;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.hero-section h1 {
    max-width: 850px;
    margin: 0;
    color: #ffffff;
    font-size: clamp(54px, 6vw, 88px);
    font-weight: 800;
    letter-spacing: -3px;
    line-height: 0.98;
}

.hero-description {
    max-width: 810px;
    margin: 28px 0 34px;
    color: #f3f3f3;
    font-size: 18px;
    line-height: 1.75;
}

.hero-description strong {
    color: #ffffff;
}

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

.secondary-button {
    display: inline-flex;
    min-height: 54px;
    align-items: center;
    gap: 10px;
    padding: 0 24px;
    border: 2px solid rgba(255, 255, 255, 0.65);
    color: #ffffff;
    font-weight: 700;
    transition: border-color 0.25s ease, color 0.25s ease;
}

.secondary-button:hover {
    border-color: #ff8c35;
    color: #ff8c35;
}

.hero-lines {
    position: absolute;
    z-index: 2;
    bottom: 76px;
    left: max(4%, calc((100% - 1320px) / 2));
    display: flex;
    gap: 13px;
}

.hero-lines span {
    display: block;
    width: 42px;
    height: 4px;
    background: #ffffff;
}

.hero-lines span:first-child {
    width: 100px;
    background: #ff8c35;
}

.emergency-about-section {
    position: relative;
    overflow: hidden;
    padding: 110px 0;
    background: #ffffff;
}

.rotating-background-image {
    position: absolute;
    z-index: 0;
    top: 50%;
    right: -230px;
    width: 620px;
    height: 620px;
    object-fit: contain;
    opacity: 0.065;
    transform: translateY(-50%);
    animation: halfRotateBack 7s ease-in-out infinite;
    pointer-events: none;
	z-index: 9999
}

@keyframes halfRotateBack {
    0%, 100% {
        transform: translateY(-50%) rotate(0deg);
    }

    50% {
        transform: translateY(-50%) rotate(180deg);
    }
}

.emergency-image-grid {
    display: grid;
    grid-template-columns: 1.35fr 0.85fr;
    gap: 24px;
}

.main-service-image,
.detail-service-image {
    overflow: hidden;
    background: #ededed;
}

.main-service-image img,
.detail-service-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.main-service-image {
    min-height: 590px;
}

.main-service-image:hover img,
.detail-service-image:hover img {
    transform: scale(1.045);
}

.service-side-column {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.response-card {
    display: flex;
    min-height: 230px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 28px 18px;
    background: #ff8c35;
    color: #080808;
    text-align: center;
}

.response-card i {
    margin-bottom: 16px;
    font-size: 48px;
}

.response-card strong {
    font-size: 24px;
    line-height: 1.1;
}

.response-card span {
    margin-top: 7px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.detail-service-image {
    min-height: 336px;
}

.emergency-copy {
    position: relative;
    z-index: 2;
    padding-left: 45px;
}

.section-label {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    color: #2cace2;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.section-label span {
    display: inline-block;
    width: 36px;
    height: 3px;
    background: #ff8c35;
}

.emergency-copy h2 {
    max-width: 800px;
    margin: 0 0 25px;
    color: #004274;
    font-size: clamp(34px, 3.3vw, 52px);
    font-weight: 800;
    letter-spacing: -1.8px;
    line-height: 1.12;
}

.emergency-copy > p:not(.section-label):not(.service-areas) {
    margin-bottom: 15px;
    color: #60656b;
    font-size: 16px;
    line-height: 1.75;
}

.emergency-copy p strong {
    color: #004274;
}

.emergency-benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 26px;
    margin: 32px 0 28px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.benefit-icon {
    display: grid;
    width: 64px;
    min-width: 64px;
    height: 64px;
    place-items: center;
    background: #2cace2;
    color: #080808;
    font-size: 28px;
}

.benefit-item strong,
.benefit-item small {
    display: block;
}

.benefit-item strong {
    color: #004274;
    font-size: 17px;
    line-height: 1.25;
}

.benefit-item small {
    margin-top: 5px;
    color: #72767b;
    line-height: 1.45;
}

.service-areas {
    margin: 0 0 30px;
    padding: 16px 18px;
    border-left: 4px solid #ff8c35;
    background: #f7f7f7;
    color: #4f555a;
    line-height: 1.65;
}

.emergency-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 26px;
}

.dark-action-button {
    display: inline-flex;
    min-height: 58px;
    align-items: center;
    gap: 12px;
    padding: 0 28px;
    border: 2px solid #004274;
    background: #004274;
    color: #ffffff;
    font-weight: 800;
    transition: background 0.25s ease, color 0.25s ease;
}

.dark-action-button:hover {
    background: #ff8c35;
    color: #004274;
}

.text-phone-link {
    color: #004274;
    font-size: 18px;
    font-weight: 800;
}

.text-phone-link i {
    margin-right: 6px;
    color: #2cace2;
}

.services-showcase {
    position: relative;
    overflow: hidden;
    padding: 95px 0 75px;
    background: linear-gradient(to bottom, #004274 0, #004274 57%, #ffffff 57%, #ffffff 100%);
}

.services-dark-background {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 58%;
    background-image: linear-gradient(rgba(0, 66, 116, 0.82), rgba(0, 66, 116, 0.82)), url("../img/garage-door.webp");
    background-position: center 38%;
    background-size: cover;
}

.services-dark-background::after {
    position: absolute;
    right: 0;
    bottom: -12px;
    left: 0;
    height: 24px;
    background: repeating-linear-gradient(90deg, transparent 0, transparent 11px, #bebebe 12px, #bebebe 13px);
    content: "";
    opacity: 0.6;
}

.services-heading {
    position: relative;
    z-index: 2;
    max-width: 760px;
    margin-bottom: 54px;
}

.services-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0 0 18px;
    color: #2cace2;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 1.6px;
    text-transform: uppercase;
}

.services-eyebrow span {
    width: 38px;
    height: 2px;
    background: #ff8c35;
}

.services-heading h2 {
    margin: 0;
    color: #ffffff;
    font-size: clamp(38px, 4.2vw, 60px);
    font-weight: 800;
    letter-spacing: -2px;
    line-height: 1.05;
}

.services-carousel {
    position: relative;
    z-index: 3;
    padding: 0 12px 110px;
}

.service-project-card {
    height: 100%;
    padding: 34px 34px 0;
    background: #2cace2;
    transition: transform 0.35s ease;
}

.service-project-card:hover {
    transform: translateY(-10px);
}

.service-image-link {
    position: relative;
    display: block;
    height: 285px;
    overflow: hidden;
}

.service-image-link img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-project-card:hover .service-image-link img {
    transform: scale(1.07);
}

.service-number {
    position: absolute;
    right: 0;
    bottom: 0;
    display: grid;
    width: 58px;
    height: 48px;
    place-items: center;
    background: #ff8c35;
    color: #004274;
    font-size: 14px;
    font-weight: 900;
}

.service-card-body {
    position: relative;
    min-height: 235px;
    margin: 0 -34px;
    padding: 34px 40px 38px;
    background: #f2f3f4;
}

.service-card-body h3 {
    margin: 0 0 15px;
    font-size: 22px;
    font-weight: 800;
    line-height: 1.25;
}

.service-card-body h3 a {
    color: #004274;
}

.service-card-body p {
    margin: 0;
    color: #62676d;
    font-size: 15px;
    line-height: 1.65;
}

.service-arrow {
    display: grid;
    width: 58px;
    height: 45px;
    margin-top: 24px;
    place-items: center;
    background: #ffffff;
    color: #2cace2;
    font-size: 20px;
    transition: background 0.25s ease, color 0.25s ease;
}

.service-arrow:hover {
    background: #ff8c35;
    color: #004274;
}

.services-carousel-controls {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
}

.services-carousel-controls .carousel-control-prev,
.services-carousel-controls .carousel-control-next {
    position: static;
    width: 54px;
    height: 54px;
    background: #f1f2f3;
    color: #004274;
    font-size: 17px;
    opacity: 1;
    transition: background 0.25s ease;
}

.services-carousel-controls .carousel-control-prev:hover,
.services-carousel-controls .carousel-control-next:hover {
    background: #ff8c35;
}

.control-line {
    width: 55px;
    height: 2px;
    background: #e0e0e0;
}

@media (max-width: 1199.98px) {
    .navbar {
        min-height: 78px;
    }

    .navbar-collapse {
        padding: 14px 0 24px;
    }

    .navbar .nav-link {
        padding: 12px 4px;
    }

    .navbar .nav-link::after {
        right: auto;
        bottom: 6px;
        left: 4px;
        width: 42px;
    }

    .quote-button {
        margin-top: 12px;
    }
}

@media (max-width: 991.98px) {
    .brand-column {
        display: none;
    }

    .navbar-brand {
        max-width: 70%;
        font-size: 18px;
        font-weight: 800;
    }

    .hero-section {
        min-height: 680px;
    }

    .hero-overlay {
        background: rgba(0, 0, 0, 0.74);
    }

    .emergency-about-section {
        padding: 80px 0;
    }

    .emergency-copy {
        padding-left: 0;
    }

    .rotating-background-image {
        right: -330px;
    }

    .services-showcase {
        background: linear-gradient(to bottom, #004274 0, #004274 30%, #ffffff 30%, #ffffff 100%);
    }

    .services-dark-background {
        height: 31%;
    }

    .service-project-card {
        margin-bottom: 24px;
    }
}

@media (max-width: 575.98px) {
    .hero-section {
        min-height: 720px;
    }

    .hero-content {
        padding-top: 65px;
        padding-bottom: 110px;
    }

    .hero-section h1 {
        font-size: 48px;
        letter-spacing: -2px;
    }

    .hero-description {
        font-size: 16px;
        line-height: 1.6;
    }

    .hero-actions a {
        width: 100%;
    }

    .hero-lines {
        bottom: 54px;
        left: 24px;
    }

    .emergency-about-section {
        padding: 65px 0;
    }

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

    .main-service-image {
        min-height: 430px;
    }

    .service-side-column {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 14px;
    }

    .response-card,
    .detail-service-image {
        min-height: 210px;
    }

    .response-card strong {
        font-size: 19px;
    }

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

    .emergency-actions a {
        width: 100%;
        justify-content: center;
    }

    .services-showcase {
        padding-top: 70px;
        background: linear-gradient(to bottom, #004274 0, #004274 20%, #ffffff 20%, #ffffff 100%);
    }

    .services-dark-background {
        height: 21%;
    }

    .services-heading {
        margin-bottom: 38px;
    }

    .services-heading h2 {
        font-size: 38px;
    }

    .services-carousel {
        padding-right: 0;
        padding-left: 0;
    }

    .service-project-card {
        padding: 18px 18px 0;
    }

    .service-card-body {
        margin: 0 -18px;
        padding: 28px 26px 32px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .rotating-background-image {
        animation: none;
    }
}

.repair-installation-projects {
    position: relative;
    overflow: hidden;
    padding: 105px 0 120px;
    background: linear-gradient(to bottom, #004274 0, #004274 48%, #ffffff 48%, #ffffff 100%);
}

.repair-installation-projects::before {
    position: absolute;
    top: 0;
    right: 0;
    width: 54%;
    height: 48%;
    background-image: linear-gradient(135deg, rgba(44, 172, 226, 0.09), rgba(255, 140, 53, 0.05));
    content: "";
    clip-path: polygon(20% 0, 100% 0, 100% 100%, 0 100%);
}

.repair-installation-heading {
    position: relative;
    z-index: 1;
    margin-bottom: 62px;
}

.repair-installation-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0 0 18px;
    color: #ff8c35;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 1.6px;
    text-transform: uppercase;
}

.repair-installation-eyebrow span {
    width: 36px;
    height: 2px;
    background: #2cace2;
}

.repair-installation-heading h2 {
    margin: 0;
    color: #ffffff;
    font-size: clamp(38px, 4vw, 48px);
    font-weight: 800;
    letter-spacing: -1.5px;
    line-height: 1.08;
}

.repair-installation-heading > p:last-child {
    margin: 22px 0 0;
    color: #ffffff;
    font-size: 17px;
    line-height: 1.75;
}

.repair-installation-card {
    position: relative;
    z-index: 1;
    height: 100%;
}

.repair-installation-image {
    position: relative;
    display: block;
    margin: 0 0 0 22px;
}

.repair-installation-image::before {
    position: absolute;
    z-index: -1;
    top: -22px;
    right: 22px;
    bottom: 22px;
    left: -22px;
    border: 5px solid #2cace2;
    background: #004274;
    content: "";
    transition: border-color 0.35s ease, background 0.35s ease, transform 0.35s ease;
}

.repair-installation-image:hover::before,
.repair-installation-image:focus::before {
    border-color: #ff8c35;
    background: #ff8c35;
    transform: translate(8px, 8px);
}

.repair-installation-image img {
    display: block;
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.4s ease, filter 0.4s ease;
}

.repair-installation-image:hover img,
.repair-installation-image:focus img {
    filter: brightness(1.06);
    transform: translateY(-7px) scale(1.015);
}

.repair-installation-number {
    position: absolute;
    right: 18px;
    bottom: 18px;
    display: grid;
    width: 52px;
    height: 52px;
    place-items: center;
    background: #ff8c35;
    color: #004274;
    font-size: 16px;
    font-weight: 900;
    transition: background 0.35s ease, color 0.35s ease;
}

.repair-installation-image:hover .repair-installation-number,
.repair-installation-image:focus .repair-installation-number {
    background: #2cace2;
    color: #ffffff;
}

.repair-installation-content {
    min-height: 238px;
    margin-left: 22px;
    padding: 32px 36px 34px;
    background: #f2f3f4;
}

.repair-installation-content h3 {
    margin: 0 0 16px;
    font-size: 25px;
    font-weight: 800;
}

.repair-installation-content h3 a {
    color: #004274;
    transition: color 0.25s ease;
}

.repair-installation-content h3 a:hover {
    color: #ff8c35;
}

.repair-installation-content p {
    margin: 0 0 24px;
    color: #60656b;
    line-height: 1.7;
}

.repair-installation-arrow {
    display: inline-grid;
    width: 54px;
    height: 42px;
    place-items: center;
    background: #ffffff;
    color: #ff8c35;
    font-size: 20px;
    transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.repair-installation-arrow:hover {
    background: #2cace2;
    color: #ffffff;
    transform: translateX(5px);
}

@media (max-width: 991.98px) {
    .repair-installation-projects {
        background: linear-gradient(to bottom, #004274 0, #004274 30%, #ffffff 30%, #ffffff 100%);
    }
}

@media (max-width: 575.98px) {
    .repair-installation-projects {
        padding: 75px 0 85px;
        background: linear-gradient(to bottom, #004274 0, #004274 22%, #ffffff 22%, #ffffff 100%);
    }

    .repair-installation-heading {
        margin-bottom: 48px;
    }

    .repair-installation-image {
        margin-left: 14px;
    }

    .repair-installation-image::before {
        top: -14px;
        right: 14px;
        bottom: 14px;
        left: -14px;
    }

    .repair-installation-image img {
        height: 245px;
    }

    .repair-installation-content {
        margin-left: 14px;
        padding: 28px 25px 30px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .repair-installation-image::before,
    .repair-installation-image img,
    .repair-installation-number,
    .repair-installation-arrow {
        transition: none;
    }
}
.spring-safety-section {
    position: relative;
    overflow: hidden;
    background: #004274;
}

.spring-safety-image {
    position: relative;
    height: 100%;
    min-height: 850px;
    overflow: hidden;
}

.spring-safety-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.spring-shape {
    position: absolute;
    top: -10%;
    right: -145px;
    width: 225px;
    height: 120%;
    pointer-events: none;
    transform: rotate(25deg);
}

.spring-shape-one {
    z-index: 2;
    background: #ff8c35;
}

.spring-shape-two {
    z-index: 1;
    right: -235px;
    background: #2cace2;
}

.spring-safety-content {
    position: relative;
    display: flex;
    min-height: 850px;
    align-items: center;
    overflow: hidden;
    padding: 90px 8%;
    background: #004274;
}

.spring-content-inner {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 850px;
}

.spring-gear-background {
    position: absolute;
    right: -170px;
    bottom: -120px;
    width: 570px;
    height: 570px;
    object-fit: contain;
    opacity: 0.07;
    animation: springGearRotation 14s linear infinite;
}

.spring-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0 0 18px;
    color: #ff8c35;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.spring-eyebrow span {
    width: 35px;
    height: 2px;
    background: #2cace2;
}

.spring-safety-content h2 {
    max-width: 780px;
    margin: 0 0 25px;
    color: #ffffff;
    font-size: clamp(38px, 4vw, 58px);
    font-weight: 800;
    letter-spacing: -1.5px;
    line-height: 1.08;
}

.spring-description {
    max-width: 850px;
    margin: 0 0 17px;
    color: #d9e5eb;
    font-size: 16px;
    line-height: 1.8;
}

.spring-description strong {
    color: #ffffff;
}

.spring-benefits {
    margin-top: 34px;
}

.spring-benefit-card {
    display: flex;
    min-height: 132px;
    height: 100%;
    align-items: center;
    gap: 20px;
    padding: 24px;
    border-left: 5px solid #2cace2;
    background: #ffffff;
    transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.spring-benefit-card:hover {
    border-color: #ff8c35;
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.2);
    transform: translateY(-6px);
}

.spring-benefit-icon {
    display: grid;
    width: 55px;
    height: 55px;
    flex: 0 0 55px;
    place-items: center;
    color: #ff8c35;
    font-size: 35px;
}

.spring-benefit-card h3 {
    margin: 0 0 7px;
    color: #004274;
    font-size: 19px;
    font-weight: 800;
    line-height: 1.3;
}

.spring-benefit-card p {
    margin: 0;
    color: #606c73;
    font-size: 14px;
    line-height: 1.5;
}

.spring-service-button {
    display: inline-flex;
    min-height: 56px;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 34px;
    padding: 0 28px;
    border: 2px solid #ff8c35;
    background: #ff8c35;
    color: #004274;
    font-weight: 800;
    transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.spring-service-button:hover {
    background: #2cace2;
    color: #ffffff;
    transform: translateY(-3px);
}

@keyframes springGearRotation {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@media (max-width: 1199.98px) {
    .spring-safety-content {
        padding: 75px 6%;
    }

    .spring-shape {
        right: -175px;
    }

    .spring-shape-two {
        right: -255px;
    }
}

@media (max-width: 991.98px) {
    .spring-safety-image {
        min-height: 580px;
    }

    .spring-shape {
        right: -110px;
    }

    .spring-shape-two {
        right: -200px;
    }

    .spring-safety-content {
        min-height: auto;
        padding: 80px 30px;
    }
}

@media (max-width: 575.98px) {
    .spring-safety-image {
        min-height: 430px;
    }

    .spring-shape {
        right: -150px;
        width: 190px;
    }

    .spring-shape-two {
        right: -215px;
    }

    .spring-safety-content {
        padding: 65px 20px;
    }

    .spring-safety-content h2 {
        font-size: 36px;
    }

    .spring-benefit-card {
        min-height: 115px;
        padding: 20px;
    }

    .spring-service-button {
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .spring-gear-background {
        animation: none;
    }

    .spring-benefit-card,
    .spring-service-button {
        transition: none;
    }
}
/*form*/
.appointment-section {
    position: relative;
    overflow: hidden;
    padding: 95px 0;
    background-image: url("../img/appointment-background.webp");
    background-position: center;
    background-size: cover;
}

.appointment-overlay {
    position: absolute;
    inset: 0;
    background: rgba(242, 243, 244, 0.9);
}

.appointment-heading {
    position: relative;
    z-index: 2;
    max-width: 470px;
}

.appointment-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0 0 17px;
    color: #ff8c35;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.appointment-eyebrow span {
    display: block;
    width: 35px;
    height: 2px;
    background: #2cace2;
}

.appointment-heading h2 {
    margin: 0;
    color: #004274;
    font-size: clamp(40px, 4vw, 58px);
    font-weight: 800;
    letter-spacing: -1.5px;
    line-height: 1.08;
}

.appointment-heading > p:last-child {
    max-width: 440px;
    margin: 22px 0 0;
    color: #53656e;
    font-size: 16px;
    line-height: 1.75;
}

.appointment-form {
    position: relative;
    z-index: 2;
}

.appointment-field {
    position: relative;
    height: 62px;
    overflow: hidden;
    border: 2px solid transparent;
    background: #ffffff;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.appointment-field:hover {
    border-color: #2cace2;
    transform: translateY(-2px);
}

.appointment-field:focus-within {
    border-color: #ff8c35;
    box-shadow: 0 10px 25px rgba(0, 66, 116, 0.12);
}

.appointment-field input,
.appointment-field select {
    width: 100%;
    height: 100%;
    padding: 0 55px 0 25px;
    border: 0;
    outline: 0;
    background: transparent;
    color: #004274;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
}

.appointment-field input::placeholder {
    color: #53656e;
    opacity: 1;
}

.appointment-field select {
    cursor: pointer;
    appearance: none;
}

.appointment-field input[type="date"] {
    color: #004274;
}

.appointment-field input[type="date"]::-webkit-calendar-picker-indicator {
    position: absolute;
    right: 20px;
    opacity: 0;
    cursor: pointer;
}

.appointment-field i {
    position: absolute;
    top: 50%;
    right: 22px;
    color: #004274;
    font-size: 17px;
    pointer-events: none;
    transform: translateY(-50%);
    transition: color 0.3s ease;
}

.appointment-field:hover i {
    color: #2cace2;
}

.appointment-field:focus-within i {
    color: #ff8c35;
}

.appointment-submit {
    display: flex;
    width: 100%;
    height: 62px;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border: 2px solid #ff8c35;
    background: #ff8c35;
    color: #004274;
    font-size: 17px;
    font-weight: 800;
    transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.appointment-submit:hover {
    border-color: #004274;
    background: #004274;
    color: #ffffff;
    transform: translateY(-3px);
}

.appointment-submit i {
    transition: transform 0.3s ease;
}

.appointment-submit:hover i {
    transform: translate(4px, -4px);
}

@media (max-width: 991.98px) {
    .appointment-section {
        padding: 80px 0;
    }

    .appointment-heading {
        max-width: 650px;
    }

    .appointment-heading > p:last-child {
        max-width: 650px;
    }
}

@media (max-width: 575.98px) {
    .appointment-section {
        padding: 65px 0;
    }

    .appointment-heading h2 {
        font-size: 38px;
    }

    .appointment-field,
    .appointment-submit {
        height: 58px;
    }

    .appointment-field input,
    .appointment-field select {
        padding-right: 48px;
        padding-left: 18px;
        font-size: 15px;
    }

    .appointment-field i {
        right: 17px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .appointment-field,
    .appointment-submit,
    .appointment-submit i {
        transition: none;
    }
}
form.CUS input.subject { display: none; }
.form-control{width:48%;float: left;margin:5px 0px;margin-right: 2%}
/*form*/
/*coupon*/
.coupon-cities-section {
    position: relative;
    overflow: hidden;
    padding: 105px 0;
    background-image: url("../img/garage-door.webp");
    background-position: center;
    background-size: cover;
}

.coupon-cities-section::before {
    position: absolute;
    inset: 0;
    background: rgba(246, 242, 233, 0.91);
    content: "";
}

.coupon-cities-section::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 38%;
    background: #004274;
    content: "";
}

.coupon-cities-background {
    position: absolute;
    top: 0;
    right: -130px;
    width: 580px;
    height: 580px;
    border: 1px solid rgba(44, 172, 226, 0.80);
    border-radius: 50%;
    animation: couponBackgroundMove 7s ease-in-out infinite;
}

.coupon-cities-intro {
    position: relative;
    z-index: 2;
    height: 100%;
    padding: 0px 25px 0 0;
}

.coupon-cities-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0 0 18px;
    color: #ff8c35;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.coupon-cities-eyebrow span {
    width: 35px;
    height: 2px;
    background: #2cace2;
}

.coupon-cities-intro h2 {
    max-width: 430px;
    margin: 0;
    color: #004274;
    font-size: clamp(40px, 4vw, 57px);
    font-weight: 800;
    letter-spacing: -1.6px;
    line-height: 1.08;
}

.coupon-cities-intro > p:last-of-type {
    max-width: 430px;
    margin: 24px 0 0;
    color: #586970;
    font-size: 16px;
    line-height: 1.75;
}

.coupon-phone {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: 95px;
    color: #ffffff;
}

.coupon-phone-icon {
    display: grid;
    width: 78px;
    height: 78px;
    place-items: center;
    border: 8px solid rgba(255, 140, 53, 0.25);
    border-radius: 50%;
    background: #ff8c35;
    color: #ffffff;
    font-size: 26px;
    animation: couponPhonePulse 2.5s ease-in-out infinite;
}

.coupon-phone span {
    display: block;
    margin-bottom: 5px;
    color: #2cace2;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.coupon-phone a {
    color: #ffffff;
    font-size: 25px;
    font-weight: 800;
}

.garage-coupon-card,
.nearby-cities-card {
    position: relative;
    z-index: 2;
    height: 100%;
    min-height: 620px;
    padding: 42px 34px;
    box-shadow: 0 20px 45px rgba(0, 66, 116, 0.14);
}

.garage-coupon-card {
    background: #ffffff;
}

.nearby-cities-card {
    background: #004274;
}

.coupon-top-line,
.cities-top-line {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 9px;
    background: #ff8c35;
}

.coupon-top-line::after,
.cities-top-line::after {
    position: absolute;
    top: 0;
    right: 0;
    width: 48%;
    height: 100%;
    background: #2cace2;
    content: "";
    clip-path: polygon(18px 0, 100% 0, 100% 100%, 0 100%);
}

.coupon-card-header,
.cities-card-header {
    display: flex;
    align-items: center;
    gap: 18px;
}

.coupon-card-icon,
.cities-card-icon {
    display: grid;
    width: 72px;
    height: 72px;
    flex: 0 0 72px;
    place-items: center;
    border-radius: 50%;
    background: #ff8c35;
    color: #ffffff;
    font-size: 30px;
}

.coupon-card-header span,
.cities-card-header span {
    display: block;
    margin-bottom: 5px;
    color: #2cace2;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.coupon-card-header h3,
.cities-card-header h3 {
    margin: 0;
    font-size: 24px;
    font-weight: 800;
    line-height: 1.25;
}

.coupon-card-header h3 {
    color: #004274;
}

.cities-card-header h3 {
    color: #ffffff;
}

.coupon-discount {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 35px 0 28px;
    padding: 24px;
    border: 2px dashed #2cace2;
    background: #f4f9fc;
}

.coupon-currency {
    align-self: flex-start;
    margin-top: 12px;
    color: #ff8c35;
    font-size: 29px;
    font-weight: 900;
}

.coupon-discount > strong {
    color: #004274;
    font-size: 92px;
    font-weight: 900;
    letter-spacing: -6px;
    line-height: 0.9;
}

.coupon-discount div {
    display: flex;
    flex-direction: column;
    margin-left: 13px;
}

.coupon-discount div span {
    color: #ff8c35;
    font-size: 27px;
    font-weight: 900;
}

.coupon-discount div small {
    color: #53656e;
    font-size: 14px;
    font-weight: 700;
}

.coupon-benefits,
.nearby-cities-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.coupon-benefits li {
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 12px 0;
    border-bottom: 1px dashed #cbd6dc;
    color: #53656e;
    font-size: 15px;
}

.coupon-benefits i {
    color: #ff8c35;
}

.coupon-terms {
    margin: 20px 0;
    color: #6b777d;
    font-size: 12px;
    line-height: 1.6;
}

.coupon-button,
.cities-button {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    gap: 11px;
    padding: 0 23px;
    font-weight: 800;
    transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.coupon-button {
    border: 2px solid #ff8c35;
    background: #ff8c35;
    color: #004274;
}

.coupon-button:hover {
    background: #004274;
    color: #ffffff;
    transform: translateY(-3px);
}

.nearby-cities-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 24px;
    margin-top: 34px;
}

.nearby-cities-list li {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 14px 0;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.18);
    color: #d9e5eb;
    font-size: 15px;
    transition: color 0.25s ease, padding-left 0.25s ease;
}

.nearby-cities-list li:hover {
    padding-left: 7px;
    color: #ffffff;
}

.nearby-cities-list i {
    color: #ff8c35;
}

.cities-button {
    margin-top: 34px;
    border: 2px solid #ff8c35;
    background: transparent;
    color: #ffffff;
}

.cities-button:hover {
    background: #ff8c35;
    color: #004274;
    transform: translateY(-3px);
}

@keyframes couponPhonePulse {
    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(255, 140, 53, 0.35);
    }

    50% {
        box-shadow: 0 0 0 15px rgba(255, 140, 53, 0);
    }
}

@keyframes couponBackgroundMove {
    0%,
    100% {
        transform: translateY(-20px) rotate(0deg);
    }

    50% {
        transform: translateY(20px) rotate(12deg);
    }
}

@media (max-width: 991.98px) {
    .coupon-cities-section::after {
        height: 22%;
    }

    .coupon-cities-intro {
        padding-right: 0;
    }

    .coupon-phone {
        margin-top: 38px;
        margin-bottom: 35px;
        color: #004274;
    }

    .coupon-phone a {
        color: #004274;
    }
}

@media (max-width: 767.98px) {
    .coupon-cities-section {
        padding: 75px 0;
    }

    .coupon-cities-section::after {
        display: none;
    }

    .garage-coupon-card,
    .nearby-cities-card {
        min-height: auto;
        padding: 38px 25px;
    }
}

@media (max-width: 575.98px) {
    .coupon-cities-intro h2 {
        font-size: 38px;
    }

    .coupon-phone a {
        font-size: 21px;
    }

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

    .coupon-discount > strong {
        font-size: 76px;
    }

    .coupon-button,
    .cities-button {
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .coupon-phone-icon,
    .coupon-cities-background {
        animation: none;
    }

    .coupon-button,
    .cities-button,
    .nearby-cities-list li {
        transition: none;
    }
}
/*coupon*/
/*section*/
.motor-experience-section {
    position: relative;
    overflow: hidden;
    padding: 105px 0 125px;
    background: #ffffff;
}

.motor-section-heading {
    position: relative;
    z-index: 2;
    margin-bottom: 65px;
}

.motor-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0 0 15px;
    color: #ff8c35;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.motor-eyebrow span {
    width: 36px;
    height: 2px;
    background: #2cace2;
}

.motor-section-heading h2 {
    max-width: 760px;
    margin: 0;
    color: #004274;
    font-size: clamp(42px, 4.5vw, 64px);
    font-weight: 800;
    letter-spacing: -2px;
    line-height: 1.05;
}

.motor-heading-button {
    position: relative;
    display: inline-flex;
    min-width: 210px;
    min-height: 58px;
    align-items: center;
    justify-content: center;
    gap: 13px;
    border: 2px solid #ff8c35;
    background: #ff8c35;
    color: #004274;
    font-weight: 800;
    transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.motor-heading-button::after {
    position: absolute;
    z-index: -1;
    top: -8px;
    right: -8px;
    width: 20px;
    height: 64px;
    border-top: 2px solid #2cace2;
    border-right: 2px solid #2cace2;
    border-bottom: 2px solid #2cace2;
    content: "";
}

.motor-heading-button:hover {
    background: #004274;
    color: #ffffff;
    transform: translateY(-4px);
}

.motor-experience-wrapper {
    position: relative;
    padding: 60px 0 60px 50px;
}

.motor-orange-background {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 28%;
    background: #ff8c35;
}

.motor-blue-background {
    position: absolute;
    top: 30px;
    right: -25px;
    bottom: 30px;
    left: 25%;
    background: #2cace2;
    opacity: 0.15;
    filter: blur(18px);
}

.motor-experience-card {
    position: relative;
    z-index: 2;
    overflow: hidden;
    padding: 55px;
    background: #ffffff;
    box-shadow: 0 18px 50px rgba(0, 66, 116, 0.17);
}

.motor-pattern {
    position: absolute;
    top: -130px;
    right: -110px;
    width: 440px;
    height: 440px;
    border: 1px solid rgba(44, 172, 226, 0.18);
    border-radius: 50%;
    background: repeating-radial-gradient(
        circle,
        transparent 0,
        transparent 11px,
        rgba(44, 172, 226, 0.1) 12px,
        rgba(44, 172, 226, 0.1) 13px
    );
    animation: motorPatternRotation 18s linear infinite;
}

.motor-years {
    position: relative;
    z-index: 2;
    padding-right: 28px;
    text-align: center;
}

.motor-years-number {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    line-height: 1;
}

.motor-years-number span {
    background: linear-gradient(145deg, #004274 10%, #2cace2 48%, #ff8c35 90%);
    background-clip: text;
    color: transparent;
    font-size: clamp(110px, 12vw, 175px);
    font-weight: 900;
    letter-spacing: -5px;
}

.motor-years-number sup {
    margin-top: 18px;
    color: #ff8c35;
    font-size: 42px;
    font-weight: 900;
}

.motor-years p {
    max-width: 220px;
    margin: 12px auto 0;
    color: #004274;
    font-size: 22px;
    font-weight: 800;
    line-height: 1.3;
}

.motor-content {
    position: relative;
    z-index: 2;
    padding-left: 25px;
    border-left: 1px solid #d8e2e7;
}

.motor-introduction {
    max-width: 780px;
    margin: 0 0 28px;
    color: #004274;
    font-size: 25px;
    font-weight: 800;
    line-height: 1.45;
}

.motor-feature-row {
    margin-bottom: 28px;
}

.motor-feature {
    height: 100%;
    min-height: 250px;
    padding: 25px 20px;
    border-bottom: 4px solid #2cace2;
    background: #f4f8fa;
    transition: border-color 0.3s ease, background 0.3s ease, transform 0.3s ease;
}

.motor-feature:hover {
    border-color: #ff8c35;
    background: #ffffff;
    box-shadow: 0 15px 35px rgba(0, 66, 116, 0.12);
    transform: translateY(-7px);
}

.motor-feature-icon {
    display: grid;
    width: 58px;
    height: 58px;
    margin-bottom: 20px;
    place-items: center;
    border-radius: 50%;
    background: #ff8c35;
    color: #ffffff;
    font-size: 27px;
    transition: background 0.3s ease, transform 0.3s ease;
}

.motor-feature:hover .motor-feature-icon {
    background: #2cace2;
    transform: rotate(10deg);
}

.motor-feature h3 {
    margin: 0 0 12px;
    color: #004274;
    font-size: 19px;
    font-weight: 800;
    line-height: 1.3;
}

.motor-feature p {
    margin: 0;
    color: #5e6d74;
    font-size: 14px;
    line-height: 1.65;
}

.motor-feature p strong {
    color: #004274;
}

.motor-description {
    margin: 0;
    color: #5e6d74;
    font-size: 15px;
    line-height: 1.8;
}

.motor-description strong {
    color: #004274;
}

.motor-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 24px;
    margin-top: 28px;
}

.motor-primary-button {
    display: inline-flex;
    min-height: 54px;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 0 25px;
    border: 2px solid #ff8c35;
    background: #ff8c35;
    color: #004274;
    font-weight: 800;
    transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.motor-primary-button:hover {
    background: #004274;
    color: #ffffff;
    transform: translateY(-3px);
}

.motor-phone-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #004274;
    font-size: 19px;
    font-weight: 800;
}

.motor-phone-link i {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: 50%;
    background: #2cace2;
    color: #ffffff;
}

@keyframes motorPatternRotation {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@media (max-width: 1199.98px) {
    .motor-experience-card {
        padding: 45px 35px;
    }

    .motor-content {
        padding-left: 15px;
    }

    .motor-feature {
        min-height: 275px;
    }
}

@media (max-width: 991.98px) {
    .motor-experience-section {
        padding: 85px 0;
    }

    .motor-heading-button {
        margin-top: 15px;
    }

    .motor-experience-wrapper {
        padding: 45px 0 45px 35px;
    }

    .motor-orange-background {
        width: 45%;
    }

    .motor-years {
        padding-right: 0;
        padding-bottom: 35px;
    }

    .motor-content {
        padding-top: 35px;
        padding-left: 0;
        border-top: 1px solid #d8e2e7;
        border-left: 0;
    }
}

@media (max-width: 767.98px) {
    .motor-feature {
        min-height: auto;
    }
}

@media (max-width: 575.98px) {
    .motor-experience-section {
        padding: 65px 0;
    }

    .motor-section-heading {
        margin-bottom: 45px;
    }

    .motor-section-heading h2 {
        font-size: 38px;
    }

    .motor-heading-button {
        width: 100%;
    }

    .motor-experience-wrapper {
        padding: 22px 0 22px 16px;
    }

    .motor-experience-card {
        padding: 35px 20px;
    }

    .motor-years-number span {
        font-size: 105px;
        letter-spacing: -8px;
    }

    .motor-introduction {
        font-size: 21px;
    }

    .motor-primary-button {
        width: 100%;
    }

    .motor-phone-link {
        width: 100%;
        justify-content: center;
    }
}

@media (prefers-reduced-motion: reduce) {
    .motor-pattern {
        animation: none;
    }

    .motor-feature,
    .motor-feature-icon,
    .motor-heading-button,
    .motor-primary-button {
        transition: none;
    }
}
/*faqs*/
.plainfield-faq-section {
    position: relative;
    overflow: hidden;
    padding: 50px 0;
    background: #f3f7f9;
}
.faq-column {
    position: relative;
    z-index: 2;
}

.faq-eyebrow,
.maintenance-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0 0 17px;
    color: #ff8c35;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.faq-eyebrow span,
.maintenance-eyebrow span {
    width: 36px;
    height: 2px;
    background: #2cace2;
}

.faq-column > h2 {
    margin: 0 0 38px;
    color: #004274;
    font-size: clamp(40px, 4vw, 58px);
    font-weight: 800;
    letter-spacing: -1.6px;
    line-height: 1.08;
}

.plainfield-faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 17px;
}

.plainfield-faq-accordion .accordion-item {
    overflow: hidden;
    border: 0;
    border-left: 5px solid #2cace2;
    border-radius: 0;
    background: #ffffff;
    box-shadow: 0 12px 30px rgba(0, 66, 116, 0.08);
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.plainfield-faq-accordion .accordion-item:hover {
    border-color: #ff8c35;
    transform: translateY(-3px);
}

.plainfield-faq-accordion .accordion-button {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px 25px;
    border: 0;
    border-radius: 0;
    background: #ffffff;
    color: #004274;
    font-size: 17px;
    font-weight: 800;
    line-height: 1.45;
    box-shadow: none;
}

.plainfield-faq-accordion .accordion-button:not(.collapsed) {
    background: #004274;
    color: #ffffff;
    box-shadow: none;
}

.plainfield-faq-accordion .accordion-button:focus {
    border: 0;
    box-shadow: none;
}

.plainfield-faq-accordion .accordion-button::after {
    width: 36px;
    height: 36px;
    margin-left: auto;
    border-radius: 50%;
    background-color: #ff8c35;
    background-position: center;
    background-size: 14px;
}

.plainfield-faq-accordion .accordion-button:not(.collapsed)::after {
    background-color: #2cace2;
}

.faq-number {
    display: grid;
    width: 43px;
    height: 43px;
    flex: 0 0 43px;
    place-items: center;
    border-radius: 50%;
    background: #2cace2;
    color: #ffffff;
    font-size: 14px;
    font-weight: 900;
}

.accordion-button:not(.collapsed) .faq-number {
    background: #ff8c35;
    color: #004274;
}

.plainfield-faq-accordion .accordion-body {
    padding: 25px 30px 28px 84px;
    background: #ffffff;
    color: #5c6a71;
    font-size: 15px;
    line-height: 1.8;
}

.plainfield-faq-accordion .accordion-body p {
    margin: 0 0 14px;
}

.plainfield-faq-accordion .accordion-body p:last-child {
    margin-bottom: 0;
}

.maintenance-content-card {
    position: relative;
    z-index: 2;
    overflow: hidden;
    padding: 55px 50px;
    background: #004274;
    box-shadow: 0 20px 45px rgba(0, 66, 116, 0.2);
}

.maintenance-card-decoration {
    position: absolute;
    top: -170px;
    right: -170px;
    width: 400px;
    height: 400px;
    border: 60px solid rgba(44, 172, 226, 0.08);
    border-radius: 50%;
    animation: maintenanceDecoration 8s ease-in-out infinite;
}

.maintenance-content-card > *:not(.maintenance-card-decoration) {
    position: relative;
    z-index: 2;
}

.maintenance-content-card h2 {
    margin: 0 0 27px;
    color: #ffffff;
    font-size: clamp(38px, 3.5vw, 52px);
    font-weight: 800;
    letter-spacing: -1.5px;
    line-height: 1.08;
}

.maintenance-content-card > p:not(.maintenance-eyebrow) {
    margin: 0 0 17px;
    color: #d7e3e9;
    font-size: 15px;
    line-height: 1.8;
}

.maintenance-content-card > p strong {
    color: #ffffff;
}

.maintenance-features {

    display: grid;
    grid-template-columns: 4fr;
    gap: 16px;
    margin-top: 32px;
}

.maintenance-feature {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 21px;
    border-bottom: 4px solid #2cace2;
    background: #ffffff;
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.maintenance-feature:hover {
    border-color: #ff8c35;
    transform: translateY(-5px);
}

.maintenance-feature-icon {
    display: grid;
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    place-items: center;
    border-radius: 50%;
    background: #ff8c35;
    color: #004274;
    font-size: 21px;
}

.maintenance-feature h3 {
    margin: 3px 0 7px;
    color: #004274;
    font-size: 16px;
    font-weight: 800;
    line-height: 1.3;
}

.maintenance-feature p {
    margin: 0;
    color: #637178;
    font-size: 13px;
    line-height: 1.55;
}

.maintenance-service-areas {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    margin-top: 27px;
    padding: 18px 20px;
    border-left: 4px solid #ff8c35;
    background: rgba(255, 255, 255, 0.08);
}

.maintenance-service-areas i {
    margin-top: 3px;
    color: #ff8c35;
    font-size: 22px;
}

.maintenance-service-areas p {
    margin: 0;
    color: #d7e3e9;
    font-size: 14px;
    line-height: 1.7;
}

.maintenance-service-areas strong {
    color: #ffffff;
}

.maintenance-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 22px;
    margin-top: 28px;
}

.maintenance-primary-button {
    display: inline-flex;
    min-height: 55px;
    align-items: center;
    justify-content: center;
    gap: 11px;
    padding: 0 26px;
    border: 2px solid #ff8c35;
    background: #ff8c35;
    color: #004274;
    font-weight: 800;
    transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.maintenance-primary-button:hover {
    background: #2cace2;
    color: #ffffff;
    transform: translateY(-3px);
}

.maintenance-phone {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    font-size: 18px;
    font-weight: 800;
}

.maintenance-phone i {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: 50%;
    background: #2cace2;
    color: #ffffff;
}

@keyframes maintenanceDecoration {
    0%,
    100% {
        transform: rotate(0deg) scale(1);
    }

    50% {
        transform: rotate(15deg) scale(1.08);
    }
}

@media (max-width: 1199.98px) {
    .maintenance-content-card {
        padding: 45px 35px;
    }

    .maintenance-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 991.98px) {
    .plainfield-faq-section {
        padding: 85px 0;
    }

    .maintenance-features {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 767.98px) {
    .maintenance-features {
        grid-template-columns: 1fr;
    }

    .plainfield-faq-accordion .accordion-body {
        padding: 24px;
    }
}

@media (max-width: 575.98px) {
    .plainfield-faq-section {
        padding: 65px 0;
    }

    .faq-column > h2 {
        font-size: 38px;
    }

    .plainfield-faq-accordion .accordion-button {
        align-items: flex-start;
        padding: 21px 17px;
        font-size: 15px;
    }

    .faq-number {
        width: 37px;
        height: 37px;
        flex-basis: 37px;
    }

    .maintenance-content-card {
        padding: 38px 22px;
    }

    .maintenance-content-card h2 {
        font-size: 36px;
    }

    .maintenance-primary-button,
    .maintenance-phone {
        width: 100%;
        justify-content: center;
    }
}

@media (prefers-reduced-motion: reduce) {
    .maintenance-card-decoration {
        animation: none;
    }

    .plainfield-faq-accordion .accordion-item,
    .maintenance-feature,
    .maintenance-primary-button {
        transition: none;
    }
}
/*faqs*/
/*section*/
.maintenance-image-wrapper {
    position: relative;
    min-height: 100%;
    overflow: hidden;
    border-radius: 20px;
}

.maintenance-side-image {
    width: 100%;
    height: 100%;
    min-height: 520px;
    display: block;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s ease;
}

.maintenance-image-wrapper:hover .maintenance-side-image {
    transform: scale(1.06);
}

@media (max-width: 991.98px) {
    .maintenance-side-image {
        height: 420px;
        min-height: auto;
    }
}

@media (max-width: 575.98px) {
    .maintenance-side-image {
        height: 320px;
    }
}
/*section*/
/*footer*/
.plainfield-footer {
    position: relative;
    overflow: hidden;
    background: #004274;
}

.footer-cta {
    position: relative;
    z-index: 4;
    padding: 35px 0;
    background: #ff8c35;
}

.footer-cta::before {
    position: absolute;
    top: 0;
    right: 10%;
    bottom: 0;
    width: 270px;
    background: rgba(255, 255, 255, 0.08);
    content: "";
    clip-path: polygon(35% 0, 100% 0, 65% 100%, 0 100%);
}

.footer-cta-content {
    display: flex;
    align-items: center;
    gap: 22px;
}

.footer-cta-icon {
    display: grid;
    width: 72px;
    height: 72px;
    flex: 0 0 72px;
    place-items: center;
    border: 7px solid rgba(0, 66, 116, 0.16);
    border-radius: 50%;
    background: #004274;
    color: #ffffff;
    font-size: 30px;
}

.footer-cta-content span {
    display: block;
    margin-bottom: 6px;
    color: #004274;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.footer-cta-content h2 {
    margin: 0;
    color: #004274;
    font-size: clamp(25px, 3vw, 38px);
    font-weight: 800;
    letter-spacing: -1px;
}

.footer-cta-button {
    position: relative;
    display: inline-flex;
    min-height: 58px;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 0 28px;
    border: 2px solid #004274;
    background: #004274;
    color: #ffffff;
    font-size: 17px;
    font-weight: 800;
    transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.footer-cta-button:hover {
    background: #ffffff;
    color: #004274;
    transform: translateY(-3px);
}

.footer-main {
    position: relative;
    overflow: hidden;
    padding: 90px 0 55px;
    background: #004274;
}

.footer-main::before {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(
        135deg,
        rgba(44, 172, 226, 0.04) 25%,
        transparent 25%,
        transparent 50%,
        rgba(44, 172, 226, 0.04) 50%,
        rgba(44, 172, 226, 0.04) 75%,
        transparent 75%
    );
    background-size: 70px 70px;
    content: "";
}

.footer-gear {
    position: absolute;
    color: rgba(44, 172, 226, 0.07);
    line-height: 1;
    pointer-events: none;
    animation: footerGearRotation 18s linear infinite;
}

.footer-gear-one {
    top: -90px;
    right: -70px;
    font-size: 390px;
}

.footer-gear-two {
    bottom: -130px;
    left: -100px;
    font-size: 320px;
    animation-direction: reverse;
}

.footer-about,
.footer-column {
    position: relative;
    z-index: 2;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 27px;
}

.footer-logo-icon {
    display: grid;
    width: 62px;
    height: 62px;
    place-items: center;
    border: 5px solid #ff8c35;
    border-radius: 50%;
    color: #ff8c35;
    font-size: 28px;
}

.footer-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.footer-logo-text strong {
    color: #ffffff;
    font-size: 25px;
    letter-spacing: -0.7px;
}

.footer-logo-text small {
    margin-top: 8px;
    color: #2cace2;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2.3px;
    text-transform: uppercase;
}

.footer-about > p {
    max-width: 380px;
    margin: 0;
    color: #cbd9df;
    font-size: 15px;
    line-height: 1.8;
}

.footer-social-links {
    display: flex;
    gap: 10px;
    margin-top: 28px;
}

.footer-social-links a {
    display: grid;
    width: 43px;
    height: 43px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    transition: border-color 0.3s ease, background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.footer-social-links a:hover {
    border-color: #ff8c35;
    background: #ff8c35;
    color: #004274;
    transform: translateY(-4px);
}

.footer-column h3 {
    position: relative;
    margin: 0 0 30px;
    padding-bottom: 15px;
    color: #ffffff;
    font-size: 21px;
    font-weight: 800;
}

.footer-column h3::before {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 48px;
    height: 3px;
    background: #ff8c35;
    content: "";
}

.footer-column h3::after {
    position: absolute;
    bottom: 0;
    left: 54px;
    width: 18px;
    height: 3px;
    background: #2cace2;
    content: "";
}

.footer-links {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-links li {
    margin-bottom: 13px;
}

.footer-links a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #cbd9df;
    font-size: 14px;
    transition: color 0.25s ease, padding-left 0.25s ease;
}

.footer-links a i {
    color: #ff8c35;
    font-size: 12px;
}

.footer-links a:hover {
    padding-left: 6px;
    color: #ffffff;
}

.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 21px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.footer-contact-icon {
    display: grid;
    width: 43px;
    height: 43px;
    flex: 0 0 43px;
    place-items: center;
    border: 1px solid rgba(44, 172, 226, 0.35);
    background: rgba(44, 172, 226, 0.1);
    color: #ff8c35;
    font-size: 17px;
}

.footer-contact-list span {
    display: block;
    margin-bottom: 5px;
    color: #2cace2;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.footer-contact-list a,
.footer-contact-list p {
    margin: 0;
    color: #ffffff;
    font-size: 14px;
    line-height: 1.65;
}

.footer-contact-list a {
    transition: color 0.25s ease;
}

.footer-contact-list a:hover {
    color: #ff8c35;
}

.footer-service-areas {
    position: relative;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 9px 18px;
    margin-top: 55px;
    padding: 23px 26px;
    border-left: 5px solid #ff8c35;
    background: rgba(255, 255, 255, 0.07);
}

.footer-service-areas span {
    color: #ffffff;
    font-size: 15px;
    font-weight: 800;
}

.footer-service-areas a {
    position: relative;
    color: #cbd9df;
    font-size: 13px;
    transition: color 0.25s ease;
}

.footer-service-areas a:not(:last-child)::after {
    position: absolute;
    top: 50%;
    right: -11px;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: #2cace2;
    content: "";
    transform: translateY(-50%);
}

.footer-service-areas a:hover {
    color: #ff8c35;
}

.footer-bottom {
    position: relative;
    z-index: 3;
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    background: #00345c;
}

.footer-bottom p {
    margin: 0;
    color: #bfcdd4;
    font-size: 13px;
}

.footer-legal-links {
    display: flex;
    justify-content: flex-end;
    gap: 25px;
}

.footer-legal-links a {
    color: #bfcdd4;
    font-size: 13px;
    transition: color 0.25s ease;
}

.footer-legal-links a:hover {
    color: #ff8c35;
}

.footer-call-mobile {
    position: fixed;
    z-index: 999;
    right: 20px;
    bottom: 20px;
    display: none;
    width: 58px;
    height: 58px;
    place-items: center;
    border: 5px solid rgba(255, 140, 53, 0.24);
    border-radius: 50%;
    background: #ff8c35;
    color: #004274;
    font-size: 22px;
    box-shadow: 0 12px 30px rgba(0, 66, 116, 0.28);
    animation: footerPhonePulse 2.5s ease-in-out infinite;
}

@keyframes footerGearRotation {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes footerPhonePulse {
    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(255, 140, 53, 0.4);
    }

    50% {
        box-shadow: 0 0 0 15px rgba(255, 140, 53, 0);
    }
}

@media (max-width: 991.98px) {
    .footer-cta {
        text-align: center;
    }


    .footer-cta-content {
        justify-content: center;
    }

    .footer-cta-button {
        margin-top: 5px;
    }

    .footer-main {
        padding-top: 75px;
    }
}

@media (max-width: 767.98px) {
    .footer-cta-content {
        flex-direction: column;
    }

    .footer-main {
        padding: 65px 0 45px;
    }

    .footer-service-areas {
        margin-top: 40px;
    }

    .footer-bottom {
        padding: 22px 0 90px;
        text-align: center;
    }

    .footer-legal-links {
        justify-content: center;
    }

    .footer-call-mobile {
        display: grid;
    }
}

@media (max-width: 575.98px) {
    .footer-cta {
        padding: 32px 0;
    }

    .footer-cta-content h2 {
        font-size: 28px;
    }

    .footer-cta-button {
        width: 100%;
    }

    .footer-service-areas {
        align-items: flex-start;
        flex-direction: column;
    }

    .footer-service-areas a::after {
        display: none;
    }

    .footer-legal-links {
        flex-direction: column;
        gap: 8px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .footer-gear,
    .footer-call-mobile {
        animation: none;
    }

    .footer-cta-button,
    .footer-social-links a,
    .footer-links a {
        transition: none;
    }
}
/*footer*/
@font-face{font-display:block;font-family:bootstrap-icons;src:url("../fonts/bootstrap-icons.woff2?dd67030699838ea613ee6dbda90effa6") format("woff2"),url("../fonts/bootstrap-icons.woff?dd67030699838ea613ee6dbda90effa6") format("woff")}
.bi::before,[class*=" bi-"]::before,[class^=bi-]::before{display:inline-block;font-family:bootstrap-icons!important;font-style:normal;font-weight:400!important;font-variant:normal;text-transform:none;line-height:1;vertical-align:-.125em;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}

.bi-arrow-right::before{content:"\f138"}.bi-arrow-up-right::before{content:"\f144"}.bi-check-circle::before{content:"\f26b"}.bi-chevron-left::before{content:"\f284"}.bi-chevron-right::before{content:"\f285"}.bi-clock-fill::before{content:"\f291"}.bi-clock-history::before{content:"\f292"}.bi-clock::before{content:"\f293"}.bi-facebook::before{content:"\f344"}.bi-file-earmark-check::before{content:"\f360"}.bi-gear-wide-connected::before{content:"\f3e3"}.bi-geo-alt-fill::before{content:"\f3e7"}.bi-geo-alt::before{content:"\f3e8"}.bi-globe2::before{content:"\f3ef"}.bi-headset::before{content:"\f414"}.bi-instagram::before{content:"\f437"}.bi-lightning-charge::before{content:"\f46d"}.bi-phone::before{content:"\f4e7"}.bi-shield-check::before{content:"\f52f"}.bi-telephone-fill::before{content:"\f5b4"}.bi-telephone::before{content:"\f5c1"}.bi-tools::before{content:"\f5db"}.bi-youtube::before{content:"\f62b"}.bi-clipboard2-pulse::before{content:"\f730"}.bi-house-gear::before{content:"\f891"}.bi-twitter-x::before{content:"\f8db"}
