/* =========================================
HEADER
========================================= */
.header { position: fixed; top: 0; left: 0; right: 0; z-index: 100; width: 100%; background: transparent; transition: background var(--transition-base), box-shadow var(--transition-base); }
.header__main { display: flex; align-items: center; justify-content: space-between; padding-block: 18px; gap: 24px; }
.header__logo { display: flex; align-items: center; flex-shrink: 0; }
.header__logo-imgwrap { position: relative; display: inline-grid; width: 264px; height: 80px; }
.header__logo-img { grid-area: 1 / 1; width: 100%; height: 100%; object-fit: contain; object-position: left center; transition: opacity var(--transition-base); }
.header__logo-img--white,
.header__logo-img--white.lazyloaded { opacity: 1; }
.header__logo-img--dark, .header__logo-img--dark.lazyloaded { opacity: 0; }
.header--scrolled .header__logo-img--white,
.header--scrolled .header__logo-img--white.lazyloaded { opacity: 0; }
.header--scrolled .header__logo-img--dark,
.header--scrolled .header__logo-img--dark.lazyloaded { opacity: 1; }
/* Right column: two stacked rows (utility row + nav row) */
.header__right { display: flex; flex-direction: column; align-items: flex-end; gap: 12px; flex: 1; }
.header__utility { display: flex; align-items: center; justify-content: flex-end; gap: 20px; font-size: 15px; color: var(--color-white); }
.header__top-links { display: flex; gap: 20px; }
.header__top-links a { text-decoration:none; color: var(--color-white); }
.header__top-links a:hover, .header__phone:hover { color: var(--color-primary); }
.header__top-links a.is-active { color: var(--color-primary); font-weight: 600; }
.header__phone { display: flex; align-items: center; gap: 9px; font-weight: 400; color:var(--color-white); text-decoration:none; }
.header__phone svg { width: 16px; height: 16px; flex-shrink: 0; }
.header__nav-row { display: flex; align-items: center; justify-content: flex-end; gap: 20px; width: 100%; }
.header__nav { display: flex; align-items: center; gap: 36px; flex-wrap: wrap; }
.header__nav-list { display: flex; align-items: center; gap: 28px; }
.header__nav-item { position: relative; }
.header__nav-link-wrap { display: inline-flex; align-items: center; gap: 4px; }
.header__nav-link { color: var(--color-white); font-weight: 400; font-size: 18px; position: relative; padding-bottom: 4px; text-decoration:none; }
.header__nav-link::after {content: '';position: absolute;left: 0;bottom: -3px;height: 4px;width: 0;background: var(--color-primary);transition: var(--transition-default);}
.header__nav-link:hover::after, .header__nav-link--active::after {width: 100%;}
.header__nav-link:hover{color: var(--color-white);}
.header__nav-link--active { font-weight: 700; }
/* Chevron toggle (submenu indicator) */
.header__nav-chevron { display: inline-flex; align-items: center; justify-content: center; width: 20px; height: 20px; padding: 0; border: none; background: none; color: #fff; cursor: pointer; flex-shrink: 0; transition: color var(--transition-base); }
.header__nav-chevron svg { width: 14px; height: 14px; transition: transform var(--transition-base); }
.admin-bar .header { top:32px; }
/* -----------------------------------------
   Desktop submenu: hover-triggered dropdown
----------------------------------------- */
.header__submenu { position: absolute; top: calc(100% + 14px); left: 0; min-width: 230px; background: #ffffff; border-radius: var(--radius-md); box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18); padding: 10px; opacity: 0; visibility: hidden; transform: translateY(-8px); transition: opacity var(--transition-base), transform var(--transition-base), visibility var(--transition-base); pointer-events: none; z-index: 10; }
.header__nav-item--has-submenu:hover .header__submenu, .header__nav-item--has-submenu:focus-within .header__submenu { opacity: 1; visibility: visible; transform: translateY(0); pointer-events: auto;}
.header__submenu-link { display: block; padding: 10px 14px; border-radius: var(--radius-sm); color: var(--color-gray-900); font-size: 0.9rem; font-weight: 500; transition: background var(--transition-base), color var(--transition-base); white-space: nowrap; }
.header__submenu-link:hover, .header__submenu-link--active { background: var(--color-cream); color: var(--color-gold); }
.header__cta { padding-left: 15px; padding-right:15px; }
.header__burger { display: none; flex-direction: column; justify-content: center; gap: 5px; width: 30px; height: 30px; background: transparent; border: none; padding: 0; flex-shrink: 0; }
.header__burger span { display: block;height: 3px;width: 100%;background: #040423;border-radius: 6px;transition: transform var(--transition-base), opacity var(--transition-base), background var(--transition-base); }
.header--menu-open .header__burger span:nth-child(1) {transform: translateY(8px) rotate(45deg);}
.header--menu-open .header__burger span:nth-child(2) {opacity: 0;}
.header--menu-open .header__burger span:nth-child(3) {transform: translateY(-8px) rotate(-45deg);}
.header--scrolled { background: #ffffff; box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12); }
.header--scrolled .header__utility { color: var(--color-gray-600); }
.header--scrolled .header__top-links a:hover, .header--scrolled .header__top-links a.is-active { color: var(--color-gold); }
.header--scrolled .header__phone { color: var(--color-gray-900); }
.header--scrolled .header__phone:hover { color: var(--color-gold); }
.header--scrolled .header__burger span { background: var(--color-gray-900); }
@media (min-width: 1200px) {
.header--scrolled .header__nav-link,
.header--scrolled .header__top-links a {color: var(--color-gray-900);}
.header--scrolled .header__nav-chevron {color: var(--color-gray-900);}
}
@media (max-width: 1199px) {
body { padding-top:116px; }
.header { background: var(--color-white);}
.header__logo-img--dark,
.header__logo-img--dark.lazyloaded {opacity: 1;}
.header__logo-img--white,
.header__logo-img--white.lazyloaded {opacity: 0;}
.header__right {align-items: center;}
.header__utility {display: none;}
.header__nav-row {justify-content: flex-end;width: 100%;}
.header__nav {position: fixed;top: 116px;right: 0;height: calc(100vh - 116px);width: 100%;background: var(--color-primary);flex-direction: column;align-items: flex-start;justify-content: flex-start;padding: 20px;transform: translateX(100%);transition:var(--transition-default);gap: 28px;overflow-y: auto;}
.header--menu-open .header__nav {transform: translateX(0);}
.header__nav-list {flex-direction: column;align-items: flex-start;gap: 0;width: 100%;}
.header__cta {width: 100%;text-align: center;}
.header__burger {display: flex;}

/* Mobile submenu: chevron-triggered slide down/up (accordion) */
.header__nav-item {width: 100%;border-bottom: 1px solid rgb(0 0 0 / .25);}
.header__nav-link, .header__nav-link:hover {color: var(--color-black);}
.header__nav-link { padding:13px 0;display: block; }
.header__nav-link::after { display:none; }
.header__nav-link-wrap {width: 100%;justify-content: space-between;}
.header__nav .u-button--yellow {background: var(--color-gray-700);color: var(--color-white);}
.header__nav-chevron {width: 32px;height: 32px;}
.header__nav-chevron svg {width: 16px;height: 16px;}
.header__nav-item--submenu-open .header__nav-chevron svg {transform: rotate(180deg);}
.header__submenu {position: static;inset: auto;min-width: 0;width: 100%;background: none;box-shadow: none;border-radius: 0;padding: 0;opacity: 1;visibility: visible;transform: none;pointer-events: auto;max-height: 0;overflow: hidden;transition: max-height 0.35s ease;}
.header__nav-item--submenu-open .header__submenu {max-height: 320px;}
.header__submenu-link {color: #e4e4e4;padding: 10px 0 10px 14px;font-size: 0.88rem;}
.header__submenu-link:hover {background: none;color: var(--color-primary);}
}
@media (max-width: 767px) {
body {padding-top: 70px;}
.header__logo-imgwrap {width: 165px; height:auto;}
.header__main {padding: 10px 20px;}
.header__nav {top: 70px;height: calc(100vh - 70px);}
}

/* =========================================
MOBILE STICKY BAR
========================================= */
.mobile-bar { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 200; grid-template-columns: 1fr 1fr; }
.mobile-bar__call, .mobile-bar__quote { display: flex; align-items: center; justify-content: center; gap: 8px; padding: 15px 10px; font-size:15.5px; font-weight:800;text-decoration:none; }
.mobile-bar__call, .mobile-bar__call:hover {  background: var(--color-gray-200); color: var(--color-primary);  }
.mobile-bar__quote, .mobile-bar__quote:hover { background: var(--color-primary); color: var(--color-black); }
.mobile-bar svg { width: 16px; height: 16px; }
@media (max-width: 767px) {
.mobile-bar {display: grid;}
.footer {padding-bottom: 110px;}
}

/* =========================================
FOOTER
========================================= */
.footer { background: var(--color-black); color: var(--color-white); padding: 70px 0; }
.footer__grid { display: grid; grid-template-columns: 1.3fr 0.85fr 0.85fr 0.95fr; gap: 40px; padding-bottom: 45px; }
.footer__brand p { margin-bottom:0;}
.footer__logo { display: inline-block; margin-bottom: 30px; }
.footer__logo-img { width: 220px; height: auto; display: block; }
.footer__phone,
.footer__email { text-align: center; font-weight: 400;  color: var(--color-white); margin-bottom: 20px; text-decoration:none;display: inline-block; }
.footer__social { display: flex; justify-content: center; gap: 10px; }
.footer__social a { width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(255, 255, 255, 0.5); display: flex; align-items: center; justify-content: center;text-decoration:none;color: var(--color-white); }
.footer__social svg { width: 16px; height: 16px; }
.footer__social a:hover { background: var(--color-primary); border-color: var(--color-primary); color: var(--color-black); }
.footer__col-title { color: var(--color-white); font-size: 16px; font-weight: 700; margin-bottom: 20px; display: flex; align-items: center; gap: 10px; }
.footer__col-title svg { color: var(--color-primary); width: 16px; height: 16px; }
.footer__col ul { display: flex; flex-direction: column; gap: 14px; }
.footer__col a { color: rgba(255, 255, 255, 0.75); font-size: 16px;text-decoration:none;}
.footer__col a:hover,
.footer__phone:hover,
.footer__email:hover { color: var(--color-white); }
.footer__locations-text { color: #bdbdbd; font-size: 0.92rem; margin-bottom: 14px; }
.footer__locations-text span { color: var(--color-primary); font-weight: 700; }
.footer__select {  width: 100%; padding: 13px 20px; border-radius: var(--radius-pill); border: 1px solid rgba(0, 0, 0, 0.35); margin-bottom: 16px; background: var(--color-white); color: #212529; appearance: none; background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.5 3.75L6 8.25L10.5 3.75' stroke='%23343A40' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A"); background-repeat: no-repeat; background-position: right 12px center; background-size: 12px; cursor:pointer; }
.footer__view-all { width: 100%; }
.footer__bottom { text-align: center; font-size: 14px; color: var(--color-white); padding:0 20px; }
.footer__bottom a { color: var(--color-white);text-decoration: underline; }
.footer__bottom a:hover { color: var(--color-primary);text-decoration: underline; }
.footer__phone:hover,
.footer__email:hover { color: var(--color-primary); }
.footer .u-button--dark:hover {color: var(--color-black);}

@media (max-width: 1199px) {
.footer { padding:60px 0; }
}

@media (max-width: 767px) {
.footer__grid {grid-template-columns: 1fr 1fr;row-gap: 40px;}
.footer__brand {grid-column: 1 / -1;text-align: center;}
.footer__col--locations {grid-column: 1 / -1;}
.footer__phone,  .footer__email,  .footer__social {justify-content: center;}
.footer__phone, .footer__email { font-size:16px; }
}

.gform_heading { display:none !important; }
.gform-theme--framework .gform_validation_errors { display:none !important; }
.gform-theme--framework .field_description_above .gfield_description:where([class="gfield_description"], .gfield_creditcard_warning_message, .field_validation_above .gfield_validation_message, .gfield_repeater_max_message) { margin:0; }
.quote-form__field label { font-size: 0.8rem !important; font-weight: 600 !important; color: var(--color-gray-900) !important; margin-bottom: 5px !important; }
.gform-theme--foundation .gform_fields {gap:16px 20px !important;}
.gform-theme--foundation .gform-field-label__text:where(:has(+ .gfield_required)) {padding-right: 3px;}
.gfield_required.gfield_required_asterisk {color: #D20E0E !important;font-size: 19px !important;font-weight: 900 !important;line-height: 0.1 !important; position: relative !important;top: 5px !important; }
.gform-theme--foundation .gfield .ginput_password.large, 
.gform-theme--foundation .gfield input.large, 
.gform-theme--foundation .gfield select.large,
.gform_wrapper .gfield .ginput_complex input,
.gform_wrapper .gfield .ginput_complex select,
.gform-theme--foundation .gfield textarea { border: 1.5px solid var(--color-primary-dark); border-radius: var(--radius-pill); padding: 10px 16px; background: #fff; font-size: 0.85rem; color: var(--color-gray-700); width: 100%;box-shadow: none; }
.gform-theme--foundation .gfield .ginput_password.large:focus, 
.gform-theme--foundation .gfield input.large:focus, 
.gform-theme--foundation .gfield select.large:focus,
.gform_wrapper .gfield .ginput_complex input:focus,
.gform_wrapper .gfield .ginput_complex select:focus,
.gform-theme--foundation .gfield textarea:focus { outline: none; border-color: var(--color-gold); box-shadow: 0 0 0 3px rgba(179, 160, 0, 0.2); }
.gform-theme--foundation .gfield select,
.gform_wrapper .gfield .ginput_complex select { appearance: none !important; background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.5 3.75L6 8.25L10.5 3.75' stroke='%23343A40' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A") !important; background-repeat: no-repeat !important; background-position: right 14px center !important; background-size: 13px !important; padding-right: 36px !important;padding-top: 0 !important; cursor: pointer; }
.gform-theme--foundation .gfield textarea { height:145px;min-block-size: 145px !important;border-radius: 16px; } 
.gform_button { display: inline-flex !important; align-items: center !important; justify-content: center !important; gap: 8px !important; padding: 9px 30px !important; border-radius: var(--radius-pill) !important; font-weight: 500 !important;min-height: 46.8px !important; font-size: 18px !important; border: 0 !important; white-space: nowrap !important; transition:var(--transition-default) !important; text-decoration:none !important;background: var(--color-yellow) !important; color: var(--color-black) !important; }
.gform_button:hover { background: var(--color-yellow-dark) !important; box-shadow: 0 10px 20px rgba(253, 221, 1, 0.35) !important; }
.gform_button:focus { outline: 0 none !important; }
.location-form .gform_wrapper .gfield  .gfield_label .gform-field-label__text,
.location-form .gform_wrapper .gfield  .ginput_complex .gform-field-label {margin-bottom: 10px !important; font-weight: 600 !important;color: var(--color-dark) !important;font-size: 16px !important;}
.form-contact { background: var(--color-white);border: 1.5px solid var(--color-primary-dark); border-radius:16px; padding:24px; text-align:center; }
.form-contact__title { font-weight:700;font-size: 1.25rem; color: var(--color-gray-700);}
.form-contact__text {font-size: 18px; line-height: 1.75; color: var(--color-gray-700);}
.form-contact__call { display:flex; gap: 7px;align-items: center;justify-content: center;font-size: 1.75rem;font-weight: 700; }
.form-contact__call a { color: var(--color-gray-700); text-decoration:underline; }
.form-contact__call .fa-solid {color: var(--color-gold);}
.form-contact__call a:hover {color: var(--color-gold);}
.gform-theme--foundation .ginput_address_city, .gform-theme--foundation .ginput_address_country, .gform-theme--foundation .ginput_address_state, .gform-theme--foundation .ginput_address_zip {inline-size: 33.333% !important;}
.form-note__text a { text-decoration:underline; }
.form-note__text a:hover { text-decoration:none; } 
.gform_confirmation_message {color: #14791a !important;}
@media (max-width: 1023px) {
.gform_wrapper #field_2_12,
.gform_wrapper #field_2_11 {grid-column: span 12 !important;}
}
@media (max-width: 767px) {
.gform-theme--foundation .ginput_address_city, .gform-theme--foundation .ginput_address_country, .gform-theme--foundation .ginput_address_state, .gform-theme--foundation .ginput_address_zip {inline-size: 100% !important;}
}