/* Futturu ROI Simulator Styles */
.futturu-roi-simulator {
    max-width: 800px;
    margin: 40px auto;
    padding: 30px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

.futturu-roi-title {
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 10px;
}

.futturu-roi-subtitle {
    font-size: 16px;
    color: #7f8c8d;
    text-align: center;
    margin-bottom: 30px;
}

.futturu-roi-section {
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 1px solid #ecf0f1;
}

.futturu-roi-section:last-of-type {
    border-bottom: none;
}

.futturu-roi-section-title {
    font-size: 20px;
    font-weight: 600;
    color: #34495e;
    margin-bottom: 20px;
}

.futturu-roi-field {
    margin-bottom: 20px;
}

.futturu-roi-field label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
}

.futturu-roi-field input[type="text"],
.futturu-roi-field input[type="number"],
.futturu-roi-field input[type="email"],
.futturu-roi-field input[type="tel"],
.futturu-roi-field select,
.futturu-roi-field textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #ecf0f1;
    border-radius: 6px;
    font-size: 15px;
    color: #2c3e50;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.futturu-roi-field input:focus,
.futturu-roi-field select:focus,
.futturu-roi-field textarea:focus {
    outline: none;
    border-color: #3498db;
}

.futturu-roi-field input[type="range"] {
    width: 100%;
    margin-bottom: 10px;
    cursor: pointer;
}

.futturu-roi-field input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    background: #3498db;
    border-radius: 50%;
    cursor: pointer;
}

.futturu-roi-field input[type="range"]::-moz-range-thumb {
    width: 20px;
    height: 20px;
    background: #3498db;
    border-radius: 50%;
    cursor: pointer;
    border: none;
}

#futturu_hours_display {
    font-weight: 700;
    color: #3498db;
    font-size: 18px;
}

.futturu-roi-button {
    display: block;
    width: 100%;
    padding: 15px 30px;
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    margin-top: 10px;
}

.futturu-roi-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
}

.futturu-roi-button:active {
    transform: translateY(0);
}

.futturu-roi-button-submit {
    background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
}

.futturu-roi-button-submit:hover {
    box-shadow: 0 6px 20px rgba(39, 174, 96, 0.4);
}

/* Results Section */
.futturu-roi-results {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid #ecf0f1;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.futturu-roi-results-title {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 30px;
}

.futturu-roi-comparison {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.futturu-roi-card {
    flex: 1;
    min-width: 280px;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
}

.futturu-roi-card-current {
    background: #fdf2e9;
    border: 2px solid #f39c12;
}

.futturu-roi-card-futturu {
    background: #e8f8f5;
    border: 2px solid #27ae60;
}

.futturu-roi-card h4 {
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
}

.futturu-roi-value {
    font-size: 32px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 10px;
}

.futturu-roi-currency {
    font-size: 24px;
    vertical-align: super;
}

.futturu-roi-period {
    font-size: 16px;
    font-weight: 400;
    color: #7f8c8d;
}

.futturu-roi-detail {
    font-size: 14px;
    color: #7f8c8d;
    margin-top: 10px;
}

.futturu-roi-savings {
    background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
    color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 30px;
}

.futturu-roi-savings h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    opacity: 0.95;
}

.futturu-roi-savings-amount {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 10px;
}

.futturu-roi-savings-percent {
    font-size: 28px;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.2);
    display: inline-block;
    padding: 8px 20px;
    border-radius: 20px;
    margin-bottom: 15px;
}

.futturu-roi-hours-freed {
    font-size: 16px;
    opacity: 0.95;
}

.futturu-roi-benefits {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.futturu-roi-benefits h4 {
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 10px;
}

.futturu-roi-benefits p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
    margin: 0;
}

.futturu-roi-disclaimer {
    font-size: 13px;
    color: #95a5a6;
    text-align: center;
    font-style: italic;
    margin-bottom: 30px;
}

/* Contact Form */
.futturu-roi-contact {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
}

.futturu-roi-contact h4 {
    font-size: 20px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 20px;
    text-align: center;
}

.futturu-contact-field {
    margin-bottom: 15px;
}

.futturu-contact-field label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 6px;
}

.futturu-contact-field input,
.futturu-contact-field textarea {
    width: 100%;
    padding: 10px 12px;
    border: 2px solid #ecf0f1;
    border-radius: 6px;
    font-size: 14px;
    box-sizing: border-box;
}

.futturu-contact-success {
    background: #d4edda;
    color: #155724;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    margin-top: 20px;
}

.futturu-contact-success p {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
    .futturu-roi-simulator {
        padding: 20px;
        margin: 20px;
    }
    
    .futturu-roi-title {
        font-size: 24px;
    }
    
    .futturu-roi-comparison {
        flex-direction: column;
    }
    
    .futturu-roi-card {
        min-width: 100%;
    }
    
    .futturu-roi-value {
        font-size: 28px;
    }
    
    .futturu-roi-savings-amount {
        font-size: 36px;
    }
    
    .futturu-roi-savings-percent {
        font-size: 24px;
    }
}

/* Loading State */
.futturu-roi-loading {
    opacity: 0.6;
    pointer-events: none;
}

.futturu-roi-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
    margin-right: 10px;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}
