/* Visa Booking Component - Enhanced Styles */
/* Note: All colors use theme variables from theme-colors.css */

.visa-booking-page {
    background: var(--bg-secondary);
    min-height: 100vh;
}

.booking-header {
    background: var(--primary);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.booking-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.1;
}

.booking-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.booking-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.booking-subtitle {
    font-size: 1.1rem;
    opacity: 0.95;
}

/* Visa Summary Card */
.visa-summary-card {
    background: var(--white);
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border: 1px solid var(--border);
}

.visa-info {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.visa-flag {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: var(--white);
    font-size: 24px;
    flex-shrink: 0;
}

.visa-flag img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.visa-details h5 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
}

.visa-details p {
    margin: 5px 0 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.processing-time {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: 8px;
    font-size: 0.85rem;
    color: var(--primary);
    font-weight: 600;
}

.visa-price {
    border-top: 2px solid var(--border);
    padding-top: 15px;
    text-align: center;
}

.price-amount {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 5px;
}

.visa-price small {
    color: var(--text-secondary);
    font-size: 0.85rem;
}

/* Progress Steps */
.booking-progress {
    background: var(--white);
    padding: 25px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.progress-steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.progress-steps::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--border);
    z-index: 0;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    position: relative;
    z-index: 1;
    flex: 1;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--white);
    border: 3px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    color: var(--text-muted);
    transition: all 0.3s ease;
}

.step.completed .step-number {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.step.active .step-number {
    border-color: var(--primary);
    color: var(--primary);
    box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.05);
}

.step-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    text-align: center;
}

.step.completed .step-label,
.step.active .step-label {
    color: var(--primary);
}

/* Requirements Card */
.requirements-card {
    background: var(--white);
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    margin-bottom: 20px;
}

.requirements-title {
    color: var(--text-primary);
    font-weight: 700;
    margin-bottom: 25px;
    font-size: 1.5rem;
}

.requirement-category {
    margin-bottom: 25px;
}

.requirement-category h6 {
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.requirement-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.requirement-list li {
    padding: 15px;
    margin-bottom: 12px;
    background: var(--bg-secondary);
    border-radius: 12px;
    border-left: 4px solid var(--primary);
    transition: all 0.3s ease;
}

.requirement-list li:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.requirement-list li i.fa-check {
    color: var(--success);
    font-size: 18px;
}

.requirement-list li i.fa-info-circle {
    color: var(--primary);
    font-size: 18px;
}

.requirement-list li strong {
    color: var(--text-primary);
    font-size: 1rem;
}

.requirement-list li small {
    display: block;
    margin-top: 5px;
    line-height: 1.5;
}

/* Processing Information */
.processing-info {
    background: var(--primary);
    border-radius: 15px;
    padding: 25px;
    color: var(--white);
}

.info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.info-item:last-child {
    border-bottom: none;
}

.info-item.total {
    margin-top: 10px;
    padding-top: 20px;
    border-top: 2px solid rgba(255, 255, 255, 0.3);
    font-size: 1.2rem;
    font-weight: 700;
}

.info-item .label {
    font-weight: 600;
    opacity: 0.9;
}

.info-item .value {
    font-weight: 700;
    font-size: 1.1rem;
}

/* Help Card */
.help-card {
    background: var(--secondary);
    border-radius: 20px;
    padding: 30px;
    color: var(--white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.help-card h5 {
    color: var(--white);
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.help-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.help-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.help-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.help-item i {
    font-size: 24px;
    opacity: 0.9;
}

.help-item strong {
    display: block;
    margin-bottom: 5px;
    font-size: 1rem;
}

.help-item p {
    margin: 0;
    opacity: 0.9;
    font-size: 0.9rem;
}

/* Booking Form Card */
.booking-form-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.step-title {
    color: var(--text-primary);
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 1.8rem;
}

.step-description {
    color: var(--text-secondary);
    margin-bottom: 30px;
    font-size: 1.05rem;
}

/* Form Sections */
.form-section {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 2px solid var(--border);
}

.form-section:last-child {
    border-bottom: none;
}

.form-section-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-section-title i {
    color: var(--primary);
}

/* OCR Section */
.ocr-section {
    background: var(--bg-secondary);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
}

.ocr-header {
    text-align: center;
    margin-bottom: 25px;
}

.ocr-header h5 {
    color: var(--text-primary);
    font-weight: 700;
    margin-bottom: 10px;
}

.ocr-header p {
    color: var(--text-secondary);
    margin: 0;
}

.ocr-upload {
    background: var(--white);
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.upload-area {
    position: relative;
    border: 2px dashed var(--border);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    background: var(--bg-secondary);
}

.upload-area:hover {
    border-color: var(--primary);
    background: var(--bg-primary);
}

.upload-info i {
    font-size: 40px;
    color: var(--primary);
    margin-bottom: 15px;
}

.upload-info p {
    margin: 10px 0 5px;
    color: var(--text-primary);
    font-weight: 600;
}

.upload-info small {
    color: var(--text-secondary);
}

/* Buttons */
.btn {
    border-radius: 12px;
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary {
    background: var(--primary);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    opacity: 0.9;
}

.btn-lg {
    padding: 15px 40px;
    font-size: 1.1rem;
}

.btn-outline-secondary {
    border: 2px solid var(--border);
    color: var(--text-secondary);
    background: var(--white);
}

.btn-outline-secondary:hover {
    background: var(--bg-secondary);
    border-color: var(--border);
}

/* Responsive */
@media (max-width: 768px) {
    .booking-title {
        font-size: 1.8rem;
    }
    
    .progress-steps {
        overflow-x: auto;
        padding: 10px 0;
    }
    
    .step-label {
        font-size: 0.75rem;
    }
    
    .requirements-card,
    .booking-form-card {
        padding: 25px;
    }
    
    .help-card {
        padding: 20px;
    }
}
