/* ==========================================
   PRICING CALCULATOR STYLES
   ========================================== */

.pricing-calculator {
    padding: 80px 0;
    background: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 100%);
}

.pricing-calculator .section-title {
    font-size: 48px;
    margin-bottom: 16px;
    color: var(--dark-gray);
}

.pricing-calculator .section-subtitle {
    font-size: 18px;
    color: var(--medium-gray);
    max-width: 700px;
    margin: 0 auto 48px;
}

/* Subscription Toggle */
.subscription-toggle {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 16px;
}

.toggle-btn {
    position: relative;
    padding: 16px 48px;
    border: 2px solid var(--border-color);
    background: white;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    color: var(--dark-gray);
    cursor: pointer;
    transition: all 0.3s ease;
}

.toggle-btn:hover {
    border-color: #7ED957;
    transform: translateY(-2px);
}

.toggle-btn.active {
    background: #7ED957;
    color: white;
    border-color: #7ED957;
}

.toggle-label {
    font-size: 18px;
}

.toggle-subtitle {
    text-align: center;
    font-size: 14px;
    color: var(--medium-gray);
    margin: 0 0 32px 0;
    font-weight: 500;
}

/* Services Grid */
.calculator-services {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto 24px;
}

.service-card {
    background: white;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.service-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 28px;
}

.service-icon {
    font-size: 32px;
}

.service-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark-gray);
    margin: 0;
}

.service-option {
    margin-bottom: 24px;
}

.option-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Visit Buttons */
.visit-buttons {
    display: flex;
    gap: 12px;
}

.visit-btn {
    flex: 1;
    padding: 14px;
    border: 2px solid var(--border-color);
    background: white;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    color: var(--dark-gray);
    cursor: pointer;
    transition: all 0.3s ease;
}

.visit-btn:hover {
    border-color: #7ED957;
    background: rgba(126, 217, 87, 0.05);
}

.visit-btn.selected {
    border-color: #7ED957;
    background: #7ED957;
    color: white;
}

/* Hours Slider */
.hours-selector {
    position: relative;
}

.hours-slider {
    width: 100%;
    height: 8px;
    border-radius: 4px;
    background: var(--border-color);
    outline: none;
    -webkit-appearance: none;
    cursor: pointer;
}

.hours-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #7ED957;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(126, 217, 87, 0.4);
    transition: all 0.3s ease;
}

.hours-slider::-webkit-slider-thumb:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(126, 217, 87, 0.6);
}

.hours-slider::-moz-range-thumb {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #7ED957;
    cursor: pointer;
    border: none;
    box-shadow: 0 2px 8px rgba(126, 217, 87, 0.4);
}

.hours-display {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-top: 12px;
    font-size: 24px;
    font-weight: 700;
    color: var(--dark-gray);
}

.hours-value {
    font-size: 32px;
    color: #7ED957;
}

.hours-label {
    font-size: 16px;
    font-weight: 400;
    color: var(--medium-gray);
}



/* FAQ Link */
.handyman-faq-link {
    text-align: center;
    margin: 24px auto 48px;
    max-width: 600px;
}

.handyman-faq-link p {
    font-size: 15px;
    color: var(--medium-gray);
    margin: 0;
}

.faq-link-text {
    color: #7ED957;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.faq-link-text:hover {
    text-decoration: underline;
    color: #6BC847;
}

/* Price Summary */
.price-summary {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.total-display {
    text-align: center;
}

.total-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.total-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--medium-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.total-amount {
    font-size: 48px;
    font-weight: 700;
    color: #7ED957;
    line-height: 1;
}

.savings-display {
    padding: 16px 24px;
    background: rgba(126, 217, 87, 0.1);
    border-radius: 12px;
    border: 2px solid rgba(126, 217, 87, 0.3);
    margin-bottom: 24px;
}

.savings-text {
    font-size: 16px;
    color: var(--dark-gray);
    margin: 0;
    text-align: center;
}

.savings-text strong {
    color: #7ED957;
    font-size: 20px;
}

/* CTA Button */
.cta-calculator-btn {
    display: block;
    width: 100%;
    padding: 20px 40px;
    background: #7ED957;
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(126, 217, 87, 0.3);
    text-decoration: none;
    text-align: center;
}

.cta-calculator-btn:hover {
    background: #6BC847;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(126, 217, 87, 0.4);
    color: white;
}

.cta-calculator-btn:active {
    transform: translateY(-1px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .calculator-services {
        gap: 24px;
    }
    
    .service-card {
        padding: 24px;
    }
}

@media (max-width: 768px) {
    .pricing-calculator {
        padding: 60px 0;
    }
    
    .pricing-calculator .section-title {
        font-size: 36px;
    }
    
    .pricing-calculator .section-subtitle {
        font-size: 16px;
    }
    
    .subscription-toggle {
        flex-direction: row;
        gap: 12px;
    }
    
    .toggle-btn {
        padding: 14px 24px;
        font-size: 16px;
    }
    
    .calculator-services {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-card {
        padding: 24px;
    }
    
    .service-title {
        font-size: 20px;
    }
    
    .visit-buttons {
        gap: 8px;
    }
    
    .visit-btn {
        padding: 12px;
        font-size: 16px;
    }
    
    .price-summary {
        padding: 32px 24px;
    }
    
    .total-amount {
        font-size: 36px;
    }
    
    .cta-calculator-btn {
        font-size: 18px;
        padding: 18px 32px;
    }
}

@media (max-width: 480px) {
    .subscription-toggle {
        flex-direction: column;
        width: 100%;
    }
    
    .toggle-btn {
        width: 100%;
    }
    
    .total-amount {
        font-size: 32px;
    }
}
