.cps-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    position: relative;
    font-family: 'Inter', sans-serif;
    transition: transform 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.cps-card:hover {
    transform: translateY(-5px);
}

.cps-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: #d4af37;
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8em;
    font-weight: 600;
    z-index: 10;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

/* Grid Layout */
.cps-grid-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    width: 100%;
}

.cps-grid-item {
    width: 100%;
    /* Ensure height stretches in grid */
    display: flex; 
}

.cps-image-container {
    width: 100%;
    height: 250px;
    background-color: #f0f0f0;
    border-radius: 15px; /* Rounded corners */
    overflow: hidden;
}

.cps-card {
    height: 100%;
    width: 100%;
}

.cps-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .cps-grid-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .cps-grid-container {
        grid-template-columns: 1fr;
    }
}

.cps-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

/* Title */
.cps-card .cps-title {
    /* font-size: 1.1rem; */ /* Reduced from 1.3rem */
    font-weight: 700;
    color: #001f3f; /* Dark Navy Blue */
    margin: 15px 0 10px;
    line-height: 1.3;
}

/* ... */

.cps-wcu-title {
    /* font-size: 2.5rem; */ /* Default, can be overridden by Elementor */
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 15px;
}

.cps-wcu-desc {
    /* font-size: 1.1rem; */
    color: #d1d1d1;
    line-height: 1.6;
}

/* ... */

/* Card Text */
.cps-wcu-card-title {
    /* font-size: 1.1rem; */ /* Default, can be overridden */
    font-weight: 700;
    color: #fff;
    margin: 0 0 10px;
    line-height: 1.4;
}

.cps-wcu-card-desc {
    /* font-size: 0.9rem; */ /* Default, can be overridden */
    color: #bfbfbf;
    line-height: 1.5;
    margin: 0;
}

/* Responsive */
@media (max-width: 1200px) {
    .cps-wcu-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .cps-wcu-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .cps-wcu-grid {
        grid-template-columns: 1fr;
    }
    
    /* .cps-wcu-title {
        font-size: 2rem;
    } */
}

/* CTA Section */
.cps-wcu-cta {
    background-color: #a89f71; /* Gold/Beige color from image */
    padding: 40px;
    border-radius: 12px;
    max-width: 1200px;
    margin: 60px auto 0;
    text-align: center;
    color: #801633; /* Burgundy text color */
}

.cps-wcu-cta-title {
    /* font-size: 1.8rem; */
    font-weight: 700;
    margin: 0 0 10px;
    color: #801633;
}

.cps-wcu-cta-desc {
    /* font-size: 1rem; */
    color: #5a2e38;
    margin: 0 0 25px;
}
/* Features List */
.cps-features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    text-align: left;
    flex-grow: 1; /* Pushes buttons down */
}

.cps-card .cps-features li {
    font-size: 0.95rem; /* Approx 15px */
    color: #555;
    margin-bottom: 8px;
    display: flex; /* Align icon and text */
    align-items: flex-start;
    line-height: 1.4;
}

/* Feature Icon */
.cps-check-icon {
    color: #28a745; /* Green */
    margin-right: 10px;
    font-size: 1.1em;
    flex-shrink: 0; /* Prevent icon shrinking */
    display: inline-flex;
    align-items: center;
}

/* Fix for Elementor Icon Rendering */
.cps-check-icon i, .cps-check-icon svg {
    width: 1em;
    height: 1em;
    fill: currentColor;
}

.cps-check-icon i::before {
    /* Ensure no conflict hides it */
    display: inline-block; 
}

/* Fallback for icon check if FontAwesome is not loaded, generally Elementor loads it */
.cps-check-icon i::before {
    /* content: '\f058'; FontAwesome Check Circle */
    display: none; /* Placeholder */
}

.cps-btn-group {
    display: flex;
    gap: 15px; /* Increased gap */
    margin-top: auto;
}

.cps-btn {
    flex: 1; /* Ensure equal width */
    display: flex; /* Verify content centering */
    justify-content: center;
    align-items: center;
    padding: 12px 10px; /* Adjust padding */
    text-align: center;
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
    font-size: 0.9em;
    min-width: 0; /* Prevent flex overflow */
}

.cps-btn-primary {
    background-color: #800020; /* Default Burgundy */
}

.cps-btn-secondary {
    background-color: #333; /* Default Dark Gray */
}

.cps-btn-icon {
    display: inline-flex;
    align-items: center;
}

/* ... existing styles ... */

.cps-grid-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    width: 100%;
    box-sizing: border-box; /* Safety */
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .cps-grid-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .cps-grid-container {
        display: flex;
        flex-direction: column;
        gap: 30px; /* Vertical spacing on mobile */
    }
    
    .cps-grid-item {
        width: 100%;
    }
}

/* ---------------------------------------------------------
   Why Choose Us Widget Styles
   --------------------------------------------------------- */

.cps-wcu-container {
    /* Background Gradient matching the provided image */
    background: linear-gradient(135deg, #1a0b12 0%, #4a0e22 50%, #801633 100%);
    padding: 80px 20px;
    text-align: center;
    font-family: 'Inter', sans-serif;
    color: #ffffff;
    
    /* Force Full Width */
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    box-sizing: border-box;
}

/* Header Section */
.cps-wcu-header {
    max-width: 800px;
    margin: 0 auto 50px;
}

.cps-wcu-badge {
    background: rgba(255, 255, 255, 0.1);
    color: #e0e0e0;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cps-wcu-title {
    font-size: 2.5rem; /* Default, can be overridden by Elementor */
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 15px;
}

.cps-wcu-desc {
    font-size: 1.1rem;
    color: #d1d1d1;
    line-height: 1.6;
}

/* Grid Layout */
.cps-wcu-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 Columns */
    gap: 30px;
    width: 100%;
    max-width: 1400px; /* Restored safe content width, keeping bg full */
    margin: 0 auto;
}

/* Card Style */
.cps-wcu-card {
    background: rgba(255, 255, 255, 0.05); /* Glass effect */
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 30px 20px;
    text-align: left;
    transition: transform 0.3s ease, background 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.cps-wcu-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
}

/* Icon Box */
.cps-wcu-icon-box {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.5rem;
    color: #cda45e; /* Gold-ish color from image */
}

/* Elementor Icon SVG Fix */
.cps-wcu-icon-box svg {
    fill: #cda45e;
    width: 24px;
    height: 24px;
}
.cps-wcu-icon-box i {
    color: #cda45e;
}

/* Card Text */
.cps-wcu-card-title {
    font-size: 1.1rem; /* Default, can be overridden */
    font-weight: 700;
    color: #fff;
    margin: 0 0 10px;
    line-height: 1.4;
}

.cps-wcu-card-desc {
    font-size: 0.9rem; /* Default, can be overridden */
    color: #bfbfbf;
    line-height: 1.5;
    margin: 0;
}

/* Responsive */
@media (max-width: 1200px) {
    .cps-wcu-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .cps-wcu-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .cps-wcu-grid {
        grid-template-columns: 1fr;
    }
    
    .cps-wcu-title {
        font-size: 2rem;
    }
}

/* CTA Section */
.cps-wcu-cta {
    background-color: #a89f71; /* Gold/Beige color from image */
    padding: 40px;
    border-radius: 12px;
    max-width: 1200px;
    margin: 60px auto 0;
    text-align: center;
    color: #801633; /* Burgundy text color */
}

.cps-wcu-cta-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 0 10px;
    color: #801633;
}

.cps-wcu-cta-desc {
    font-size: 1rem;
    color: #5a2e38;
    margin: 0 0 25px;
}

.cps-wcu-cta-btn {
    display: inline-block;
    background-color: #801633;
    color: #fff;
    padding: 12px 30px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

/* ---------------------------------------------------------
   Industries We Serve Widget Styles
   --------------------------------------------------------- */

.cps-ind-container {
    background-color: #f8f9fa; /* Light background */
    padding: 80px 20px;
    text-align: center;
    font-family: 'Inter', sans-serif;
    
    /* Force Full Width Breakout */
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    box-sizing: border-box;
    
    color: #333;
}

.cps-ind-header {
    max-width: 800px;
    margin: 0 auto 50px;
}

.cps-ind-badge {
    background: #fff0f0;
    color: #d63031;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 20px;
}

.cps-ind-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #2d3436;
    margin: 0 0 15px;
}

.cps-ind-desc {
    font-size: 1.05rem;
    color: #636e72;
    line-height: 1.6;
}

/* Industries Grid */
.cps-ind-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto 60px;
    text-align: left;
}

.cps-ind-card {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #f0f0f0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 160px;
}

.cps-ind-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.cps-ind-icon-box {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.4rem;
}

.cps-ind-icon-box svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.cps-ind-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #2d3436;
    line-height: 1.4;
}

/* Bottom Section */
.cps-ind-bottom {
    background-color: #801633; /* Dark Burgundy */
    border-radius: 20px;
    padding: 50px;
    max-width: 1200px;
    margin: 0 auto;
    color: #fff;
    text-align: center;
}

.cps-ind-bottom-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 0 15px;
    color: #fff;
}

.cps-ind-bottom-desc {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 auto 40px;
    max-width: 700px;
}

.cps-ind-stats-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.cps-ind-stat-box {
    background: rgba(255, 255, 255, 0.15);
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: 600;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 1rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .cps-ind-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .cps-ind-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cps-ind-bottom {
        padding: 30px;
    }
}

/* ---------------------------------------------------------
   Our Process Widget Styles
   --------------------------------------------------------- */

.cps-process-container {
    background-color: #fff;
    padding: 80px 20px;
    text-align: center;
    font-family: 'Inter', sans-serif;
    color: #333;
}

.cps-process-header {
    max-width: 800px;
    margin: 0 auto 60px;
}

.cps-process-badge {
    background: #fff0f0;
    color: #801633;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 20px;
}

.cps-process-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #001f3f;
    margin: 0 0 15px;
}

.cps-process-desc {
    font-size: 1.1rem;
    color: #636e72;
    line-height: 1.6;
}

/* Timeline Layout */
.cps-process-timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px 0;
}

/* Vertical Line */
.cps-process-timeline::after {
    content: '';
    position: absolute;
    width: 2px;
    background-color: #801633;
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -1px;
}

.cps-process-item {
    padding: 10px 40px;
    position: relative;
    background-color: inherit;
    width: 50%;
    box-sizing: border-box;
}

/* Alternating Sides */
.cps-process-item:nth-child(odd) {
    left: 0;
    text-align: right;
}

.cps-process-item:nth-child(even) {
    left: 50%;
    text-align: left;
}

/* Icon Circle */
.cps-process-icon {
    position: absolute;
    width: 50px;
    height: 50px;
    right: -25px;
    background-color: #801633;
    border: 4px solid #fff;
    top: 20px;
    border-radius: 50%;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 0 0 0 4px rgba(128, 22, 51, 0.2);
}

.cps-process-item:nth-child(even) .cps-process-icon {
    left: -25px;
}

.cps-process-icon svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

/* Content Card */
.cps-process-content {
    padding: 30px;
    background-color: white;
    position: relative;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.cps-process-content:hover {
    transform: translateY(-5px);
}

.cps-process-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #801633;
    opacity: 0.15;
    position: absolute;
    top: 10px;
    right: 20px;
    line-height: 1;
}

.cps-process-item:nth-child(even) .cps-process-number {
    left: 20px;
    right: auto;
}

.cps-process-step-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #001f3f;
    margin: 15px 0 10px;
    position: relative;
    z-index: 1;
}

.cps-process-step-desc {
    font-size: 0.95rem;
    color: #636e72;
    line-height: 1.5;
    position: relative;
    z-index: 1;
}

/* Responsive */
@media (max-width: 768px) {
    .cps-process-timeline::after {
        left: 31px;
    }
    
    .cps-process-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }
    
    .cps-process-item:nth-child(odd) {
        left: 0;
        text-align: left;
    }
    
    .cps-process-item:nth-child(even) {
        left: 0;
    }
    
    .cps-process-icon {
        left: 6px !important; /* Force left alignment */
        right: auto;
    }
    
    .cps-process-item:nth-child(odd) .cps-process-number,
    .cps-process-item:nth-child(even) .cps-process-number {
        right: 20px;
        left: auto;
    }
}

/* ---------------------------------------------------------
   Coverage Widget Styles
   --------------------------------------------------------- */

.cps-cov-container {
    background-color: #f0f4f8; /* Very light blue/grey */
    padding: 80px 20px;
    text-align: center;
    font-family: 'Inter', sans-serif;
    
    /* Force Full Width Breakout */
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    box-sizing: border-box;
}

.cps-cov-header {
    max-width: 800px;
    margin: 0 auto 50px;
}

.cps-cov-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #001f3f;
    margin: 0 0 15px;
}

.cps-cov-desc {
    font-size: 1.05rem;
    color: #636e72;
    line-height: 1.6;
}

/* Locations Grid */
.cps-cov-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto 70px;
}

.cps-cov-card {
    background: #fff;
    border-radius: 12px;
    padding: 25px 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.cps-cov-card:hover {
    transform: translateY(-5px);
}

.cps-cov-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.cps-cov-icon svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.cps-cov-card-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #333;
}

/* Bottom Section */
.cps-cov-bottom {
    background: linear-gradient(135deg, #1a0b12 0%, #4a0e22 50%, #801633 100%);
    border-radius: 15px;
    padding: 60px;
    max-width: 1200px;
    margin: 0 auto;
    color: #fff;
    text-align: left;
}

.cps-cov-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
}

.cps-cov-left {
    flex: 1;
}

.cps-cov-bottom-head {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
}

.cps-cov-bottom-desc {
    font-size: 1rem;
    color: #d1d1d1;
    margin-bottom: 30px;
    line-height: 1.6;
}

.cps-cov-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cps-cov-feature-item {
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: #e0e0e0;
    display: flex;
    align-items: center;
}

.cps-cov-bullet {
    color: #d4af37; /* Gold bullet */
    margin-right: 10px;
    font-size: 1.2rem;
}

/* Right Box */
.cps-cov-right-box {
    flex: 0 0 450px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 40px;
    text-align: center;
    position: relative;
    backdrop-filter: blur(5px);
}

.cps-cov-pin-icon {
    font-size: 2rem;
    color: #ff4d4f; /* Red Pin */
    margin-bottom: 15px;
}

.cps-cov-right-head {
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0 0 10px;
    color: #fff;
}

.cps-cov-right-sub {
    font-size: 0.9rem;
    color: #d1d1d1;
    margin: 0 0 30px;
}

.cps-cov-stats-row {
    display: flex;
    gap: 15px;
}

.cps-cov-stat {
    flex: 1;
    background: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 8px;
    font-size: 0.85rem;
    color: #d1d1d1;
}

.cps-cov-stat strong {
    display: block;
    font-size: 1.3rem;
    color: #d4af37;
    margin-bottom: 5px;
}

/* Responsive */
@media (max-width: 1024px) {
    .cps-cov-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .cps-cov-bottom-inner {
        flex-direction: column;
        text-align: center;
    }
    
    .cps-cov-left {
        text-align: center;
    }
    
    .cps-cov-features {
        display: inline-block;
        text-align: left;
    }
    
    .cps-cov-right-box {
        width: 100%;
        flex: none;
    }
}

@media (max-width: 600px) {
    .cps-cov-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cps-cov-bottom {
        padding: 30px;
    }
    
    .cps-cov-stats-row {
        flex-direction: column;
    }
}
