/* General Form Styling */
.website-quote-form-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    font-family: 'Arial', sans-serif;
}

.website-quote-form-container h2 {
    font-size: 24px;
    text-align: center;
    color: #333;
    margin-bottom: 20px;
}

.form-section {
    margin-bottom: 20px;
    padding: 15px;
    background-color: #ffffff;
    border-radius: 5px;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
}

.form-section h3 {
    font-size: 20px;
    color: #444;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
    margin-bottom: 15px;
}

.form-section h4 {
    font-size: 18px;
    color: #555;
    margin: 20px 0 10px;
}

/* Form Layout */
.form-row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
}

.form-col {
    flex: 1;
    padding: 0 10px;
    margin-bottom: 15px;
    min-width: 200px;
}

/* Form Elements */
label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #333;
}

input[type="text"], 
input[type="email"], 
input[type="tel"], 
input[type="url"], 
input[type="date"], 
input[type="number"],
select, 
textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
    transition: border-color 0.3s;
}

input:focus, 
select:focus, 
textarea:focus {
    border-color: #0073e6;
    outline: none;
    box-shadow: 0 0 5px rgba(0, 115, 230, 0.2);
}

select[multiple] {
    height: auto;
    min-height: 100px;
}

textarea {
    resize: vertical;
    min-height: 80px;
}

input[type="checkbox"], 
input[type="radio"] {
    margin-right: 10px;
}

/* Feature Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.feature-category {
    background: #f5f5f5;
    padding: 15px;
    border-radius: 5px;
}

.feature-category h4 {
    margin-top: 0;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
    margin-bottom: 15px;
}

.feature-item {
    margin-bottom: 8px;
}

/* Navigation */
.quote-navigation {
    margin-bottom: 20px;
}

.quote-navigation ul {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    background: #f0f0f0;
    border-radius: 5px;
    overflow: hidden;
}

.quote-navigation li {
    flex: 1;
    text-align: center;
}

.quote-navigation a {
    display: block;
    padding: 10px;
    text-decoration: none;
    color: #666;
    border-right: 1px solid #ddd;
    font-size: 14px;
}

.quote-navigation li:last-child a {
    border-right: none;
}

.quote-navigation li.active a {
    background: #0073e6;
    color: white;
}

/* Step Navigation */
.form-step {
    display: none;
}

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

.form-navigation {
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
}

.btn, .submit-button {
    background-color: #0073e6;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.prev-step {
    background-color: #999;
}

.btn:hover, .submit-button:hover {
    background-color: #005bb5;
}

.prev-step:hover {
    background-color: #777;
}

.submit-button {
    padding: 12px 30px;
}

/* Quote Summary */
#quote-summary {
    background: #f0f8ff;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    padding-bottom: 8px;
    border-bottom: 1px dotted #ddd;
}

.summary-total {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 2px solid #ddd;
    font-weight: bold;
    font-size: 18px;
}

.summary-price {
    font-weight: bold;
}

.summary-note {
    font-size: 12px;
    color: #666;
    font-style: italic;
    margin-top: 10px;
}

/* Small Screen Adjustments */
@media (max-width: 768px) {
    .form-col {
        flex: 100%;
    }
    
    .quote-navigation a {
        padding: 8px 5px;
        font-size: 12px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
}