/* Subscription Plans Styles */
.subscription-plan-card {
    transition: all 0.3s ease;
    border: none !important;
}

.subscription-plan-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1) !important;
}

.plan-features {
    min-height: 200px;
}

.feature-item {
    border-bottom: 1px solid #f8f9fa;
    padding-bottom: 0.75rem;
}

.feature-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.price-display {
    line-height: 1.2;
}

/* Form Steps */
.form-step {
    display: none;
}

.form-step.active {
    display: block;
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Progress Bar */
.progress {
    background-color: #e9ecef;
    border-radius: 10px;
    overflow: hidden;
}

.progress-bar {
    transition: width 0.5s ease;
}

/* Form Styling */
.form-control-lg {
    border-radius: 8px;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
}

.form-control-lg:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
}

.form-control.is-invalid {
    border-color: #dc3545;
}

.form-text {
    font-size: 0.875rem;
    color: #6c757d;
}

/* Card Styling */
.card {
    border: none;
    border-radius: 15px;
}

.card-header {
    border-radius: 15px 15px 0 0 !important;
}

/* Button Styling */
.btn-lg {
    border-radius: 8px;
    font-weight: 600;
    padding: 12px 30px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .card-body {
        padding: 1.5rem !important;
    }
    
    .btn-lg {
        padding: 10px 20px;
        font-size: 1rem;
    }
    
    .form-control-lg {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .card-body {
        padding: 1rem !important;
    }
    
    .btn-lg {
        width: 100%;
        margin-bottom: 10px;
    }
    
    .row.g-3 > [class*="col-"] {
        margin-bottom: 1rem;
    }
}

/* Modal Styling */
.modal-content {
    border: none;
    border-radius: 15px;
}

.modal-header {
    border-radius: 15px 15px 0 0;
}

/* Review Section */
#review-content {
    font-size: 0.95rem;
}

#review-content p {
    margin-bottom: 0.5rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid #f8f9fa;
}

#review-content p:last-child {
    border-bottom: none;
}

/* Loading States */
.loading-spinner .spinner-border {
    width: 1rem;
    height: 1rem;
}

/* Plan Badge */
.plan-badge {
    border-left: 4px solid #0d6efd;
}

/* Custom Utilities */
.text-primary {
    color: #0d6efd !important;
}

.bg-primary {
    background-color: #0d6efd !important;
}

.btn-primary {
    background-color: #0d6efd;
    border-color: #0d6efd;
}

.btn-primary:hover {
    background-color: #0b5ed7;
    border-color: #0a58ca;
}

/* Success and Error States */
.border-success {
    border-color: #198754 !important;
}

.border-danger {
    border-color: #dc3545 !important;
}

/* File Input Styling */
input[type="file"]::file-selector-button {
    background-color: #6c757d;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    margin-right: 10px;
    transition: background-color 0.3s ease;
}

input[type="file"]::file-selector-button:hover {
    background-color: #5c636a;
}

/* Print Styles */
@media print {
    .btn, .progress, .modal {
        display: none !important;
    }
    
    .card {
        border: 1px solid #000 !important;
        box-shadow: none !important;
    }
}