

header h1 {
    font-size: 2.5em;
    color: #CAA05C;
    margin-bottom: 10px;
    font-family: 'VisbySemibold';
}

.subtitle {
    color: #666;
}

/* Progress Bar */
.progress-container {
    margin-bottom: 40px;
    margin-bottom: 10px;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
    margin: 10px 0;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    transition: width 0.3s ease;
    width: 0%;
}

.progress-text {
    text-align: center;
    color: #666;
    font-weight: 500;
}

/* Steps */
.step {
    display: none;
}

.step.active {
    display: block;
    animation: fadeIn 0.3s ease;
    margin: 20px 0;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.step h2 {
    color: #333;
    margin-bottom: 10px;
    font-size: 1.8em;
    font-family: 'VisbySemibold';
}

.help-text {
    color: #666;
    margin-bottom: 30px;
}

/* Theme Gallery */
.theme-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.theme-card {
    border: 3px solid #e0e0e0;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    background: white;
}

.theme-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    border-color: #667eea;
}

.theme-card.selected {
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.2);
}

.theme-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.theme-info {
    padding: 15px;
}

.theme-info h4 {
    color: #333;
    font-size: 1.2em;
    margin-bottom: 5px;
    font-family: 'Poppins-SemiBold';
}

.theme-info p {
    color: #666;
    font-size: 0.9em;
    line-height: 1.4;
}

.theme-card .checkmark {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    background: #667eea;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 18px;
}

.theme-card.selected .checkmark {
    display: flex;
}

/* Preferences Section */
.preferences-section {
    margin-bottom: 40px;
}

.preferences-section h3 {
    color: #CAA05C;
    font-size: 1.5em;
    font-family: 'VisbySemibold';
    margin-bottom: 10px;
}

.section-help {
    color: #666;
    margin-bottom: 20px;
}

.category-group {
    margin-bottom: 30px;
}

.category-group h4 {
    color: #000;
    font-size: 1.1em;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 2px solid #f0f0f0;
    font-family: 'VisbySemibold';
}

.selection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 10px;
}

.selection-item {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    background: white;
}

.selection-item:hover {
    border-color: #CAA05C;
    background: #f8f9ff;
}

.selection-item.selected {
    border-color: #CAA05C;
    background: #f0f3ff;
}

.selection-item input[type="checkbox"] {
    margin-right: 10px;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.selection-item span {
    letter-spacing: 0.3px;
    flex: 1;
    color: #333;
    font-size: 12px;
    font-family: 'VisbyMedium';
}

/* Room Section */
.add-room-section {
    text-align: center;
    margin-bottom: 30px;
}

.btn-add {
    padding: 12px 30px;
    font-size: 1.1em;
    background: #CAA05C;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: 'Poppins-SemiBold';
}

.btn-add:hover {
    background: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
    color: #000;
    border: 1px solid #CAA05C;
}

.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: #999;
    font-size: 1.1em;
}

.room-card {
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 25px;
    background: #fafafa;
}

.room-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.room-header h4 {
    color: #CAA05C;
    font-size: 1.3em;
    font-family: 'VisbySemibold';
}


.btn-remove {
    width: 32px;
    height: 32px;
    border: none;
    background: #ff4757;
    color: white;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-remove:hover {
    background: #ee2f3a;
    transform: scale(1.1);
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    color: #555;
    font-weight: 500;
    margin-bottom: 5px;
    font-family: 'Poppins-SemiBold';
}

.form-group select,
.form-group input {
    width: 100%;
    padding: 10px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 1em;
    transition: border-color 0.2s ease;
    font-family: 'VisbyMedium';
}

.form-group select:focus,
.form-group input:focus {
    outline: none;
    border-color: #667eea;
}

.measurements-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 20px;
}

.room-functionalities {
    margin-bottom: 20px;
}

.functionality-badges,
.preference-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

.badge {
    display: inline-block;
    padding: 8px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 20px;
    font-size: 0.9em;
    cursor: pointer;
    transition: all 0.2s ease;
    background: white;
    color: #666;
    font-family: 'VisbySemibold';
}

.badge:hover {
    border-color: #CAA05C;
    background: #f8f9ff;
}

.badge.selected {
    border-color: #CAA05C;
    background: #fff;
    color: #000;
}

.room-preferences {
    border-top: 2px solid #e0e0e0;
    padding-top: 20px;
    margin-top: 20px;
}

.preference-section {
    margin-bottom: 20px;
}

.preference-section label {
    display: block;
    color: #555;
    font-weight: 500;
    margin-bottom: 10px;
}

.room-preferences-empty {
    text-align: center;
    padding: 20px;
    color: #999;
    font-style: italic;
}

/* Navigation Buttons */
.navigation-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 40px;
}

.btn {
    padding: 12px 30px;
    font-size: 1.05em;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-weight: 500;
}

.btn-primary {
    background: #CAA05C;
    color: white;
    font-family: 'Poppins-SemiBold';
}

.btn-primary:hover {
    background: #5568d3;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
    font-family: 'Poppins-SemiBold';
}

.btn-secondary {
    background: #e0e0e0;
    color: #333;
    font-family: 'Poppins-SemiBold';
}

.btn-secondary:hover {
    background: #d0d0d0;
}

/* Report Styles */
.report-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.report-container {
    margin-top: 30px;
}

.report-section {
    margin-bottom: 40px;
    padding: 25px;
    background: #f9f9f9;
    border-radius: 12px;
    border-left: 3px solid #CAA05C;
}

.report-section h2 {
    color: #CAA05C;
    font-size: 1.8em;
    margin-bottom: 15px;
}

.report-section h3 {
    color: #333;
    font-size: 1.5em;
    margin-bottom: 10px;
}

.report-section h4 {
    color: #000;
    font-size: 1.2em;
    margin-bottom: 10px;
    font-family: 'VisbySemibold';
}

.section-description {
    color: #666;
    font-size: 1.05em;
    margin-bottom: 20px;
    line-height: 1.6;
}

/* Summary Grid */
.summary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.summary-item {
    padding: 15px;
    background: white;
    border-radius: 8px;
    border-left: 3px solid #000;
}

.summary-item h4 {
    color: #CAA05C;
    font-size: 1em;
    margin-bottom: 8px;
    font-family: 'VisbySemibold';
    letter-spacing: 0.5px;
}

.summary-item p {
    color: #555;
    font-size: 0.95em;
    line-height: 1.5;
}

/* Palette Sections */
.palette-section {
    margin: 25px 0;
}

.palette-description {
    color: #666;
    font-style: italic;
    margin-bottom: 15px;
}

.palette-usage {
    margin-top: 20px;
    padding: 15px;
    background: #f0f3ff;
    border-radius: 8px;
    border-left: 4px solid #764ba2;
}

.palette-usage p {
    color: #555;
    line-height: 1.6;
}

/* Standards Content */
.standards-content p {
    margin-bottom: 15px;
    color: #555;
    line-height: 1.7;
}

/* Room Dimensions */
.room-dimensions {
    color: #666;
    font-size: 1.05em;
    margin-bottom: 15px;
}

/* Appliance Sections */
.appliance-section {
    margin: 30px 0;
    padding: 20px;
    background: white;
    border-radius: 8px;
    border-left: 4px solid #000;
}

.appliance-section h3 {
    color: #000;
    font-size: 1.4em;
    margin-bottom: 20px;
    font-family: 'VisbySemibold';
}

.appliance-section h4 {
    color: #764ba2;
    font-size: 1.15em;
    margin: 20px 0 10px 0;
}

.appliance-section ul {
    list-style-type: none;
    padding-left: 0;
}

.appliance-section ul li {
    margin-bottom: 12px;
    color: #555;
    line-height: 1.6;
}

.appliance-section ul ul {
    margin-top: 8px;
    margin-left: 25px;
    list-style-type: disc;
}

.appliance-section ul ul li {
    margin-bottom: 6px;
    font-size: 0.95em;
}

.theme-description {
    color: #666;
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 20px;
}

.color-palette {
    margin-top: 20px;
}

.color-swatches {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 15px;
}

.color-swatch {
    text-align: center;
}

.swatch {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    margin-bottom: 8px;
    border: 2px solid #e0e0e0;
}

.color-code {
    font-size: 0.9em;
    color: #666;
    font-family: monospace;
}

.room-report {
    background: white;
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 25px;
    border: 1px solid #e0e0e0;
}

.room-report h3 {
    color: #000;
    font-size: 1.4em;
    margin-bottom: 15px;
    font-family: 'VisbySemibold';
}

.boq-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.boq-table thead {
    background: #667eea;
    color: white;
}

.boq-table th {
    padding: 12px;
    text-align: left;
    font-weight: 500;
}

.boq-table td {
    padding: 10px 12px;
    border-bottom: 1px solid #e0e0e0;
    font-family: 'Poppins-Regular';
    font-size: 15px;
}

.boq-table tbody tr:hover {
    background: #f8f9ff;
}

.room-design-notes {
    margin-top: 20px;
    padding: 20px;
    background: #f0f3ff;
    border-radius: 8px;
}

.room-design-notes h4 {
    color: #764ba2;
    margin-bottom: 10px;
}

.room-design-notes p {
    color: #555;
    line-height: 1.6;
}

.material-grades {
    margin-top: 20px;
}

.grades-table {
    width: 100%;
    border-collapse: collapse;
}

.grades-table thead {
    background: #764ba2;
    color: white;
}

.grades-table th {
    padding: 12px;
    text-align: left;
    font-weight: 500;
}

.grades-table td {
    padding: 10px 12px;
    border-bottom: 1px solid #e0e0e0;
}

.grades-table tbody tr:nth-child(even) {
    background: #f9f9f9;
}

/* Footer */
footer {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 2px solid #e0e0e0;
    text-align: center;
    color: #666;
}

footer .small {
    font-size: 0.9em;
    margin-top: 10px;
}

footer a {
    color: #667eea;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* Lead Capture Form */
.lead-form-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
    font-size: 0.95em;
}

.form-group input,
.form-group textarea {
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1em;
    font-family: inherit;
    transition: all 0.3s ease;
    font-family: 'VisbyMedium';
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-group input:invalid:not(:placeholder-shown) {
    border-color: #e74c3c;
}

.consent-text {
    text-align: center;
    color: #666;
    font-size: 0.9em;
    margin: 20px 0;
    font-style: italic;
}

.error-message {
    background: #fee;
    color: #c33;
    padding: 12px 15px;
    border-radius: 8px;
    margin-top: 15px;
    font-size: 0.95em;
    border-left: 4px solid #e74c3c;
}

.success-message {
    background: #efe;
    color: #282;
    padding: 12px 15px;
    border-radius: 8px;
    margin-top: 15px;
    font-size: 0.95em;
    border-left: 4px solid #27ae60;
    text-align: center;
}

/* Print Styles */
@media print {
    body {
        background: white;
        padding: 0;
    }
    
    .container {
        box-shadow: none;
        padding: 20px;
    }
    
    .progress-container,
    .navigation-buttons,
    .report-actions,
    .btn-remove,
    .add-room-section,
    footer {
        display: none;
    }
    
    .step {
        display: none;
    }
    
    .step#step4 {
        display: block;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 20px;
    }
    
    .theme-gallery {
        grid-template-columns: 1fr;
    }
    
    .selection-grid {
        grid-template-columns: 1fr;
    }
    
    .measurements-grid {
        grid-template-columns: 1fr;
    }
    
    .color-swatches {
        justify-content: center;
    }
    
    .navigation-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
    }
}
