.quote-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.quote-stats .stat-item {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.quote-stats .stat-number {
    font-size: 2rem;
    font-weight: bold;
    color: white;
    display: block;
    margin-bottom: 0.5rem;
}

.quote-stats .stat-label {
    color: rgba(255,255,255,0.9);
    font-size: 0.9rem;
}

.quote-form-container {
    max-width: 1000px;
    margin: 0 auto 5rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    overflow: hidden;
}

.form-progress {
    background: var(--primary-color);
    color: white;
    padding: 1.5rem 2rem;
    text-align: center;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(255,255,255,0.2);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.progress-fill {
    height: 100%;
    background: var(--accent-color);
    border-radius: 4px;
    transition: width 0.3s ease;
    width: 20%;
}

.progress-text {
    font-size: 0.9rem;
    opacity: 0.9;
}

.quote-form {
    padding: 3rem;
}

.form-step {
    display: none;
}

.form-step.active {
    display: block;
}

.step-header {
    text-align: center;
    margin-bottom: 3rem;
}

.step-header h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.step-header p {
    color: #64748b;
    font-size: 1.1rem;
}

.service-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.service-card {
    background: #f8fafc;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.service-card:hover {
    border-color: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.service-card.selected {
    border-color: var(--accent-color);
    background: #f0f9ff;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.service-card p {
    color: #64748b;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.service-pricing {
    background: var(--accent-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-block;
}

.project-details {
    max-width: 600px;
    margin: 0 auto;
}

.detail-section {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--accent-color);
}

.detail-section h3 {
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.input-group {
    margin-bottom: 1.5rem;
}

.input-group label {
    display: block;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.input-group input,
.input-group select,
.input-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.input-group input:focus,
.input-group select:focus,
.input-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
}

.input-hint {
    color: #64748b;
    font-size: 0.8rem;
    margin-top: 0.25rem;
}

.checkbox-group,
.radio-group {
    display: grid;
    gap: 0.75rem;
}

.checkbox-group label,
.radio-group label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-weight: normal;
}

.checkmark,
.radiomark {
    width: 20px;
    height: 20px;
    border: 2px solid #e5e7eb;
    border-radius: 4px;
    margin-right: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.radiomark {
    border-radius: 50%;
}

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

.checkbox-group input[type="checkbox"]:checked + .checkmark {
    background: var(--accent-color);
    border-color: var(--accent-color);
}

.checkbox-group input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    color: white;
    font-weight: bold;
}

.radio-group input[type="radio"]:checked + .radiomark {
    border-color: var(--accent-color);
}

.radio-group input[type="radio"]:checked + .radiomark::after {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--accent-color);
    border-radius: 50%;
}

.timeline-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.timeline-card {
    background: #f8fafc;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.timeline-card:hover,
.timeline-card.selected {
    border-color: var(--accent-color);
    background: #f0f9ff;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.timeline-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.timeline-card h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.timeline-card p {
    color: #64748b;
    margin-bottom: 1rem;
}

.timeline-surcharge {
    background: #e5e7eb;
    color: #374151;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.timeline-card.selected .timeline-surcharge {
    background: var(--accent-color);
    color: white;
}

.quality-options {
    margin-top: 3rem;
}

.quality-options h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

.quality-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
}

.quality-card {
    background: #f8fafc;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.quality-card:hover,
.quality-card.selected {
    border-color: var(--accent-color);
    background: #f0f9ff;
}

.quality-card h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.quality-card p {
    color: #64748b;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.quality-price {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.9rem;
}

.location-details {
    max-width: 600px;
    margin: 0 auto;
}

.access-conditions,
.building-conditions {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
}

.access-conditions h3,
.building-conditions h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.contact-summary {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-form {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 12px;
}

.quote-summary {
    background: white;
    border: 2px solid var(--accent-color);
    border-radius: 12px;
    padding: 2rem;
    height: fit-content;
}

.quote-summary h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

.summary-details {
    margin-bottom: 2rem;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid #f1f5f9;
}

.summary-label {
    color: #64748b;
}

.summary-value {
    color: var(--primary-color);
    font-weight: 500;
}

.price-breakdown {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.price-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid #e5e7eb;
}

.price-item.total {
    font-weight: bold;
    font-size: 1.1rem;
    color: var(--primary-color);
    border-bottom: none;
    padding-top: 1rem;
    border-top: 2px solid var(--accent-color);
}

.price-range {
    text-align: center;
    color: #64748b;
    margin-top: 0.5rem;
}

.confidence-indicator {
    text-align: center;
}

.confidence-bar {
    width: 100%;
    height: 8px;
    background: #e5e7eb;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.confidence-fill {
    height: 100%;
    background: linear-gradient(90deg, #f59e0b, #16a34a);
    border-radius: 4px;
    transition: width 0.3s ease;
}

.confidence-text {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
}

.form-navigation {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e5e7eb;
}

.quote-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: white;
    border-radius: 16px;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.modal-header {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h2 {
    color: white;
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
}

.modal-body {
    padding: 2rem;
}

.quote-result {
    text-align: center;
}

.result-price {
    margin-bottom: 3rem;
}

.price-main {
    font-size: 3rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.price-subtitle {
    color: #64748b;
    font-size: 1.1rem;
}

.result-details {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 3rem;
    text-align: left;
}

.result-details h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

.detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.next-steps {
    margin-bottom: 3rem;
    text-align: left;
}

.next-steps h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

.steps-timeline {
    display: grid;
    gap: 1rem;
}

.next-step {
    background: white;
    border: 2px solid #f1f5f9;
    border-left: 4px solid var(--accent-color);
    padding: 1rem;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.next-step strong {
    color: var(--primary-color);
}

.next-step span {
    color: #64748b;
    font-size: 0.9rem;
}

.modal-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.quote-features {
    margin-bottom: 5rem;
}

.quote-features h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    text-align: center;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.feature-card p {
    color: #64748b;
    line-height: 1.6;
}

.quote-testimonials {
    background: #f8fafc;
    padding: 4rem 3rem;
    border-radius: 16px;
    margin-bottom: 5rem;
}

.quote-testimonials h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
}

.testimonial-content p {
    color: #374151;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    margin-bottom: 1rem;
}

.testimonial-author strong {
    color: var(--primary-color);
    display: block;
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    color: #64748b;
    font-size: 0.9rem;
}

.testimonial-rating {
    font-size: 1.2rem;
}

.quote-faq {
    margin-bottom: 5rem;
}

.quote-faq h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

.faq-items {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    background: #f8fafc;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #f1f5f9;
}

.faq-question span:first-child {
    color: var(--primary-color);
    font-weight: 600;
}

.faq-icon {
    color: var(--accent-color);
    font-size: 1.5rem;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 1.5rem;
    max-height: 200px;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer p {
    color: #4b5563;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .quote-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .service-options {
        grid-template-columns: 1fr;
    }
    
    .timeline-options,
    .quality-cards {
        grid-template-columns: 1fr;
    }
    
    .contact-summary {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .quote-form {
        padding: 2rem;
    }
    
    .features-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .modal-content {
        margin: 1rem;
        max-height: calc(100vh - 2rem);
    }
    
    .modal-actions {
        flex-direction: column;
    }
    
    .price-main {
        font-size: 2rem;
    }
    
    .form-navigation {
        flex-direction: column;
    }
    
    .quote-testimonials {
        padding: 2rem;
    }
}
