
/* Shared WindowFilm chrome: header / offcanvas / footer / sticky CTA */
:root {
    --montserrat-font: "Montserrat", sans-serif;
    --inter-font: "Inter", sans-serif;
    --source-sans-pro: "Source Sans Pro", sans-serif;
    --color3: #013966;
    --color4: #ffffff;
    --color5: #EEF1F6;
    --color7: #2874AB;
    --color8: #11242D;
    --block-gray-color: #EEF1F6;
    --transition: .4s;
}
:root {
    --hover-bg-color: #013966;
    --block-gray-color: #EEF1F6;
    --transition: .4s;
}

.wf-chrome a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

.wf-chrome ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.wf-chrome img {
    max-width: 100%;
    height: auto;
    display: block;
}

.wf-chrome .container {
    max-width: 1240px;
    margin-inline: auto;
    padding-inline: 15px;
}

/* Header */
.wf-chrome header {
    padding-block: 20px;
}

.wf-chrome .header__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.wf-chrome .header__logo img {
    width: 213.26px;
}

.wf-chrome .header__navigation ul {
    display: flex;
    align-items: center;
    gap: 28px;
}

.wf-chrome .header__navigation ul li a {
    color: var(--color8);
    text-transform: capitalize;
    font-size: 16px;
    line-height: 21px;
    position: relative;
}

.wf-chrome .header__navigation ul li a::after {
    position: absolute;
    content: '';
    background-color: var(--color8);
    bottom: -3px;
    left: 0;
    height: 2px;
    width: 100%;
    transform: scaleX(0);
    transition: transform var(--transition);
}

.wf-chrome .header__navigation ul li a:hover::after {
    transform: scaleX(1);
}

.wf-chrome .call__btn {
    background-color: var(--color3);
    color: #fff;
    padding: 18px 46px;
    border-radius: 13.04px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.wf-chrome .call__btn:hover {
    background-color: var(--color3);
}

.wf-chrome .call__btn img {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

/* Offcanvas */
.wf-chrome .offcanva__trigger {
    display: none;
}

.wf-chrome .offcanva__trigger img {
    width: 45px;
}

.wf-chrome .offcanvas__container {
    background-color: var(--color7);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 100%;
    z-index: 999;
    transition: right 0.4s ease;
}

.wf-chrome .offcanvas__container.active {
    right: 0;
}

body.offcanvas-open {
    overflow: hidden;
}

.wf-chrome .offcanva__close {
    position: absolute;
    top: 35px;
    right: 35px;
}

.wf-chrome .offcanvas__navigation ul li a {
    text-transform: capitalize;
    font-size: 24px;
    line-height: 29px;
    display: inline-block;
}

.wf-chrome .offcanvas__navigation ul li {
    margin-bottom: 28px;
}

.wf-chrome .offcanvas__call__button a {
    padding: 25px 66px;
    display: inline-flex;
    background-color: var(--hover-bg-color);
    font-size: 24px;
    line-height: 29px;
    text-transform: capitalize;
    border-radius: 26.9px;
    margin-top: 24px;
}

/* Footer + sticky */
.wf-chrome .footer__area {
    background-color: var(--color7);
    padding: 60px 0 30px;
    color: #fff;
    border-top-right-radius: 30px;
    border-top-left-radius: 30px;
}

.footer__content {
    display: flex;
    flex-direction: column;
}

/* Main Footer Layout */
.footer__main {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1.5fr;
    gap: 60px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    margin-bottom: 25px;
}

/* Footer Left Column - Logo + Call Button + Badges */
.footer__left {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer__logo img {
    height: 76px;
    width: auto;
    margin-bottom: 5px;
    display: block;
    aspect-ratio: 246.6 / 103;
}

.footer__call__btn {
    background-color: var(--color3);
    display: flex;
    width: 100%;
    height: 48px;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    gap: 10px;
    font-size: 16px;
    margin: 0;
    padding: 0;
    border-radius: 12px;
}

.footer__call__btn:hover {
    background-color: var(--color3);
}

.footer__call__btn svg {
    flex-shrink: 0;
}

/* Google Reviews Badge */
.footer__google__badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 12px 20px;
    background-color: var(--block-gray-color);
    border-radius: 25.59px;
    box-sizing: border-box;
    gap: 0;
}

.google__info {
    display: flex;
    align-items: center;
    gap: 8px;
}

.google__info img {
    width: 29.09px;
    height: 29.09px;
    display: block;
    aspect-ratio: 1 / 1;
}

.google__text {
    font-size: 20px;
    font-family: var(--inter-font);
    font-weight: 400;
    color: var(--color8);
}

.google__reviews {
    font-size: 10px;
    color: var(--color8);
}

.google__rating {
    display: flex;
    align-items: center;
    gap: 8px;
}

.rating__number {
    font-size: 18px;
    font-weight: 400;
    font-family: var(--inter-font);
    color: var(--color8);
}

.rating__stars {
    display: flex;
    align-items: center;
}

.rating__stars img {
    height: 22.99px;
    /*width: auto;*/
    /*display: block;*/
    /*aspect-ratio: 119 / 30.51;*/
}

/* Warranty Badge */
.warranty_hide {
    display: none !important;
}
.footer__warranty__badge {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 20px 20px;
    background-color: var(--block-gray-color);
    border-radius: 25.59px;
    box-sizing: border-box;
    gap: 20px;
}

.footer__warranty__badge svg {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
}

.warranty__text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.warranty__text span {
    font-size: 16px;
    color: var(--color8);
    font-weight: 400;
    font-family: var(--inter-font);
    line-height: 135.1%;
}

/* Footer Columns */
.footer__column {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.footer__column__title {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 5px;
    font-family: var(--montserrat-font);
    line-height: 135.1%;
}

.footer__navigation {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer__navigation a {
    font-size: 14px;
    color: #fff;
    font-family: var(--inter-font);
    line-height: 135.1%;
    transition: var(--transition);
}

.footer__navigation a:hover {
    opacity: 0.8;
}

/* Contact Column */
.footer__contact__info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact__company {
    font-size: 14px;
    font-weight: 400;
    color: #fff;
    font-family: var(--inter-font);
    margin-bottom: 4px;
}

.contact__item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact__item svg {
    flex-shrink: 0;
}

.contact__item span {
    font-size: 14px;
    color: #fff;
    font-family: var(--inter-font);
    line-height: 1.4;
}

/* Footer Bottom */
.footer__bottom {
    padding-top: 20px;
}

.footer__bottom__content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer__copyright p {
    font-size: 14px;
    color: #fff;
    line-height: 135.1%;
    font-family: var(--inter-font);
}

.footer__legal {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer__legal a {
    font-size: 14px;
    color: #fff;
    font-family: var(--inter-font);
    transition: var(--transition);
}

.footer__legal a:hover {
    opacity: 0.8;
}

.footer__legal .separator {
    color: #fff;
    font-size: 14px;
}
/* Sticky Mobile CTA Button */
.sticky-mobile-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: transparent;
    padding: 15px 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
    min-height: 90px;
    contain-intrinsic-size: auto 90px;
    will-change: transform;
}
.sticky-mobile-cta {
    display: none;
}
.sticky-mobile-cta.show {
    transform: translateY(0);
}

.sticky-cta-button {
    width: 100%;
    background-color: var(--color7);
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 16px 20px;
    font-family: 'Inter', system-ui, sans-serif;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 12px rgba(19, 115, 14, 0.3);
    will-change: transform, box-shadow;
}

.sticky-cta-button:hover {
    background-color: var(--hover-bg-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(19, 115, 14, 0.4);
}

.sticky-cta-button:active {
    transform: translateY(0);
}

.sticky-cta-text {
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    margin: 0;
}

.sticky-phone-info {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 500;
}

.sticky-phone-icon {
    width: 18px;
    height: 18px;
    filter: brightness(0) invert(1);
}

.sticky-phone-number {
    font-weight: 600;
}

/* Form Messages Styles */
.form-messages {
    padding: 15px 20px;
    margin-bottom: 20px;
    border-radius: 8px;
    font-family: var(--inter-font);
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    transition: opacity 0.3s ease, transform 0.3s ease;
    display: none;
    will-change: opacity, transform;
}

.form-messages.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-messages.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.form-messages.show {
    display: block;
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Form Field Error Styles */
.form__field.invalid input, .wf-chrome .form__field.invalid textarea {
    border-color: #dc3545;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.form__field.invalid .spam__input input {
    border-color: #dc3545;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.error-message {
    color: #721c24;
    font-size: 14px;
    margin-top: 5px;
    font-weight: 500;
}
/* Section Text Page */


.wf-chrome .show-web { display: block; }
.wf-chrome .hide-web { display: none !important; }
.wf-chrome .warranty_hide { display: flex; }
.wf-chrome .warranty_show { display: none !important; }
.wf-chrome .mlm-25 { margin-left: -25px; }
.wf-chrome .mt-55 { margin-top: 55px; }


@media only screen and (min-width: 320px) and (max-width: 767px) {
    .wf-chrome .offcanva__trigger { display: flex; }
    .wf-chrome .offcanva__trigger img { width: 51px; height: auto; aspect-ratio: 51/31; display: block; }
    .wf-chrome header { padding-top: 40px; }
    .wf-chrome .header__logo { display: flex; align-items: center; min-height: 74px; }
    .wf-chrome .header__logo img { width: 176px; height: auto; max-width: none; flex-shrink: 0; display: block; aspect-ratio: 176/73.56; }
    .wf-chrome .header__content { align-items: normal; }
    .wf-chrome .header__navigation,
    .wf-chrome .header__contact { display: none; }
    .wf-chrome .footer__main { grid-template-columns: 1fr; gap: 40px; text-align: center; }
    .wf-chrome .footer__left { align-items: center; }
    .wf-chrome .footer__logo img { margin: 0 auto; }
    .wf-chrome .footer__call__btn { width: 293px; height: 59.39px; margin: 20px auto; font-size: 18px; border-radius: 15.83px; }
    .wf-chrome .footer__google__badge,
    .wf-chrome .footer__warranty__badge { max-width: 293px; margin-left: auto; margin-right: auto; }
    .wf-chrome .footer__column { align-items: center; }
    .wf-chrome .footer__navigation { align-items: center; }
    .wf-chrome .warranty_hide { display: none !important; }
    .wf-chrome .warranty_show { display: flex !important; }
    .wf-chrome .mlm-25 { margin-left: 0; }
    /* Keep warranty badge centered — .mlm-25 must not override auto margins */
    .wf-chrome .footer__warranty__badge.mlm-25 {
        margin-left: auto;
        margin-right: auto;
        align-self: center;
    }
    .wf-chrome .mt-55 { margin-top: 20px; }
    .wf-chrome .show-web { display: none !important; }
    .wf-chrome .hide-web { display: block !important; }
    .wf-chrome .footer__bottom__content { flex-direction: column; text-align: center; }
    .wf-chrome .footer__legal { margin-top: 20px; justify-content: center; }
}
@media only screen and (max-width: 767px) {
    .wf-chrome .sticky-mobile-cta { display: block; }
}
@media (min-width: 768px) {
    .wf-chrome .sticky-mobile-cta { display: none !important; }
}
