/*
Theme Name: Beaver Builder Child Theme
Theme URI: http://www.wpbeaverbuilder.com
Version: 1.0
Description: An example child theme that can be used as a starting point for custom development.
Author: The Beaver Builder Team
Author URI: http://www.fastlinemedia.com
template: bb-theme
*/

/* Use This File To Add Site Specific Styles and Override Theme and Plugin Defaults CSS
 * Don't Edit the original CSS files
*/






/*!  RESET & BASE ===== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 1.7;
    color: var(--gray-800);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

a {
    color: var(--red);
}

a:hover {
    color: var(--red-light);
}

/*! ===== TYPOGRAPHY ===== */

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    margin-bottom: 1.6rem;
    color: var(--blue);
    font-weight: 700;
}

h1 {
    font-size: var(--h1-size);
    font-weight: 800;
}

h2 {
    font-size: var(--h2-size);
    font-weight: 800;
}

h3 {
    font-size: var(--h3-size);
}

h4 {
    font-size: var(--h4-size);
}

h5 {
    font-size: var(--h5-size);
}

h6 {
    font-size: var(--h6-size);
}

/* Home page hero sizing (only h1-h3 differ) */
.home h1 {
    font-size: var(--h1-home-size);
}

.home h2 {
    font-size: var(--h2-home-size);
}

.home h3 {
    font-size: var(--h3-home-size);
}

p {
    margin-bottom: 1.6rem;
}

ul,
ol {
    padding-left: 60px;
    margin-bottom: 1.6rem;
}

.row-bg-pale-ice {
    background-color: var(--ice-pale);
}

.row-bg-blue-dark {
    background-color: var(--blue-dark);
}

.row-bg-grey-light {
    background-color: var(--gray-100);
}

.row-bg-blue-grad {
    background: var(--blue-gradient-bg);
}

/*! ROW DIVIDERS ===== */

.fl-builder-shape-layer svg {
    height: clamp(20px, 4vw, 80px) !important;
}

.fl-builder-top-edge-layer svg {
    top: -1px !important;
}

.fl-builder-bottom-edge-layer svg {
    bottom: -1px !important;
}


/*! Light text on dark backgrounds */
.rw-dark-bg h1,
.rw-dark-bg h2,
.rw-dark-bg h3,
.rw-dark-bg h4,
.rw-dark-bg h5,
.rw-dark-bg h6,
.rw-dark-bg p,
.rw-dark-bg li,
.light h1,
.light h2,
.light h3,
.light h4,
.light h5,
.light h6,
.light p,
.light li {
    color: var(--white);
}

.rw-dark-bg .gfield_checkbox label {
    color: var(--white);
}

/*! BUTTONS ===== */

.btn,
.fl-module-button a.fl-button,
.gform_wrapper.gravity-theme .gform_footer button,
.gform_wrapper.gravity-theme .gform_footer input,
.gform_wrapper.gravity-theme .gform_page_footer button,
.gform_wrapper.gravity-theme .gform_page_footer input {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 30px 15px !important;
    font-family: var(--font-heading) !important;
    font-size: 18px;
    font-weight: 700 !important;
    color: var(--white);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 50px;
    transition: all var(--transition);
    cursor: pointer;
    border: none;
}

.fl-module-button a.fl-button,
.gform_wrapper.gravity-theme .gform_footer button,
.gform_wrapper.gravity-theme .gform_footer input,
.gform_wrapper.gravity-theme .gform_page_footer button,
.gform_wrapper.gravity-theme .gform_page_footer input {
    background: var(--fire-gradient);
    color: var(--white);
}

.fl-module-button a.fl-button span {
    color: var(--white);
}

.fl-module-button a.fl-button:hover,
.gform_wrapper.gravity-theme .gform_footer button:hover,
.gform_wrapper.gravity-theme .gform_footer input:hover,
.gform_wrapper.gravity-theme .gform_page_footer button:hover,
.gform_wrapper.gravity-theme .gform_page_footer input:hover {
    background: var(--fire-gradient-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-orange);
    border-radius: 50px;
}

.fl-module-button a.fl-button:hover span,
.fl-module-button a.fl-button:visited span {
    color: var(--white);
}

.btn-primary {
    background: var(--red);
    color: var(--white) !important;
}

.btn-primary:hover {
    background: var(--red-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-red);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-color: var(--white);
}

.btn-dark {
    background: var(--blue);
    color: var(--white);
}

.btn-dark:hover {
    background: var(--blue-dark);
    color: var(--white);
    transform: translateY(-2px);
}

.rw-align-center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

/*! LAYOUT ===== */

.rw-remove-col-padding {
    margin-left: -15px;
    margin-right: -15px;
}

.container {
    max-width: 100%;
    padding-left: 20px;
    padding-right: 20px;
}

/*! STICKY SIDEBAR ===== */

@media (min-width: 768px) {
    .sticky {
        position: sticky;
        top: 0;
    }

    .page-sidebar.sticky {
        top: 140px;
    }

    .shiftnav-wrap {
        overflow: visible !important;
    }
}

/* !General Layout ---------------------------------------*/

.fl-row-content-wrap {
    padding-top: var(--section-padding);
    padding-bottom: var(--section-padding);
}

.fl-row-has-layers .fl-row-content-wrap {
    padding-top: var(--section-padding-div);
    padding-bottom: var(--section-padding-div);
}

.fl-page {
    padding-top: 140px !important;
}

@media (min-width: 601px) {
    .admin-bar .fl-page {
        top: 0;
    }
}

@media (min-width: 768px) {
    .fl-page {
        padding-top: 170px !important;
    }
}

@media (min-width: 769px) {
    .container {
        padding-left: 40px;
        padding-right: 40px;
    }
}

@media (min-width: 992px) {
    .fl-row-fixed-width {
        max-width: var(--container-max) !important;
    }

    .fl-page {
        padding-top: 188px !important;
    }

}

@media (min-width: 1100px) {
    .fl-full-width .container {
        max-width: 100%;
    }

    .fl-full-width .fl-page-header .container {
        width: 100%;
        max-width: 100%;
    }

}

@media (max-width: 768px) {
    .fl-col-small:not(.fl-col-small-full-width) {
        max-width: 100%;
    }
}

/*! HOME HERO ===== */

.rw-home-hero .fl-row-content-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    background-size: cover;
    background-position: center;
    padding: clamp(40px, 8vw, 100px) 20px 12.5vw !important;
    /*background: linear-gradient(135deg, var(--ice-light) 0%, var(--ice) 25%, var(--blue-mid) 50%, var(--blue) 75%, var(--red) 100%);*/
    max-height: 780px;
}

.rw-home-hero .fl-col-content {
    display: flex;
    width: 100%;
    align-items: center;
}

.hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 720px;
    margin: 0 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/*! Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(42, 82, 152, 0.3);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(42, 82, 152, 0.4);
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 8px 18px;
    border-radius: 50px;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease both;
}

.hero-badge svg {
    width: 16px;
    height: 16px;
}

/*
.hero-badge::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--orange);
    border-radius: 50%;
    animation: rwpulse 2s ease-in-out infinite;
}
*/

@keyframes rwpulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }
}

/*! Heading & Copy */
.hero-heading {
    font-family: var(--font-heading);
    color: var(--white);
    text-align: center;
    font-weight: 800;
    font-size: clamp(2.4rem, 5vw, 4.2rem);
    line-height: 1.08;
    text-transform: uppercase;
    margin-bottom: 18px;
    animation: fadeInUp 0.8s ease 0.15s both;
    text-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
}

.hero-heading .ice-text {
    color: var(--blue);
}

.hero-heading .fire {
    color: var(--red);
}

.hero-tagline {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--white);
    font-weight: 700;
    opacity: 0.9;
    margin-bottom: 30px;
    max-width: 440px;
    line-height: 1.08;
    text-align: center;
    animation: fadeInUp 0.8s ease 0.3s both;
    text-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
}

.google-rated {
    margin-bottom: 30px;
    animation: fadeInUp 0.8s ease 0.45s both;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
}

/*! CTAs */
.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.btn-fire {
    background: linear-gradient(135deg, var(--fire-orange), var(--red));
    color: var(--white);
    box-shadow: 0 4px 20px rgba(232, 98, 28, 0.4);
}

.btn-fire:hover {
    transform: translateY(-2px);
    color: var(--white);
    box-shadow: 0 8px 30px rgba(232, 98, 28, 0.5);
}

.btn-ice {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(6px);
    border: 2px solid rgba(255, 255, 255, 0.4);
    color: var(--white);
}

.btn-ice:hover {
    background: rgba(255, 255, 255, 0.22);
    color: var(--white);
    transform: translateY(-2px);
}

/*! Hero right — mascot area 
.hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: fadeInUp 1s ease 0.3s both;
    margin-bottom: -120px;
}

.hero-visual .mascot-wrapper {
    position: relative;
    width: 100%;
    max-width: 90%;
}

.hero-visual .mascot-wrapper img {
    width: 100%;
    filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.4));
    animation: float 4s ease-in-out infinite;
}
*/

/*! Floating glow behind mascot 
.mascot-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 575px;
    height: 575px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(123, 196, 232, 0.4) 0%, rgba(196, 18, 48, 0.3) 50%, transparent 70%);
    filter: blur(40px);
    z-index: -1;
    animation: pulse-glow 4s ease-in-out infinite alternate;
}
*/

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-14px);
    }
}

@keyframes pulse-glow {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }

    100% {
        transform: translate(-50%, -50%) scale(1.15);
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/*! OFFERS BANNER
═══════════════════════════════════════ */
.offers-banner {
    background: var(--ice-pale);
    padding: 40px 0;
}

.offers-grid {
    gap: 24px;
}

.offer-card {
    text-align: center;
    padding: 28px 20px;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(13, 27, 42, 0.06);
    border: 1px solid var(--gray-200);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.offer-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(13, 27, 42, 0.1);
}

.offer-icon {
    width: 52px;
    height: 52px;
    margin: 0 auto 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
}

.offer-icon.fire-bg {
    background: linear-gradient(135deg, #FFF0E0, #FFE0CC);
}

.offer-icon.ice-bg {
    background: linear-gradient(135deg, #E0F0FF, #CCE5FF);
}

.offer-icon.mixed-bg {
    background: linear-gradient(135deg, #E0F0FF, #FFE0CC);
}

.offer-icon svg {
    width: 26px;
    height: 26px;
}

.offer-card h3 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--blue-dark);
    margin-bottom: 6px;
    text-transform: uppercase;
}

.offer-card p {
    font-size: 0.88rem;
    color: var(--gray-600);
    line-height: 1.5;
}




/*! SECTION HEADER
================================================== */
.section-header {
    text-align: center;
    max-width: 1300px;
    margin: 0 auto 50px;
    position: relative;
    z-index: 1;
}

.section-header--left {
    text-align: left;
}

.section-label {
    display: inline-block;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--red);
    margin-bottom: 10px;
}

.section-label--yellow {
    color: var(--fire-amber);
}

.section-header h2 {
    font-weight: 800;
    font-size: clamp(1.8rem, 3.5vw, 4rem);
    text-transform: uppercase;
    line-height: 1.1;
}

.section-header p {
    margin: 14px auto 0;
    font-size: 1rem;
}


/*! Trust Badges */
.trust-badges {
    gap: 16px !important;
    margin-top: 30px;
}

.trust-badges::before,
.trust-badges::after {
    display: none !important;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: background 0.3s;
}

.trust-badge:hover {
    background: rgba(255, 255, 255, 0.1);
}

.trust-badge-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(123, 196, 232, 0.15);
}

.trust-badge-icon svg {
    width: 20px;
    height: 20px;
    color: var(--ice);
}

.trust-badge span {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}






/*! Modality Grid */
.modality-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    position: relative;
}

.modality-badge {
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    text-align: center;
    font-size: 14px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    transition: all 0.25s;
}

.modality-badge:hover {
    background: rgba(227, 94, 46, 0.15);
    border-color: var(--orange);
    color: var(--orange-light);
    transform: translateY(-2px);
}

@media (min-width: 600px) {
    .intro-features {
        grid-template-columns: repeat(2, 1fr);
    }

    .modality-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/*! Services Grid */

.services-grid {
    gap: 24px;
}

.service-card {
    position: relative;
    padding: 32px 28px;
    border-radius: 16px;
    background: var(--gray-100);
    border: 1px solid var(--gray-200);
    transition: all 0.35s ease;
    overflow: hidden;

}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    border-radius: 16px 16px 0 0;
    background: linear-gradient(90deg, var(--ice), var(--blue-mid));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card.fire-accent::before {
    background: linear-gradient(90deg, var(--fire-amber), var(--red));
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(13, 27, 42, 0.08);
    background: var(--white);
    text-decoration: none;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: var(--blue);
    color: var(--white);
}

.service-card.fire-accent .service-icon {
    background: linear-gradient(135deg, var(--fire-orange), var(--red));
}

.service-icon svg {
    width: 24px;
    height: 24px;
}

.service-card h3 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 2rem;
    color: var(--blue-dark);
    margin-bottom: 8px;
    text-transform: uppercase;
}

.service-card p {
    font-size: 1rem;
    color: var(--gray-600);
    line-height: 1.6;
}

@media (min-width: 600px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 900px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/*! SERVICE AREA SECTION
═══════════════════════════════════════ */
.area-content .section-label {
    color: var(--red);
}

.area-content h2 {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: clamp(1.8rem, 3.5vw, 2.4rem);
    text-transform: uppercase;
    color: var(--blue-dark);
    line-height: 1.1;
    margin-bottom: 14px;
}

.area-content>p {
    color: var(--gray-600);
    margin-bottom: 28px;
    line-height: 1.7;
}

.counties-grid {
    gap: 14px !important;
}

.county-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: var(--ice-pale);
    border-radius: 12px;
    border: 1px solid var(--ice-light);
    transition: all 0.3s;
}

.county-item:hover {
    background: var(--ice-light);
    transform: translateX(4px);
    text-decoration: none;
}

.county-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--blue-mid);
    flex-shrink: 0;
}

.county-item span {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    font-size: 1.2rem;
    text-transform: uppercase;
    color: var(--blue-dark);
}

.area-types {
    margin-top: 24px;
    display: flex;
    gap: 16px;
}

.area-type {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.2rem;
    text-transform: uppercase;
    color: var(--gray-600);
}

.area-type svg {
    width: 20px;
    height: 20px;
    color: var(--red);
}

/* Brands side */
.brands-side {
    text-align: center;
}

.brands-side h3 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gray-600);
    margin-bottom: 30px;
}

.brands-logos {
    gap: 20px !important;
}

.brand-item {
    padding: 28px 20px;
    background: var(--gray-100);
    border-radius: 14px;
    border: 1px solid var(--gray-200);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.1rem;
    text-transform: uppercase;
    color: var(--blue);
    letter-spacing: 0.04em;
    transition: all 0.3s;
    height: 208px;
}

.brand-item:hover {
    background: var(--white);
    box-shadow: 0 4px 15px rgba(13, 27, 42, 0.08);
}

/* ========== TESTIMONIALS ========== */

.testimonials {
    position: relative;
}

.testimonials .section-header h2 {
    color: var(--navy);
}

.testimonials .section-header p {
    color: var(--gray-600);
}

/* ===== CTA ===== */

.cta-section {
    display: flex;
    flex-direction: row;
    align-items: center;
    background: url('/wp-content/uploads/2026/03/cta-bg.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 24px;
    padding: clamp(25px, 6vw, 80px);
    position: relative;
    overflow: hidden;
}

.cta-visual {
    width: 30%;
    padding-left: 70px;
    padding-right: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: fadeInUp 1s ease 0.3s both;
}

.cta-visual .mascot-wrapper {
    position: relative;
    width: 100%;
    max-width: 90%;
}

.cta-visual .mascot-wrapper img {
    width: 100%;
    filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.4));
    animation: float 4s ease-in-out infinite;
}

/*! Floating glow behind mascot */
.cta-visual .mascot-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(123, 196, 232, 0.4) 0%, rgba(196, 18, 48, 0.3) 50%, transparent 70%);
    filter: blur(40px);
    z-index: -1;
    animation: pulse-glow 4s ease-in-out infinite alternate;
}

.cta-text {
    width: 70%
}

.cta-section h2 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
    position: relative;
}

.cta-section p {
    color: var(--white-80);
    max-width: 500px;
    margin: 0 0 32px;
    position: relative;
}

.cta-section .cta-buttons {
    display: flex;
    justify-content: flex-start;
    gap: 16px;
    flex-wrap: wrap;
    position: relative;
}

.cta-section .cta-phone {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    position: relative;
    flex-direction: column;
}

.cta-section .cta-phone a {
    color: var(--white);
    font-weight: 700;
    text-decoration: none;
}

.cta-section .cta-phone a:hover {
    color: var(--orange-light);
}

/* CTA Button Variants */
.btn-white {
    background: var(--white);
    color: var(--blue);
}

.btn-white:hover {
    background: var(--cream);
    transform: translateY(-2px);
}

.btn-outline-white {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.4);
    color: var(--white);
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
    color: var(--white);
}

@media (min-width: 560px) {

    .cta-section {
        align-items: flex-start;
    }

    .cta-visual {
        padding-left: 0;
        padding-right: 10px;
        margin-top: 4%;
    }

    .cta-visual .mascot-glow {
        width: 100px;
        height: 100px;
    }

}

@media (min-width: 769px) {

    .cta-visual {
        margin-top: 3%;
    }

}

@media (min-width: 992px) {

    .cta-visual {
        margin-top: 2%;
    }

}

@media (min-width: 1280px) {

    .cta-section {
        align-items: center;
    }

    .cta-visual {
        margin-top: 0;
        padding-left: 70px;
        padding-right: 20px;
    }

}

@media (max-width: 559px) {

    .cta-visual {
        display: none;
    }

    .cta-text {
        width: 100%;
    }

}

/*! GLOBAL CONTACT FORM ========== */

.rw-general-contact-row .section-header h2 {
    color: var(--white);
}

/*! Partners Logo Row ========== */

.rw-logo-row {
    position: relative;
}

.rw-logo-row .section-header h2 {
    color: var(--navy);
}

/*! ============================================================
   CARDS & GRIDS — Consolidated
   ============================================================ */

/*! ===== CARD BASE =====
   Apply .rw-card as the base, then add modifiers:
   .rw-card--shadow    → white bg + shadow (default card on white/cream pages)
   .rw-card--bordered  → white bg + border only (lighter feel)
   .rw-card--accent    → gray bg + orange left border
   .rw-card--blue      → blue gradient bg + white text
   .rw-card--glass     → translucent white on dark backgrounds
============================================================ */

.rw-card {
    border-radius: var(--card-border-radius);
    padding: var(--card-padding);
    transition: all var(--transition-slow);
}

.rw-card--shadow {
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

.rw-card--bordered {
    background: var(--white);
    border: 1px solid var(--gray-200);
}

.rw-card--accent {
    background: var(--gray-100);
    border-left: 4px solid var(--orange);
}

.rw-card--blue {
    background: linear-gradient(135deg, var(--blue), var(--blue-dark));
    color: var(--white);
}

.rw-card--blue h3,
.rw-card--blue h4 {
    color: var(--white);
    margin-bottom: 16px;
}

.rw-card--blue p {
    opacity: 0.9;
    margin-bottom: 24px;
}

.rw-card--glass {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.rw-card--glass:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-4px);
}

/* Card headings (shared) */
.rw-card h4 {
    color: var(--navy);
    margin-bottom: 20px;
}


/*! ===== DOT LIST =====
   Replaces: .rw-card-on-white-list, .rw-white-card-list, .capabilities-list
   Use: <ul class="rw-dot-list"> or add .rw-dot-list--2col for two columns
============================================================ */

ul.rw-dot-list,
ol.rw-dot-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px 24px;
    padding-left: 5px;
    margin-bottom: 0;
}

.rw-dot-list li {
    font-size: 15px;
    color: var(--gray-600);
    display: flex;
    align-items: center;
    gap: 10px;
}

.rw-dot-list li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--orange);
    border-radius: 50%;
    flex-shrink: 0;
}

.rw-dot-list--2col {
    grid-template-columns: 1fr 1fr;
}

@media (max-width: 600px) {
    .rw-dot-list--2col {
        grid-template-columns: 1fr;
    }
}


/*! ===== PILL LIST =====
   Gray pill-style list items (used in white-card-bullets-gray-pill)
   Use: <ul class="rw-pill-list">
============================================================ */

ul.rw-pill-list {
    list-style: none;
    display: grid;
    padding-left: 0;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.rw-pill-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-600);
    padding: 10px 14px;
    background: var(--gray-100);
    border-radius: 8px;
    transition: all 0.2s;
}

.rw-pill-list li:hover {
    background: rgba(54, 98, 147, 0.08);
    color: var(--blue);
}

.rw-pill-list .cap-icon {
    width: 8px;
    height: 8px;
    background: var(--orange);
    border-radius: 50%;
    flex-shrink: 0;
}

@media (max-width: 600px) {
    ul.rw-pill-list {
        grid-template-columns: 1fr;
    }
}


/*! ===== CHECK LIST =====
   Vertical list with orange circle check icons
   Use: <ul class="rw-check-list"> with <span class="check-icon"><svg>...</svg></span>
============================================================ */

ul.rw-check-list,
ol.rw-check-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding-left: 5px;
    margin-bottom: 0;
}

.rw-check-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.5;
}

.rw-check-list .check-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, var(--orange), var(--orange-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

.rw-check-list .check-icon svg {
    width: 13px;
    height: 13px;
    stroke: var(--white);
    stroke-width: 3;
    fill: none;
    color: var(--white);
}

/* Check list on blue card — white text, orange-light icons */
.rw-card--blue .rw-check-list li {
    color: var(--white);
    margin-bottom: 16px;
    font-size: 15px;
}

.rw-card--blue .rw-check-list li:last-child {
    margin-bottom: 0;
}

.rw-card--blue .rw-check-list li svg {
    width: 20px;
    height: 20px;
    min-width: 24px;
    min-height: 24px;
    color: var(--orange-light);
    margin-top: 2px;
}

/*! ===== CARD ICON =====
   Shared icon container for grid cards
   Modifiers: --blue (default), --orange, --blue-solid
============================================================ */

.card-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.card-icon svg {
    width: 24px;
    height: 24px;
    stroke-width: 1.5;
    fill: none;
}

.card-icon--blue {
    background: linear-gradient(135deg, rgba(54, 98, 147, 0.1), rgba(54, 98, 147, 0.05));
}

.card-icon--blue svg {
    stroke: var(--blue);
    color: var(--blue);
}

.card-icon--blue-solid {
    background: linear-gradient(135deg, var(--blue), var(--blue-dark));
}

.card-icon--blue-solid svg {
    color: var(--white);
}

.card-icon--orange {
    background: var(--orange);
}

.card-icon--orange svg {
    color: var(--white);
}

/* Larger icon variant (for icon-cards-grid) */
.card-icon--lg {
    width: 64px;
    height: 64px;
    border-radius: 16px;
}

.card-icon--lg svg {
    width: 30px;
    height: 30px;
}

/* Centered icon (for centered card layouts) */
.card-icon--center {
    margin: 0 auto 20px;
}


/*! ===== GRIDS =====
   Base grid + column modifiers
   Use: <div class="rw-grid rw-grid--3col">
============================================================ */

.rw-grid {
    display: grid;
    gap: 24px;
    position: relative;
    z-index: 1;
}

.rw-grid::before,
.rw-grid::after {
    content: none !important;
}

.rw-grid--2col {
    grid-template-columns: repeat(2, 1fr);
}

.rw-grid--3col {
    grid-template-columns: repeat(3, 1fr);
}

.rw-grid--4col {
    grid-template-columns: repeat(4, 1fr);
}

.rw-grid--5col {
    grid-template-columns: repeat(5, 1fr);
}

.rw-grid--6col {
    grid-template-columns: repeat(6, 1fr);
}

@media (max-width: 991px) {

    .rw-grid--4col,
    .rw-grid--5col,
    .rw-grid--6col {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 899px) {
    .rw-grid--3col {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {

    .rw-grid--2col,
    .rw-grid--3col,
    .rw-grid--4col,
    .rw-grid--5col,
    .rw-grid--6col {
        grid-template-columns: 1fr;
    }
}

/*! Grid card text (shared across all grid cards) */
.rw-grid .rw-card h3,
.rw-grid .rw-card h4 {
    font-size: 18px;
    color: var(--navy);
    margin-bottom: 10px;
}

.rw-grid .rw-card p {
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.6;
    opacity: 0.7;
}

.rw-grid .rw-card ul {
    text-align: left;
    padding-left: 30px;
}

.rw-grid .rw-card li {
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.6;
    opacity: 0.7;
}

.rw-dark-bg .rw-grid .rw-card h3,
.rw-dark-bg .rw-grid .rw-card h4,
.rw-dark-bg .rw-grid .rw-card p,
.rw-dark-bg .rw-grid .rw-card li {
    color: var(--white);
}

/* Hover lift for grid cards */
.rw-grid .rw-card--bordered:hover,
.rw-grid .rw-card--shadow:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: transparent;
}

/* Glass card headings on dark bg */
.rw-grid .rw-card--glass h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.rw-grid .rw-card--glass p {
    font-size: 15px;
    opacity: 0.7;
    margin-bottom: 16px;
}

/* Cream bg grid card overrides */
.cream-background .rw-grid .rw-card--shadow:hover {
    background: var(--white);
}


/*! ===== TAGS =====
   Tag/badge pills inside cards
============================================================ */

.rw-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.rw-tag {
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
}

.rw-tag--light {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.rw-tag--muted {
    background: var(--cream);
    color: var(--gray-600);
    padding: 6px 12px;
    font-size: 13px;
}


/*! ===== BADGES ===== */

.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 12px 16px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 600;
}

.badge svg {
    width: 16px;
    height: 16px;
}

.badge--blue {
    background: var(--blue);
    color: var(--white);
}

.badge--navy {
    background: var(--navy);
    color: var(--white);
    padding: 10px 18px;
    border-radius: 6px;
    font-size: 14px;
}

.badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}


/*! ===== EYEBROW ===== */

.eyebrow {
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--red) !important;
    margin-bottom: 12px;
}


/*! ===== PLATFORM FEATURES ===== */

.platform-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.platform-feature {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    background: var(--gray-100);
    border-radius: 8px;
}

.platform-feature svg {
    width: 20px;
    height: 20px;
    color: var(--orange);
    flex-shrink: 0;
    margin-top: 2px;
}

.platform-feature span {
    font-size: 15px;
    color: var(--gray-800);
}

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

/*! ===== GLOBAL SECTION ===== */

.global-section {
    background: var(--white);
    text-align: center;
}

.global-section .container {
    max-width: 800px;
}

.global-section h2 {
    color: var(--navy);
}

.global-section p {
    color: var(--gray-600);
    font-size: 18px;
}



/*! ── PRICING TABLE ── */
.plan-cards-row {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.plan-card {
    background: #fff;
    border-radius: var(--card-border-radius);
    width: 100%;
    max-width: 440px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.plan-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.35);
}

/*! ── Card Headers ── */
.plan-header {
    padding: var(--card-padding);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.plan-card.silver .plan-header {
    background: linear-gradient(135deg, #6b7f96 0%, #8a9bae 40%, #a4b5c7 100%);
}

.plan-card.gold .plan-header {
    background: linear-gradient(135deg, #b8860b 0%, #d4a017 40%, #e6b830 100%);
}

.plan-badge {
    display: inline-block;
    font-family: var(--font-heading);
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1.3;
    letter-spacing: 1px;
    font-size: 2rem;
    color: #fff;
    position: relative;
    z-index: 1;
}

.plan-price {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 2.8rem;
    line-height: 1.3;
    color: #fff;
    margin: 12px 0 0;
    position: relative;
    z-index: 1;
}

.plan-price span {
    font-size: 1.4rem;
    font-weight: 400;
    opacity: 0.85;
    letter-spacing: 0.5px;
}

/*! ── Popular badge ── */
.popular-tag {
    position: absolute;
    top: 16px;
    right: -32px;
    background: var(--red);
    color: #fff;
    font-family: var(--font-heading);
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 2px;
    padding: 5px 40px;
    transform: rotate(45deg);
    z-index: 5;
    box-shadow: 0 2px 8px rgba(196, 18, 48, 0.4);
}

/*! ── Plan Highlights ── */
.plan-highlights {
    padding: var(--card-padding);
    padding-bottom: 0;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid #edf2f7;
    font-size: 0.92rem;
    line-height: 1.5;
}

.highlight-item:last-child {
    border-bottom: none;
}

.highlight-item .check {
    flex-shrink: 0;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
    font-size: 0.8rem;
    font-weight: 700;
    color: #fff;
}

.plan-card.silver .highlight-item .check {
    background: var(--vortex-silver);
}

.plan-card.gold .highlight-item .check {
    background: var(--vortex-gold-dark);
}

.gold-exclusive {
    background: #fef9e7;
    border-radius: 6px;
    padding: 2px 8px;
    margin-left: -8px;
    font-weight: 600;
    color: var(--vortex-gold-dark);
}

/*! ── Checkup Section ── */
.checkup-divider {
    font-family: var(--font-heading);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 1rem;
    padding: var(--card-padding);
    padding-top: 5px;
    padding-bottom: 5px;
    color: var(--blue);
    display: flex;
    align-items: center;
    gap: 12px;
}

.checkup-divider::after {
    content: '';
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, var(--blue-mid), transparent);
    border-radius: 1px;
}

.checkup-list {
    padding: var(--card-padding);
    padding-top: 0;
    padding-bottom: 0;
    margin: 0;
    list-style: none;
}

.checkup-list li {
    position: relative;
    padding: 7px 0 7px 22px;
    font-size: 0.85rem;
    line-height: 1.55;
    color: #4a5568;
    border-bottom: 1px dashed var(--vortex-silver-light);
}

.checkup-list li:last-child {
    border-bottom: none;
}

.checkup-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    font-weight: 700;
    font-size: 1rem;
}

.plan-card.silver .checkup-list li::before {
    color: var(--vortex-silver);
}

.plan-card.gold .checkup-list li::before {
    color: var(--vortex-gold-dark);
}

/*! Gold-only items at end of checkup list */
.checkup-list li.gold-only {
    background: #fef9e7;
    border-radius: 4px;
    padding-left: 22px;
    margin: 4px -8px;
    padding-right: 8px;
    padding-top: 8px;
    padding-bottom: 8px;
    border-bottom-color: #f5ecc8;
}

/*! ── CTA ── */
.plan-cta {
    padding: var(--card-padding);
    padding-top: 10px;
    margin-top: auto;
}

.btn-plan {
    display: block;
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 10px;
    font-family: var(--font-heading);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.25s ease;
    text-align: center;
    text-decoration: none;
}

.plan-card.silver .btn-plan {
    background: linear-gradient(135deg, #6b7f96, #8a9bae);
    color: #fff;
}

.plan-card.silver .btn-plan:hover {
    background: linear-gradient(135deg, #5a6e84, #798a9d);
    box-shadow: 0 4px 16px rgba(107, 127, 150, 0.4);
    color: #fff;
    text-decoration: none;
}

.plan-card.gold .btn-plan {
    background: linear-gradient(135deg, var(--vortex-gold-dark), var(--vortex-gold));
    color: #fff;
}

.plan-card.gold .btn-plan:hover {
    background: linear-gradient(135deg, #a07509, #c49316);
    box-shadow: 0 4px 16px rgba(184, 134, 11, 0.4);
    color: #fff;
    text-decoration: none;
}

/*! ── Responsive ── */
@media (max-width: 767px) {
    .plans-section {
        padding: 40px 12px 50px;
    }

    .section-heading {
        font-size: 1.8rem;
    }

    .plan-cards-row {
        gap: 24px;
    }

    .plan-card {
        max-width: 100%;
    }

    .plan-price {
        font-size: 2.2rem;
    }
}

/*! PAGE HEADER BANNER ===== */

.h1-full-width-row {
    background: var(--heading-row-gradient);
}

.h1-full-width-row .fl-row-content-wrap {
    padding: 80px 20px 100px;
}

.h1-full-width-row h1 {
    color: var(--white);
    font-size: clamp(36px, 5vw, 48px);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 5px;
}

.h1-full-width-row h2 {
    color: var(--white);
    font-family: var(--font-body);
    font-size: clamp(28px, 5vw, 32px);
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 25px;
    text-transform: capitalize;
}

.h1-full-width-row p {
    color: var(--white);
    margin-bottom: 25px;
}

/* Shape Divider Overrides */
.h1-full-width-row .fl-builder-shape-layer.fl-builder-bottom-edge-layer {
    z-index: 1;
}

.h1-full-width-row .fl-builder-layer {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.h1-full-width-row .fl-builder-bottom-edge-layer>* {
    width: 100%;
    display: block;
    position: absolute;
    left: auto;
    right: auto;
    height: 60px;
    top: auto;
    bottom: 0;
    transform: scaleX(-1) scaleY(-1);
}

.h1-full-width-row .fl-builder-bottom-edge-layer .fl-shape-content .fl-shape {
    fill: var(--white);
    stroke: none;
    stroke-width: 0;
    width: 100%;
}

/*! Breadcumbs
------------------------------------------------------------*/
.rw-breadcrumbs {
    font-size: clamp(12px, 1.5vw, 14px);
    color: var(--white);
    margin-bottom: 25px;
}

.rw-breadcrumbs-inline {
    border-top: 1px solid rgba(255, 255, 255, 0.25);
    margin-top: 10px;
    padding-top: 10px;
    margin-bottom: 0;
    color: var(--white);
    font-size: 14px;
    width: fit-content;
}

.rw-breadcrumbs-inline a {
    color: var(--white);
}

/*! Contact Us Row */

.blue-gradient-bg {
    background: linear-gradient(135deg, var(--blue) 0%, var(--blue) 33%, var(--blue-light) 100%);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 14px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    text-decoration: none;
}

a.contact-item:hover {
    color: var(--fire-amber);
    text-decoration: none;
}

.contact-item svg {
    width: 20px;
    height: 20px;
    stroke: var(--fire-amber);
    stroke-width: 1.5;
    fill: none;
    flex-shrink: 0;
}

a.contact-item:hover svg {
    stroke: var(--fire-amber);
}


/*! Content Styles ------------------------------*/

button,
input[type=button],
input[type=submit] {
    padding: 14px 30px;
}

button,
.fl-button,
input[type=button],
input[type=submit],
.navbar-toggle {
    transition: all var(--transition);
}



/*! RW Footnotes ------------------------------*/

.rw-footnotes ol {
    padding-left: 20px;
}

.rw-footnotes ol li {
    font-size: 14px;
}

/*! SIDEBAR ===== */

.fl-sidebar {
    margin-top: 20px;
}

/*! Widget Title (shared across all sidebar widget types) */
.fl-widget .fl-widget-title,
h4.fl-widget-title,
.blog-categories.fl-widget h4.fl-widget-title,
.rw-widget-box-header .fl-html h3.widgettitle,
.fl-module-sidebar .widget_text h4.fl-widget-title,
.fl-sidebar .widget_text h4.fl-widget-title {
    background: linear-gradient(135deg, var(--navy), var(--blue-dark) 50%, var(--blue));
    padding: clamp(10px, 2vw, 20px);
    margin: 0;
    border-radius: var(--card-border-radius) var(--card-border-radius) 0 0;
    font-size: clamp(16px, 2.5vw, 24px);
    color: var(--white);
    text-align: center;
}

/*! Widget Body (shared border/bg for content areas) */
.blog-categories.fl-widget ul,
.rw-widget-box-header .fl-html .widgetbody,
.fl-sidebar .textwidget,
.fl-sidebar .gform_wrapper {
    border: 1px solid var(--gray-200);
    background-color: var(--cream);
    margin: 0;
    padding: clamp(10px, 2vw, 20px);
    border-radius: 0 0 var(--card-border-radius) var(--card-border-radius);
}

.blog-categories.fl-widget ul,
.fl-sidebar .textwidget {
    padding: clamp(10px, 2vw, 20px);
    background-color: var(--white);
}

/*! BLOG CATEGORIES WIDGET ===== */

.blog-categories.fl-widget ul li:first-of-type {
    border-top: 1px solid var(--gray-200);
}

.blog-categories.fl-widget ul li {
    position: relative;
    overflow: hidden;
    display: flex;
    border-bottom: 1px solid var(--gray-200);
    margin-bottom: 0;
}

.blog-categories.fl-widget ul li a {
    padding: 10px 0 10px 15px;
    color: var(--gray-dark);
    width: calc(100% - 40px);
    transition: all var(--transition);
}

.blog-categories.fl-widget ul li a:hover {
    color: var(--orange);
    text-decoration: none;
}

.blog-categories.fl-widget ul li span.count {
    background-color: var(--cream);
    color: var(--gray-dark);
    border-radius: 50px;
    padding: 0;
    line-height: 1.4;
    font-size: 13px;
    margin: 6px 15px 6px 0;
    text-align: center;
    width: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: default;
    transition: all var(--transition);
}

.blog-categories.fl-widget ul li:hover span.count {
    background-color: var(--orange);
    color: var(--white);
}


/*! Gravity Forms Overrides
----------------------------------------*/

.rw-contact50_wrapper {
    background: var(--white);
    border-radius: 16px;
    padding: var(--card-padding);
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 1;
}

.rw-contact50_wrapper h2 {
    color: var(--navy);
    margin-bottom: 24px;
    font-size: 22px;
}

.rw-contact50_wrapper .gform-footer .button {
    width: 100%;
}


.gform_wrapper.gravity-theme .gform_fields {
    grid-row-gap: 9px !important;
}

input[type=text],
input[type=password],
input[type=email],
input[type=tel],
input[type=date],
input[type=month],
input[type=week],
input[type=time],
input[type=number],
input[type=search],
input[type=url],
textarea {
    height: auto;
    border: 1px solid #ddd;
    border-radius: 3px;
    padding: 8px !important;
    background-color: var(--white);
}

.gform_wrapper.gravity-theme .gfield textarea.large {
    height: 200px !important;
}

.gform_wrapper.gravity-theme .gform_footer,
.gform_wrapper.gravity-theme .gform_page_footer {
    margin: 0 !important;
    padding: 10px 0 0 !important;
    justify-content: center;
}

.gform_wrapper.gravity-theme.rw-shortform_wrapper .gform_footer input {
    width: 100%;
    padding: 15px;
}

.gform_required_legend {
    display: none !important;
}

::placeholder {
    color: rgba(117, 117, 117, 0.7) !important;
}

/*! FOOTER WIDGETS ===== */

.fl-page-footer-widgets {
    position: relative;
    padding: 80px 0 40px;
    background: var(--blue-dark);
    border-top: none;
}

.fl-page-footer-widgets-container {
    max-width: var(--container-footer-max) !important;
}

.fl-page-footer-widgets .fl-page-footer-widget-col {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.col-lg-3.fl-page-footer-widget-col-1,
.col-lg-3.fl-page-footer-widget-col-4,
.col-md-3.fl-page-footer-widget-col-1,
.col-md-3.fl-page-footer-widget-col-4 {
    flex: 0 0 100%;
    max-width: 100%;
}

/* All footer text white */
.fl-page-footer-widgets *,
.fl-page-footer-widgets h1,
.fl-page-footer-widgets h2,
.fl-page-footer-widgets h3,
.fl-page-footer-widgets h4,
.fl-page-footer-widgets h5,
.fl-page-footer-widgets h6 {
    color: var(--white);
}

.fl-page-footer-widgets a {
    color: var(--red);
}

.fl-page-footer-widgets a:hover {
    color: var(--fire-orange);
}

/*! Shape Divider */
.fl-page-footer-widgets .fl-builder-layer {
    bottom: -1px;
}

.fl-page-footer-widgets .fl-builder-bottom-edge-layer>* {
    width: 100%;
    left: auto;
    right: auto;
    height: 30px;
    top: auto;
    bottom: 0;
    transform: scaleX(-1) scaleY(-1);
}

.fl-page-footer-widgets .fl-builder-bottom-edge-layer .fl-shape-content .fl-shape {
    fill: #0C0E12;
}

/*! Footer Logo */
.fl-page-footer-widgets .rw-footer-logo {
    text-align: center;
    margin: 0 auto 20px;
    max-width: 300px;
}

/*! Widget Titles */
.fl-page-footer-widgets h4.fl-widget-title {
    background: transparent;
    text-transform: capitalize;
    font-size: 24px;
    line-height: 1.2;
    font-weight: 400;
    text-align: center;
    color: var(--white);
    width: fit-content;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0 0 10px;
    margin: 0 auto 15px !important;
}

.fl-page-footer-widgets aside#nav_menu-2 {
    background-color: transparent;
    min-height: 0;
}

/* Footer Form Description */
.fl-page-footer-widgets p.gform_description {
    margin-bottom: 15px;
    font-size: 16px;
    text-align: center;
}

/*! Footer Address */
.rw-footer-address p {
    font-size: 16px;
    text-align: center;
}

.fl-page-footer-widgets .textwidget {
    text-align: left;
}

/*! Footer Locations Grid */
.rw-footer-locations {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    overflow: visible;
}

.rw-footer-locations h3 {
    font-size: 28px;
}

/*! Footer Nav Menu */
.fl-widget.rw-footer-privacy-menu ul,
.menu-footer-menu-container {
    text-align: center;
}

/*! Social Icons */
.rw-footer-social .fl-social-icons {
    padding: 0;
    margin-left: 0;
    text-align: center;
}

.rw-footer-social .fl-social-icons a {
    display: inline-block;
    margin-right: 5px;
    margin-bottom: 5px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    transition: all var(--transition);
}

.rw-footer-social .fl-social-icons a:last-of-type {
    margin-left: 0;
}

.rw-footer-social .fl-social-icons a:hover {
    background-color: rgba(255, 255, 255, 0.35);
}

.rw-footer-social .fl-social-icons a i.fas,
.rw-footer-social .fl-social-icons a i.fab {
    font-size: 30px;
    vertical-align: middle;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    color: var(--white);
}

.rw-footer-social .fl-social-icons a:hover i.fas,
.rw-footer-social .fl-social-icons a:hover i.fab {
    color: var(--red);
}


/*! ===== FOOTER FORM (gform_5 — inline email signup) ===== */

.fl-page-footer-widgets form#gform_5 {
    display: flex;
    flex-direction: column;
}

.gform_wrapper.gravity-theme form#gform_5 .gform-body {
    width: 100%;
}

.gform_wrapper.gravity-theme form#gform_5 .gform-body .gfield {
    padding-right: 0;
}

.gform_wrapper.gravity-theme form#gform_5 .ginput_complex .name_last {
    margin-bottom: 0 !important;
}

.fl-page-footer-widgets form#gform_5 .gform_footer,
.fl-page-footer-widgets form#gform_5 .gform_page_footer {
    padding: 10px 0 0 !important;
}

.gform_wrapper.gravity-theme form#gform_5 .gform_footer button,
.gform_wrapper.gravity-theme form#gform_5 .gform_footer input,
.gform_wrapper.gravity-theme form#gform_5 .gform_page_footer button,
.gform_wrapper.gravity-theme form#gform_5 .gform_page_footer input {
    padding: 8px 20px;
    font-size: 18px;
    text-transform: uppercase;
    border-radius: 3px;
    font-weight: 400;
    margin-bottom: 0 !important;
}


/*! ===== FOOTER RESPONSIVE ===== */

@media (min-width: 480px) {

    .rw-footer-social .fl-social-icons a i.fas,
    .rw-footer-social .fl-social-icons a i.fab {
        width: 60px;
        height: 60px;
        line-height: 60px;
    }
}

@media (min-width: 641px) {

    .gform_wrapper.gravity-theme form#gform_6 .gform_footer button,
    .gform_wrapper.gravity-theme form#gform_6 .gform_footer input,
    .gform_wrapper.gravity-theme form#gform_6 .gform_page_footer button,
    .gform_wrapper.gravity-theme form#gform_6 .gform_page_footer input {
        padding: 11px 20px;
    }

    .rw-footer-locations {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Inline form layout */
    .fl-page-footer-widgets form#gform_5 {
        flex-direction: row;
    }

    .gform_wrapper.gravity-theme form#gform_5 .gform-body {
        width: calc(100% - 112px);
    }

    .gform_wrapper.gravity-theme form#gform_5 .gform-body .gfield {
        padding-right: 10px;
    }

    .fl-page-footer-widgets form#gform_5 .gform_footer,
    .fl-page-footer-widgets form#gform_5 .gform_page_footer {
        padding: 0 !important;
    }

    .gform_wrapper.gravity-theme form#gform_5 .gform_footer button,
    .gform_wrapper.gravity-theme form#gform_5 .gform_footer input,
    .gform_wrapper.gravity-theme form#gform_5 .gform_page_footer button,
    .gform_wrapper.gravity-theme form#gform_5 .gform_page_footer input {
        padding: 34px 31px !important;
    }
}

@media (min-width: 768px) {

    .fl-page-footer-widgets h4.fl-widget-title,
    .fl-page-footer-widgets p.gform_description,
    .rw-footer-social .fl-social-icons,
    .rw-footer-address p {
        text-align: left;
    }

    .fl-page-footer-widgets h4.fl-widget-title {
        margin: 0 0 15px !important;
    }

    .fl-page-footer-widgets .rw-footer-logo {
        margin-left: 0;
        margin-right: 0;
        text-align: left;
    }

    .fl-page-footer-widgets aside p {
        font-size: 14px;
    }

    .menu-footer-menu-container li a {
        padding: 10px 20px !important;
    }
}

@media (min-width: 992px) {
    .fl-page-footer-widgets {
        min-height: 500px;
    }

    .fl-page-footer-widget-col-2 {
        padding-left: 5%;
    }

    .fl-page-footer-widgets aside p {
        font-size: 18px;
    }

    .menu-footer-menu-container li a {
        padding: 10px 40px !important;
    }

    p.rw-footer-phone {
        font-size: 24px !important;
    }

    .gform_wrapper.gravity-theme form#gform_5 .gform_footer button,
    .gform_wrapper.gravity-theme form#gform_5 .gform_footer input,
    .gform_wrapper.gravity-theme form#gform_5 .gform_page_footer button,
    .gform_wrapper.gravity-theme form#gform_5 .gform_page_footer input {
        padding: 29px 31px !important;
    }

}

@media (min-width: 1100px) {
    .fl-page-footer-widgets .container {
        max-width: 1300px;
        width: 100%;
        padding: 0 clamp(0px, 3vw, 40px);
    }
}

/*! ===== FOOTER BAR ===== */

.fl-page-footer {
    border-top: none;
    background: var(--blue-dark);
}

.fl-page-footer-container {
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.fl-page-footer *,
.fl-page-footer a {
    color: rgba(255, 255, 255, 0.7);
}

.fl-page-footer a:hover {
    color: var(--white);
}

.fl-page-footer-text {
    padding-bottom: 0;
}

/* Mobile: centered layout */
.fl-page-footer-row .text-left {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.fl-page-footer-row .text-left .fl-page-footer-text {
    text-align: center;
}

.fl-page-footer-row .text-right {
    display: flex;
    justify-content: center;
    align-items: center;
}

.fl-page-footer-row .text-right ul {
    text-align: center;
}

/* Footer Nav */
.fl-page-footer-nav {
    padding-right: 0;
}

.fl-page-footer-nav li a {
    background-color: rgba(255, 255, 255, 0.05);
    text-transform: uppercase;
    font-size: 14px !important;
    font-weight: 600;
    padding: 10px 20px !important;
    border-radius: 5px;
    color: rgba(255, 255, 255, 0.65) !important;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.fl-page-footer-nav li a:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white) !important;
    text-decoration: none;
}

/*! Desktop: left/right layout */
@media (min-width: 768px) {

    .fl-page-footer-row .text-left {
        justify-content: flex-start;
        margin-bottom: 0;
        width: 70%;
        flex: 0 0 70%;
        max-width: 70%;
    }

    .fl-page-footer-row .text-left .fl-page-footer-text {
        text-align: left;
    }

    .fl-page-footer-row .text-right {
        justify-content: flex-end;
        width: 30%;
        flex: 0 0 30%;
        max-width: 30%;
    }

    .fl-page-footer-row .text-right ul {
        text-align: right;
    }

    .fl-page-footer .fl-page-footer-nav {
        margin: 0 -15px 0;
    }

    .fl-page-footer-nav {
        padding-right: 50px;
    }

    .fl-page-footer-nav>li {
        margin-left: 5px;
    }
}

@media (min-width: 768px) {

    .fl-page-footer-container {
        padding: 15px 40px;
    }

}

@media (min-width: 1100px) {
    .fl-page-footer .container {
        max-width: 1300px;
        width: 100%;
        padding: 15px clamp(0px, 3vw, 40px);
    }
}


/* RW Staff Plugin Overrides
---------------------------------------*/
.rw-staff-wrapper.rw-layout-row .rw-staff-image {
    overflow: visible;
}

.rw-staff-wrapper .rw-staff-image img {
    border-radius: 50%;
    box-shadow: 0 30px 20px rgba(0, 0, 0, 0.05);
}

.rw-staff-wrapper .rw-staff-image:hover img {
    transform: none
}

@media (min-width: 480px) {

    .rw-staff-wrapper.rw-layout-row .rw-staff-image {
        width: 20%;
    }

    .rw-staff-wrapper.rw-layout-row .rw-staff-excerpt {
        width: 80%;
    }

}

@media (min-width: 1100px) {

    .rw-staff-wrapper.rw-layout-row .rw-staff-excerpt {
        padding: 0 0 0 30px;
    }

}

/* Rich Plugins Reviews Overrides
---------------------------------------*/

.rpi {
    --card-bg-color: #fff !important;
    --card-bg: #fff !important;
    --card-br-color: #E5E7EB !important;
    --name-fs: 16px !important;
    --font-family: 'DM Sans' !important;
}

.rpi-cnt {
    flex-direction: column;
}

.rpi-slider .rpi-header {
    width: 100% !important;
}

.rpi-slider .rpi-header .rpi-card-inner>.rpi-logos {
    display: none;
}

.rpi-header .rpi-flex {
    flex: 1 0 50% !important;
}

.rpi-header .rpi-scale {
    color: var(--ice) !important;
}

.rpi-slider .rpi-name {
    font-size: 16px !important;
}

.rpi-slider a.rpi-name {
    color: var(--blue-mid) !important;
}

.rpi-slider .rpi-card .rpi-card-inner {
    padding: clamp(1em, 4vw, 2em) !important;
    border: 1px solid var(--gray-200) !important;
}

.rpi-slider .rpi-header .rpi-card .rpi-card-inner {
    border: none !important;
}

.rpi-card-inner.rpi-logo::before {
    top: clamp(1.2em, 4vw, 2.4em) !important;
    right: clamp(1em, 4vw, 2em) !important;
    width: 32px !important;
    height: 32px !important;
}

.rpi-text {
    line-height: 1.7 !important;
    font-size: 15px !important;
    padding-right: 0.5em;
}

.rpi-stars {
    --star-color: var(--fire-amber) !important;
}

.rpi-slider-btn {
    flex: 1 0 50% !important;
    justify-content: flex-end !important;
}

.rpi-slider .rpi-review_us {
    font-size: 16px !important;
    border-radius: 6px !important;
    background: var(--red) !important;
    font-family: var(--font-heading);
    font-weight: 700;
    padding: 10px 20px 12px !important;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: all var(--transition);
    transform: translate3d(0, 0, 0);
}

.rpi-review_us:hover {
    background: var(--fire-orange) !important;
}

.rpi-slider .rpi-review_us a,
.rpi-slider .rpi-review_us[onclick] {
    padding: 0 !important;
}

.rpi-slider .rpi-dots .rpi-dot.active {
    background-color: var(--red) !important
}

.rpi-list .rpi-slider-btn {
    --btn-justify-content: flex-end !important;
}

/*! RW BUSINESS HOUR PLUGIN STYLING OVERRIDES */
.fl-page-bar .rw-header-hours {
    color: #fff;
}

.fl-page-bar .rw-header-hours span.open {
    background-color: #a4f423;
    color: #136;
    box-shadow: 0 0 6px 6px rgba(164, 244, 35, 0.10);
}

.fl-page-bar .rw-header-hours span.closed {
    background-color: #e1531f;
}

.contact-info .rw-business-hours-list {
    text-align: left;
    margin: 25px 0;
    font-size: 16px;
}

.contact-info .rw-business-hours-list .bhp-today {
    font-size: 18px;
    background: rgba(255, 239, 171, 0.1);
    box-shadow: 0 0 12px 4px rgba(255, 239, 171, 0.1);
}


/*! Geo Page Styles */
.geo-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--ice-light);
    backdrop-filter: blur(8px);
    border: 1px solid var(--ice);
    color: var(--blue);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 8px 18px;
    border-radius: 50px;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease both;
}

.geo-trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 32px;
}

.trust-chip {
    background: var(--red);
    border: 1px solid var(--red-dark);
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.9rem;
    font-family: var(--font-heading);
    font-weight: 600;
    letter-spacing: 0.05em;
    padding: 6px 14px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 7px;
}

.geo-offers {
    background: aliceblue;
    border-left: 4px solid var(--blue-mid);
    padding: 14px 18px;
    border-radius: 0 4px 4px 0;
    margin-bottom: 30px;
}

.geo-offers .offer-item {
    color: var(--gray-800);
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 5px;
}

.geo-offers .offer-item i {
    color: var(--blue-mid);
    font-size: 0.75rem;
}

.geo-cta-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.45s both;
}

.geo-cta-buttons .btn-ice {
    background: var(--ice-light);
    backdrop-filter: blur(6px);
    border: 2px solid var(--ice);
    color: var(--blue);
}

.geo-heading-box {
    background-color: #f0f8ff;
    border: 1px solid #cee6fa;
    padding: 30px;
    border-radius: 12px;
    animation: fadeInUp 0.8s ease 0.45s both;
}

.geo-heading-box .section-label {
    font-size: 1rem;
    letter-spacing: 0.1em;
}

ul.rw-city-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(175px, 1fr));
    gap: 10px;
    list-style: none;
    padding-left: 0;
}

.rw-city-grid li {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-left: 4px solid var(--red);
    border-radius: 0 4px 4px 0;
    padding: 9px 14px;
    font-size: 1.1rem;
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--text-dark);
    letter-spacing: 0.02em;
    transition: border-left-color 0.2s, background 0.2s;
}

.rw-city-grid li:hover {
    border-left-color: var(--blue);
    background: rgba(0, 48, 135, 0.04);
}

.rw-city-grid li i {
    color: var(--red);
    font-size: 0.7rem;
    margin-right: 6px;
}

.smaller-text {
    font-size: 1rem;
}

.text-blue {
    color: var(--blue) !important;
}

.fl-map iframe {
    border-radius: 15px;
}

.trust-bar .item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    padding: 8px 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.trust-bar .item i {
    font-size: 1.4rem;
    color: var(--fire-yellow);
}

.trust-bar .item .tb-label {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    line-height: 1.2;
}

.trust-bar .item .tb-sub {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.55);
}

.why-card {
    text-align: center;
    padding: 32px 20px;
}

.why-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--blue), var(--blue-mid));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    color: #fff;
    margin: 0 auto 18px;
    box-shadow: 0 6px 20px rgba(0, 48, 135, 0.25);
}

.why-card h3 {
    color: var(--text-dark);
    margin-bottom: 9px;
}

.why-card p {
    font-size: 1rem;
    color: var(--text-mid);
    margin: 0;
}