/* Kasper Quote Builder Styles */
:root {
    --primary-red: #e53935;
    --dark-gray: #1a1a1a;
    --light-gray: #f8f9fa;
    --border-color: #dee2e6;
}

/* Don't override body font - inherit from base template */

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--dark-gray) 0%, #2c2c2c 100%);
    color: white;
    padding: 60px 0;
    margin-bottom: 40px;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: white;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 30px;
}

.trust-badges {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
}

.badge-item i {
    color: var(--primary-red);
    font-size: 1.5rem;
}

/* Stepper */
.stepper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px 0;
}

.stepper-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    flex: 0 0 auto;
}

.stepper-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #e0e0e0;
    color: #999;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
}

.stepper-item.active .stepper-circle {
    background-color: var(--primary-red);
    color: white;
    box-shadow: 0 4px 12px rgba(229, 57, 53, 0.3);
}

.stepper-item.completed .stepper-circle {
    background-color: #4caf50;
    color: white;
}

.stepper-label {
    margin-top: 10px;
    font-size: 0.9rem;
    color: #666;
    text-align: center;
}

.stepper-item.active .stepper-label {
    color: var(--primary-red);
    font-weight: 600;
}

.stepper-line {
    flex: 1;
    height: 2px;
    background-color: #e0e0e0;
    margin: 0 10px;
    position: relative;
    top: -20px;
}

.stepper-line.completed {
    background-color: #4caf50;
}

/* Form Card */
.form-card {
    background: white;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.form-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--dark-gray);
}

.form-subtitle {
    color: #666;
    margin-bottom: 30px;
}

.form-section {
    margin-bottom: 25px;
}

.form-label-custom {
    font-weight: 600;
    margin-bottom: 12px;
    display: block;
    color: #333;
}

/* Radio Pills */
.radio-pill-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.radio-pill-group input[type="radio"] {
    display: none;
}

.radio-pill-group label {
    padding: 12px 24px;
    border: 2px solid var(--border-color);
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 500;
    background: white;
}

.radio-pill-group input[type="radio"]:checked + label {
    background-color: var(--primary-red);
    color: white;
    border-color: var(--primary-red);
}

.radio-pill-group label:hover {
    border-color: var(--primary-red);
}

/* Checkbox Group */
.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.custom-checkbox {
    display: flex;
    align-items: center;
    padding: 15px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    transition: all 0.3s;
    cursor: pointer;
}

.custom-checkbox:hover {
    border-color: var(--primary-red);
    background-color: #fff5f5;
}

.custom-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-right: 12px;
    cursor: pointer;
    accent-color: var(--primary-red);
}

.custom-checkbox label {
    margin: 0;
    cursor: pointer;
    flex: 1;
}

/* Form Inputs */
input[type="text"],
input[type="email"],
input[type="number"],
select,
textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s;
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--primary-red);
    box-shadow: 0 0 0 3px rgba(229, 57, 53, 0.1);
}

/* Buttons */
.btn-primary {
    background-color: var(--primary-red);
    border-color: var(--primary-red);
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 25px;
    transition: all 0.3s;
}

.btn-primary:hover {
    background-color: #c62828;
    border-color: #c62828;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(229, 57, 53, 0.3);
}

.btn-outline-secondary {
    border: 2px solid var(--border-color);
    color: #666;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 25px;
    transition: all 0.3s;
}

.btn-outline-secondary:hover {
    background-color: var(--light-gray);
    border-color: #999;
}

/* Summary Panel */
.summary-panel {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    border-left: 4px solid var(--primary-red);
    top: 120px;
}

.summary-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--dark-gray);
}

.summary-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
}

.summary-item:last-of-type {
    border-bottom: none;
}

.summary-label {
    color: #666;
    font-weight: 500;
}

.summary-value {
    font-weight: 700;
    color: var(--dark-gray);
}

.summary-footer {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px solid var(--border-color);
    color: #666;
    text-align: center;
}

/* Review Page */
.review-card {
    background: white;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.review-section {
    padding: 25px 0;
    border-bottom: 2px solid var(--border-color);
}

.review-section:last-of-type {
    border-bottom: none;
}

.review-section-title {
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--dark-gray);
}

.review-item {
    margin-bottom: 15px;
}

.review-label {
    color: #666;
    display: inline-block;
    min-width: 150px;
}

.review-value {
    font-weight: 600;
    color: var(--dark-gray);
}

/* Success Page */
.success-card {
    background: white;
    border-radius: 12px;
    padding: 50px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.success-icon {
    font-size: 5rem;
    color: #4caf50;
}

.reference-box {
    background: var(--light-gray);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 25px;
    margin: 30px 0;
}

.reference-label {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.reference-id {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-red);
    letter-spacing: 2px;
}

.quote-summary-box {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
    text-align: left;
}

.contact-info {
    background: #fff5f5;
    border-radius: 8px;
    padding: 20px;
}

.action-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Tooltip */
.tooltip-icon {
    color: #999;
    cursor: help;
    margin-left: 5px;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .stepper {
        padding: 20px 0;
    }
    
    .stepper-circle {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .stepper-label {
        font-size: 0.8rem;
    }
    
    .form-card {
        padding: 25px;
    }
    
    .summary-panel {
        position: static !important;
        margin-top: 30px;
    }
    
    .radio-pill-group {
        flex-direction: column;
    }
    
    .action-buttons {
        flex-direction: column;
    }
    
    .action-buttons .btn {
        width: 100%;
    }
    
    .form-navigation > div {
        flex-direction: column;
        width: 100%;
    }
    
    .form-navigation .btn {
        margin: 5px 0;
    }
}

/* Form Navigation Styles */
.form-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1.5rem;
}

.form-navigation > div {
    display: flex;
    gap: 0.5rem;
