/* ==============================================
   Sierra Air Consolidated CSS
   Version: 1.0.0
   Description: Consolidated and optimized styles
   ============================================== */

/* ==============================================
   1. CSS Reset & Base Styles
   ============================================== */
*, *:before, *:after {
    box-sizing: border-box;
}

/* Global max-width for all pages */
.main {
    max-width: 1480px !important;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

/* Ensure hero sections respect max-width */
.sub-banner .main,
#SubBannerV1 .main,
section .main,
.panel-group .main,
#MainZone .main,
#PanelGroupV6 .main,
#PanelGroupV7 .main {
    max-width: 1480px !important;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
    position: relative;
}

/* Override any width calculations based on rem */
.main.thin {
    max-width: 1480px !important;
}

html {
    border: 0;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

body {
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

form {
    margin: 0;
    padding: 0;
    border: 0;
}

img {
    border: none;
    -ms-interpolation-mode: bicubic;
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}

button {
    border: 0;
    cursor: pointer;
    background: transparent;
}

figure {
    text-align: center;
    margin: 1em 0;
}

fieldset {
    display: block;
    margin: 0;
    padding: 0;
    border: 0;
}

a:focus {
    outline: none;
}

/* ==============================================
   2. Typography & Font Loading
   ============================================== */
@import url("https://fonts.googleapis.com/css2?family=Merriweather:wght@300;400;700;900&display=swap");
@import url("https://fonts.googleapis.com/css?family=Archivo+Black|Source+Sans+Pro:400,700&display=swap");

h1, h2, h3, h4, h5, h6,
.vc_custom_heading {
    font-family: Merriweather, Georgia, 'Times New Roman', serif;
    font-display: swap;
    line-height: 1.3em;
    margin: 0 0 20px 0;
}

.vc_custom_heading {
    font-size: 40px;
    text-align: center;
    color: #0053a0;
    font-weight: 700;
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
}

p.vc_custom_heading {
    font-size: 20px;
    margin: 0 0 50px 0;
    line-height: 1.6em;
    font-weight: 600;
    color: #000;
}

/* ==============================================
   3. Layout Utilities
   ============================================== */
.half { width: 50%; }
.third { width: 33.3%; }
.fourth { width: 25%; }
.two-thirds { width: 66.66%; }
.three-fourths { width: 75%; }
.width-50 { width: 50%; float: left; }

.left:not(td) { float: left; }
.right:not(td) { float: right; }
.clear { clear: both; }

.clearfix:after,
.cf:after {
    content: ' ';
    display: block;
    clear: both;
}

body .ninja {
    display: none !important;
}

/* ==============================================
   4. Navigation Styles
   ============================================== */
.fly-nav.ui-scroll.bg-box.like-bg li > a:hover {
    background-color: #EF3E30 !important;
    color: #FFFFFF !important;
}

/* Secondary Navigation Dropdown */
.secondary-nav {
    position: relative;
}

.secondary-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.secondary-nav li {
    position: relative;
}

.secondary-nav .sa-submenu-nav {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 250px;
    background-color: #074f9a !important;
    opacity: 0;
    visibility: hidden;
    transition: visibility 0s ease .3s, opacity .3s ease 0s;
    z-index: 1000;
    display: block !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    border-radius: 4px;
}

.secondary-nav li:hover .sa-submenu-nav {
    opacity: 1;
    visibility: visible;
    transition: visibility 0s ease 0s, opacity .3s ease 0s;
}

.secondary-nav .sa-submenu-nav li {
    display: block;
    width: 100%;
}

.secondary-nav .sa-submenu-nav a {
    display: block;
    padding: 12px 20px;
    line-height: 1.4;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.secondary-nav .sa-submenu-nav a:hover {
    background-color: #EF3E30;
    color: #FFFFFF;
}

.secondary-nav .sa-submenu-nav li:first-child a {
    border-radius: 4px 4px 0 0;
}

.secondary-nav .sa-submenu-nav li:last-child a {
    border-radius: 0 0 4px 4px;
}

/* Mobile Menu Styles */
.mobile-menu {
    width: auto;
    position: relative;
    right: 30px;
    top: 0;
    bottom: 0;
    margin-top: auto;
    margin-bottom: auto;
    display: none;
}

.reflex-menu-toggle {
    width: auto;
    display: inline-block;
    position: relative;
    top: 0;
    left: 0;
    padding: 0;
    z-index: 99;
    display: none;
}

/* Hamburger Menu */
.hamburger-box {
    width: 40px;
    height: 24px;
    display: inline-block;
    position: relative;
}

.hamburger-inner {
    display: block;
    top: 50%;
    margin-top: -2px;
}

.hamburger-inner,
.hamburger-inner::after,
.hamburger-inner::before {
    width: 40px;
    height: 4px;
    background-color: #000;
    border-radius: 4px;
    position: absolute;
    transition-property: transform;
    transition-duration: .15s;
    transition-timing-function: ease;
}

.hamburger-inner::before {
    top: -10px;
    content: "";
    display: block;
}

.hamburger-inner::after {
    top: 10px;
    content: "";
    display: block;
}

.hamburger--collapse .hamburger-inner {
    top: auto;
    bottom: 0;
    transition-duration: .13s;
    transition-delay: .13s;
    transition-timing-function: cubic-bezier(.55, .055, .675, .19);
}

.hamburger--collapse .hamburger-inner::before {
    transition: top .12s .2s cubic-bezier(.33333, .66667, .66667, 1), transform .13s cubic-bezier(.55, .055, .675, .19);
}

.hamburger--collapse .hamburger-inner::after {
    top: -20px;
    transition: top .2s .2s cubic-bezier(.33333, .66667, .66667, 1), opacity .1s linear;
}

.hamburger--collapse.is-active .hamburger-inner {
    transform: translate3d(0,-10px,0) rotate(-45deg);
    transition-delay: .22s;
    transition-timing-function: cubic-bezier(.215,.61,.355,1);
}

.hamburger--collapse.is-active .hamburger-inner::before {
    top: 0;
    transform: rotate(-90deg);
    transition: top .1s .16s cubic-bezier(.33333,0,.66667,.33333), transform .13s .25s cubic-bezier(.215,.61,.355,1);
}

.hamburger--collapse.is-active .hamburger-inner::after {
    top: 0;
    opacity: 0;
    transition: top .2s cubic-bezier(.33333,0,.66667,.33333), opacity .1s .22s linear;
}

.hamburger--collapse:focus,
.hamburger--collapse:hover {
    background: transparent !important;
}

/* Submenu Toggle */
.reflex-submenu-toggle {
    transition: .25s all;
    position: absolute;
    color: #fff;
    top: 0;
    padding: 16px;
    background: rgba(255,255,255,0.1);
    font-size: 14px;
    right: 0;
    cursor: pointer;
    display: none !important;
}

.reflex-submenu-toggle::after {
    content: "";
    width: 10px;
    height: 10px;
    display: inline-block;
    border: 2px solid #fff;
    border-width: 0 0 3px 3px;
    float: right;
    transform: rotate(-45deg);
    transition: all 0.4s linear;
}

/* ==============================================
   5. Footer Styles
   ============================================== */
#FooterZone ul.menu li a {
    text-align: left !important;
    display: block !important;
}

/* ==============================================
   6. Blog & Archive Styles
   ============================================== */
.blog #SideZone .side-nav,
.archive #SideZone .side-nav {
    border: 1px solid rgba(0, 0, 0, 0.2);
}

.blog #SideZone .side-nav .text-left,
.archive #SideZone .side-nav .text-left {
    padding: 1.5em 4% 1.5em 8%;
}

.blog #SideZone .side-nav ul li,
.archive #SideZone .side-nav ul li {
    border-top: 1px solid rgba(0, 0, 0, 0.2);
}

.blog #SideZone .side-nav ul li a,
.archive #SideZone .side-nav ul li a {
    padding: 1em 4% 1em 8%;
    margin: 0;
    transition: color .4s ease 0s, background-color .4s ease 0s, border .4s ease 0s;
    font-size: 1.111em;
    color: #1C539F;
    display: block;
    line-height: 1.2;
}

.blog #SideZone .side-nav ul li a:hover,
.blog #SideZone .side-nav ul li a:focus,
.archive #SideZone .side-nav ul li a:hover,
.archive #SideZone .side-nav ul li a:focus {
    color: #FFFFFF;
    background-color: #1C539F;
}

.navigation.posts-navigation {
    display: flex;
    width: 100%;
}

.navigation.posts-navigation .nav-links {
    display: flex;
    width: 100%;
    justify-content: space-between;
}

/* ==============================================
   7. Review Page Styles
   ============================================== */
.page-template-review #sp-testimonial-free-721 {
    display: block;
    width: calc(100% + 3rem);
    left: calc(3rem * -.5);
    margin-top: calc(3rem * -.5);
    margin-bottom: calc(3rem * -.5);
    position: relative;
    flex-wrap: wrap;
    align-items: stretch;
    align-content: space-around;
    display: flex;
    padding: 0 !important;
}

.page-template-review .sp-testimonial-free-section .sp-testimonial-free-item {
    text-align: left;
    padding-right: 24px;
    will-change: transform;
    max-width: calc(50% - 3rem);
    margin: calc((3rem - 0.111rem) * .5);
    flex: 1 1 auto;
    border-style: solid;
    border-width: 0.3rem;
    border-color: #1F539F;
    align-items: stretch;
    align-content: space-around;
    display: flex;
    border-radius: 0;
    width: 50%;
    z-index: 1;
    position: relative;
    padding: 20px;
}

.page-template-review .sp-testimonial-free {
    padding-left: calc(4% * 2);
    padding-right: calc(4% * 2);
    padding-top: calc(4.5rem * .75);
    padding-bottom: calc(4.5rem * .75);
}

.page-template-review .sp-testimonial-free-section .tfree-testimonial-title {
    margin: 0;
}

.page-template-review .sp-testimonial-free-section .tfree-testimonial-title h3 {
    font-size: 1.778rem;
    letter-spacing: 0em;
    text-align: left;
    line-height: 1.2;
    font-weight: 400;
    text-transform: none;
}

.page-template-review .sp-testimonial-free-section .tfree-client-testimonial {
    margin-top: 1em;
}

.page-template-review .sp-testimonial-free-section .tfree-client-testimonial p {
    font-size: 1.1rem;
    margin-bottom: 0;
    text-align: left;
}

.page-template-review .sp-testimonial-free-section .tfree-client-name {
    text-align: left;
    font-size: 1.333rem;
    letter-spacing: 0em;
    line-height: 1.4;
    font-weight: 400;
    text-transform: none;
}

.page-template-review .sp-testimonial-free-section .tfree-client-rating i.fa {
    margin-right: -1px;
    font-size: 1.556em;
    color: #FFD80A;
}

.page-template-review .sp-testimonial-free-section .tfree-client-rating {
    position: absolute;
    bottom: 20px;
    width: 100%;
    left: 0;
}

/* ==============================================
   8. Service & Content Sections
   ============================================== */
.reflex-title-bar {
    padding: 0;
    margin: 0;
    background: #184A75;
}

.reflex-container {
    width: 100%;
    display: block;
}

.reflex-title-bar .reflex-container {
    padding-top: 60px;
    padding-bottom: 60px;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.reflex-title-bar h3 {
    color: #fff;
    margin: 0;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 30px;
    letter-spacing: 1px;
}

.truck.mini {
    transform: scale(0.5);
    right: -300px;
}

.truck {
    width: 300px;
    transition: 2s all;
    position: relative;
    right: 0;
}

/* Service Icons */
.service-icons .vc_col-sm-2 {
    width: 25%;
    float: left;
    text-align: center;
    padding-left: 10px;
    padding-right: 10px;
}

.service-icons .vc_col-sm-2 img,
.service-icons img {
    margin: auto;
    margin-bottom: 20px;
}

.service-icons .slides {
    display: flex;
    padding-top: 50px;
    margin-left: -10px;
    margin-right: -10px;
    flex-wrap: wrap;
}

.service-icons {
    text-align: center;
}

.service-icons h6 {
    font-size: 20px;
    font-weight: bold;
}

/* Service Grid */
.service-grid-inner {
    width: 100%;
    float: left;
    background-color: #f9f9f9;
    display: flex;
    flex-wrap: wrap;
}

.service-grid-inner:nth-child(2) {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row-reverse;
}

.service-grid-inner img {
    width: 100%;
}

.service-grid .content-area {
    padding: 60px 60px;
}

.service-grid-inner .vc_custom_heading {
    font-size: 24px;
    margin: 0;
    width: 100%;
    text-align: left;
}

#REWARDS {
    text-align: center;
    padding-top: 0 !important;
}

#REWARDS .vc_custom_heading {
    font-size: 25px;
    font-weight: 600;
    line-height: 1.5em;
}

/* ==============================================
   9. Accordion Styles
   ============================================== */
.accordion {
    background-color: #eee;
    color: #444;
    cursor: pointer;
    padding: 14px 20px;
    width: 100%;
    text-align: left;
    border: none;
    outline: none;
    transition: 0.4s;
    margin-bottom: 0;
    font-weight: 600;
    font-size: 14px;
    color: #000;
    position: relative;
}

.active,
.accordion:hover,
button:focus {
    background-color: #0053a0;
    border: none;
    color: #fff;
}

.panel {
    padding: 0 18px;
    display: none;
    overflow: hidden;
    text-align: left;
}

.accordion:after,
.accordion:before {
    display: block;
    content: "";
    width: 16px;
    height: 3px;
    background: #0053a0;
    transition: all .3s ease-in-out;
    position: absolute;
    top: 45%;
}

.accordion::before {
    right: 50px;
    transform: rotate(45deg);
}

.accordion::after {
    right: 41px;
    transform: rotate(-45deg);
}

.accordion-cards {
    background: #f8f8f8;
    margin-bottom: 10px;
}

.accordion.active:before {
    right: 50px;
    transform: rotate(-45deg);
}

.accordion.active:after {
    right: 41px;
    transform: rotate(45deg);
}

.accordion.active:after,
.accordion.active:before,
.accordion:hover::after,
.accordion:hover::before,
.accordion:focus::after,
.accordion:focus::before {
    background: #fff;
}

/* ==============================================
   10. Staff & Slick Slider Styles
   ============================================== */
#StaffV6List .slick-initialized .slick-slide {
    display: block;
    margin: calc((1.5rem - 0.111rem) * .5);
}

/* ==============================================
   11. Page Template Specific Styles
   ============================================== */
body:not(.home) .reflex-content.no-sidebar main#content {
    width: 100%;
    display: block;
}

.page-template-membership #SubBannerV1 strong {
    font-size: 3rem;
}

.page-template-membership .sub-banner.v1 {
    padding-top: 12%;
    padding-bottom: 12%;
}

/* ==============================================
   12. Media & Image Styles
   ============================================== */
.media-left {
    float: left;
    margin: 1em 1em 1em 0;
}

.media-right {
    float: right;
    margin: 1em 0 1em 1em;
}

.media-full {
    display: block;
    margin: 1em auto;
}

.media-small { width: 25%; }
.media-medium { width: 50%; }
.media-large { width: 100%; }

video {
    max-width: 100%;
}

.cms-jwplayer {
    width: 100%;
    position: relative;
}

.cms-jwplayer video {
    max-width: none;
}

.img-left { float: left; }
.img-right { float: right; }
.img-full {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.img-small { width: 25%; }
.img-medium { width: 50%; }
.img-large { width: 100%; }

/* ==============================================
   13. Button Styles
   ============================================== */
.cms-button {
    display: inline-block;
    border: none;
    background-color: #35A6F6;
    color: #FFFFFF;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    padding: 10px 20px;
    border-radius: 2px;
    text-transform: uppercase;
    line-height: 1em;
    text-decoration: none;
    cursor: pointer;
    transition: .25s ease;
}

.cms-button.big {
    padding: 20px 40px;
    font-size: 16px;
}

.cms-button.unsafe {
    background-color: #EA5F5F;
}

.cms-button.unsafe:hover {
    background-color: #FF7373;
}

.cms-button.command {
    background-color: #FFFFFF;
    color: #35A6F6;
    border: 1px solid #D4D9E1;
}

.cms-button.command:hover {
    color: #63BEFF;
    border-color: #63BEFF;
    background-color: #FFFFFF;
}

.cms-button:hover {
    color: #FFFFFF;
    background-color: #63BEFF;
}

.cms-button:focus {
    outline: 0;
}

/* ==============================================
   14. UI Components
   ============================================== */
.ui-scroll {
    overflow: auto;
}

.ui-scroll.horizontal {
    overflow-x: auto;
    overflow-y: hidden;
}

.ui-scroll.vertical {
    overflow-x: hidden;
    overflow-y: auto;
}

.ui-scroll::-webkit-scrollbar {
    width: 12px;
    height: 12px;
    background: none;
}

.ui-scroll::-webkit-scrollbar-track {
    background: none;
}

.ui-scroll::-webkit-scrollbar-thumb {
    border: solid 2px transparent;
    background-clip: padding-box;
    border-radius: 12px;
    background-color: rgba(16, 37, 78, .1);
}

.ui-scroll::-webkit-scrollbar-button {
    width: 0;
    height: 0;
    display: none;
}

.ui-scroll::-webkit-scrollbar-corner {
    background-color: transparent;
}

/* ==============================================
   15. Responsive Design - Tablet
   ============================================== */
@media (max-width: 1366px) {
    .vc_custom_heading {
        font-size: 32px;
    }
    
    .service-grid .content-area {
        padding: 20px;
    }
}

@media (max-width: 1280px) {
    .vc_custom_heading {
        font-size: 22px;
    }
}

/* ==============================================
   16. Responsive Design - Mobile Navigation
   ============================================== */
@media (max-width: 1024px) {
    .header .top-nav.opened {
        left: 0;
        transform: translateX(0%);
    }
    
    .header .top-nav {
        width: 280px !important;
    }
    
    .light-bg.header.v2 .top-nav {
        padding: 0;
    }
    
    .light-bg.header.v2 .top-nav ul li {
        display: block !important;
        border-bottom: 1px solid #ccc;
        position: relative;
    }
    
    .light-bg.header.v2 .top-nav ul li a {
        padding: 12px 30px 12px 10px;
        padding-right: 30px;
        font-weight: 600;
        transition: .4s;
        font-size: 13px;
        text-align: left;
        line-height: normal;
        border: 0;
        letter-spacing: normal;
        display: block;
    }
    
    .light-bg.header.v2 .top-nav ul li.menu-item-has-children > a {
        padding-right: 40px;
    }
    
    .header .top-nav .fly-nav {
        opacity: 1;
        visibility: visible;
        display: block;
        margin: 0;
        position: relative;
    }
    
    .reflex-submenu-toggle {
        display: flex !important;
    }
    
    .light-bg.header .fly-nav.like-bg li:last-child {
        border-bottom: 0;
    }
    
    body .mobile-menu {
        display: flex;
        justify-content: flex-end;
        right: 0;
    }
}

/* ==============================================
   17. Responsive Design - Small Tablet
   ============================================== */
@media (max-width: 992px) {
    .page-template-review #sp-testimonial-free-721 {
        width: 100%;
        margin-top: 0;
        margin-bottom: 0;
        display: block;
        left: 0;
    }
    
    .page-template-review .sp-testimonial-free-section .sp-testimonial-free-item {
        width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        margin-bottom: 30px !important;
        max-width: 100%;
    }
    
    .page-template-review .sp-testimonial-free-section .tfree-testimonial-title h3 {
        font-size: calc(1.778rem * 0.8);
    }
}

/* ==============================================
   18. Responsive Design - Mobile
   ============================================== */
@media (max-width: 800px) {
    body .header.v2 .logo-bar {
        max-width: 100% !important;
        display: flex !important;
        justify-content: space-between !important;
    }
    
    body .header.v2 .logo-bar .custom-logo-link {
        width: auto !important;
    }
    
    body .mobile-menu {
        display: flex;
        justify-content: flex-end;
        right: 0;
    }
    
    .accordion {
        padding-right: 35px;
    }
    
    .footer.v1 .location-info li {
        width: 100%;
    }
    
    .footer.v1 [class*="flex-"][class*="-middle"] {
        justify-content: center;
    }
    
    #FooterZone ul.menu li a {
        text-align: center !important;
    }
    
    .page-template-about-us #StaffV6List .flex-grid.auto-responsive.slick {
        display: block;
    }
    
    .page-template-about-us #StaffV6List li.fourth.flex- {
        max-width: 100%;
        width: 100%;
    }
    
    .menu-btn.fit.desktop.btn-colors {
        display: block;
        position: absolute;
        top: 50px;
        right: 20px;
    }
    
    .service-icons .vc_col-sm-2 {
        width: 50%;
    }
    
    .width-50 {
        width: 100%;
        float: left;
    }
    
    #HSScorpionFooter .flex-middle-spaced-between img {
        margin: auto;
    }
}

/* ==============================================
   19. Responsive Design - Small Mobile
   ============================================== */
@media (max-width: 576px) {
    .service-icons .vc_col-sm-2 {
        width: 100%;
    }
    
    .accordion::after {
        right: 11px;
        transform: rotate(-45deg);
    }
    
    .accordion::before {
        right: 20px;
        transform: rotate(45deg);
    }
    
    .accordion.active::after {
        right: 11px;
        transform: rotate(45deg);
    }
    
    .accordion.active::before {
        right: 20px;
        transform: rotate(-45deg);
    }
}

@media (max-width: 500px) {
    .values-list.ui-repeater .ico-con img {
        margin: auto;
    }
}

/* ==============================================
   20. Print Styles
   ============================================== */
@media print {
    .mobile-menu,
    .reflex-menu-toggle,
    .hamburger-box,
    .secondary-nav .sa-submenu-nav {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
    }
    
    a[href]:after {
        content: " (" attr(href) ")";
    }
}

/* ==============================================
   21. Accessibility Improvements
   ============================================== */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}

/* Focus styles for keyboard navigation */
a:focus,
button:focus,
input:focus,
textarea:focus,
select:focus {
    outline: 2px solid #0053a0;
    outline-offset: 2px;
}

/* Skip to content link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: #0053a0;
    color: white;
    padding: 8px;
    text-decoration: none;
    z-index: 100;
}

.skip-link:focus {
    top: 0;
}

/* ==============================================
   22. Gravity Forms Styles
   ============================================== */
.gform_wrapper {
    margin: 0;
    max-width: 100%;
}

.gform_wrapper .gform_body {
    padding: 0;
}

.gform_wrapper .gform_fields {
    list-style: none;
    padding: 0;
    margin: 0;
}

.gform_wrapper .gfield {
    margin-bottom: 2em;
    position: relative;
}

.gform_wrapper .gfield_label,
.gform_wrapper legend.gfield_label {
    font-weight: 600;
    font-size: 1rem;
    color: #222;
    margin-bottom: 0.5em;
    display: block;
}

.gform_wrapper .gfield_required {
    color: #EF3E30;
    font-weight: normal;
    margin-left: 0.25em;
}

.gform_wrapper .gfield_required_text {
    font-size: 0.875rem;
}

/* Input Fields */
.gform_wrapper input[type="text"],
.gform_wrapper input[type="email"],
.gform_wrapper input[type="tel"],
.gform_wrapper input[type="url"],
.gform_wrapper input[type="number"],
.gform_wrapper input[type="date"],
.gform_wrapper select,
.gform_wrapper textarea {
    width: 100%;
    padding: 0.75em 1em;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    line-height: 1.5;
    background: #fff;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.gform_wrapper input[type="text"]:focus,
.gform_wrapper input[type="email"]:focus,
.gform_wrapper input[type="tel"]:focus,
.gform_wrapper input[type="url"]:focus,
.gform_wrapper input[type="number"]:focus,
.gform_wrapper input[type="date"]:focus,
.gform_wrapper select:focus,
.gform_wrapper textarea:focus {
    outline: none;
    border-color: #08539F;
    box-shadow: 0 0 0 3px rgba(8, 83, 159, 0.1);
}

.gform_wrapper textarea {
    min-height: 120px;
    resize: vertical;
}

/* Name Fields Grid */
.gform_wrapper .ginput_container_name {
    display: flex;
    gap: 1em;
}

.gform_wrapper .name_first,
.gform_wrapper .name_last {
    flex: 1;
}

/* Address Fields Grid */
.gform_wrapper .ginput_container_address {
    display: flex;
    flex-wrap: wrap;
    gap: 1em;
}

.gform_wrapper .ginput_full {
    width: 100%;
}

.gform_wrapper .ginput_left,
.gform_wrapper .ginput_right {
    flex: 1;
    min-width: 200px;
}

/* Checkbox and Radio Styles */
.gform_wrapper .gfield_checkbox,
.gform_wrapper .gfield_radio {
    padding: 0;
    margin: 0;
}

.gform_wrapper .gchoice {
    margin-bottom: 0.75em;
    display: flex;
    align-items: flex-start;
}

.gform_wrapper .gfield-choice-input {
    margin-right: 0.5em;
    margin-top: 0.25em;
    flex-shrink: 0;
}

.gform_wrapper input[type="checkbox"],
.gform_wrapper input[type="radio"] {
    width: auto;
    margin: 0;
}

.gform_wrapper .gchoice label {
    cursor: pointer;
    font-weight: normal;
    margin: 0;
}

/* Consent Field */
.gform_wrapper .gfield_consent_description {
    background: #f7f7f7;
    padding: 1em;
    margin-bottom: 1em;
    border-radius: 4px;
    font-size: 0.9rem;
    line-height: 1.6;
}

.gform_wrapper .ginput_container_consent {
    display: flex;
    align-items: flex-start;
}

.gform_wrapper .ginput_container_consent input[type="checkbox"] {
    margin-right: 0.5em;
    margin-top: 0.25em;
}

/* Submit Button */
.gform_wrapper .gform_footer {
    margin-top: 2em;
    padding-top: 1em;
    border-top: 1px solid #eee;
}

.gform_wrapper .gform_button {
    background-color: #08539F;
    color: #fff;
    padding: 0.875em 2em;
    font-size: 1.125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    display: inline-block;
}

.gform_wrapper .gform_button:hover {
    background-color: #EF3E30;
    transform: translateY(-2px);
}

.gform_wrapper .gform_button:active {
    transform: translateY(0);
}

/* Character Counter */
.gform_wrapper .charleft {
    font-size: 0.875rem;
    color: #666;
    margin-top: 0.5em;
}

/* Validation Messages */
.gform_wrapper .gfield_error {
    border-left: 3px solid #EF3E30;
    padding-left: 1em;
    background: rgba(239, 62, 48, 0.05);
}

.gform_wrapper .validation_message {
    color: #EF3E30;
    font-size: 0.875rem;
    margin-top: 0.5em;
}

/* Honeypot Field (Hidden) */
.gform_wrapper .gform_validation_container {
    display: none !important;
    position: absolute !important;
    left: -9000px !important;
}

/* Sublabels */
.gform_wrapper .gform-field-label--type-sub {
    font-size: 0.875rem;
    color: #666;
    font-weight: normal;
    margin-bottom: 0.25em;
}

/* Field Descriptions */
.gform_wrapper .gfield_description {
    font-size: 0.875rem;
    color: #666;
    margin-top: 0.5em;
    line-height: 1.5;
}

/* Responsive Styles */
@media screen and (max-width: 768px) {
    .gform_wrapper .ginput_container_name,
    .gform_wrapper .ginput_container_address {
        flex-direction: column;
    }
    
    .gform_wrapper .ginput_left,
    .gform_wrapper .ginput_right {
        width: 100%;
    }
    
    .gform_wrapper .gform_button {
        width: 100%;
        text-align: center;
    }
}

/* Loading Spinner */
.gform_wrapper .gform_ajax_spinner {
    display: none;
    margin-left: 1em;
}

.gform_wrapper.gform_submitting .gform_ajax_spinner {
    display: inline-block;
}

/* Confirmation Message */
.gform_confirmation_wrapper {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
    padding: 1.5em;
    border-radius: 4px;
    margin: 2em 0;
}

/* ==============================================
   23. Blog Section Styles
   ============================================== */
#BlogV8List {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.5em;
}

#BlogV8List li {
    display: block;
    width: 100%;
}

#BlogV8List .sa-grid-row {
    display: block;
    width: 100%;
}

#BlogV8List .sa-grid-between-middle-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    width: 100%;
    min-height: 150px;
    background: #fff;
    border: 1px solid #e5e5e5;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

#BlogV8List .sa-grid-between-middle-top:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

#BlogV8List .sa-grid-between-top {
    display: flex;
    align-items: flex-start;
    width: 100%;
    gap: 1.5em;
}

#BlogV8List .fourth {
    flex: 0 0 200px;
    width: 200px;
    min-width: 200px;
}

#BlogV8List .fourth .img {
    position: relative;
    width: 100%;
    padding-bottom: 75%; /* 4:3 aspect ratio */
    overflow: hidden;
    background: #f5f5f5;
}

#BlogV8List .fourth .img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#BlogV8List .auto.third {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100%;
    padding: 0.5em 0;
}

#BlogV8List .blog-time-style {
    display: inline-block;
    font-size: 0.875rem;
    color: #666;
    margin-bottom: 0.5em;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

#BlogV8List .title-style-4 {
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.4;
    color: #222;
    margin: 0.5em 0;
    display: block;
}

#BlogV8List .title-color-4 {
    color: #222;
}

#BlogV8List .btn.v2 {
    display: inline-block;
    margin-top: 0.75em;
}

#BlogV8List .btn.v2 a {
    display: inline-block;
    padding: 0.5em 1.25em;
    background: #08539F;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: background-color 0.3s ease;
}

#BlogV8List .btn.v2 a:hover {
    background: #EF3E30;
}

#BlogV8List .category-list {
    margin-top: 0.5em;
}

#BlogV8List .category-list .sa-grid-middle {
    display: flex;
    align-items: center;
    gap: 0.5em;
}

#BlogV8List .category-list svg {
    width: 1em;
    height: 1em;
    fill: #08539F;
}

#BlogV8List .category-list ul {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5em;
    margin: 0;
    padding: 0;
    list-style: none;
}

#BlogV8List .category-list li {
    font-size: 0.875rem;
    color: #666;
    padding: 0.25em 0.75em;
    background: #f5f5f5;
    border-radius: 3px;
}

/* Blog container adjustments */
.blog-list.ui-repeater {
    width: 100%;
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
    #BlogV8List .sa-grid-between-top {
        flex-direction: column;
    }
    
    #BlogV8List .fourth {
        flex: 0 0 auto;
        width: 100%;
        max-width: 100%;
    }
    
    #BlogV8List .fourth .img {
        padding-bottom: 56.25%; /* 16:9 aspect ratio on mobile */
    }
    
    #BlogV8List .hide-500 {
        display: block !important; /* Show image on mobile */
    }
}

@media screen and (max-width: 500px) {
    #BlogV8List .hide-500 {
        display: none !important;
    }
}

/* Border radius and padding classes */
.border-radius-item {
    border-radius: 8px;
    overflow: hidden;
}

.side-padding-small {
    padding-left: 1.5em;
    padding-right: 1.5em;
}

.vertical-padding-tiny {
    padding-top: 1em;
    padding-bottom: 1em;
}

.right-margin-medium {
    margin-right: 1.5em;
}

.bottom-margin {
    margin-bottom: 1.5em;
}

.bottom-margin-tiny {
    margin-bottom: 0.5em;
}

/* ==============================================
   24. WP Bakery Landing Page Styles
   ============================================== */
/* Hero and Special Elements */
.hero-gradient-overlay {
    background: linear-gradient(135deg, rgba(8,83,159,0.85) 0%, rgba(8,83,159,0.6) 100%);
}

.special-badge {
    display: inline-block;
    background: #EF3E30;
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.cta-button-primary {
    background: #08539F;
    color: white;
    padding: 15px 35px;
    border: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(8,83,159,0.3);
    display: inline-block;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.cta-button-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #EF3E30;
    transition: left 0.3s ease;
}

.cta-button-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(8,83,159,0.4);
    color: white;
    text-decoration: none;
}

.cta-button-primary:hover::before {
    left: 0;
}

.cta-button-primary span {
    position: relative;
    z-index: 1;
}

/* Service Cards */
.service-card-wrapper {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
    border-top: 4px solid #08539F;
    text-align: center;
}

.service-card-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    border-top-color: #EF3E30;
}

.service-icon-circle {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #08539F, #0766C2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: white;
}

.service-card-wrapper:hover .service-icon-circle {
    background: linear-gradient(45deg, #EF3E30, #FF5545);
}

/* Problem Items */
.problem-item {
    background: white;
    padding: 25px;
    border-radius: 12px;
    border-left: 4px solid #08539F;
    transition: all 0.3s ease;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.problem-item:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-left-color: #EF3E30;
}

.problem-item h4 {
    color: #222 !important;
    font-size: 18px !important;
    margin-bottom: 10px !important;
    font-weight: 600 !important;
}

.problem-item h4 strong {
    color: #222 !important;
}

.problem-item p {
    color: #666 !important;
    line-height: 1.6 !important;
    margin: 0 !important;
}

/* Drain Problems Section Styling */
span[style*="background: rgba(255,107,53,0.1)"] {
    background: rgba(8,83,159,0.1) !important;
    color: #08539F !important;
    padding: 8px 20px !important;
    border-radius: 25px !important;
    font-weight: 600 !important;
    display: inline-block !important;
    margin-bottom: 15px !important;
}

/* Method Cards */
.method-card {
    text-align: center;
    padding: 40px 30px;
    background: white;
    border-radius: 20px;
    transition: all 0.3s ease;
    height: 100%;
    border: 2px solid #f0f0f0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.method-card:hover {
    background: #08539F;
    border-color: #08539F;
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(8,83,159,0.3);
}

.method-card h3 {
    color: #222;
    transition: color 0.3s ease;
}

.method-card p {
    color: #666;
    transition: color 0.3s ease;
}

.method-card:hover h3,
.method-card:hover p {
    color: white !important;
}

.method-icon-large {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #08539F, #0766C2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 36px;
    color: white;
    transition: all 0.3s ease;
}

.method-card:hover .method-icon-large {
    background: white;
    color: #08539F !important;
}

/* Why Choose Items */
.why-choose-item {
    text-align: center;
    color: white !important;
    padding: 20px;
}

.why-choose-number {
    font-size: 48px;
    font-weight: 700;
    opacity: 0.15;
    margin-bottom: 15px;
    color: rgba(255,255,255,0.3) !important;
}

.why-choose-item h3 {
    font-size: 20px !important;
    font-weight: 600 !important;
    margin-bottom: 10px !important;
    color: #FFCC00 !important; /* Yellow headers for contrast */
}

.why-choose-item strong {
    color: #FFCC00 !important; /* Yellow for better contrast on blue */
    font-size: 20px !important;
    font-weight: 600 !important;
}

.why-choose-item p {
    font-size: 16px !important;
    line-height: 1.6 !important;
    color: white !important;
}

/* Force white text on all blue background sections */
.vc_custom_1754970672685 * {
    color: white !important;
}

.vc_custom_1754970672685 h2 {
    color: white !important;
}

.vc_custom_1754970672685 h3,
.vc_custom_1754970672685 strong {
    color: #FFCC00 !important; /* Yellow for headers */
}

.vc_custom_1754970672685 p {
    color: white !important;
}

/* Specific blue background overrides */
[style*="background-color: #07509A"] h2,
[style*="background-color: #07509A"] .vc_custom_heading {
    color: white !important;
}

[style*="background-color: #07509A"] h3,
[style*="background-color: #07509A"] strong {
    color: #FFCC00 !important;
}

[style*="background-color: #07509A"] p,
[style*="background-color: #07509A"] span {
    color: white !important;
}

[style*="background-color: #07509A"] .why-choose-item * {
    color: white !important;
}

[style*="background-color: #07509A"] .why-choose-item h3,
[style*="background-color: #07509A"] .why-choose-item strong {
    color: #FFCC00 !important;
}

/* CTA Section */
.cta-animated-bg {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #08539F 0%, #054080 100%) !important;
    padding: 80px 0 !important;
}

.cta-animated-bg::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(239,62,48,0.1) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Force white text in CTA section */
.cta-animated-bg h2,
.cta-animated-bg .vc_custom_heading {
    color: white !important;
    margin-bottom: 20px !important;
    position: relative;
    z-index: 2;
}

.cta-animated-bg p {
    color: rgba(255,255,255,0.9) !important;
    font-size: 18px !important;
    margin-bottom: 30px !important;
    position: relative;
    z-index: 2;
}

.cta-animated-bg .vc_column_text {
    text-align: center !important;
    position: relative;
    z-index: 2;
}

.cta-phone-number {
    font-size: 28px;
    color: #FFCC00 !important; /* Yellow for better contrast */
    font-weight: 700;
    display: inline-block;
    margin-left: 20px;
}

/* Fix for dark gradient background sections */
[style*="background: linear-gradient"] h2,
[style*="background: linear-gradient"] .vc_custom_heading {
    color: white !important;
}

[style*="background: linear-gradient"] p,
[style*="background: linear-gradient"] .vc_column_text {
    color: rgba(255,255,255,0.9) !important;
}

/* Ensure CTA section with custom class has proper text colors */
.vc_custom_1737502466868 h2,
.vc_custom_1737502466869 {
    color: white !important;
}

.vc_custom_1737502466870 {
    color: rgba(255,255,255,0.9) !important;
}

/* WP Bakery Toggle/Accordion Styles */
.vc_toggle {
    margin-bottom: 15px;
}

.vc_toggle .vc_toggle_title {
    background: white !important;
    border: 2px solid #e5e5e5 !important;
    padding: 15px 20px !important;
    border-radius: 8px !important;
    transition: all 0.3s ease;
}

.vc_toggle.vc_toggle_active .vc_toggle_title {
    background: #08539F !important;
    color: white !important;
    border-color: #08539F !important;
}

.vc_toggle .vc_toggle_title:hover {
    border-color: #08539F !important;
    box-shadow: 0 2px 8px rgba(8,83,159,0.1);
}

.vc_toggle .vc_toggle_content {
    padding: 20px !important;
    background: #f9f9f9;
    border-radius: 0 0 8px 8px;
}

/* FAQ Section Styles */
.vc_custom_1754970640522 {
    background-color: #f9f9f9 !important;
    padding: 60px 0 !important;
}

/* FAQ Toggle Styles Enhancement */
.vc_toggle {
    margin-bottom: 20px !important;
}

.vc_toggle .vc_toggle_title {
    background: white !important;
    border: 2px solid #e5e5e5 !important;
    padding: 20px 60px 20px 25px !important; /* Extra right padding for icon */
    border-radius: 10px !important;
    transition: all 0.3s ease;
    font-size: 18px !important;
    font-weight: 500 !important;
    color: #333 !important;
    cursor: pointer;
    position: relative;
}

.vc_toggle.vc_toggle_active .vc_toggle_title,
.vc_toggle.vc_toggle_active_true .vc_toggle_title,
.vc_toggle[open="true"] .vc_toggle_title {
    background: #08539F !important;
    border-color: #08539F !important;
    color: white !important;
}

.vc_toggle.vc_toggle_active .vc_toggle_title h4,
.vc_toggle.vc_toggle_active_true .vc_toggle_title h4,
.vc_toggle[open="true"] .vc_toggle_title h4 {
    color: white !important;
}

.vc_toggle .vc_toggle_title h4 {
    margin: 0 !important;
    font-size: 18px !important;
    color: inherit !important;
    padding-right: 40px !important; /* Prevent text overlap with icon */
}

/* Toggle Icon Styling */
.vc_toggle .vc_toggle_icon {
    position: absolute !important;
    right: 20px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: 30px !important;
    height: 30px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 50% !important;
    background: #08539F !important;
    color: white !important;
    transition: all 0.3s ease !important;
}

.vc_toggle .vc_toggle_icon::before {
    content: "+" !important;
    font-size: 20px !important;
    font-weight: bold !important;
    line-height: 1 !important;
    display: block !important;
}

/* Active/Open state icon */
.vc_toggle.vc_toggle_active .vc_toggle_icon,
.vc_toggle.vc_toggle_active_true .vc_toggle_icon,
.vc_toggle[open="true"] .vc_toggle_icon {
    background: white !important;
    color: #08539F !important;
}

.vc_toggle.vc_toggle_active .vc_toggle_icon::before,
.vc_toggle.vc_toggle_active_true .vc_toggle_icon::before,
.vc_toggle[open="true"] .vc_toggle_icon::before {
    content: "−" !important;
}

/* Fix for WP Bakery toggle with custom colors */
.vc_toggle[style*="custom_background_color=\"#ffffff\""] .vc_toggle_title {
    background: white !important;
}

.vc_toggle[style*="custom_text_color=\"#333333\""] .vc_toggle_title h4 {
    color: #333 !important;
}

/* When toggle is open/active with blue background */
.vc_toggle.vc_toggle_active[style*="custom_background_color"] .vc_toggle_title,
.vc_toggle[open="true"] .vc_toggle_title {
    background: #08539F !important;
    color: white !important;
}

.vc_toggle.vc_toggle_active[style*="custom_background_color"] .vc_toggle_title h4,
.vc_toggle[open="true"] .vc_toggle_title h4 {
    color: white !important;
}

/* Hover effects */
.vc_toggle:not(.vc_toggle_active) .vc_toggle_title:hover {
    border-color: #08539F !important;
    box-shadow: 0 2px 10px rgba(8,83,159,0.15) !important;
}

.vc_toggle:not(.vc_toggle_active) .vc_toggle_title:hover .vc_toggle_icon {
    transform: translateY(-50%) scale(1.1) !important;
}

/* Link Button in CTA */
.cta-animated-bg a[href*="contact-us"],
.cta-animated-bg a.cta-button,
.cta-animated-bg .vc_btn3 {
    background: #EF3E30 !important;
    color: white !important;
    padding: 15px 35px;
    border: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(239,62,48,0.3);
    display: inline-block;
    text-decoration: none;
    position: relative;
    z-index: 2;
    margin: 0 10px;
}

.cta-animated-bg a[href*="contact-us"]:hover,
.cta-animated-bg a.cta-button:hover,
.cta-animated-bg .vc_btn3:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(239,62,48,0.4);
    background: #FF5545 !important;
    color: white !important;
}

/* CTA text alignment and spacing */
.cta-animated-bg .vc_column-inner {
    text-align: center !important;
}

.cta-animated-bg .wpb_wrapper {
    text-align: center !important;
}

/* "or Call" text styling */
.cta-animated-bg span:not(.cta-phone-number) {
    color: white !important;
    font-size: 20px !important;
    margin: 0 15px;
}

/* Responsive Adjustments */
@media screen and (max-width: 768px) {
    .method-card {
        padding: 30px 20px;
        margin-bottom: 20px;
    }
    
    .service-card-wrapper {
        margin-bottom: 20px;
    }
    
    .why-choose-item {
        margin-bottom: 30px;
    }
    
    .cta-phone-number {
        display: block;
        margin-left: 0;
        margin-top: 15px;
    }
}

/* ==============================================
   25. Additional WP Bakery Fixes
   ============================================== */
/* Fix spacing for drain problems section */
.vc_custom_1737502466854 {
    padding: 60px 0 !important;
}

.vc_custom_1737502466856 {
    margin-bottom: 30px !important;
}

/* Service cards column padding */
.vc_custom_1737502466851,
.vc_custom_1737502466852,
.vc_custom_1737502466853 {
    padding: 15px !important;
}

/* Fix image styling in problem section */
.vc_custom_1754970337627 {
    border-radius: 10px !important;
    overflow: hidden !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1) !important;
}

/* Ensure proper text color contrast in sections */
.vc_row[style*="background-color: #ffffff"] h2,
.vc_row[style*="background-color: #ffffff"] h3 {
    color: #333 !important;
}

.vc_row[style*="background-color: #f5f5f5"] h2,
.vc_row[style*="background-color: #f5f5f5"] h3 {
    color: #333 !important;
}

/* Fix Why Choose section headings */
.vc_custom_1754970686902 {
    color: white !important;
    margin-bottom: 50px !important;
}

/* Ensure CTA section text is visible */
.vc_custom_1737502466869 {
    color: white !important;
}

.vc_custom_1737502466870 {
    color: rgba(255,255,255,0.9) !important;
}

/* Professional Methods section padding */
.vc_custom_1737502466860,
.vc_custom_1737502466861,
.vc_custom_1737502466862,
.vc_custom_1737502466863 {
    padding: 15px !important;
}

/* Fix main heading styling */
.vc_custom_heading {
    line-height: 1.3 !important;
}

/* Ensure Poppins font is applied correctly */
[class*="vc_custom_"] h2[style*="Poppins"],
[class*="vc_custom_"] h3[style*="Poppins"] {
    font-family: 'Poppins', 'Source Sans Pro', sans-serif !important;
}

/* ==============================================
   26. Reviews Section Styles
   ============================================== */
#ReviewsV8Content {
    padding: 40px 20px;
    max-width: 900px;
    margin: 0 auto;
}

#ReviewsV8Content.content-style {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #444;
}

#ReviewsV8Content p {
    margin-bottom: 1.5em;
    color: #444;
}

#ReviewsV8Content strong {
    color: #222;
    font-weight: 600;
}

#ReviewsV8Content a {
    color: #08539F;
    text-decoration: none;
    font-weight: 500;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

#ReviewsV8Content a:hover {
    color: #EF3E30;
    border-bottom-color: #EF3E30;
}

/* Center alignment for mobile */
@media screen and (max-width: 800px) {
    #ReviewsV8Content.center-800 {
        text-align: center;
    }
}

/* Additional content-style class styles */
.content-style {
    font-family: 'Source Sans Pro', 'Helvetica Neue', Arial, sans-serif;
}

.content-style p {
    font-size: 1.0625rem;
    line-height: 1.75;
}

.content-style strong {
    color: #08539F;
}

/* Text alignment utilities */
.text-align {
    text-align: left;
}

.text-align.center-800 {
    text-align: left;
}

@media screen and (max-width: 800px) {
    .text-align.center-800 {
        text-align: center;
    }
}

/* Reviews container styles */
.reviews-section {
    background: #f9f9f9;
    padding: 60px 0;
}

.reviews-section h2 {
    text-align: center;
    color: #333;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.reviews-section h3 {
    text-align: center;
    color: #666;
    font-size: 1.25rem;
    font-weight: 400;
    margin-bottom: 40px;
}

/* Review cards if they exist */
.review-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.review-rating {
    color: #FFB400;
    font-size: 1.25rem;
    margin-bottom: 15px;
}

.review-text {
    color: #555;
    line-height: 1.7;
    margin-bottom: 15px;
}

.review-author {
    color: #333;
    font-weight: 600;
}

.review-date {
    color: #999;
    font-size: 0.875rem;
}

/* ==============================================
   27. Years of Service Banner Styles
   ============================================== */
.years-service-banner {
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.years-service-content {
    background: #08539ff5;
    color: white;
    padding: 12px 32px;
    border-radius: 40px;
    display: inline-flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    font-family: 'Source Sans Pro', 'Helvetica Neue', Arial, sans-serif;
}

.years-number {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1;
    color: white;
}

.years-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
}

.years-title {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.2;
    color: white;
}

.years-subtitle {
    font-size: 0.9rem;
    font-weight: 400;
    line-height: 1.2;
    color: white;
    opacity: 0.95;
}

/* Ensure proper positioning context for hero sections */
#SubBannerV1,
.sub-banner.v1 {
    position: relative;
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
    .years-service-banner {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        text-align: center;
        padding: 16px 12px;
        margin-bottom: 16px;
    }
    
    .years-service-content {
        padding: 10px 20px;
        gap: 12px;
        display: inline-flex;
        max-width: 100%;
    }
    
    .years-number {
        font-size: 2rem;
    }
    
    .years-title {
        font-size: 0.9rem;
    }
    
    .years-subtitle {
        font-size: 0.8rem;
    }
}

@media screen and (max-width: 480px) {
    .years-service-content {
        padding: 8px 16px;
        gap: 10px;
        flex-direction: column;
        text-align: center;
    }
    
    .years-text {
        align-items: center;
    }
    
    .years-number {
        font-size: 1.8rem;
    }
    
    .years-title {
        font-size: 0.85rem;
    }
    
    .years-subtitle {
        font-size: 0.75rem;
    }
}

/* ==============================================
   28. Google Review Badge Mobile Styles
   ============================================== */
.google-review-badge-mobile {
    display: none;
    float: none !important;
    padding-top: 10px;
}

/* Show and style on mobile */
@media screen and (max-width: 768px) {
    .google-review-badge-mobile {
        display: block;
        text-align: center;
        margin: 20px auto;
        transform: scale(0.8);
        transform-origin: center center;
        width: 80%; /* Compensate for scale transform */
        margin-left: auto;
        margin-right: auto;
        float: none !important;
    }
    
    .google-review-badge-mobile > * {
        display: inline-block;
        margin: 0 auto;
        float: none !important;
    }
    
    /* Hide desktop version on mobile */
    .google-review-badge-desktop {
        display: none !important;
    }
}

/* Hide mobile version on desktop */
@media screen and (min-width: 769px) {
    .google-review-badge-mobile {
        display: none !important;
        float: none !important;
    }
    
    .google-review-badge-desktop {
        display: block;
    }
}

/* ==============================================
   29. Phone Button Styles
   ============================================== */
.btn.v1.phone-btn {
    background-color: #08539F;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn.v1.phone-btn span {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn.v1.phone-btn i.fa-phone {
    font-size: 1.1em;
    animation: phoneRing 2s ease-in-out infinite;
}

@keyframes phoneRing {
    0%, 100% {
        transform: rotate(0deg);
    }
    10%, 30% {
        transform: rotate(-15deg);
    }
    20%, 40% {
        transform: rotate(15deg);
    }
    50% {
        transform: rotate(0deg);
    }
}

.btn.v1.phone-btn:hover {
    background-color: #EF3E30;
}

.btn.v1.phone-btn:hover i.fa-phone {
    animation-duration: 0.5s;
}

/* Mobile adjustments for phone button */
@media screen and (max-width: 768px) {
    .btn.v1.phone-btn {
        font-size: 1rem;
        padding: 0.6em 1.5em;
    }
    
    .btn.v1.phone-btn span {
        white-space: nowrap;
    }
}

@media screen and (max-width: 480px) {
    .btn.v1.phone-btn {
        font-size: 0.9rem;
        padding: 0.5em 1.2em;
    }
}

/* ==============================================
   30. Performance Optimizations
   ============================================== */
/* Use GPU acceleration for animations */
.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after,
.truck,
.secondary-nav .sa-submenu-nav {
    will-change: transform;
}

/* Optimize font loading */
.wf-loading body {
    visibility: hidden;
}

.wf-active body,
.wf-inactive body {
    visibility: visible;
}

/* ==============================================
   28. Home Services Section
   ============================================== */
.services-section {
    padding: 80px 20px;
    background: #f5f5f5;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
}

.services-container {
    max-width: 1480px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
    padding-left: 20px;
    padding-right: 20px;
}

/* Left Content Area */
.services-content {
    padding: 20px;
    animation: fadeInLeft 0.8s ease-out;
}

.services-headline {
    font-size: 48px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.2;
    margin-bottom: 25px;
}

.services-description {
    font-size: 18px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 50px;
    max-width: 500px;
}

/* Service Links Grid */
.service-links-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 550px;
}

.service-link-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 18px 20px;
    background: #ffffff;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border: 2px solid transparent;
    min-height: 85px;
}

.service-link-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(7, 80, 154, 0.15);
    border-color: #07509a;
}

/* Service Icons */
.service-icon-circle {
    width: 48px;
    height: 48px;
    background: #07509a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
    margin-top: 0;
}

.service-link-item:hover .service-icon-circle {
    background: #0a5fb8;
    transform: rotate(10deg);
}

.service-icon-circle svg {
    width: 24px;
    height: 24px;
    fill: #ffffff;
}

.service-link-text {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.4;
    padding-top: 12px;
    display: block;
    flex: 1;
}

/* Right Image Area */
.services-image-container {
    position: relative;
    height: 600px;
    border-radius: 30px;
    overflow: hidden;
    background: linear-gradient(135deg, #07509a 0%, #0a5fb8 100%);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    animation: fadeInRight 0.8s ease-out;
}

.services-image-container::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300%;
    height: 300%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 40%);
    transform: translate(-50%, -50%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.1); }
}

.services-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 20px;
    text-align: center;
    padding: 40px;
    position: relative;
    z-index: 1;
}

.services-image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Trust Badge */
.trust-badge-inline {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    margin-top: 40px;
    padding: 15px 25px;
    background: #07509a;
    color: #ffffff;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 5px 20px rgba(7, 80, 154, 0.2);
}

.trust-badge-number {
    font-size: 28px;
    font-weight: 700;
}

.trust-badge-text {
    font-size: 14px;
    opacity: 0.95;
}

/* CTA Button */
.services-main-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 30px;
    padding: 18px 40px;
    background: #BD2227;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 17px;
    border-radius: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(189, 34, 39, 0.2);
}

.services-main-cta:hover {
    background: #9e1c20;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(189, 34, 39, 0.3);
    color: #ffffff;
}

.cta-arrow {
    transition: transform 0.3s ease;
}

.services-main-cta:hover .cta-arrow {
    transform: translateX(3px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .services-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .services-image-container {
        height: 400px;
    }

    .services-content {
        text-align: center;
    }

    .services-description {
        margin-left: auto;
        margin-right: auto;
    }

    .service-links-grid {
        margin: 0 auto;
    }

    .trust-badge-inline {
        display: inline-flex;
        margin: 40px auto 0;
    }

    .services-main-cta {
        margin: 30px auto 0;
    }
}

@media (max-width: 768px) {
    .services-section {
        padding: 50px 15px;
    }

    .services-headline {
        font-size: 36px;
    }

    .services-description {
        font-size: 16px;
        margin-bottom: 40px;
    }

    .service-links-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
    }

    .services-image-container {
        height: 300px;
        border-radius: 20px;
    }

    .trust-badge-inline {
        flex-direction: column;
        text-align: center;
        gap: 5px;
    }
}

/* Animation */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ==============================================
   29. Blog Single Post Left Alignment
   ============================================== */
#BlogPostPageV1,
.blog-post-page {
    text-align: left !important;
}

#BlogPostPageV1 .content-style,
#BlogPostPageV1 article,
.blog-post-page .content-style,
.blog-post-page article {
    text-align: left !important;
}

#BlogPostPageV1 .bg-box.post,
.blog-post-page .bg-box.post {
    text-align: left !important;
}

/* Keep header centered for visual balance */
#BlogPostPageV1 header,
#BlogPostPageV1 .text-align.center-800,
.blog-post-page header {
    text-align: center;
}

/* Keep related posts section centered */
#BlogPostPageV1RelatedPostsHeader,
.related-posts .header {
    text-align: center;
}

/* Ensure paragraphs and content elements are left-aligned */
#BlogPostPageV1 p,
#BlogPostPageV1 ul,
#BlogPostPageV1 ol,
#BlogPostPageV1 h1,
#BlogPostPageV1 h2,
#BlogPostPageV1 h3,
#BlogPostPageV1 h4,
#BlogPostPageV1 h5,
#BlogPostPageV1 h6,
.blog-post-page p,
.blog-post-page ul,
.blog-post-page ol,
.blog-post-page h1,
.blog-post-page h2,
.blog-post-page h3,
.blog-post-page h4,
.blog-post-page h5,
.blog-post-page h6 {
    text-align: left !important;
}

/* ==============================================
   31. Enhanced Gravity Forms Styles
   ============================================== */
/* Override existing Gravity Forms styles with modern design */
.gform_wrapper {
    font-family: 'Source Sans Pro', 'Helvetica Neue', Arial, sans-serif !important;
}

/* Improved Field Spacing */
.gform_wrapper .gfield {
    margin-bottom: 1.5rem !important;
}

/* Modern Label Styling */
.gform_wrapper .gfield_label,
.gform_wrapper legend.gfield_label {
    font-weight: 600 !important;
    font-size: 0.95rem !important;
    color: #283056 !important;
    margin-bottom: 0.4rem !important;
    letter-spacing: 0.02em !important;
}

/* Required Field Indicator */
.gform_wrapper .gfield_required {
    color: #BD2227 !important;
    font-style: italic !important;
    font-size: 0.9em !important;
}

/* Enhanced Input Fields */
.gform_wrapper input[type="text"],
.gform_wrapper input[type="email"],
.gform_wrapper input[type="tel"],
.gform_wrapper input[type="url"],
.gform_wrapper input[type="number"],
.gform_wrapper input[type="date"],
.gform_wrapper select,
.gform_wrapper textarea {
    padding: 0.85rem 1.1rem !important;
    border: 2px solid #e5e7eb !important;
    border-radius: 6px !important;
    font-size: 0.95rem !important;
    transition: all 0.2s ease !important;
}

.gform_wrapper input[type="text"]:hover,
.gform_wrapper input[type="email"]:hover,
.gform_wrapper input[type="tel"]:hover,
.gform_wrapper input[type="url"]:hover,
.gform_wrapper input[type="number"]:hover,
.gform_wrapper input[type="date"]:hover,
.gform_wrapper select:hover,
.gform_wrapper textarea:hover {
    border-color: #d1d5db !important;
}

.gform_wrapper input[type="text"]:focus,
.gform_wrapper input[type="email"]:focus,
.gform_wrapper input[type="tel"]:focus,
.gform_wrapper input[type="url"]:focus,
.gform_wrapper input[type="number"]:focus,
.gform_wrapper input[type="date"]:focus,
.gform_wrapper select:focus,
.gform_wrapper textarea:focus {
    border-color: #07509a !important;
    box-shadow: 0 0 0 4px rgba(7, 80, 154, 0.08) !important;
    background-color: #fafbfc !important;
}

/* Name Fields Layout */
.gform_wrapper .ginput_container_name {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 1rem !important;
}

/* Address Layout - Modern Grid System */
.gform_wrapper .ginput_complex.ginput_container_address {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
}

/* Street Address - Full Width */
.gform_wrapper .ginput_complex.ginput_container_address .ginput_full.address_line_1 {
    grid-column: 1 / -1 !important;
    width: 100% !important;
}

/* City and State Row */
.gform_wrapper .ginput_complex.ginput_container_address .address_city {
    grid-column: 1 / span 1 !important;
    width: 100% !important;
}

.gform_wrapper .ginput_complex.ginput_container_address .address_state {
    grid-column: 2 / span 1 !important;
    width: 100% !important;
}

/* Apply grid to container for city/state row */
.gform_wrapper .ginput_complex.ginput_container_address {
    display: grid !important;
    grid-template-columns: 1.5fr 1fr !important;
    gap: 1rem !important;
}

/* Street takes full width */
.gform_wrapper .ginput_complex.ginput_container_address .ginput_full {
    grid-column: 1 / -1 !important;
}

/* ZIP Code - Align Left */
.gform_wrapper .ginput_complex.ginput_container_address .address_zip {
    grid-column: 1 / span 1 !important;
    width: 100% !important;
}

/* Clear any floats */
.gform_wrapper .gf_clear_complex {
    display: none !important;
}

/* Modern Checkbox Styling - Fixed Positioning */
.gform_wrapper .gfield_checkbox,
.gform_wrapper .gfield_radio {
    list-style: none !important;
    padding: 0 !important;
    margin: 0.5rem 0 !important;
}

.gform_wrapper .gchoice {
    position: relative !important;
    margin-bottom: 0.8rem !important;
    padding-left: 28px !important;
    min-height: 24px !important;
    display: block !important;
}

.gform_wrapper .gchoice input[type="checkbox"],
.gform_wrapper .gchoice input[type="radio"] {
    position: absolute !important;
    opacity: 0 !important;
    cursor: pointer !important;
    left: 0 !important;
    top: 2px !important;
    width: 20px !important;
    height: 20px !important;
    z-index: 1 !important;
}

.gform_wrapper .gchoice label {
    cursor: pointer !important;
    display: inline-block !important;
    padding-left: 0 !important;
    line-height: 1.5 !important;
    user-select: none !important;
    font-weight: normal !important;
    color: #4a5568 !important;
    transition: color 0.2s ease !important;
    margin: 0 !important;
}

/* Custom Checkbox Design - Properly Positioned */
.gform_wrapper .gchoice label:before {
    content: '' !important;
    position: absolute !important;
    left: 0 !important;
    top: 2px !important;
    width: 20px !important;
    height: 20px !important;
    border: 2px solid #d1d5db !important;
    border-radius: 4px !important;
    background-color: #fff !important;
    transition: all 0.2s ease !important;
}

/* Custom Radio Design */
.gform_wrapper .gfield_radio .gchoice label:before {
    border-radius: 50% !important;
}

/* Hover States */
.gform_wrapper .gchoice:hover label {
    color: #07509a !important;
}

.gform_wrapper .gchoice:hover label:before {
    border-color: #07509a !important;
}

/* Checked State - Checkbox */
.gform_wrapper .gchoice input[type="checkbox"]:checked ~ label:before {
    background-color: #07509a !important;
    border-color: #07509a !important;
}

.gform_wrapper .gchoice input[type="checkbox"]:checked ~ label:after {
    content: '' !important;
    position: absolute !important;
    left: 7px !important;
    top: 6px !important;
    width: 6px !important;
    height: 11px !important;
    border: solid white !important;
    border-width: 0 2px 2px 0 !important;
    transform: rotate(45deg) !important;
}

/* Checked State - Radio */
.gform_wrapper .gfield_radio .gchoice input[type="radio"]:checked ~ label:before {
    border-color: #07509a !important;
}

.gform_wrapper .gfield_radio .gchoice input[type="radio"]:checked ~ label:after {
    content: '' !important;
    position: absolute !important;
    left: 6px !important;
    top: 8px !important;
    width: 8px !important;
    height: 8px !important;
    border-radius: 50% !important;
    background-color: #07509a !important;
}

/* Focus States */
.gform_wrapper .gchoice input[type="checkbox"]:focus ~ label:before,
.gform_wrapper .gchoice input[type="radio"]:focus ~ label:before {
    box-shadow: 0 0 0 4px rgba(7, 80, 154, 0.08) !important;
}

/* Submit Button Enhancement */
.gform_wrapper .gform_button {
    background-color: #07509a !important;
    color: #fff !important;
    padding: 1rem 2.5rem !important;
    font-size: 1rem !important;
    font-weight: 600 !important;
    border: none !important;
    border-radius: 6px !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1) !important;
}

.gform_wrapper .gform_button:hover {
    background-color: #BD2227 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 8px rgba(0,0,0,0.15) !important;
}

.gform_wrapper .gform_button:active {
    transform: translateY(0) !important;
}

/* Responsive Design for Address Fields */
@media screen and (max-width: 768px) {
    .gform_wrapper .ginput_container_name {
        grid-template-columns: 1fr !important;
    }
    
    /* Stack address fields on mobile */
    .gform_wrapper .ginput_complex.ginput_container_address {
        grid-template-columns: 1fr !important;
    }
    
    .gform_wrapper .ginput_complex.ginput_container_address .address_city,
    .gform_wrapper .ginput_complex.ginput_container_address .address_state,
    .gform_wrapper .ginput_complex.ginput_container_address .address_zip {
        grid-column: 1 / -1 !important;
        width: 100% !important;
    }
    
    .gform_wrapper .gform_button {
        width: 100% !important;
    }
}

/* Field Description Styling */
.gform_wrapper .gfield_description {
    font-size: 0.875rem !important;
    color: #6c757d !important;
    margin-top: 0.3rem !important;
    line-height: 1.4 !important;
}

/* Validation Error Styling */
.gform_wrapper .gfield_error {
    background-color: #fef2f2 !important;
    border-left: 4px solid #BD2227 !important;
    padding: 0.75rem !important;
    margin-bottom: 1.5rem !important;
    border-radius: 0 6px 6px 0 !important;
}

.gform_wrapper .gfield_error input,
.gform_wrapper .gfield_error select,
.gform_wrapper .gfield_error textarea {
    border-color: #BD2227 !important;
}

.gform_wrapper .validation_message {
    color: #BD2227 !important;
    font-size: 0.875rem !important;
    margin-top: 0.3rem !important;
    font-weight: 500 !important;
}

/* Confirmation Message */
.gform_confirmation_wrapper {
    background: #d4edda !important;
    border: 2px solid #28a745 !important;
    border-radius: 6px !important;
    padding: 1.5rem !important;
    margin: 2rem 0 !important;
    text-align: center !important;
}

.gform_confirmation_message {
    color: #155724 !important;
    font-size: 1.1rem !important;
    font-weight: 500 !important;
}

/* ==============================================
   32. Dynamic Offers Widget Styles
   ============================================== */
.sierra-offers-widget {
    padding: 40px 20px;
    background: transparent;
    max-width: 1480px;
    margin: 0 auto;
}

.sierra-offers-widget .offer-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 100%;
}

.sierra-offers-widget .offer-box {
    background: white;
    border-radius: 16px;
    padding: 40px 30px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    min-height: 420px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid #e9ecef;
}

.sierra-offers-widget .offer-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

/* Box 1 - Trust & Reviews */
.sierra-offers-widget .box-1::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #4285f4 0%, #34a853 50%, #fbbc04 100%);
}

.sierra-offers-widget .trust-badge {
    text-align: center;
    padding-bottom: 25px;
    border-bottom: 1px solid #e9ecef;
    margin-bottom: 25px;
}

.sierra-offers-widget .google-logo {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 15px;
    color: #5f6368;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.sierra-offers-widget .stars {
    font-size: 24px;
    color: #fbbc04;
    margin: 10px 0;
    letter-spacing: 2px;
}

.sierra-offers-widget .rating-text {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 5px;
    color: #202124;
}

.sierra-offers-widget .review-count {
    font-size: 14px;
    color: #5f6368;
    font-weight: 500;
}

.sierra-offers-widget .trust-points h3 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #202124;
    font-weight: 600;
}

.sierra-offers-widget .trust-item {
    position: relative;
    margin-bottom: 16px;
    font-size: 15px;
    color: #5f6368;
    padding-left: 24px;
    line-height: 1.4;
}

.sierra-offers-widget .trust-item::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #08539F;
    font-weight: bold;
    font-size: 14px;
}

/* Box 2 - Special Offer (Dynamic) */
.sierra-offers-widget .box-2 {
    background: #08539F;
    color: white;
    text-align: center;
}

.sierra-offers-widget .offer-tag {
    background: #ed1c24;
    display: inline-block;
    padding: 6px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 25px;
    color: white;
}

.sierra-offers-widget .price-display {
    position: relative;
    margin: 30px 0;
}

.sierra-offers-widget .price {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    color: #ffffff;
    word-break: break-word;
}

.sierra-offers-widget .offer-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.3;
    color: #ffffff;
}

.sierra-offers-widget .offer-details {
    font-size: 15px;
    opacity: 0.95;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #ffffff;
    padding: 0 10px;
}

.sierra-offers-widget .guarantee-badge {
    border-top: 2px solid rgba(255,255,255,0.3);
    padding-top: 15px;
    margin-top: auto;
    font-weight: 600;
    font-size: 16px;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Box 3 - CTA */
.sierra-offers-widget .box-3 {
    background: #f8f9fa;
    text-align: center;
    border: 2px solid #08539F;
}

.sierra-offers-widget .cta-icon {
    font-size: 48px;
    margin-bottom: 20px;
    background: #e3f2fd;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
}

.sierra-offers-widget .cta-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #202124;
}

.sierra-offers-widget .cta-subtitle {
    font-size: 16px;
    margin-bottom: 25px;
    color: #5f6368;
}

.sierra-offers-widget .phone-number {
    font-size: 26px;
    font-weight: 700;
    color: #202124;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.sierra-offers-widget .phone-number a {
    color: #202124;
    text-decoration: none;
    transition: color 0.3s ease;
}

.sierra-offers-widget .phone-number a:hover {
    color: #08539F;
}

.sierra-offers-widget .phone-icon {
    background: #08539F;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.sierra-offers-widget .availability {
    margin-top: 20px;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #5f6368;
    position: relative;
}

.sierra-offers-widget .availability::before {
    content: '';
    width: 8px;
    height: 8px;
    background: #34a853;
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { 
        opacity: 1;
        transform: scale(1);
    }
    50% { 
        opacity: 0.6;
        transform: scale(1.2);
    }
}

/* Accent line animation */
.sierra-offers-widget .accent-line {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: #08539F;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.sierra-offers-widget .offer-box:hover .accent-line {
    transform: scaleX(1);
}

/* Responsive Design */
@media (max-width: 992px) {
    .sierra-offers-widget .offer-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .sierra-offers-widget .offer-box {
        min-height: auto;
    }
}

@media (max-width: 768px) {
    .sierra-offers-widget {
        padding: 20px 15px;
    }
    
    .sierra-offers-widget .offer-box {
        padding: 30px 20px;
    }
    
    .sierra-offers-widget .price {
        font-size: 42px;
    }
    
    .sierra-offers-widget .phone-number {
        font-size: 22px;
    }
    
    .sierra-offers-widget .cta-title {
        font-size: 24px;
    }
}

/* ==============================================
   End of Consolidated CSS
   ============================================== */