/* Contact / Quote Page Styles */
.quote-section {
    padding: 4rem 0;
    background: var(--bg-light);
}

.quote-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.quote-header h1 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.quote-header p {
    font-size: 1.1rem;
    color: var(--text-light);
}

.quote-steps {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.quote-step {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    flex: 1;
    min-width: 200px;
    max-width: 300px;
}

.quote-step .step-number {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.step-text {
    font-size: 0.95rem;
    color: var(--text-dark);
}

.quote-form-wrapper {
    background: white;
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.product-selection {
    margin-bottom: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 2px solid var(--bg-light);
}

.product-selection h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.category-tabs {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.category-tab {
    padding: 1rem 2rem;
    background: var(--bg-light);
    border: 2px solid transparent;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 1rem;
}

.category-tab:hover,
.category-tab.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.product-card-select {
    padding: 1.25rem;
    background: var(--bg-light);
    border: 2px solid transparent;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
}

.product-card-select:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    background: white;
}

.product-card-select.selected {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.product-card-select h3 {
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.4;
    font-weight: 500;
}

.product-category-group {
    margin-bottom: 2rem;
}

.product-category-group h4 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--bg-light);
    font-weight: 600;
}

.dynamic-fields {
    margin-top: 2rem;
}

.dynamic-fields h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

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

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

.field-group input,
.field-group select,
.field-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
}

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

.field-group textarea {
    resize: vertical;
    min-height: 100px;
}

.customization-option {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    padding: 0.75rem;
    background: var(--bg-light);
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.customization-option:hover {
    background: var(--primary-color);
    color: white;
}

.customization-option:has(input:checked) {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.customization-option input[type="checkbox"] {
    width: auto;
    cursor: pointer;
}

.checkbox-group {
    flex-direction: row;
    align-items: flex-start;
    gap: 0.5rem;
    display: flex;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    cursor: pointer;
    margin-top: 0.25rem;
}

.checkbox-group label {
    margin-bottom: 0;
    font-weight: 400;
    cursor: pointer;
}

.contact-info-section {
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 2px solid var(--bg-light);
}

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

.info-card {
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 12px;
}

.info-card h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.info-card p {
    color: var(--text-light);
    margin: 0.5rem 0;
}

.btn-submit-quote {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
    margin-top: 2rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
}

.btn-submit-quote:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.selected-product-info {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    border-left: 4px solid var(--primary-color);
}

.selected-product-info h3 {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.selected-product-info p {
    color: var(--text-light);
    margin: 0;
}

@media (max-width: 768px) {
    .quote-form-wrapper {
        padding: 2rem 1.5rem;
    }

    .quote-steps {
        flex-direction: column;
    }

    .category-tabs {
        flex-direction: column;
    }

    .quote-section .products-grid {
        grid-template-columns: 1fr;
    }
}
