/* CalWhat Calculator Platform - ParkingFeeCalculator Specific Styles */
/* This file contains calculator-specific styles */
 

    .card-header h2 {
        font-size: 1.5rem;
        font-weight: 700;
        color: #2d3748;
        margin: 0;
    }

    /* Form Inputs */
    .form-group {
        margin-bottom: 20px;
    }

    .form-group label {
        display: flex;
        align-items: center;
        font-weight: 600;
        color: #2d3748;
        margin-bottom: 8px;
        font-size: 0.95rem;
    }

    .form-group label i {
        margin-right: 8px;
        color: #667eea;
    }

    .tooltip-icon {
        margin-left: 8px;
        color: #a0aec0;
        cursor: help;
        font-size: 0.9rem;
    }

    .form-input,
    .form-select {
        width: 100%;
        padding: 12px 15px;
        border: 2px solid #48bb78;
        border-radius: 12px;
        font-size: 1rem;
        transition: all 0.3s ease;
        font-family: 'Roboto Mono', monospace;
        background: white;
    }

    .form-input:focus,
    .form-select:focus {
        outline: none;
        border-color: #667eea;
        box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
    }

    /* Buttons */
    /* Results Display */
    .result-item {
        background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
        padding: 20px;
        border-radius: 15px;
        margin-bottom: 15px;
        border-left: 4px solid #667eea;
    }

    .result-label {
        font-size: 0.9rem;
        color: #718096;
        margin-bottom: 5px;
        display: flex;
        align-items: center;
    }

    .result-label i {
        margin-right: 8px;
        color: #667eea;
    }

    .result-value {
        font-size: 2rem;
        font-weight: 700;
        color: #2d3748;
        font-family: 'Roboto Mono', monospace;
    }

    .result-unit {
        font-size: 1rem;
        color: #a0aec0;
        margin-left: 8px;
    }

    /* Comparison Card */
    .comparison-card {
        background: linear-gradient(135deg, #ebf4ff 0%, #e0e7ff 100%);
        padding: 20px;
        border-radius: 15px;
        margin-bottom: 15px;
        border-left: 4px solid #667eea;
    }

    .comparison-row {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 12px 0;
        border-bottom: 1px solid rgba(102, 126, 234, 0.2);
    }

    .comparison-row:last-child {
        border-bottom: none;
    }

    .comparison-label {
        font-weight: 600;
        color: #2d3748;
    }

    .comparison-value {
        font-weight: 700;
        color: #667eea;
        font-family: 'Roboto Mono', monospace;
    }

    /* Recommendation Badge */
    .recommendation-badge {
        display: inline-block;
        background: linear-gradient(135deg, #48bb78 0%, #38a169 100%);
        color: white;
        padding: 8px 16px;
        border-radius: 20px;
        font-weight: 600;
        font-size: 0.9rem;
        margin-top: 10px;
    }

    .recommendation-badge.warning {
        background: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
    }

    /* Tips List */
    .tips-list {
        list-style: none;
        padding: 0;
    }

    .tips-list li {
        padding: 10px 0;
        color: #4a5568;
        line-height: 1.6;
    }

    /* Chart Container */
    #parkingChart {
        max-height: 350px;
        margin-top: 20px;
    }

    /* Animations */
    @keyframes fadeInDown {
        from {
            opacity: 0;
            transform: translateY(-30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* Responsive */
    @media (max-width: 768px) {
        .page-header h1 {
            font-size: 2rem;
        }

        .page-header .subtitle {
            font-size: 1rem;
        }

        .glass-card {
            padding: 20px;
        }

        .result-value {
            font-size: 1.5rem;
        }
    }

    /* 區域快速預設按鈕 */
    .region-presets {
        display: flex;
        gap: 10px;
        flex-wrap: wrap;
        margin-bottom: 20px;
    }

    .region-btn {
        flex: 1;
        min-width: 100px;
        padding: 12px 16px;
        background: white;
        border: 2px solid #667eea;
        border-radius: 10px;
        color: #667eea;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        text-align: center;
    }

    .region-btn:hover {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: white;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
    }

    .region-btn.active {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: white;
    }

    /* 快捷費用按鈕 */
    .quick-fee-buttons {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
        margin-top: 10px;
    }

    .quick-fee-btn {
        padding: 10px 12px;
        background: white;
        border: 2px solid #667eea;
        border-radius: 10px;
        color: #667eea;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        text-align: center;
        font-family: 'Roboto Mono', monospace;
    }

    .quick-fee-btn:hover {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: white;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
    }

    .quick-fee-btn.active {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: white;
    }

    /* 場景快選按鈕 */
    .scenario-buttons {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        margin-bottom: 20px;
    }

    .scenario-btn {
        padding: 16px 20px;
        background: white;
        border: 2px solid #48bb78;
        border-radius: 12px;
        color: #48bb78;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }

    .scenario-btn i {
        font-size: 1.5rem;
    }

    .scenario-btn:hover {
        background: linear-gradient(135deg, #48bb78 0%, #38a169 100%);
        color: white;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(72, 187, 120, 0.3);
    }

    .scenario-btn.active {
        background: linear-gradient(135deg, #48bb78 0%, #38a169 100%);
        color: white;
    }

    /* 長期成本推算卡片 */
    .long-term-projection {
        background: linear-gradient(135deg, #fef5e7 0%, #fdebd0 100%);
        padding: 20px;
        border-radius: 15px;
        margin-top: 20px;
        border-left: 4px solid #f59e0b;
    }

    .long-term-projection h4 {
        color: #2d3748;
        font-size: 1.1rem;
        margin-bottom: 15px;
        font-weight: 700;
    }

    .projection-row {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px 0;
        border-bottom: 1px solid rgba(245, 158, 11, 0.2);
    }

    .projection-row:last-child {
        border-bottom: none;
    }

    .projection-row span {
        color: #4a5568;
        font-weight: 600;
    }

    .projection-row strong {
        color: #f59e0b;
        font-size: 1.2rem;
        font-family: 'Roboto Mono', monospace;
    }

    /* SEO Content Section */
    section {
        margin-top: 60px;
        padding: 40px 30px;
        background: white;
        border-radius: 20px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    }

    section h2, section h3 {
        color: #2d3748;
        margin-top: 30px;
        margin-bottom: 15px;
        display: flex;
        align-items: center;
    }

    section h2 i, section h3 i {
        margin-right: 12px;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    section p, section li {
        color: #4a5568;
        line-height: 1.8;
        margin-bottom: 15px;
    }

    section ul, section ol {
        margin-left: 25px;
        margin-bottom: 20px;
    }