#getquote .container {
    max-width: 800px;
    width: 100%;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

#getquote .header {
    background: #91C330;
    color: white;
    padding: 25px 30px;
    text-align: center;
}

#getquote .header h1 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 5px;
}

#getquote .form-container {
    padding: 30px;
}

#getquote .form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

#getquote .form-group {
    margin-bottom: 20px;
}

#getquote .form-group.full-width {
    grid-column: 1 / span 2;
}

#getquote label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
    font-size: 15px;
}

#getquote .input-with-icon {
    position: relative;
}

#getquote .input-with-icon i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #6c757d;
}

#getquote .textarea-with-icon {
    position: relative;
}

#getquote .textarea-with-icon i {
    position: absolute;
    left: 15px;
    top: 20px;
    color: #6c757d;
}

#getquote input, 
#getquote select, 
#getquote textarea {
    width: 100%;
    padding: 12px 15px 12px 45px;
    border: 1px solid #e1e5eb;
    border-radius: 6px;
    font-size: 15px;
    transition: all 0.3s ease;
    background-color: #f8fafc;
}

#getquote input:focus, 
#getquote select:focus, 
#getquote textarea:focus {
    outline: none;
    border-color: #4a6ee0;
    box-shadow: 0 0 0 3px rgba(74, 110, 224, 0.1);
    background-color: #fff;
}

#getquote textarea {
    min-height: 120px;
    resize: vertical;
    padding-top: 12px;
    padding-left: 45px;
}



#getquote .sub-button button:disabled {
    background: #a0aec0;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

#getquote .phone-hint {
    font-size: 12px;
    color: #6c757d;
    margin-top: 5px;
}

#getquote .validation-message {
    font-size: 12px;
    margin-top: 5px;
    display: none;
}

#getquote .validation-message.valid {
    color: #28a745;
    display: block;
}

#getquote .validation-message.invalid {
    color: #dc3545;
    display: block;
}

#getquote .form-feedback {
    padding: 12px;
    border-radius: 6px;
    margin-top: 15px;
    text-align: center;
    display: none;
}

#getquote .form-feedback.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

#getquote .form-feedback.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}

/* Error message styling for getquote section */
#getquote .error-message {
    color: #dc3545 !important;
    font-size: 12px !important;
    margin-top: 5px !important;
    display: none;
}

/* Error state for getquote input fields */
#getquote .input-with-icon input.error,
#getquote .input-with-icon select.error,
#getquote .input-with-icon textarea.error {
    border-color: #dc3545 !important;
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1) !important;
}

/* Success message styling for getquote section */
#getquote .success-message {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    padding: 12px;
    border-radius: 5px;
    margin-top: 20px;
    text-align: center;
    font-weight: 500;
}

@media (max-width: 768px) {
    #getquote .form-grid {
        grid-template-columns: 1fr;
    }
    
    #getquote .form-group.full-width {
        grid-column: 1;
    }
    
    #getquote .form-container {
        padding: 25px;
    }
}


#getquote .sub-button {
    text-align: center;
    margin-top: 5px;
}

#getquote .sub-button button {
    background: #91C330;
    color: white;
    border: none;
    padding: 14px 35px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

#getquote .sub-button button:hover {
    background: #91C330;
    transform: translateY(-2px);
}