.elementor-683 .elementor-element.elementor-element-3969284{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;overflow:visible;}.elementor-683 .elementor-element.elementor-element-637cd9c{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;overflow:visible;}.elementor-683 .elementor-element.elementor-element-c03f4ac{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;overflow:visible;}.elementor-683 .elementor-element.elementor-element-f480e19{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;overflow:visible;}.elementor-683 .elementor-element.elementor-element-28a61673{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;overflow:visible;}.elementor-683 .elementor-element.elementor-element-c2847fa{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;overflow:visible;}.elementor-683 .elementor-element.elementor-element-5d85c870{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;overflow:visible;}.elementor-683 .elementor-element.elementor-element-99d3831{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;overflow:visible;}.elementor-683 .elementor-element.elementor-element-e33f5d9{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;overflow:visible;}/* Start custom CSS for html, class: .elementor-element-5f096a9 *//* --- Commercial Hero Branding --- */
.commercial-hero {
    background: #ffffff;
    padding: 100px 20px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    overflow: hidden;
    position: relative;
}

/* Subtle Industrial Background Grid */
.commercial-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 100%;
    background-image: linear-gradient(#f0f4f8 1px, transparent 1px), 
                      linear-gradient(90deg, #f0f4f8 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: 1;
}

.sfv-rebrand-wrapper {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
}

/* Typography Overhaul */
.sfv-main-title {
    font-size: clamp(36px, 6vw, 56px);
    color: #1a3650;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 10px;
    letter-spacing: -1.5px;
    text-transform: uppercase;
}

.sfv-tagline {
    font-size: 18px;
    color: #5b9dbd; /* Darker Blue for readability */
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 60px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.sfv-tagline::after {
    content: '';
    height: 2px;
    flex-grow: 1;
    background: linear-gradient(90deg, #8ecae6, transparent);
}

/* Layout Grid */
.sfv-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

/* Content Area */
.sfv-content p {
    font-size: 20px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 30px;
}

.sfv-content strong {
    color: #1a3650;
    font-weight: 800;
    background: rgba(255, 215, 0, 0.2); /* Soft Gold highlight */
    padding: 2px 4px;
    border-radius: 2px;
}

/* Image & Badge Presentation */
.sfv-image-container {
    position: relative;
    border-radius: 4px;
}

.sfv-hero-img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: 30px 30px 0px #1a3650; /* Thick Offset Shadow */
    display: block;
    object-fit: cover;
}

/* The Gold "Title 24" Badge */
.sfv-gold-badge {
    position: absolute;
    bottom: -30px;
    left: -30px;
    background: #ffd700; 
    width: 160px;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    transform: rotate(-5deg);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    border: 8px solid #ffffff;
    animation: float 4s ease-in-out infinite;
    z-index: 10;
}

.badge-inner {
    padding: 10px;
}

.badge-num {
    font-size: 38px;
    font-weight: 900;
    color: #1a3650;
    display: block;
    line-height: 1;
}

.badge-line {
    height: 3px;
    background: #1a3650;
    width: 50%;
    margin: 8px auto;
}

.badge-text {
    font-size: 12px;
    font-weight: 900;
    color: #1a3650;
    text-transform: uppercase;
    display: block;
}

/* --- Floating Animation --- */
@keyframes float {
    0% { transform: rotate(-5deg) translateY(0px); }
    50% { transform: rotate(-5deg) translateY(-15px); }
    100% { transform: rotate(-5deg) translateY(0px); }
}

/* Mobile Fix */
@media (max-width: 991px) {
    .sfv-intro-grid { grid-template-columns: 1fr; gap: 40px; }
    .sfv-hero-img { box-shadow: 15px 15px 0px #1a3650; }
    .sfv-gold-badge { width: 120px; height: 120px; left: 10px; bottom: -20px; }
    .badge-num { font-size: 28px; }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-ce0a0e4 *//* --- Commercial Systems Section --- */
.commercial-systems {
    background: #f8fafc;
    padding: 80px 20px;
    font-family: 'Inter', sans-serif;
}

.sfv-rebrand-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.sfv-section-heading {
    font-size: 42px;
    color: #1a3650;
    text-align: center;
    font-weight: 800;
    margin-bottom: 50px;
    text-transform: uppercase;
    letter-spacing: -1px;
}

/* Flex Row Container */
.sfv-trust-row {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
}

/* --- The Cards --- */
.sfv-card {
    background: #ffffff;
    flex: 1;
    min-width: 300px;
    padding: 40px 30px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    position: relative;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
}

.sfv-card h3 {
    margin: 10px 0 15px 0;
    color: #1a3650;
    font-size: 24px;
}

.sfv-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #475569;
}

/* Hover Effect */
.sfv-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 25px -5px rgba(26, 54, 80, 0.1);
    border-color: #d4af37;
}

.sfv-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 4px;
    background: #1a3650;
    transition: width 0.4s ease;
    border-radius: 0 0 12px 12px;
}

.sfv-card:hover::after {
    width: 100%;
}

/* --- Status Pills (FIXED) --- */
.status-pill {
    display: inline-block;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
    padding: 6px 12px;
    border-radius: 50px;
    margin-bottom: 20px;
    width: fit-content;
    text-transform: uppercase;
}

/* Specific colors for each system type */
.sfv-card:nth-child(1) .status-pill { background: #e0f2fe; color: #0369a1; } /* TPO - Popular */
.sfv-card:nth-child(2) .status-pill { background: #f0fdf4; color: #15803d; } /* PVC - Resistant */
.sfv-card:nth-child(3) .status-pill { background: #fef2f2; color: #b91c1c; } /* BUR - Multi-layered *//* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-d339e42 */.commercial-density-block {
    background-color: #ffffff;
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
    font-family: 'Inter', sans-serif;
}

/* Subtle blueprint grid background for an engineering feel */
.commercial-density-block::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: linear-gradient(#f1f5f9 1px, transparent 1px), 
                      linear-gradient(90deg, #f1f5f9 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 1;
}

.density-container {
    position: relative;
    z-index: 2;
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 50px;
    align-items: center;
    background: #ffffff;
    padding: 40px;
    border-left: 8px solid #1a3650;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* Technical Sidebar styling */
.tech-spec-sidebar {
    border-right: 1px solid #e2e8f0;
    padding-right: 30px;
}

.spec-label {
    font-size: 12px;
    font-weight: 800;
    color: #8ecae6;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.spec-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.spec-list li {
    font-size: 14px;
    font-weight: 700;
    color: #1a3650;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.spec-list li span {
    color: #ffd700; /* Gold bullet point */
}

/* Content styling */
.density-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 20px;
}

.density-content p:last-child {
    margin-bottom: 0;
}

.density-content strong {
    color: #1a3650;
    font-weight: 700;
    background: rgba(142, 202, 230, 0.1);
    padding: 2px 4px;
    border-radius: 4px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .density-container {
        grid-template-columns: 1fr;
        padding: 30px;
        gap: 30px;
    }
    .tech-spec-sidebar {
        border-right: none;
        border-bottom: 1px solid #e2e8f0;
        padding-right: 0;
        padding-bottom: 20px;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-d1cbbf1 */.sfv-trust-bar {
    background: #1a3650; /* Matches your brand Navy */
    padding: 25px 0;
    border-top: 4px solid #d4af37; /* Gold accent line */
    width: 100%;
}

.trust-bar-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    padding: 0 20px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.trust-icon {
    font-size: 24px;
    background: rgba(255, 255, 255, 0.1);
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.trust-text {
    display: flex;
    flex-direction: column;
}

.trust-label {
    color: #ffffff;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.trust-sub {
    color: #8ecae6; /* Light blue subtext */
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
}

/* Mobile Layout */
@media (max-width: 768px) {
    .trust-bar-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 25px;
    }
    .trust-item {
        justify-content: center;
        text-align: center;
        flex-direction: column;
        gap: 5px;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-7f576f97 *//* Form Header Styling */
.form-header-container {
    text-align: center;
    margin-bottom: -10px; /* Pulls the header closer to the form */
    padding: 20px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.form-header-container .badge {
    background: #f1f1f1;
    color: #555;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 15px;
}

.form-header-container h2 {
    font-size: 36px;
    color: #222;
    margin: 0 0 10px 0;
    font-weight: 800;
    line-height: 1.2;
}

.form-header-container .highlight {
    color: #d32f2f; /* Matching the red button from the form */
    text-transform: uppercase;
}

.form-header-container .subtext {
    font-size: 18px;
    color: #666;
    margin-bottom: 20px;
}

/* Trust Icons Styling */
.trust-icons {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-top: 10px;
}

.trust-icons span {
    font-size: 14px;
    color: #444;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Color for the checkmark/icons */
.trust-icons span:before {
    content: '✓';
    color: #27ae60;
    font-weight: 900;
}

/* Responsive for Mobile */
@media (max-width: 600px) {
    .form-header-container h2 {
        font-size: 28px;
    }
    .trust-icons {
        flex-direction: column;
        gap: 10px;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-b86bba4 *//* --- MAINTENANCE SECTION --- */
.maintenance-agreement {
    padding: 100px 20px;
    background: #ffffff;
}

.maintenance-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px;
}

.maintenance-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.maintenance-list {
    list-style: none;
    padding: 0;
    margin: 25px 0;
}

.maintenance-list li {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
    font-size: 17px;
}

.maintenance-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #d4af37;
    font-weight: bold;
}

.license-callout {
    margin-top: 30px;
    padding: 20px;
    background: #f8fafc;
    border-left: 5px solid #1a3650;
    font-weight: 700;
    color: #1a3650;
}

/* --- PACKAGE CARD --- */
.package-card {
    background: #1a3650;
    color: #ffffff;
    padding: 50px;
    border-radius: 30px;
    border: 2px solid #d4af37;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.package-card h4 {
    color: #d4af37;
    font-size: 24px;
    margin-bottom: 25px;
    text-align: center;
}

.package-features {
    list-style: none;
    padding: 0;
    margin-bottom: 35px;
}

.package-features li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    display: flex;
    gap: 10px;
}

.package-features span { color: #d4af37; }

.btn-maintenance {
    display: block;
    text-align: center;
    background: #d4af37;
    color: #1a3650;
    padding: 18px;
    border-radius: 12px;
    font-weight: 900;
    text-decoration: none;
    text-transform: uppercase;
    transition: 0.3s;
}

.btn-maintenance:hover { background: #c29d2f; }

@media (max-width: 900px) {
    .maintenance-grid { grid-template-columns: 1fr; }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-35f39c54 *//* FORCE RESET FOR THIS SECTION ONLY */
.sfv-reset-box {
    all: initial; /* Clears theme defaults */
    display: block;
    background: #f1f5f9;
    padding: 60px 20px;
    font-family: sans-serif;
}

.sfv-flex-container {
    display: flex !important;
    max-width: 1140px !important;
    margin: 0 auto !important;
    gap: 40px !important;
    flex-wrap: wrap !important;
}

/* COLUMNS */
.sfv-column-text {
    flex: 1 1 500px !important;
}

.sfv-column-form {
    flex: 1 1 400px !important;
}

/* TEXT STYLES */
.sfv-gold-label {
    background: #d4af37;
    color: #1a3650;
    padding: 4px 10px;
    font-weight: bold;
    font-size: 12px;
    display: inline-block;
    margin-bottom: 15px;
}

.sfv-h2 {
    color: #1a3650;
    font-size: 32px;
    margin: 0 0 20px 0;
    line-height: 1.2;
}

.sfv-p {
    color: #334155;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
}

/* BENEFIT BOXES */
.sfv-mini-grid {
    display: flex;
    gap: 20px;
}

.sfv-benefit {
    background: #fff;
    padding: 15px;
    border-left: 4px solid #d4af37;
    flex: 1;
}

/* THE FORM CARD */
.sfv-form-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.sfv-h3 {
    text-align: center;
    color: #1a3650;
    margin: 0 0 20px 0;
}

/* CONTACT FORM 7 INPUT FIXES */
.sfv-form-card .wpcf7-form-control {
    width: 100% !important;
    margin-bottom: 10px !important;
    padding: 12px !important;
    border: 1px solid #ccc !important;
    border-radius: 5px !important;
}

.sfv-form-card input[type="submit"] {
    background: #1a3650 !important;
    color: #fff !important;
    border: none !important;
    cursor: pointer !important;
    font-weight: bold !important;
}

.sfv-form-card input[type="submit"]:hover {
    background: #d4af37 !important;
    color: #1a3650 !important;
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-235bd53 *//* Dual Column Layout */
.sfv-dual-seo-section {
    background-color: #ffffff;
    padding: 80px 20px;
    font-family: 'Inter', sans-serif;
}

.sfv-seo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* 2 Equal Columns */
    gap: 60px;
    align-items: start;
}

/* Typography */
.sfv-main-keyword {
    font-size: 32px;
    color: #1a3650;
    font-weight: 900;
    margin-bottom: 25px;
    text-transform: uppercase;
    line-height: 1.1;
}

.content-side p {
    font-size: 18px;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 20px;
}

.content-side strong {
    color: #1a3650;
    font-weight: 700;
    background: rgba(142, 202, 230, 0.15);
    padding: 2px 4px;
    border-radius: 4px;
}

/* FAQ Side Styling */
.faq-side {
    background: #f8fafc;
    padding: 40px;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.faq-title {
    font-size: 22px;
    color: #1a3650;
    margin-bottom: 25px;
    font-weight: 800;
}

.faq-item {
    margin-bottom: 20px;
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 15px;
}

.faq-item:last-child { border-bottom: none; }

.faq-question {
    font-size: 16px;
    font-weight: 800;
    color: #1a3650;
    margin-bottom: 8px;
}

.faq-answer {
    font-size: 15px;
    line-height: 1.6;
    color: #475569;
}

.faq-answer a {
    color: #0369a1;
    text-decoration: underline;
    font-weight: 600;
}

/* Mobile Responsive */
@media (max-width: 991px) {
    .sfv-seo-grid {
        grid-template-columns: 1fr; /* Stack on mobile */
        gap: 40px;
    }
    .faq-side { padding: 25px; }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-189b5e3 *//* --- Project Gallery Styling --- */
.sfv-portfolio-section {
    padding: 80px 20px;
    background: #ffffff;
}

.sfv-project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.sfv-project-card {
    background: #f8fafc;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    border: 1px solid #e2e8f0;
}

.sfv-project-card:hover {
    transform: translateY(-5px);
}

.sfv-project-img-container {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.sfv-project-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sfv-project-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #d4af37; /* Gold */
    color: #1a3650;
    padding: 5px 12px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    border-radius: 4px;
}

.sfv-project-info {
    padding: 25px;
}

.sfv-project-info h3 {
    margin: 0 0 10px 0;
    color: #1a3650;
    font-size: 20px;
    font-weight: 800;
}

.sfv-project-info p {
    margin: 0;
    color: #475569;
    font-size: 14px;
    line-height: 1.5;
}/* End custom CSS */