/* Description Styles */
#swoop-vat-calculator .description {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

#swoop-vat-calculator .intro {
    font-size: 1.2rem;
    color: #333;
    font-weight: 500;
    margin-bottom: 20px;
    line-height: 1.6;
}

#swoop-vat-calculator .intro strong {
    color: #003e52;
    font-weight: 600;
}

#swoop-vat-calculator .subtitle {
    font-size: 1.1rem;
    color: #003e52;
    font-weight: 500;
    margin-bottom: 15px;
    margin-top: 25px;
}

#swoop-vat-calculator .benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

#swoop-vat-calculator .benefits-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

#swoop-vat-calculator .benefits-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #003e52;
    font-weight: bold;
    font-size: 1.1rem;
}

/* Search Section */
#swoop-vat-calculator .search-section {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 62, 82, 0.1);
    margin-bottom: 40px;
    border: 1px solid #e9ecef;
}

#swoop-vat-calculator .input-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

#swoop-vat-calculator .input-group {
    margin-bottom: 0;
}

#swoop-vat-calculator .input-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #003e52;
    font-size: 0.95rem;
}

#swoop-vat-calculator .input-group input {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

#swoop-vat-calculator .input-group input:focus {
    outline: none;
    border-color: #003e52;
    background: white;
    box-shadow: 0 0 0 3px rgba(0, 62, 82, 0.1);
}

#swoop-vat-calculator .input-group input::placeholder {
    color: #adb5bd;
}

/* Button Styles */
#swoop-vat-calculator button {
    background: #003e52;
    color: white;
    border: none;
    padding: 18px 30px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
}

#swoop-vat-calculator button:hover {
    background: #002a3a;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(0, 62, 82, 0.2);
}

#swoop-vat-calculator button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

#swoop-vat-calculator .spinner {
    width: 20px;
    height: 20px;
    border: 2px solid #ffffff;
    border-top: 2px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Result Card Styles */
#swoop-vat-calculator .result-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 62, 82, 0.1);
    overflow: hidden;
    border: 1px solid #e9ecef;
}

#swoop-vat-calculator .result-header {
    background: #003e52;
    color: white;
    padding: 30px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#swoop-vat-calculator .result-header h2 {
    margin: 0;
    font-size: 1.8rem;
    font-weight: 600;
}

#swoop-vat-calculator .quote-badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Funding Offer Styles */
#swoop-vat-calculator .funding-offer {
    padding: 40px;
}

#swoop-vat-calculator .offer-summary {
    margin-bottom: 40px;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 12px;
    border: 1px solid #e9ecef;
}

#swoop-vat-calculator .summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

#swoop-vat-calculator .summary-item {
    flex: 1;
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 8px;
    border: 1px solid #e9ecef;
    min-width: 0;
}

#swoop-vat-calculator .summary-item.total {
    background: #003e52;
    color: white;
    border-color: #003e52;
}

#swoop-vat-calculator .summary-item .label {
    display: block;
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 8px;
    font-weight: 500;
}

#swoop-vat-calculator .summary-item.total .label {
    color: rgba(255, 255, 255, 0.9);
}

#swoop-vat-calculator .summary-item .value {
    font-size: 1.4rem;
    font-weight: 700;
    color: #003e52;
}

#swoop-vat-calculator .summary-item.total .value {
    color: white;
}

/* Payment Schedule */
#swoop-vat-calculator .payment-schedule {
    margin-bottom: 40px;
}

#swoop-vat-calculator .payment-schedule h3 {
    color: #003e52;
    margin-bottom: 25px;
    font-size: 1.4rem;
    font-weight: 600;
}

#swoop-vat-calculator .payment-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

#swoop-vat-calculator .payment-item {
    background: #f8f9fa;
    padding: 25px 20px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

#swoop-vat-calculator .payment-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 62, 82, 0.1);
}

#swoop-vat-calculator .payment-label {
    display: block;
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 10px;
    font-weight: 500;
}

#swoop-vat-calculator .payment-amount {
    font-size: 1.3rem;
    font-weight: 700;
    color: #003e52;
    display: block;
}

#swoop-vat-calculator .doc-fee {
    display: block;
    font-size: 0.8rem;
    color: #dc3545;
    font-weight: 600;
    margin-top: 8px;
    opacity: 0.9;
}

/* Offer Footer */
#swoop-vat-calculator .offer-footer {
    text-align: center;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 12px;
    border: 1px solid #e9ecef;
}

#swoop-vat-calculator .offer-footer p {
    margin: 0 0 25px 0;
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
}

#swoop-vat-calculator .cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

#swoop-vat-calculator .btn-primary {
    background: #003e52;
    color: white;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    width: auto;
}

#swoop-vat-calculator .btn-primary:hover {
    background: #002a3a;
    transform: translateY(-1px);
}

#swoop-vat-calculator .btn-secondary {
    background: white;
    color: #003e52;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    border: 2px solid #003e52;
    cursor: pointer;
    transition: all 0.3s ease;
    width: auto;
}

#swoop-vat-calculator .btn-secondary:hover {
    background: #003e52;
    color: white;
    transform: translateY(-1px);
}

/* Error Card */
#swoop-vat-calculator .error-card {
    background: #fff5f5;
    border: 1px solid #fed7d7;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
}

#swoop-vat-calculator .error-card h3 {
    color: #e53e3e;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

#swoop-vat-calculator .error-card p {
    color: #666;
    margin: 0;
}

/* Disclaimer Footer */
#swoop-vat-calculator .disclaimer {
    margin-top: 60px;
    padding: 30px 0;
    border-top: 1px solid #e9ecef;
}

#swoop-vat-calculator .disclaimer-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

#swoop-vat-calculator .disclaimer-content h4 {
    color: #003e52;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
}

#swoop-vat-calculator .disclaimer-content p {
    color: #666;
    font-size: 0.8rem;
    line-height: 1.5;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    #swoop-vat-calculator .container {
        padding: 20px 15px;
    }
    
    #swoop-vat-calculator .logo-section {
        flex-direction: column;
        gap: 15px;
    }

    #swoop-vat-calculator .search-section {
        padding: 30px 20px;
    }
    
    #swoop-vat-calculator .input-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    #swoop-vat-calculator .result-header {
        padding: 25px 20px;
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    #swoop-vat-calculator .funding-offer {
        padding: 25px 20px;
    }
    
    #swoop-vat-calculator .offer-summary {
        grid-template-columns: 1fr;
        padding: 20px;
    }
    
    #swoop-vat-calculator .summary-row {
        flex-direction: column;
        gap: 15px;
    }
    
    #swoop-vat-calculator .summary-item {
        width: 100%;
    }
    
    #swoop-vat-calculator .payment-grid {
        grid-template-columns: 1fr;
    }
    
    #swoop-vat-calculator .cta-buttons {
        flex-direction: column;
    }
    
    #swoop-vat-calculator .btn-primary, .btn-secondary {
        width: 100%;
    }
}