/* Quote Section Styles */
.quote-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.quote-header {
    text-align: center;
    margin-bottom: 50px;
}

.quote-header h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.quote-header p {
    color: var(--dark-gray);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Quote Steps Indicator */
.quote-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    position: relative;
}

.quote-steps::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    height: 3px;
    background-color: #e0e0e0;
    z-index: 1;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
    flex: 1;
}

.step.active .step-number {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.step.active .step-text {
    color: var(--primary-color);
    font-weight: 600;
}

.step.completed .step-number {
    background-color: var(--secondary-color);
    color: white;
    border-color: var(--secondary-color);
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: white;
    border: 3px solid #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #999;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.step-text {
    color: #999;
    font-size: 0.9rem;
    text-align: center;
    transition: all 0.3s ease;
}

/* Quote Form Styles */
.quote-form {
    background-color: white;
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    margin-bottom: 50px;
}

.form-step {
    display: none;
}

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

.form-step h2 {
    color: var(--primary-color);
    margin-bottom: 30px;
    font-size: 1.8rem;
    text-align: center;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-row .form-group {
    flex: 1;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

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

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

.form-group small {
    display: block;
    margin-top: 5px;
    color: #999;
    font-size: 0.8rem;
}

/* Service Options */
.service-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.service-option {
    display: block;
    cursor: pointer;
}

.service-option input {
    display: none;
}

.option-card {
    border: 2px solid #eee;
    border-radius: 8px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.service-option input:checked + .option-card {
    border-color: var(--primary-color);
    background-color: rgba(26, 95, 156, 0.05);
    box-shadow: 0 5px 15px rgba(26, 95, 156, 0.1);
}

.option-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(26, 95, 156, 0.1);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    transition: all 0.3s ease;
}

.service-option input:checked + .option-card .option-icon {
    background-color: var(--primary-color);
    color: white;
}

.option-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.option-card p {
    color: var(--dark-gray);
    font-size: 0.95rem;
}

/* Make Back button same style as Next button */
.form-navigation .btn-secondary.prev-step {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.form-navigation .btn-secondary.prev-step:hover {
    background-color: #0e4a7a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(26, 95, 156, 0.3);
}

/* Form Navigation */
.form-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.form-navigation button {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Success Message */
.form-success {
    text-align: center;
    padding: 30px;
}

.success-icon {
    font-size: 5rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.form-success h2 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.form-success p {
    color: var(--dark-gray);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

/* Quote Benefits */
.quote-benefits {
    margin-top: 60px;
}

.quote-benefits h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 40px;
    font-size: 2rem;
}

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

.benefit-card {
    background-color: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-10px);
}

.benefit-icon {
    font-size: 2rem; /* Makes ₹ larger */
    font-weight: bold; /* Optional: makes it bolder */
    margin-bottom: 10px; /* Adds spacing below */
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(26, 95, 156, 0.1);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
}

.benefit-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.benefit-card p {
    color: var(--dark-gray);
    font-size: 0.95rem;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .service-options {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .quote-form {
        padding: 30px 20px;
    }
    
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .service-options {
        grid-template-columns: 1fr;
    }
    
    .step-text {
        font-size: 0.8rem;
    }
}

@media (max-width: 576px) {
    .quote-header h1 {
        font-size: 2rem;
    }
    
    .quote-header p {
        font-size: 1rem;
    }
    
    .step-number {
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
    }
    
    .form-step h2 {
        font-size: 1.5rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}