.elementor-51248 .elementor-element.elementor-element-105fd13{--display:flex;--flex-direction:row;--container-widget-width:initial;--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;--gap:0px 0px;--row-gap:0px;--column-gap:0px;--margin-top:0%;--margin-bottom:0%;--margin-left:0%;--margin-right:0%;--padding-top:5%;--padding-bottom:15%;--padding-left:10%;--padding-right:10%;}.elementor-51248 .elementor-element.elementor-element-0e7732d{--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;--padding-top:10px;--padding-bottom:10px;--padding-left:10px;--padding-right:10px;}@media(min-width:768px){.elementor-51248 .elementor-element.elementor-element-0e7732d{--width:100%;}}/* Start custom CSS for html, class: .elementor-element-26b5d55 *//* Corsica Tech Calculator Styles - Theme Neutral */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background: transparent; /* Use site's background */
}

.calculator-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
    background: transparent; /* Use site's background */
}

.calculator-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
    border-radius: 20px;
    color: white;
    box-shadow: 0 20px 40px rgba(79, 70, 229, 0.3);
}

.calculator-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    color: white; /* Keep white for contrast on colored background */
}

.calculator-header h2 {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    color: white; /* Keep white for contrast on colored background */
}
.calculator-header p {
    font-size: 1.3rem;
    opacity: 0.9;
    max-width: 400px;
    margin: 0 auto;
    color: white;
}

/* Calculator Grid */
.calculator-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

@media (max-width: 768px) {
    .calculator-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Input Section */
.input-section {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
}

.section-header {
    margin-bottom: 2rem;
}

.section-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.section-header p {
    color: #6b7280;
    font-size: 0.95rem;
}

.input-group {
    margin-bottom: 1.5rem;
}

.input-group label {
    display: block;
    font-weight: 500;
    color: #374151;
    margin-bottom: 0.5rem;
}

/* Slider Styles */
.slider-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

input[type="range"] {
    flex: 1;
    height: 6px;
    border-radius: 3px;
    background: #e5e7eb;
    outline: none;
    -webkit-appearance: none;
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #2563eb;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(37, 99, 235, 0.3);
}

input[type="range"]::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #2563eb;
    cursor: pointer;
    border: none;
    box-shadow: 0 2px 4px rgba(37, 99, 235, 0.3);
}

input[type="number"] {
    width: 80px;
    padding: 0.5rem;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 0.9rem;
    text-align: center;
}

.range-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: #6b7280;
    margin-top: 0.25rem;
}

/* Select Input */
.select-input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 0.95rem;
    background: white;
    color: #374151;
}

/* Service Cards */
.service-cards {
    display: grid;
    gap: 1rem;
    margin-top: 1.5rem;
}

.service-card {
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 1rem;
    background: #f9fafb;
    transition: all 0.2s ease;
}

.service-card:hover {
    border-color: #2563eb;
    background: #eff6ff;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.card-header h5 {
    font-size: 1rem;
    font-weight: 500;
    color: #1f2937;
}

/* Toggle Switch */
.toggle-switch {
    position: relative;
    width: 44px;
    height: 24px;
}

.toggle-switch input[type="checkbox"] {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-switch label {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #d1d5db;
    border-radius: 24px;
    transition: 0.3s;
}

.toggle-switch label:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    border-radius: 50%;
    transition: 0.3s;
}

.toggle-switch input:checked + label {
    background-color: #2563eb;
}

.toggle-switch input:checked + label:before {
    transform: translateX(20px);
}

.card-content {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.card-content label {
    font-size: 0.85rem;
    color: #6b7280;
    margin-bottom: 0;
}

.number-input {
    padding: 0.5rem;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 0.9rem;
    width: 100%;
}

/* Results Section */
.results-section {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
}

.results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.results-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
}

.pricing-badge {
    background: #10b981;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Total Price Display */
.total-price {
    text-align: center;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f0fdf4;
    border-radius: 12px;
    border: 2px solid #10b981;
}

.total-price .currency {
    font-size: 1.5rem;
    color: #059669;
    font-weight: 600;
}

.total-price .amount {
    font-size: 3rem;
    font-weight: 700;
    color: #059669;
    margin: 0 0.25rem;
}

.total-price .period {
    font-size: 1.2rem;
    color: #6b7280;
    font-weight: 500;
}

/* Price Breakdown */
.price-breakdown h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
}

.breakdown-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.breakdown-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    border-radius: 8px;
    font-size: 0.9rem;
}

.corsica-pricing {
    background: #f0fdf4;
    border: 1px solid #10b981;
}

.corsica-pricing .service-price {
    color: #059669;
    font-weight: 600;
}

.competitor-pricing {
    background: #fef2f2;
    border: 1px solid #ef4444;
}

.competitor-pricing .service-price {
    color: #dc2626;
    font-weight: 600;
}

.competitor-incident-pricing {
    background: #fef2f2;
    border: 2px solid #dc2626;
}

.competitor-incident-pricing .service-price {
    color: #dc2626;
    font-weight: 700;
}

.savings-highlight {
    background: #fffbeb;
    border: 1px solid #f59e0b;
}

.savings-highlight .service-price {
    color: #d97706;
    font-weight: 600;
}

.incident-savings-highlight {
    background: #f0fdf4;
    border: 2px solid #10b981;
}

.incident-savings-highlight .service-price {
    color: #059669;
    font-weight: 700;
}

.minimum-notice {
    background: #eff6ff;
    border: 1px solid #2563eb;
    padding: 1rem;
}

.minimum-content h4 {
    color: #1e40af;
    margin-bottom: 0.5rem;
}

.minimum-content p {
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.contact-note {
    font-style: italic;
    color: #6b7280;
}

/* Value Props */
.value-props {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.value-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.value-icon {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2563eb;
}

.value-item span {
    font-size: 0.9rem;
    font-weight: 500;
    color: #374151;
}

/* Comparison Note */
.comparison-note {
    text-align: center;
    padding: 1rem;
    background: #fffbeb;
    border-radius: 8px;
    border: 1px solid #f59e0b;
    margin: 1rem 0;
}

.comparison-note p {
    color: #92400e;
    font-size: 0.9rem;
    margin: 0.5rem 0;
}

.risk-note {
    background: #fef2f2;
    border: 1px solid #ef4444;
    color: #dc2626;
    padding: 0.75rem;
    border-radius: 6px;
    margin-top: 1rem;
    font-weight: 500;
}

.risk-warning {
    background: #fef2f2;
    border: 1px solid #ef4444;
    color: #dc2626;
}

/* Contact Form */
.contact-form {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
    margin-top: 2rem;
}

.form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.form-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.form-header p {
    color: #6b7280;
    font-size: 0.95rem;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr;
    }
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-weight: 500;
    color: #374151;
    font-size: 0.9rem;
}

.form-input {
    padding: 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: border-color 0.2s ease;
}

.form-input:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-textarea {
    resize: vertical;
    min-height: 100px;
}

.submit-btn {
    width: 100%;
    background: #2563eb;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s ease;
    margin-top: 1rem;
}

.submit-btn:hover {
    background: #1d4ed8;
}

.submit-btn:disabled {
    background: #9ca3af;
    cursor: not-allowed;
}

/* Success/Error Messages */
.success-message,
.error-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
}

.success-message {
    background: #f0fdf4;
    border: 1px solid #10b981;
    color: #059669;
}

.error-message {
    background: #fef2f2;
    border: 1px solid #ef4444;
    color: #dc2626;
}

/* Animations */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

@keyframes highlight {
    0% { background-color: inherit; }
    50% { background-color: #fef3c7; }
    100% { background-color: inherit; }
}

@keyframes savingsGlow {
    0% { box-shadow: 0 0 0 rgba(16, 185, 129, 0); }
    50% { box-shadow: 0 0 20px rgba(16, 185, 129, 0.3); }
    100% { box-shadow: 0 0 0 rgba(16, 185, 129, 0); }
}

.pulse {
    animation: pulse 0.5s ease-in-out;
}

.highlight-savings {
    animation: highlight 1s ease-in-out;
}

.savings-glow {
    animation: savingsGlow 1.5s ease-in-out;
}

/* Enhanced hover effects */
.breakdown-item {
    transition: all 0.3s ease;
}

.breakdown-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.savings-highlight:hover,
.incident-savings-highlight:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .calculator-container {
        padding: 1rem;
    }
    
    .calculator-header h1 {
        font-size: 2rem;
    }
    
    .total-price .amount {
        font-size: 2.5rem;
    }
    
    .value-props {
        grid-template-columns: 1fr;
    }
    
    .breakdown-item {
        font-size: 0.8rem;
        padding: 0.5rem;
    }
}

/* WordPress/Elementor Integration Styles */
.elementor-widget-container .calculator-container {
    max-width: 100%;
    margin: 0;
    padding: 0;
}

.elementor-widget-container .calculator-header {
    margin-bottom: 2rem;
}

/* Accessibility - Respect reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
    .pulse,
    .highlight-savings,
    .savings-glow {
        animation: none !important;
    }
    
    * {
        transition-duration: 0.1s !important;
    }
}

/* Focus styles for keyboard navigation */
button:focus,
input:focus,
select:focus {
    outline: 2px solid #2563eb;
    outline-offset: 2px;
}

/* Calculator Footer */
.calculator-footer {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem 1rem;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.footer-content p {
    color: #374151;
    font-size: 0.95rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.footer-content strong {
    color: #2563eb;
    font-weight: 600;
}

.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.trust-indicators span {
    color: #6b7280;
    font-size: 0.85rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    background: white;
    border-radius: 20px;
    border: 1px solid #e5e7eb;
}

@media (max-width: 768px) {
    .trust-indicators {
        gap: 1rem;
    }
    
    .trust-indicators span {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
}/* End custom CSS */