:root {
    --brand-navy: #12184b;
    --brand-orange: #c2f002;
}

body {
    font-family: "Plus Jakarta Sans", "Segoe UI", Arial, Verdana, sans-serif;
}

/* ---------- Site header ---------- */
.site-header {
    background: #fff;
    border-bottom: 3px solid var(--brand-orange);
}

.site-header .logo-link {
    display: inline-block;
    line-height: 0;
}

.site-header .logo-link img {
    max-width: 100%;
    height: auto;
}

/* ----- Mobile top bar ----- */
.mobile-bar {
    display: flex;
    align-items: center;
    padding: 0.75rem var(--bs-gutter-x, 1.5rem);
    gap: 1rem;
}

.mobile-bar .logo-col {
    flex: 0 0 50%;
    max-width: 50%;
}

.mobile-bar .logo-col img {
    display: block;
    width: 100%;
    max-width: 220px;
    height: auto;
}

.mobile-bar .info-col {
    flex: 0 0 50%;
    max-width: 50%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.5rem;
}

.mobile-bar .burger {
    background: var(--brand-orange);
    border: 0;
    width: 44px;
    height: 44px;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-navy);
}

.mobile-bar .burger:focus {
    outline: 2px solid var(--brand-navy);
    outline-offset: 2px;
}

.mobile-bar .burger span,
.mobile-bar .burger span::before,
.mobile-bar .burger span::after {
    content: "";
    display: block;
    width: 22px;
    height: 3px;
    background: var(--brand-navy);
    border-radius: 2px;
    position: relative;
}

.mobile-bar .burger span::before {
    position: absolute;
    top: -7px;
    left: 0;
}

.mobile-bar .burger span::after {
    position: absolute;
    top: 7px;
    left: 0;
}

.mobile-bar .hours {
    font-size: 0.78rem;
    line-height: 1.25;
    color: var(--brand-navy);
    text-align: right;
}

.mobile-bar .hours strong {
    display: block;
    font-weight: 700;
}

/* ----- Desktop header ----- */
.desktop-bar {
    display: none;
}

.desktop-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    gap: 2rem;
}

.desktop-top .logo-link img {
    display: block;
    height: 70px;
    width: auto;
}

.desktop-top .contact-area {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.6rem;
}

.desktop-top .location-tag {
    font-size: 0.95rem;
    color: var(--brand-navy);
    font-weight: 500;
}

.desktop-top .location-tag strong {
    color: var(--brand-orange);
    font-weight: 800;
}

.desktop-top .phones {
    display: flex;
    gap: 0.75rem;
}

.desktop-top .phones a {
    background: var(--brand-navy);
    color: var(--brand-orange);
    text-decoration: none;
    font-weight: 700;
    padding: 0.6rem 1.1rem;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
}

.desktop-top .phones a:hover {
    background: #0d1238;
}

.desktop-top .phones .icon {
    color: var(--brand-orange);
}

.desktop-top .hours {
    font-size: 0.85rem;
    color: var(--brand-navy);
    text-align: right;
}

.desktop-top .hours strong {
    font-weight: 700;
}

.desktop-top .hours .sep {
    margin: 0 0.5rem;
    color: var(--brand-orange);
    font-weight: 700;
}

.desktop-nav {
    background: var(--brand-orange);
    /* matches the 3px green strip below (the header's border-bottom) */
    padding-top: 3px;
}

.desktop-nav .nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.desktop-nav .nav-list a {
    display: block;
    padding: 0.9rem 0.5rem;
    color: var(--brand-navy);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: none;
}

.desktop-nav .nav-list a:hover,
.desktop-nav .nav-list a.active {
    color: #fff;
    background: var(--brand-navy);
}

/* ----- Mobile collapse menu ----- */
.mobile-nav {
    background: var(--brand-navy);
    display: none;
}

.mobile-nav.open {
    display: block;
}

.mobile-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-nav a {
    display: block;
    padding: 0.9rem 1.25rem;
    color: #fff;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-weight: 600;
}

.mobile-nav a:hover {
    background: #0d1238;
    color: var(--brand-orange);
}

/* ---------- Breakpoints ---------- */
@media (min-width: 992px) {
    .mobile-bar,
    .mobile-nav {
        display: none !important;
    }

    .desktop-bar {
        display: block;
    }
}

/* ---------- Hero ---------- */
.hero {
    position: relative;
    overflow: hidden;
    min-height: 600px;
    color: #fff;
    background-color: var(--brand-navy);
    isolation: isolate;
}

.hero__bg {
    position: absolute;
    left: 0;
    right: 0;
    top: 60%;
    bottom: 0;
    background-image: url('/assets/images/photos/damanged_door.png');
    background-size: cover;
    background-position: center top;
    background-color: #2b2f55;
    z-index: 0;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(18, 24, 75, 0) 55%,
        var(--brand-navy) 60%,
        rgba(18, 24, 75, 0) 72%
    );
    z-index: 1;
}

.hero__inner {
    position: relative;
    z-index: 2;
    padding-top: 1.25rem;
    padding-bottom: 3rem;
    display: flex;
    align-items: flex-start;
    min-height: 600px;
}

.hero__content {
    max-width: 560px;
}

.hero__heading {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 0 0 1.1rem;
}

.hero__heading-text {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    min-width: 0;
}

.hero__bolt {
    flex: 0 0 auto;
    width: 56px;
    height: auto;
    display: block;
}

.hero__title {
    font-size: clamp(1.6rem, 3.4vw, 2.6rem);
    font-weight: 800;
    line-height: 1.1;
    margin: 0;
    color: #fff;
}

.hero__location {
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

.hero__location span {
    color: var(--brand-orange);
}

.hero__btn {
    display: inline-block;
    padding: 0.85rem 1.4rem;
    border-radius: 10px;
    font-weight: 700;
    text-decoration: none;
    font-size: 1rem;
    transition: background 0.15s ease, color 0.15s ease;
    line-height: 1.2;
}

.hero__btn--block {
    display: block;
    width: 100%;
    text-align: center;
    font-size: 1.25rem;
    padding: 1rem 1.4rem;
    margin-bottom: 1rem;
}

.hero__btn--primary {
    background: var(--brand-orange);
    color: var(--brand-navy);
}

.hero__btn--primary:hover {
    background: #e09621;
    color: var(--brand-navy);
}

.hero__btn--ghost {
    background: transparent;
    color: #fff;
    border: 2px solid var(--brand-orange);
    color: var(--brand-orange);
    padding: calc(0.85rem - 2px) calc(1.4rem - 2px);
}

.hero__btn--ghost:hover {
    background: var(--brand-orange);
    color: var(--brand-navy);
}

.hero__row {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 0 0 1.25rem;
    flex-wrap: wrap;
}

.hero__row .hero__btn--ghost {
    flex: 0 0 auto;
    min-width: 170px;
    text-align: center;
}

.hero__blurb {
    margin: 0;
    color: #fff;
    font-size: 0.85rem;
    line-height: 1.35;
    flex: 1 1 0;
    min-width: 180px;
}

.hero__blurb strong {
    display: block;
    color: #fff;
}

.hero__strap {
    margin: 0;
    color: #fff;
    font-weight: 700;
    font-size: clamp(0.8rem, 3.4vw, 1.05rem);
    line-height: 1.3;
    white-space: nowrap;
}

.hero__strap .hero__strap-lead {
    margin-right: 0;
}

.hero__strap-lead {
    color: var(--brand-orange);
    margin-right: 0.4rem;
}

.hero__strap-note {
    display: block;
    margin-top: 0.35rem;
    font-size: 0.85em;
    font-weight: 600;
}

@media (min-width: 992px) {
    .hero {
        min-height: 520px;
    }

    .hero__inner {
        min-height: 520px;
        padding-top: 5rem;
        padding-bottom: 5rem;
        align-items: center;
    }

    .hero__bg {
        top: 0;
        left: 40%;
        background-position: center right;
    }

    .hero__overlay {
        background: linear-gradient(
            to right,
            var(--brand-navy) 0%,
            var(--brand-navy) 40%,
            rgba(18, 24, 75, 0) 60%,
            rgba(18, 24, 75, 0) 100%
        );
    }
}

/* ---------- Contact ---------- */
.contact {
    position: relative;
    overflow: hidden;
    min-height: 420px;
    color: #fff;
    isolation: isolate;
}

.contact__bg {
    position: absolute;
    inset: 0;
    background-image: url('/assets/images/photos/2026-04-23_101304_twin_garage_doors.png');
    background-size: cover;
    background-position: center;
    background-color: #2b2f55;
    z-index: 0;
}

.contact__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        var(--brand-navy) 0%,
        var(--brand-navy) 40%,
        rgba(18, 24, 75, 0) 60%,
        rgba(18, 24, 75, 0) 100%
    );
    z-index: 1;
}

.contact__inner {
    position: relative;
    z-index: 2;
    padding-top: 3rem;
    padding-bottom: 3rem;
    display: flex;
    align-items: center;
    min-height: 420px;
}

.contact__content {
    max-width: 560px;
    width: 100%;
}

.contact__title {
    font-size: clamp(1.6rem, 3.4vw, 2.4rem);
    font-weight: 800;
    line-height: 1.1;
    margin: 0 0 0.9rem;
    color: var(--brand-orange);
}

.contact__sub {
    margin: 0 0 1.4rem;
    color: #fff;
    font-weight: 700;
    font-size: 0.95rem;
    line-height: 1.4;
    max-width: 360px;
}

.contact__form {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.contact__field {
    position: relative;
    background: #fff;
    border-radius: 4px;
    padding: 0.55rem 0.9rem 0.5rem;
}

.contact__label {
    display: block;
    font-size: 0.8rem;
    color: #6b6b6b;
    font-weight: 500;
}

.contact__input {
    display: block;
    width: 100%;
    border: 0;
    outline: 0;
    background: transparent;
    font: inherit;
    color: #111;
    padding: 0;
    line-height: 1.3;
}

.contact__input--textarea {
    resize: vertical;
    min-height: 1.5rem;
}

.contact__submit {
    align-self: flex-start;
    background: var(--brand-orange);
    color: var(--brand-navy);
    border: 0;
    padding: 0.6rem 1.1rem;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    margin-top: 0.4rem;
    transition: background 0.15s ease;
}

.contact__submit:hover {
    background: #e09621;
}

@media (min-width: 992px) {
    .contact {
        min-height: 520px;
    }

    .contact__inner {
        min-height: 520px;
        padding-top: 4rem;
        padding-bottom: 4rem;
    }

    .contact__overlay {
        background: linear-gradient(
            to right,
            var(--brand-navy) 0%,
            var(--brand-navy) 40%,
            rgba(18, 24, 75, 0) 60%,
            rgba(18, 24, 75, 0) 100%
        );
    }
}

.yellow-banner {
    background: var(--brand-orange);
    color: var(--brand-navy);
    padding: 1rem 0;
}

.yellow-banner__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.yellow-banner__text {
    flex: 1 1 auto;
    text-align: center;
}

.yellow-banner__title {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--brand-navy);
}

.yellow-banner__services {
    list-style: none;
    margin: 0.35rem 0 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--brand-navy);
}

.yellow-banner__services li + li::before {
    content: "|";
    margin: 0 0.65rem;
    opacity: 0.6;
}

.yellow-banner__btn {
    flex: 0 0 auto;
    display: inline-block;
    padding: 0.65rem 1.6rem;
    border: 2px solid var(--brand-navy);
    border-radius: 6px;
    background: transparent;
    color: var(--brand-navy);
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.15s ease, color 0.15s ease;
}

.yellow-banner__btn:hover,
.yellow-banner__btn:focus {
    background: var(--brand-navy);
    color: var(--brand-orange);
}

@media (max-width: 640px) {
    .yellow-banner__inner {
        justify-content: center;
    }
    .yellow-banner__text {
        flex: 1 1 100%;
    }
}

/* ============ Brands ============ */
.brands {
    background: #ffffff;
    padding: 1.5rem 0;
}

.brands__title {
    text-align: center;
    margin: 0 0 1rem;
    font-size: 0.9rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #6b7280;
    font-weight: 600;
}

.brands__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
    justify-items: center;
    gap: 1.25rem 1rem;
}

.brands__item {
    display: flex;
    align-items: center;
    justify-content: center;
}

.brands__logo {
    max-height: 48px;
    width: auto;
    max-width: 140px;
    object-fit: contain;
}

@media (min-width: 768px) {
    .brands {
        padding: 2rem 0;
    }
    .brands__list {
        grid-template-columns: repeat(6, 1fr);
        gap: 1rem 1.5rem;
    }
    .brands__item {
        width: 100%;
        height: 70px;
    }
    .brands__logo {
        max-height: 56px;
        max-width: 100%;
    }
    .brands__item--cardale .brands__logo,
    .brands__item--thermosecure .brands__logo {
        max-height: 70px;
    }
    .brands__item--henderson .brands__logo,
    .brands__item--garador .brands__logo {
        max-height: 32px;
    }
    .brands__item--hormann .brands__logo,
    .brands__item--liftmaster .brands__logo {
        max-height: 40px;
    }
}

/* ============ Promises ============ */
.promises {
    background: #ffffff;
    padding: 1.25rem 0;
}

.promises__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.promises__item {
    text-align: center;
    max-width: 360px;
    margin: 0 auto;
}

.promises__icon {
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.promises__icon img {
    width: 84px;
    height: 84px;
    object-fit: contain;
    display: block;
}

.promises__title {
    margin: 0 0 0.6rem;
    color: var(--brand-navy);
    font-size: 1.1rem;
    font-weight: 700;
}

.promises__text {
    margin: 0;
    color: var(--brand-navy);
    font-size: 0.95rem;
    line-height: 1.5;
}

@media (min-width: 768px) {
    .promises {
        padding: 2rem 0;
    }
    .promises__list {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
        align-items: start;
    }
}

/* ============ Process / Steps ============ */
.process {
    background: #f9e9d5;
    padding: 2rem 0 2.5rem;
}

.process__lead {
    text-align: center;
    margin: 0 0 1.5rem;
    color: var(--brand-navy);
    font-size: 1.1rem;
    line-height: 1.4;
}

.process__lead strong {
    font-weight: 800;
}

.process__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.process__step {
    background: var(--brand-navy);
    color: #fff;
    border-radius: 10px;
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.85rem;
    min-height: 96px;
}

.process__bolt {
    flex: 0 0 auto;
    width: 28px;
    height: auto;
    display: block;
}

.process__num {
    flex: 0 0 auto;
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
    color: #fff;
}

.process__text {
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    line-height: 1.25;
}

@media (min-width: 768px) {
    .process {
        padding: 2.5rem 0 3rem;
    }
    .process__lead {
        font-size: 1.25rem;
        margin-bottom: 1.75rem;
    }
    .process__list {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.25rem;
    }
    .process__bolt {
        width: 32px;
    }
    .process__num {
        font-size: 2.4rem;
    }
}

/* ============ Site Footer ============ */
.site-footer {
    background: var(--brand-navy);
    color: #fff;
    padding: 2.5rem 0 1.25rem;
    margin-top: 3rem;
}

.site-footer a {
    color: #fff;
    text-decoration: none;
    transition: color 0.15s ease;
}

.site-footer a:hover,
.site-footer a:focus {
    color: var(--brand-orange);
}

.site-footer__top {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: start;
}

.site-footer__brand {
    display: flex;
    justify-content: center;
}

.site-footer__logo-link img {
    display: block;
    width: 180px;
    height: auto;
    max-width: 100%;
}

.site-footer__heading {
    color: var(--brand-orange);
    font-size: 1rem;
    font-weight: 700;
    margin: 0 0 0.6rem;
}

.site-footer__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.site-footer__list a {
    font-size: 0.95rem;
    font-weight: 600;
}

.site-footer__bottom {
    margin-top: 1.75rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.site-footer__legal {
    margin: 0;
    font-size: 0.85rem;
    color: #fff;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.4rem 1.75rem;
    text-align: center;
}

@media (min-width: 768px) {
    .site-footer {
        padding: 3rem 0 1.25rem;
    }
    .site-footer__top {
        grid-template-columns: auto 1fr 1fr;
        gap: 3rem;
        align-items: start;
    }
    .site-footer__brand {
        justify-content: flex-start;
    }
    .site-footer__logo-link img {
        width: 200px;
    }
    .site-footer__legal {
        justify-content: flex-start;
        text-align: left;
    }
}

/* Hide Google reCAPTCHA v3 badge (legal notice shown via form copy instead) */
.grecaptcha-badge {
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

/* ============================================================
   CONTACT PAGE (/contact-us) - intro + options grid
   ============================================================ */
.contact-page-intro {
    background: var(--brand-navy);
    color: #fff;
    padding: 2.5rem 0 2rem;
}
.contact-page-intro__eyebrow {
    margin: 0 0 0.4rem;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--brand-orange);
}
.contact-page-intro__title {
    margin: 0 0 0.6rem;
    font-size: clamp(1.8rem, 3.6vw, 2.6rem);
    font-weight: 800;
    line-height: 1.1;
}
.contact-page-intro__sub {
    margin: 0;
    max-width: 640px;
    font-size: 1rem;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.85);
}

.contact-page-options {
    background: #f4f5f8;
    padding: 2.5rem 0;
}
.contact-page-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}
@media (min-width: 768px) {
    .contact-page-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
}

.contact-card {
    background: #fff;
    border-radius: 8px;
    padding: 1.6rem 1.5rem;
    box-shadow: 0 2px 10px rgba(18, 24, 75, 0.06);
    display: flex;
    flex-direction: column;
}
.contact-card__icon {
    width: 44px;
    height: 44px;
    color: var(--brand-orange);
    margin-bottom: 0.8rem;
}
.contact-card__icon svg {
    width: 100%;
    height: 100%;
    display: block;
}
.contact-card__title {
    margin: 0 0 0.4rem;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--brand-navy);
    line-height: 1.2;
}
.contact-card__lead {
    margin: 0 0 1rem;
    font-size: 0.95rem;
    color: #4a4f6a;
    line-height: 1.4;
}

.contact-card__phones {
    list-style: none;
    margin: 0 0 1rem;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}
.contact-card__phones li {
    display: flex;
    align-items: baseline;
    gap: 0.6rem;
    flex-wrap: wrap;
}
.contact-card__phone-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #6b6b6b;
    min-width: 60px;
}
.contact-card__phone {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--brand-navy);
    text-decoration: none;
    line-height: 1.1;
}
.contact-card__phone:hover {
    color: var(--brand-orange);
}

.contact-card__hours {
    margin-top: auto;
    padding-top: 0.9rem;
    border-top: 1px solid #ececf2;
    font-size: 0.88rem;
    color: #4a4f6a;
}
.contact-card__hours strong {
    display: block;
    margin-bottom: 0.25rem;
    color: var(--brand-navy);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.contact-card__hours p {
    margin: 0;
    line-height: 1.45;
}

.contact-card__bullets {
    list-style: none;
    margin: 0 0 1.2rem;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    font-size: 0.92rem;
    color: #2b2f55;
}
.contact-card__bullets li {
    position: relative;
    padding-left: 1.2rem;
}
.contact-card__bullets li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.45em;
    width: 0.55rem;
    height: 0.55rem;
    border-radius: 50%;
    background: var(--brand-orange);
}

.contact-card__cta {
    align-self: flex-start;
    background: var(--brand-orange);
    color: var(--brand-navy);
    text-decoration: none;
    font-weight: 800;
    font-size: 1rem;
    padding: 0.75rem 1.3rem;
    border-radius: 4px;
    transition: background 0.15s ease, transform 0.15s ease;
}
.contact-card__cta:hover {
    background: #e09621;
    transform: translateY(-1px);
}
.contact-card__or {
    margin: 0.9rem 0 0;
    font-size: 0.92rem;
    color: #4a4f6a;
}
.contact-card__or a {
    color: var(--brand-navy);
    text-decoration: none;
}
.contact-card__or a:hover {
    color: var(--brand-orange);
}
