/* --- WIZARD STYLES (Laptop/Tablet) --- */
.repair-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    padding: 50px 0;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

.repair-sidebar {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
}

.repair-content {
    flex: 3;
    min-width: 300px;
}

/* Trust Badges in Sidebar */
.trust-badge {
    background: white;
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    gap: 15px;
    transition: 0.3s;
}

.trust-badge:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.trust-icon {
    font-size: 1.5rem;
    color: var(--accent);
    width: 40px;
    text-align: center;
}

.trust-text h4 {
    margin: 0;
    font-size: 1rem;
    color: var(--primary);
}

.trust-text p {
    margin: 3px 0 0;
    font-size: 0.85rem;
    color: #666;
}

/* Accordion Steps */
.accordion-step {
    background: white;
    margin-bottom: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    border: 1px solid #eee;
}

.step-header {
    padding: 20px 25px;
    background: #f8f9fa;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: 0.3s;
}

.step-header.active {
    background: var(--primary);
    color: white;
}

.step-header.completed {
    background: #e8f5e9;
    color: var(--primary);
}

.step-title {
    font-weight: 700;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 15px;
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    font-size: 0.9rem;
}

.step-header.active .step-number {
    background: white;
    color: var(--primary);
}

.step-summary {
    font-size: 0.9rem;
    font-weight: 600;
}

.step-content {
    display: none;
    padding: 30px;
    background: white;
    animation: slideDown 0.3s ease-out;
}

.step-content.active {
    display: block;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Grids */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 15px;
}

/* Selection Cards */
.selection-card {
    border: 2px solid #eee;
    padding: 20px;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.3s;
    text-align: center;
}

.selection-card:hover,
.selection-item:hover {
    border-color: var(--accent);
    background: #f4fff4;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s;
    background-color: #f8f9fa;
    height: 50px;
    /* Consistent height */
    appearance: none;
    /* Remove default styling */
}

/* Custom styling for date/select specifically */
input[type="date"],
select.form-control {
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    color: #333;
}

select.form-control {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23333' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 16px;
    padding-right: 40px;
}

/* Enhanced Date Input */
input[type="date"].form-control {
    font-family: 'Inter', sans-serif;
    color: #333;
    padding-right: 15px;
    background-color: #fff;
}

/* Remove default calendar icon in some browsers to use custom if needed, 
   but for now just ensure it looks clean */
input[type="date"]::-webkit-inner-spin-button,
input[type="date"]::-webkit-calendar-picker-indicator {
    cursor: pointer;
    opacity: 0.6;
    transition: 0.2s;
}

input[type="date"]::-webkit-calendar-picker-indicator:hover {
    opacity: 1;
}

.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(14, 51, 95, 0.1);
    outline: none;
    background-color: #fff;
}

.selection-item {
    padding: 15px;
    border: 1px solid #eee;
    border-radius: 8px;
    text-align: center;
    cursor: pointer;
    background: #fff;
    font-weight: 500;
    display: flex;
    gap: 5px;
    transition: 0.2s;
}

.selection-item:hover {
    border-color: var(--accent);
    background: #f4fff4;
}

.selection-item.back-item {
    background: #f8f9fa;
    border-color: #ddd;
    color: #666;
    grid-column: 1 / -1;
    /* Full width button */
    margin-top: 10px;
    justify-content: center;
}

.selection-item.back-item:hover {
    background: #e9ecef;
    border-color: #ccc;
    color: #333;
}

/* --- WIZARD BUTTONS --- */
.btn-next,
.btn-back,
.btn-success,
.wizard-navigation button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.8px;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-next {
    background: var(--primary);
    color: white;
}

.btn-next:hover,
.btn-primary.nav-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(14, 51, 95, 0.3);
}

.btn-success {
    background: var(--accent);
    color: white;
}

.btn-success:hover {
    background: #218838;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.4);
}

.btn-back,
.wizard-navigation button {
    background: #f1f3f5;
    color: #495057;
    border: 1px solid #dee2e6;
}

.btn-back:hover,
.wizard-navigation button:hover {
    background: #e9ecef;
    color: #212529;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.wizard-navigation {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.wizard-navigation {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.wizard-navigation .btn-next,
.wizard-navigation .btn-back,
.wizard-navigation .btn-success {
    flex: 1;
    margin-top: 0;
}

.wizard-navigation .btn-next,
.wizard-navigation .btn-success {
    flex: 2;
    /* Primary action is wider */
}