/*
 * Styles for the Archviz Pricing Calculator
 * The layout is inspired by the provided dark theme mock‑up with a purple accent.
 */

.archviz-calculator-wrapper {
    max-width: 600px;
    margin: 0 auto;
    background-color: #0d1128; /* deep navy background */
    border-radius: 12px;
    padding: 30px;
    color: #ffffff;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.25);
}

.archviz-form-group {
    margin-bottom: 20px;
}

.archviz-form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
}

.archviz-fieldset {
    border: 1px solid #23284e;
    border-radius: 8px;
    padding: 15px;
}

.archviz-fieldset legend {
    padding: 0 8px;
    font-weight: 600;
    color: #bdbdf4;
}

input[type="text"],
input[type="number"],
select {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #23284e;
    border-radius: 6px;
    background-color: #15193c;
    color: #ffffff;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

input[type="text"]:focus,
input[type="number"]:focus,
select:focus {
    outline: none;
    border-color: #7b57c2;
}

input[type="checkbox"] {
    margin-right: 6px;
}

.archviz-inline-label {
    display: inline-block;
    margin-left: 8px;
    font-weight: normal;
}

.archviz-hint {
    font-size: 0.85em;
    color: #9aa3c2;
    margin-top: 4px;
}

.archviz-button {
    display: inline-block;
    background: #7b57c2;
    color: #ffffff;
    border: none;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.archviz-button:hover {
    background: #684bb2;
}

.archviz-result {
    background-color: #15193c;
    border-radius: 8px;
    padding: 20px;
    margin-top: 20px;
    border: 1px solid #23284e;
}

.archviz-result h3 {
    margin-top: 0;
    margin-bottom: 10px;
    color: #bdbdf4;
}