/* UCC Scout Plugin Styles - Extracted from template */
/* This file contains the CSS styles for the Scout plugin */

/* Advanced Scout Pricing Styles */
.ucc-scout-pricing {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Hero Section */
.ucc-scout-hero {
    text-align: center;
    padding: 60px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    color: white;
    margin-bottom: 40px;
}

.ucc-scout-hero h1 {
    font-size: 3em;
    font-weight: 700;
    margin-bottom: 20px;
}

.ucc-scout-hero p {
    font-size: 1.2em;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Benefits Grid */
.ucc-scout-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 50px;
}

.ucc-scout-benefit-card {
    background: #f8fafc;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.ucc-scout-benefit-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.ucc-scout-benefit-card h3 {
    color: #1e293b;
    margin-bottom: 15px;
    font-size: 1.3em;
}

.ucc-scout-benefit-card p {
    color: #64748b;
    line-height: 1.6;
}

/* Pricing Section */
.ucc-scout-pricing-section {
    background: #ffffff;
    border-radius: 12px;
    padding: 40px;
    border: 1px solid #e2e8f0;
    margin-bottom: 40px;
}

.ucc-scout-pricing-header {
    text-align: center;
    margin-bottom: 40px;
}

.ucc-scout-pricing-header h2 {
    font-size: 2.5em;
    color: #1e293b;
    margin-bottom: 10px;
}

.ucc-scout-pricing-header p {
    color: #64748b;
    font-size: 1.1em;
}

/* Tier Selection */
.ucc-scout-tier-selection {
    margin-bottom: 40px;
}

.ucc-scout-tier-label {
    display: block;
    font-weight: 600;
    color: #374151;
    margin-bottom: 15px;
    font-size: 1.1em;
}

.ucc-scout-tiers {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.ucc-scout-tier {
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.ucc-scout-tier:hover {
    border-color: #667eea;
    transform: translateY(-2px);
}

.ucc-scout-tier.selected {
    background: #667eea;
    border-color: #667eea;
    color: white;
}

.ucc-scout-tier-name {
    font-size: 1.4em;
    font-weight: 700;
    margin-bottom: 5px;
}

.ucc-scout-tier-price {
    font-size: 1.8em;
    font-weight: 800;
    color: #667eea;
}

.ucc-scout-tier.selected .ucc-scout-tier-price {
    color: white;
}

.ucc-scout-tier-desc {
    font-size: 0.9em;
    opacity: 0.8;
    margin-top: 5px;
}

/* Quantity Selection */
.ucc-scout-quantity-selection {
    margin-bottom: 30px;
}

.ucc-scout-quantity-label {
    display: block;
    font-weight: 600;
    color: #374151;
    margin-bottom: 15px;
    font-size: 1.1em;
}

.ucc-scout-qty-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.ucc-scout-qty-btn {
    padding: 10px 20px;
    border: 2px solid #667eea;
    background: #667eea;
    color: white;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.ucc-scout-qty-btn:hover {
    background: #5a67d8;
    border-color: #5a67d8;
    transform: translateY(-1px);
}

.ucc-scout-qty-btn.selected {
    background: #4c51bf;
    border-color: #4c51bf;
}

/* Language Selection */
.ucc-scout-language-selection {
    margin-bottom: 30px;
}

.ucc-scout-language-options {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.ucc-scout-language-option {
    display: flex;
    align-items: center;
    gap: 8px;
}

.ucc-scout-language-option input[type="radio"] {
    margin: 0;
}

/* Form Section */
.ucc-scout-form-section {
    background: #ffffff;
    border-radius: 12px;
    padding: 40px;
    border: 1px solid #e2e8f0;
    margin-bottom: 30px;
}

.ucc-scout-form-section h3 {
    color: #1e293b;
    margin-bottom: 20px;
    font-size: 1.4em;
    border-bottom: 2px solid #667eea;
    padding-bottom: 10px;
}

/* Target Information */
.ucc-scout-target-info {
    margin-bottom: 30px;
}

.ucc-scout-target-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.ucc-scout-target-item label {
    display: block;
    font-weight: 600;
    color: #374151;
    margin-bottom: 8px;
}

.ucc-scout-target-item input,
.ucc-scout-target-item select {
    width: 100%;
    padding: 12px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 1em;
}

.ucc-scout-target-item input:focus,
.ucc-scout-target-item select:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

/* Analysis Scope */
.ucc-scout-analysis-scope {
    margin-bottom: 30px;
}

.ucc-scout-scope-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.ucc-scout-scope-item label {
    display: block;
    font-weight: 600;
    color: #374151;
    margin-bottom: 8px;
}

.ucc-scout-scope-item input,
.ucc-scout-scope-item select {
    width: 100%;
    padding: 12px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 1em;
}

.ucc-scout-scope-item input:focus,
.ucc-scout-scope-item select:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

/* Opening Filter */
.ucc-scout-opening-filter {
    background: #f8fafc;
    border-radius: 12px;
    padding: 30px;
    border: 1px solid #e2e8f0;
    margin-bottom: 30px;
}

.ucc-scout-opening-filter h4 {
    color: #1e293b;
    margin-bottom: 15px;
    font-size: 1.3em;
}

.ucc-scout-defense-group {
    margin-bottom: 25px;
}

.ucc-scout-defense-group h5 {
    color: #374151;
    margin-bottom: 15px;
    font-size: 1.1em;
}

.ucc-scout-defense-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px;
}

.ucc-scout-defense-option {
    display: flex;
    align-items: center;
    gap: 8px;
}

.ucc-scout-defense-option input[type="checkbox"] {
    margin: 0;
}

.ucc-scout-defense-option label {
    margin: 0;
    cursor: pointer;
    font-size: 0.9em;
}

/* Custom Opening */
.ucc-scout-custom-opening {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e2e8f0;
}

.ucc-scout-custom-opening-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.ucc-scout-custom-opening label {
    display: block;
    font-weight: 600;
    color: #374151;
    margin-bottom: 8px;
}

.ucc-scout-custom-opening textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 1em;
    min-height: 80px;
    resize: vertical;
}

.ucc-scout-custom-opening textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

/* Summary Section */
.ucc-scout-summary {
    background: #f0f9ff;
    border: 1px solid #bae6fd;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 30px;
}

.ucc-scout-summary h4 {
    color: #0369a1;
    margin-bottom: 15px;
    font-size: 1.2em;
}

.ucc-scout-summary-content {
    color: #0c4a6e;
    line-height: 1.6;
}

.ucc-scout-summary-price {
    font-size: 1.5em;
    font-weight: 700;
    color: #0369a1;
    margin-top: 10px;
}

/* Submit Button */
.ucc-scout-submit-section {
    text-align: center;
}

.ucc-scout-submit-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.ucc-scout-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

.ucc-scout-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Alert */
.ucc-scout-alert {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #dc2626;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    display: none;
}

.ucc-scout-alert.success {
    background: #f0fdf4;
    border-color: #bbf7d0;
    color: #16a34a;
}

/* Responsive Design */
@media (max-width: 768px) {
    .ucc-scout-tiers {
        grid-template-columns: 1fr;
    }
    
    .ucc-scout-target-row,
    .ucc-scout-scope-row,
    .ucc-scout-custom-opening-row {
        grid-template-columns: 1fr;
    }
    
    .ucc-scout-language-options {
        flex-direction: column;
        gap: 10px;
    }
    
    .ucc-scout-hero h1 {
        font-size: 2em;
    }
    
    .ucc-scout-pricing-section,
    .ucc-scout-form-section {
        padding: 20px;
    }
}
